/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sacramento&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    font-family: "Sacramento";
    color: var(--body-color);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    background-image: url(../images/dott-bg.png);
}

img {
    max-width: 100%;
    height: auto;
    transition: 0.4s;
}

a {
    outline: none;
    color: inherit;
    text-decoration: none;
}
.btn:focus{
    box-shadow: none;
}
a,
button,
i {
    text-decoration: none;
    color: inherit;
}

a:focus,
a:hover {
    text-decoration: none;
    color: inherit;
}
:root{
    --light:#fff;
    --dark:#000;
    --blue:#0019a2;
    --text-color:#000000b3;
    --body-color:#343434;
    --heading-color:#131313;
    --yellow:#edd7ba;
    --green:#283d36;
}

/* btn========================= */
.btn-outline{
    color: #283d36;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 0;
    border-radius: 0;
    border: none;
    overflow: hidden;
} 
.btn-outline:hover{  
    color: transparent; 
}
.btn-outline span{
    display: block;
    position: relative;
    font-size: 20px;
    padding: 6px 12px;
    transform-origin: 0 50%;
    transform-style: preserve-3d;
    transition: all 0.5s ease-in-out;
}
.btn-outline:hover span{
    transform: rotateX(90deg);
}
.btn-outline span:before{
    content: attr(data-hover);
    color: #fff;
    background: #283d36;
    width: 100%;
    height: 100%;
    padding: 6px 12px;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.35s linear;
}
.btn-outline span:hover:before{
    color: #fff;
    transform: rotateX(-90deg);
}



.btn-success{
    color: #fff !important;
    background: #283d36 !important;
    font-size: 16px;
    padding: 6px 12px 8px;
    border: 2px solid #283d36;
    border-radius: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s linear;
}
.btn-success:focus{ color: #fff; box-shadow: none; }
.btn-success:hover{ color: #283d36 !important; background-color: transparent !important; }
.btn-success:before{
    content: "";
    background: #fff;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease;
}
.btn-success:hover:before{ 
    left: auto;
    right: 0;
    width: 100%;
} 

/* btn========================= */


 /* whatups=========== */


 .floating_btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
  }
  
  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  .contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
  }


h1 {
    font-size: 80px;
    font-family: Sacramento;
    color: var(--green);
}

h2 {
    font-size: 60px;
    font-family: Sacramento;
}

h3 {
    font-size: 36px;
    color: var(--green);
    font-weight: 600;
}

h4 {
    font-size: 30px;
    color: var(--green);
    font-weight: 300;
}

h5 {
    font-size: 26px;
    color: var(--green);
    font-weight: 300;
}

h6 {
    font-size: 20px;

    padding: 0;
    margin: 0;
    color: var(--green);
    margin-bottom: 10px;
    text-transform: uppercase;
}

p {
    font-size: 20px;
    padding: 0;
    line-height: 35px;
    color: var(--green);
    margin-bottom: 20px;
}

/* header section======================= */

.navigation {
    height: 110px;
    background: var(--light);
    box-shadow: 0px 3px 5px 0px #0000007a;
}
.navigation .brand {
    position: absolute;
    padding-left: 0px;
    float: left;
    line-height: 55px;
    text-transform: uppercase;
    font-size: 40px;
    top: 5px;
}
.navigation .brand a, .navigation .brand a:visited {
    color: #fff;
    text-decoration: none;
}
.navigation .brand a, .navigation .brand a:visited {
    color: var(--green);
    text-decoration: none;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
.navigation .brand a img{
    width: 92px;
}
.navigation .nav-container {
    margin: 0 auto;
}
nav {
    float: right;
    margin-top: 32px;
}
.navigation nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.navigation nav ul li {
    float: left;
    position: relative;
}
.navigation nav ul li a, .navigation nav ul li a:visited {
    display: block;
    padding: 8px 20px;
    /* color: #ccc; */
    background: #262626 ;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
.navigation nav ul li a{
    background: transparent;
    color:var(--green);
}
.navigation nav ul li a:hover, .navigation nav ul li a:visited:hover, .navigation nav ul li a.active {
    color: var(--yellow);
}

.navigation nav ul li a:not(:only-child):after, .navigation nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' \025BE';
}
.navigation nav ul li ul li {
    min-width: 190px;
}
.navigation nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}
.navigation .navbar-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: #fff;
    box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}
