/*header-section*/
.header-section{
	position: relative;
	width: 100%;
	height: auto;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0px;
}
@media screen and (max-width:1100px){
	.header-section{
		display:flex !important;
        flex-direction: column-reverse !important;
	}
	.hero-banner{
		position: relative !important;
		top: 0 !important;
		left: 0 !important;
        width: 90% !important;
        margin-left: 5% !important;
	}
	.hero-banner{
		height: 100% !important;
		overflow: hidden !important;
		align-items: flex-start !important;
		justify-content: center !important;
		z-index: -2 !important;
	}

	.hero-banner img{
		width: 100% !important;
		object-fit: cover !important;
	}

	.hero-sec{
		width: 100% !important;
		height: auto !important;
		margin-left: 5% !important;
		padding: 0px 0px !important;
        margin-top: 40px !important;
	}
}
@media screen and (max-width:700px){
	.hero-sec{
		width: 90% !important;
	}
}
.hero-banner{
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-end;
}
.hero-banner img{
	max-width: 100%;
	height: auto;
}

.hero-sec{
	position: relative;
	width:80%;
	margin-left: 20%;
	height: auto;
	display: flex;
	align-items: center;
	padding: 40px 0px;
}

.hero-txt{
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	-webkit-box-reflect: below 0 linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.07));
	-moz-box-reflect: below 0 linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.07));
	-ms-box-reflect: below 0 linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.07));
}

.hero-txt h2{
	font-size: calc(3vw + 3vh + 4vmin);
	position: relative;
	font-weight: 700;
}


.hero-txt p{
	margin: 10px 0px;
	display: block;
	margin-top: 20px;
	line-height: 1.5em;
	font-size: 18px;
}
.hero-txt a{
	position: relative;
	display: inline-flex;
	background: #FF3850;
	color: #ffffff !important;
	margin-top: 20px;
	padding: 15px 30px;
	border-radius: 30px;
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .125rem;
    white-space: nowrap;
}
.hero-txt a:hover{
	letter-spacing: 2px;
	background: #FF1533;
}
/*All-btn-sec*/
.All-albn-sec{
    position: relative;
    width: 100%;
    height: auto;
    padding: 100px 0px;
    padding-bottom: 50px;
}
@media screen and (max-width:700px){
    .All-albn-sec{
        padding: 50px 0px !important;
        padding-bottom: 25px !important;
        margin-top: 50px !important;
    }
}

.t-mHd-sec{
    position: relative;
    width: auto;
    max-width: 70%;
}
@media screen and (max-width:1100px){
    .t-mHd-sec{
        max-width: 100% !important;
    }
}
.t-mHd-sec h2{
    margin-bottom: 30px;
    position: relative;
    padding: 10px 0px;
}

.t-mHd-sec h2:before{
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background: #000000;
    bottom: -10px;
    left: 0;
}

.t-mHd-sec h2:after{
    content: '';
    position: absolute;
    width: 30%;
    height: 1px;
    background: #000000;
    bottom: 0px;
    left: 0;
}


/*arti-card-sec*/
.arti-card-sec{
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 30px;
    grid-template-rows:auto;
    margin-top: 50px;
}
@media screen and (max-width:700px){
  .arti-card-sec{
    display: block !important;
    margin-top: 20px !important;
  }  
  .arti-card{
    margin-top: 30px !important;
  }

  .arti-card:before{
    right: 0px !important;
    bottom: 0px !important;
    top: 0px !important;
    left: 0px !important;
}
}
.arti-card{
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 8px;
    padding: 30px;
    z-index: 3;
    display: block;
}

.arti-card:before{
    content: '';
    position: absolute;
    z-index: -3;
    right: 0;
    bottom: 0px;
    top: 10px;
    left: 40px;
    background: #F2F3F4;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
}
.arti-card:hover::before{
    right: 0px;
    bottom: 0px;
    top: 0px;
    left: 0px;
}
/*top-artisan-card*/
.top-arti-card{
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns:100px 1fr;
    grid-gap: 10px;
}
.arti-top-profile{
    position: relative;
    width: 100%;
    height: 100px;
}

.arti-top-profile button{
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 5px;
    outline: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 30px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 30px rgb(0 0 0 / 20%);
    box-shadow: 0px 0px 30px rgb(0 0 0 / 20%);
    border: 3px solid #ffffff;
}
.arti-top-profile button img{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}
.arti-top-details{
    position: relative;
    width: 100%;
    height: auto;
    display:flex;
    align-items: center;
    overflow: hidden;
}
.arti-top-details h3{
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 700;
}
.arti-top-details p{
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 15px;
    margin-top: 5px;
}
.arti-top-details span{
    font-size: 12px;
    letter-spacing: 0.23em;
    font-weight: 700;
    padding: 10px 0px;
    text-transform: uppercase;
}