/* Mobile navigation */
.navigation .nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    height: 55px;
    width: 70px;
}

.navigation #navbar-toggle {
    position: absolute;
    left: 18px;
    top: 0px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}
.navigation #navbar-toggle span, .navigation #navbar-toggle span:before, .navigation #navbar-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 30px;
    background: var(--text-color);
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
}
.navigation #navbar-toggle span:before {
    top: -10px;
}
.navigation #navbar-toggle span:after {
    bottom: -10px;
}
.navigation #navbar-toggle.active span {
    background-color: transparent;
}
.navigation #navbar-toggle.active span:before, .navigation #navbar-toggle.active span:after {
    top: 0;
}
.navigation #navbar-toggle.active span:before {
    transform: rotate(45deg);
}
.navigation #navbar-toggle.active span:after {
    transform: rotate(-45deg);
}
/* header section======================= */



.banner-section .owl-carousel .item{
    background-image: url(../images/banner1.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}
.banner-section .owl-carousel .item2{
    background-image: url(../images/banner2.jpeg);
}
.banner-section .owl-carousel .item3{
    background-image: url(../images/banner3.jpeg);
}
.banner-section .owl-carousel .item4{
    background-image: url(../images/banner4.jpeg);
}
.banner-section .owl-carousel .item .inner-div{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
/* .banner-section .owl-carousel .item .inner-div h1{
    color: var(--yellow);
} */
.owl-carousel .owl-nav .owl-prev::after{
    position: absolute;
    content: "";
    bottom: 50%;
    left: 20px;
    background-image: url(../images/left-arrow.png);
    height: 40px;
    width: 40px;
    background-size: cover;
}
.owl-carousel .owl-nav .owl-next::after{
    position: absolute;
    content: "";
    bottom: 50%;
    right: 20px;
    background-image: url(../images/arrow-right.png);
    height: 50px;
    width: 50px;
    background-size: cover;
}
.owl-carousel .owl-nav .owl-prev span{
    display: none;
}
.owl-carousel .owl-nav .owl-next span{
    display: none;
}
.banner-section .owl-carousel .item .inner-div p{
    font-size: 26px;
    color: #283d36;
    font-weight: 300;
    line-height: inherit;
    margin-bottom: 40px;
}


footer{
    padding: 80px 0px;
    background-color: var(--green);
}
footer .inner-text .footer-logo{
    text-align: center;
    margin-bottom: 50px;
}
footer .inner-text .left-content  h5{
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}
footer .inner-text .left-content  ul{
   padding-left: 0;
   margin-bottom: 0;
}
footer .inner-text .left-content  ul li{
    list-style: none;
}
footer .inner-text .left-content  ul li  {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    display: flex;
}
footer .inner-text .left-content  ul li span{
    margin-right: 20px;
    color: var(--yellow);
}
footer .inner-text .left-content  ul li address span{
    color: var(--yellow);
    font-weight: 600;
}
footer .inner-text .middle-content{
    text-align: center;
}
footer .inner-text .middle-content p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 25px;
}
footer .inner-text .middle-content  ul{
    padding-left: 0;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}
footer .inner-text .middle-content  ul li{
    list-style: none;
    margin: 0px 10px;
    color: var(--yellow);
    font-size: 20px;
    transition: all .5s linear;
}
footer .inner-text .middle-content  ul li:hover{
    color: #000;
}

footer .inner-text .middle-content .news-letter form input{
    background-color: transparent;
    border-bottom: 1px solid #fff;
    outline: none;
    width: 80%;
    padding: 5px 10px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: #fff;
    font-size: 20px;
}
footer .inner-text .right-content ul{
    padding-left: 0;
    margin-bottom: 0;
}
footer .inner-text .right-content ul li{
    list-style: none;
    margin-bottom: 20px ;
    font-weight: 300;
}
footer .inner-text .right-content ul li a{
    color: #fff;
    font-size: 20px;
    transition: all .3s linear;
}
footer .inner-text .right-content ul li a:hover{
    color: var(--yellow);
}
footer .inner-text2{
    text-align: center;
    font-size: 20px;
    color: #fff;
    padding-top: 60px;
    border-top: 2px solid var(--yellow);
    font-weight: 300;
}

.branding-logo{
    padding: 50px 0px;
    background-color: var(--yellow);
}
.branding-logo .inner-text .owl-carousel .item{
    text-align: center;
}
.branding-logo .inner-text .owl-carousel .item .figure img{
    width: 90%;
}

/* latest article========================== */
.latest-article{
    padding: 80px 0px;
}
.latest-article .inner-text .left-content h2{
    margin-bottom: 50px;
    color: var(--yellow);
}
.latest-article .inner-text .left-content h3{
    color: var(--yellow);
}
.latest-article .inner-text .left-content p{
    margin-bottom: 0;
    color: var(--yellow);
}
.latest-article .inner-text .right-content{
    position: relative;
}
.latest-article .inner-text .right-content img{
    max-width: 100%;
}

.latest-article .inner-text .right-content .inner-div {
    padding: 40px;
    background-color: var(--yellow);
    position: relative;
    bottom: 118px;
    right: -36px;
}
.latest-article .inner-text .right-content .inner-div span{
    margin-bottom: 15px;
}
.latest-article .inner-text .right-content .inner-div h3{
    margin-bottom: 20px;
}

.latest-article .inner-text .right-content .inner-div a{
    font-weight: 600;
    color: #283d36;
    font-size: 20px;
}


.latest-article .inner-text .owl-carousel .owl-nav .owl-prev::after{
    position: absolute;
    content: "";
    bottom: 30%;
    left:-53%;
    background-image: url(../images/left-arrow.png);
    height: 40px;
    width: 40px;
    background-size: cover;
}
.latest-article .inner-text .owl-carousel .owl-nav .owl-next::after{
    position: absolute;
    content: "";
    bottom: 30%;
    left:  -40%;
    background-image: url(../images/arrow-right.png);
    height: 40px;
    width: 40px;
    background-size: cover;
}
.latest-article .inner-text .owl-carousel .owl-nav .owl-prev span{
    display: none;
}
.latest-article .inner-text .owl-carousel .owl-nav .owl-next span{
    display: none;
}
.latest-article2{
    position: relative;
}

.latest-article2::before{
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    background-color: var(--green);
    width: 60%;
    height: 100%;
}
.latest-article .inner-text{
    position: relative;
    z-index: 1;
}



/* new arivals====================== */
.new-arivals{
    padding: 80px 0px;
}
.new-arivals .product-grid{
    text-align: center;
    overflow: hidden;
}
.new-arivals .product-grid .product-image{
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px -7px rgba(0,0,0,0.2);
}
.new-arivals .product-grid .product-image a.image{ display: block; }
.new-arivals .product-grid .product-image img{
    width: 100%;
    height: auto;
}
.new-arivals .product-grid .product-sale-label{
    color: #fff;
    background: #283d36;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 4px 16px;
    border-radius: 20px 20px;
    position: absolute;
    top: 10px;
    left: -100px;
    transition: all 500ms ease-in-out 0s;
}
.new-arivals .product-grid:hover .product-sale-label{ left: 10px; }
.new-arivals .product-grid .product-links{
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 15px;
    right: -100px;
    transition: all 0.5s ease-in-out;
}
.new-arivals .product-grid:hover .product-links{ right: 15px; }
.new-arivals .product-grid .product-links li{
    margin: 0 0 6px;
    transition: all 0.3s ease 0s;
}
.new-arivals .product-grid .product-links li a{
    color: var(--yellow);
    background: var(--light);
    font-size: 16px;
    text-align: center;
    line-height: 36px;
    width: 38px;
    height: 38px;
    border-radius: 50px 50px;
    display: block;
    position: relative;
    box-shadow: 0 2px 6px rgb(0 0 0 / 15%);
    transition: all 0.3s;
    z-index: 1;
}
.new-arivals .product-grid .product-links li a:hover{
    color:var(--green);
    background: var(--color);
}
.new-arivals .product-grid .product-links li a i{ line-height:inherit; }
.new-arivals .product-grid .rating {
    color: var(--yellow);
    font-size: 12px;
    width: 90px;
    padding: 0;
    margin: 0;
    list-style: none;
    transform: translateX(-50%);
    position: absolute;
    bottom: 35px;
    left: 50%;
    transition: all 0.3s ease-in-out;
} 
.new-arivals .product-grid:hover .rating{
    bottom: -50px;
}
.new-arivals .product-grid .product-content{
    padding: 12px 0 0;
}
.new-arivals .product-grid .title{
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 5px;
}
.new-arivals .product-grid .title a {
    color: var(--yellow);
    transition: all 0.3s ease 0s;
    font-size: 24px;
}
.new-arivals .product-grid .title a:hover{ color: var(--color); }
.new-arivals .product-grid .price{
    color: #283d36;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
}
.new-arivals .product-grid .quantity{
    color: #283d36;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px;
}
.new-arivals .product-grid .quantity span{
    margin-right: 10px;
}
.new-arivals .product-grid .price span{
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
    margin: 0 0 0 5px;
}

/* client testimonials=============== */
.testimonial-review{
    padding: 100px 0px;
}
.testimonial-review .inner-text h2{
    text-align: center;
    margin-bottom: 50px;
}
.testimonial-review .inner-text .owl-carousel .item .client-text{
    display: flex;
    align-items: center;
}
.testimonial-review .inner-text .owl-carousel .item .client-text .left{
    width: 20%;
}
.testimonial-review .inner-text .owl-carousel .item .client-text .left img{
    max-width: 100%;
}
.testimonial-review .inner-text .owl-carousel .item .client-text .right{
    width: 80%;
    margin-left: 150px;
}
.testimonial-review .inner-text .owl-carousel .item .client-text .right p{
    margin-bottom: 50px;
}

.testimonial-review .inner-text .owl-carousel .item .client-text .right span{
    font-size: 20px;
    color: #283d36;
}
.testimonial-review .inner-text .owl-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 17%;
    display: grid;
    left: 22%;
}
  .testimonial-review .inner-text .owl-carousel .owl-dots .owl-dot{
     height: 15px;
     width: 15px;
     background-color: var(--yellow);
     margin: 20px 5px;
     border-radius: 100% 0;
  }
  .testimonial-review .inner-text .owl-carousel .owl-dots .owl-dot.active{
   background-color: var(--green);
  }

  /* video section============================ */

.video-section{
    padding: 300px 0px;
    background-image: url(../images/video-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-section .inner-text .left-content h2{
    margin-bottom: 40px;
    color: var(--green);
}

.video-section .inner-text .right-content .video-play-button {
    position: absolute;
    z-index: 10;
    top: 45%;
    right: 20%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}
  
.video-section .inner-text .right-content .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff21;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
  }
  
  .video-section .inner-text .right-content .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff7a;
    border-radius: 50%;
    transition: all 200ms;
  }
  
  .video-section .inner-text .right-content .video-play-button:hover:after {
    background-color: darken(#fa183d, 10%);
  }
  
  .video-section .inner-text .right-content .video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  
  .video-section .inner-text .right-content .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #283d364d;
      border-top: 22px solid transparent;
      border-bottom: 22px solid transparent;
  }
  
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
      opacity: 0;
    }
  }
  
  
  
  .video-section .inner-text .right-content .video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.80);
    opacity: 0;
    transition: all ease 500ms;
  }
  
  .video-section .inner-text .right-content .video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
  }
  
  .video-section .inner-text .right-content .video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
  }
  
  .video-section .inner-text .right-content .video-overlay-close:hover {
    color: #fa183d;
  }
  
  .video-section .inner-text .right-content .video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
  }

  
/* hair-type-details section============== */
.hair-type-details{
    padding: 300px 0px;
    background-image: url(../images/hair-details-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: -25px;
}

.hair-type-details .inner-text h2{
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}
.hair-type-details .inner-text ul{
    padding-left: 0;
    margin-bottom: 0;
    position: relative;
}
.hair-type-details .inner-text ul li{
    list-style: none;
}
.hair-type-details .inner-text ul li p{
    font-size: 14px;
    width: 300px;
    line-height: 26px;
}
.hair-type-details .inner-text ul li .details{
    display: flex;
    align-items: center;
    width: 350px;
    justify-content: space-between;
    position: relative;
}
.hair-type-details .inner-text ul li .details::after {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 3px;
    width: 250px;
    bottom: 33px;
}
.hair-type-details .inner-text ul li .details img{
    border-radius: 50%;
    height:140px;
    width: 140px;
}
.hair-type-details .inner-text ul li:first-child{
    position: absolute;
    left: 0;
    top: 0;
    top: -300px;
}

.hair-type-details .inner-text ul li:nth-child(2){
    position: absolute;
    right: 0;
    top: 0;
    top: -300px;
}
.hair-type-details .inner-text ul li:nth-child(3){
    position: absolute;
    left: 0;
    bottom: -200px;
    
}
.hair-type-details .inner-text ul li:last-child{
    position: absolute;
    right: 0; 
    bottom: -200px;
}


/* popup window========================= */




.open-show-popup .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Popup Content */
  .open-show-popup .popup-content {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
  }
  
  .open-show-popup .popup-content h2 {
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--green);
  }
  
  .open-show-popup .popup-content p {
    margin-bottom: 20px;
  }
  
  .open-show-popup .popup-content button {
    padding: 10px 20px;
    color: var(--yellow);
  }


/* contact-banner=================== */

 .banner-about {
    height: 500px;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center center;
    position: relative;
    text-align: center;
}
.banner-about:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(177deg, rgb(0 0 0 / 20%) 0, #00000059 50%, #000000bf);
    opacity: 0.85;
    content: "";
}

.banner-about .banner-content h6{
    z-index: 1;
    position: relative;
    color: var(--yellow);
}
.banner-about .banner-content h1{
    z-index: 1;
    position: relative;
    color: var(--light);
    margin-bottom: 20px;
}
.banner-about .banner-content p{
    z-index: 1;
    position: relative;
    font-size: 18px;
    color: var(--light);
    margin-bottom: 20px;
}

.breadcrumb-section {
    background-color: var(--yellow);
    padding: 10px 0;
}
.breadcrumb-section nav{
    float: none;
    margin-top: 0;
}
.breadcrumb-section .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
    position: relative;
    padding-right: 25px;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
    color: var(--dark);
    font-size: 16px;
}
.breadcrumb-section .breadcrumb .breadcrumb-item.active {
    font-weight: bold;
    color: var(--dark);
}
.breadcrumb-section .breadcrumb .breadcrumb-item:last-child {
    padding-right: 0;
}
.breadcrumb-section .breadcrumb .breadcrumb-item::before {
    position: absolute;
    top: -13px;
    right: -4px;
    content: "-";
    font-size: 36px;
    color: var(--dark);
}
.breadcrumb-section .breadcrumb .breadcrumb-item:last-child::before{
    display: none;
}
.about-service-section{
    padding: 60px 0px
}
.about-service-section .inner-text .left-content h3{
   margin-bottom: 10px;
   font-size: 36px;
}
.about-service-section .inner-text:hover figure:before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 900ms ease-in;
}
.about-service-section .inner-text figure:before {
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
    background: #efefef;
    opacity: 0.2;
}
.img-text-layout figure:before {
    bottom: 0;
 
}
.about-service-section .inner-text:hover figure {
    transform: translateY(-15px);
    filter: grayscale(1);
}
.about-service-section .inner-text:hover figure img{
    border-radius: 20px;
}
.about-service-section .inner-text figure {
    transition: all 0.4s ease 0s;
    overflow: hidden;
    position: relative;
    margin: 0;
}

/* contact us page==================== */

.contact-form {
    padding: 60px 0px;
}

.contact-form .inner-text .content-left h3{
    margin-bottom: 20px;
}
.contact-form .inner-text .content-left ul{
    padding-left: 0;
    margin-bottom: 0;
}
.contact-form .inner-text .content-left ul li{
    list-style: none;
    display: flex;
    padding: 25px 0px;
    border-bottom: 1px dashed var(--green);
}
.contact-form .inner-text .content-left ul li:last-child{
    border-bottom: none;
}
.contact-form .inner-text .content-left ul li .left img{
    width: 30px;
}
.contact-form .inner-text .content-left ul li .right p{
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 0;
}
.contact-form .inner-text .content-left .order-track{
    background-color:#283d362e;
    text-align: center;
    padding: 40px;
}

.contact-form .inner-text .contact-location .maps iframe{
    width: 100%;
    height: 400px;
    background-color: #d8dcdb;
    padding: 40px;
}













.contact-form .inner-text .content-left ul li .right p strong{
    font-weight: 600;
}

.contact-form .inner-text form p{
    font-size: 16px;
}
.contact-form .inner-text form .input-group {
    margin-bottom: 15px;
}
.contact-form .inner-text form .input-group .form-control{
    padding: 10px;
    border-radius: 0; 
}
.contact-form .inner-text form .input-group textarea{
    height: 150px;
}
.contact-form .inner-text form .input-group .form-control:focus{
    border-color: var(--green);
    box-shadow:none;
}
.contact-form .inner-text form ul.concern{
    
    padding-bottom: 0;
    display: flex;
    align-items: center;
    margin: 20px 0px;
}
.contact-form .inner-text form ul.concern li{
    list-style: none;
    margin-right: 20px;
}
.contact-form .inner-text form ul.concern li span{
    padding: 5px 10px;
    color: var(--dark);
    border-radius: 5px;
    cursor: pointer;
}
.contact-form .inner-text form ul.concern li span:hover{
    background-color: #ccc;
}



/* shop page============================= */

.shop{
    padding: 60px 0px;
}
.shop .inner-text h2{
    text-align: center;
    margin-bottom: 40px;
}
.shop .inner-text  .product-grid{
    font-family: "Outfit", sans-serif;
    text-align: center;
}
.shop .inner-text .product-grid .product-image{
    overflow: hidden;
    position: relative;
}
.shop .inner-text .product-grid .product-image a.image{ display: block; }
.shop .inner-text .product-grid .product-image img{
    width: 100%;
    height: auto;
}
.shop .inner-text .product-grid .product-image .pic-2{
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}
.shop .inner-text .product-grid:hover .product-image .pic-2{ opacity: 1; }
.shop .inner-text .product-grid .product-sale-label{
    color: var(--white);
    background: var(--color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px 20px;
    position: absolute;
    top: 10px;
    left: 15px;
    transition: all 500ms ease-in-out 0s;
}
.shop .inner-text .product-grid .product-links{
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}
.shop .inner-text .product-grid .product-links li{
    transform: translateY(30px);
    opacity: 0;
    margin: 0 0 10px;
    transition: all .5s ease;
}
.shop .inner-text .product-grid .product-links li:nth-child(2){ transition-delay: .1s; }
.shop .inner-text .product-grid .product-links li:last-child{ 
    transition-delay: .2s; 
    margin: 0;
}
.shop .inner-text .product-grid:hover .product-links li{
    opacity: 1; 
    transform: translateY(0); 
}
.shop .inner-text .product-grid .icon{
    background: var(--white);
    display: inline-block;
    padding: 8px 10px;
    border-radius: 25px 0 0 0;
    position: absolute;
    bottom: -60px;
    right: 0;
    transition: all 0.3s ease-in-out;
}
.shop .inner-text .product-grid:hover .icon{ bottom: 0; }
.shop .inner-text .product-grid .product-links li a,
.shop .inner-text .product-grid .icon a{
    color: var(--yellow);
    background: var(--white);
    font-size: 16px;
    text-align: center;
    line-height: 37px;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: block;
    position: relative;
    transition: all 0.3s ease 0s;
}
.shop .inner-text .product-grid .product-links li a:hover,
.shop .inner-text .product-grid .icon a:hover{
    color: var(--white);
    background: var(--color);
}
.shop .inner-text .product-grid .icon a{ 
    color:var(--white);
    background: var(--yellow);
}
.shop .inner-text .product-grid .product-links li a i,
.shop .inner-text .product-grid .icon a i{
  line-height:inherit;  
}
.shop .inner-text .product-grid .product-content{
    text-align: left;
    padding: 12px 0 0;
}
.shop .inner-text .product-grid .title{
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 8px;
}
.shop .inner-text .product-grid .title a{
    color: #222;
    transition: all 0.3s ease 0s;
}
.shop .inner-text .product-grid .title a:hover{ color:var(--color); }
.shop .inner-text .product-grid .price{
    color: rgba(24,24,24,0.8);
    font-size: 15px;
    font-weight: 600;
}

/* about us===================== */
 .about-us{
    padding: 60px 0px;
 }