@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* Reset CSS */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

html:focus-within {
    scroll-behavior: smooth;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture,
svg,
video,
canvas {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

}

html {
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.6rem;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}


/* Common CSS */

.container {
    max-width: 1560px;
}

.cmn_pdding {
    padding: 100px 0;
}

.main-btn {
    display: inline-flex;
    justify-content: start;
    align-items: start;
    padding: 13px 50px;
    font-size: 14px;
    color: #fff;
    border-radius: 31px;
    background-color: #29282d;
    border: 2px solid #29282d;
    transition: 0.5s all;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-btn:hover {
    background-color: #3cafff00;
    color: #d36736;
    border-color: #d36736;
}

.row {
    row-gap: 40px;
}

.hdng h2 {
  font-size: 5rem;
    color: #ffffff;
    font-weight: 800;
}

/* Main CSS */

header {
    padding: 10px 0;
    position: relative;
    z-index: 990;
}

header .nav-container .logo {
    display: inline-block;
    max-width: 190px;
}

header .navbar-nav {
     gap: 50px;
}

header .nav-container .nav-link {
    font-weight: 600;
    color: #333;
    transition: 0.5s all;
}

header .nav-container .nav-link:hover {
       color: #d36736;
}

/* Banner Sec */

.bnr-sec {
       display: flex;
       justify-content: start;
       align-items: start;
       position: relative;
       padding: 60px 0 20px 0;
       background: #ffebe2;
       height: 100vh;
       background-position: center;
       background-size: cover;
       margin-top: -100px;
}
.bann-img-1{
         position: absolute;
         right: 23%;
         bottom: 0%;
         z-index: 1;
         width: 20%;
         animation: UpDown 2.5s linear infinite;
}

@keyframes UpDown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 1em;
  }
  100% {
    bottom: 0;
  }
}
.bann-img-2{
         position: absolute;
         right: 4%;
         bottom: 0;
         z-index: 9;
         width: 22%;
}

.bnr-sec .hdng h4 {
    color: #d36736;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: transparent;
    display: inline;
    /* padding: 10px 25px; */
    border-radius: 50px;
    letter-spacing: 1px;
    /* margin-top: 72px !important; */!i;!;
}

.bnr-sec .hdng h1 {
    font-size: 6rem;
    color: #29282d;
    margin-bottom: 20px;
    font-weight: 800;
    margin: 20px 0;
    text-align: left;
}

.bnr-sec .hdng p {
       line-height: 2;
       width: 80%;
       margin: 0;
}
.bnr-btn{
    text-align: center;
}

/* Service Sec */

.srvc-sec {
     position: relative;
     isolation: isolate;
     background: #d36736;
}
.shap1{
   position: absolute;
   left: 50%;
   top: 50%;
   z-index: -1;
   transform: translate(-50%, -50%);
   animation: UpDown2 3s linear infinite;
}


.srvc-sec .row {
    row-gap: 15px;
}

.srvc-otr {
 position: relative;
 padding: 100px 25px 25px 25px;
 border-radius: 20px;
 transition: all 0.5s ease;
 margin: 10px;
 background: rgba(255,255,255,0.2);
 min-height: 322px;
}
.srvc-otr:hover, .srvc-ort-act{
   background: #e68a60;
}
.srvc-otr::after {
  
}

.srvc-otr:hover::after {
    rotate: 2deg;
}

.srvc-cntnt h4 {
     font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.srvc-cntnt p {
      font-size: 15px;
    color: #ffffff;
    line-height: 2;
}

.icon-bx {
    width: 70px;
    height: 70px;
    margin: 20px auto;
    /* border-radius: 50%; */
    background: #b15226;
    position: absolute;
    top: 0;
    border-radius: 020px;
    padding: 20px;
    transition: .4s ease;
    right: 0;
    left: 0;
}
.srvc-otr:hover .icon-bx {
    width: 110px;
    height: 70px;
    margin: 20px auto;
    /* border-radius: 50%; */
    background: #b15226;
    position: absolute;
    top: -20px;
    left: 0;
    border-radius: 21px 0 0;
    padding: 20px;
    transition: .4s ease;
    right: inherit;
}

.icon-bx img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.srvc-sec .hdng {
    margin-bottom: 50px;
}

/* Social Media Sec */

.scl-mdia-cntnt {
      padding: 0 50px;
    color: #191919;
}

.scl-mdia-cntnt h4 {
     font-size: 5rem;
    margin-bottom: 10px;
    font-weight: 800;
    color: #29282d;
    margin-top: 50px;
}

.scl-mdia-cntnt p {
    line-height: 2;
}

.scl-mdia-sec .img-bx img {
    border-radius: 10px;
}

.scl-mdia-sec .img-bx img {
    width: 100%;
}

.scl-mdia-cntnt p {
    font-size: 15px;
    color: #0008;
    margin-bottom: 10px;

}

.scl-mdia-sec .img-bx {
    position: relative;
}

.scl-mdia-abslt-bx-otr {
    padding: 20px;
    background-color: #2924ac;
    border-radius: 10px;
    max-width: 350px;
    color: #fff;
    position: absolute;
    bottom: -15px;
    left: -15px;
}

.scl-mdia-abslt-bx-otr h4 {
    font-size: 4rem;
    font-weight: 800;
}

.scl-mdia-abslt-bx-otr p {
    font-size: 13px;
}

.scl-mdia-abslt-bx-otr .scl-mdia-bx {
    padding: 10px;
    display: flex;
    gap: 15px;
}

.scl-mdia-abslt-bx-otr .scl-mdia-bx:first-child {
    border-bottom: 1px solid #ffffff70;
}

/* Choose Us Sec */

.chs-us-sec {
     background: #e68a60;
    background-size: cover;
    background-position: center;

}

.chs-us-sec .chs-us-cntnt {
    color: #ffffffd3;
    max-width: 700px;
    margin: auto;
}

.chs-us-sec .hdng.chs-us-cntnt h2 {
      color: #29282d;
    margin-bottom: 2rem;
}

.chs-us-sec .hdng.chs-us-cntnt p {
     margin: 3rem 0;
    color: #000;
}

/* Presence Sec */

.prsnc-sec {
    position: relative;
    isolation: isolate;
}

.prsnc-sec::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background-color: #e6e5f5;
    z-index: -1;
}


.prsnc-sec h2 {
    margin-bottom: 2rem;
}

.prsnc-sec img {
    margin: auto;
}

.prsnc-sec .row {
    justify-content: space-between;
}


.prsnt-cntnt-inr .icn-bx {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    padding: 10px;
    background-color: #d36736;
    border-radius: 50%;
    /* box-shadow: -6px 0px 0px #290b51; */
    border: 6px solid #fff;
    position: absolute;
    top: 46%;
    left: 1%;
    transform: translateY(-50%);
}

.prsnc-cntnt {
    margin-top: 6rem;
    text-align: center;
}

.prsnc-cntnt h4 {
 font-size: 2.6rem;
    margin-bottom: 2rem;
    color: #29282d;
    font-weight: 700;
}

.prsnc-cntnt P {
    font-size: 15px;
    color: #191919;
    line-height: 2;
}

.prsnt-cntnt-inr {
    min-height: 290px;
    border-radius: 30px;
    border-bottom: 5px solid transparent;
    transition: all 0.5s ease;
    background-color: #fff;
    display: flex;
    text-align: left;
    align-content: center;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        overflow: hidden;
        margin: 10px;
}

.prsnt-cntnt-inr:hover {
      background: #d3673669;
}

/* Product Sec */

.prduct-bx {
    border-radius: 20px;
    position: relative;
    padding: 40px;
    margin: 10px;
    border: 2px dashed #d36736;

}

.prdct-cntnt-otr {
        min-height: 400px;
    margin-top: 20px;
}

.pr-nmbrng {
    width: 80px;
    height: 80px;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d36736;
    border: 5px solid #fff;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 2rem;
    /* box-shadow: -5px -5px #2b2a5c; */
}

.pr-nm {
    margin-bottom: 2rem;
}

.pr-nm {
 font-size: 2rem;
    color: #191919;
    margin-bottom: 1rem;
    text-transform: capitalize;
    font-weight: 700;
}

.pr-nm a{
    color: #191919;
    display: inline-block;
    text-decoration: underline;
    transition: 0.5s all;
}

.pr-nm a:hover{
    color: #3cafff;
}

.prdct_prdct-cntnt {
    max-width: 550px;
    margin-inline: auto;
    box-shadow: 0 0 10px #0002;
    border-radius: 10px;
    position: relative;
    isolation: isolate;
}

.prdct_prdct-cntnt::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset: 0;
    background: url(../images/des-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: 0.5s all;
}

.prdct_prdct-cntnt:hover::after{
    opacity: 0.5;
}

.prdct_prdct-cntnt h2{
    padding: 15px;
    background-color: #3f3bb2;
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prdct_prdct-cntnt h3{
    font-size: 2.5rem;
    margin-top: 2rem;
    color: #3cafff;
    font-weight: 700;
}

.prdct_prdct-cntnt .des{
    padding: 20px;
}

.prdct_prdct-cntnt .des p{
    font-weight: 700;
    margin: 10px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.prdct_prdct-cntnt .des span{
    width: 20px;
    display: block;
}


.prdct-otr {
    margin-top: 6rem;
}

.pr-prc span {
        font-size: 3rem;
    color: #7a3b1f;
    font-weight: 800;

}

.prdct-cntnt span{
    display: block;
    width: 20px;
}


/* Footer */

footer {
    background: #fff4ef;
    background-position: center;
    background-size: cover;
    overflow-x: hidden;
}

footer .lgo {
    max-width: 190px;
    display: block;
}

.footer-content h4 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.footer-content a {
    color: #191919;
    display: inline-block;
    margin: 5px 0;
    font-size: 16px;
    transition: 0.5s all;
}

.footer-content a:hover {
       color: #6c43a4;
}

.footer-content h3 {
    font-size: 16px;
    margin: 5px 0;
    line-height: 1.8;
}

.footer-bottom {
    padding: 15px 0;
    border-top: 2px solid #f8d8ca;
}

/* Common Banner Page */

.bnr-cmn-sec {
    position: relative;
    z-index: 1;
    background-color: #0003;
}

.bnr-cmn-sec::after {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
    opacity: 0.2;
    background: url(../images/banner.png);
    background-size: cover;
    background-position: center;
}

/* Product Page */

.product-sec{
    position: relative;
    isolation: isolate;
    background: url(../images/inner-bann.jpg)no-repeat;
    background-position: center;
    background-size: cover;
    height: 340px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}



.product-otr .img-bx img{
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
}

.prdct-cntnt{
    display: flex;
    gap: 10px;
    align-items: center;
}

.prdct-cntnt p{
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px 0;
}

.cart-table table{
    width: 100%;
}

.cart-table th{
    padding: 10px;
    border-bottom: 1px solid #0003;
}

.cart-bottom-total{
    margin-top: 5rem;
    text-align: right;
}

.cart-bottom-total .main-btn{
    width: fit-content;
    margin-left: auto;
    margin-top: 3rem;
}

.totals__total{
    font-size: 2rem;
    margin-bottom: 1rem;
}

.totals__total-value{
    font-size: 2.2rem;
    font-weight: 700;
}

.crt-itm-prc{
    position: relative;
    padding-right: 40px;
}

.del-bx{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 15px;
    cursor: pointer;
}
.cart-table td{
    padding: 10px;
    border-bottom: 1px solid #0003;
}

.cart-item__details p,.crt-itm-prc p{
    font-size: 2rem;
    font-weight: 700;
}

.cart-table th:last-child{
    padding-right: 40px;
}

/* Checkout Section */

.checkout-payment{
    padding-inline: 30px;
}

.step-title{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 1px solid #000;
}

#new-checkout-address{
    padding: 10px 0;
}

.checkout-sec .form-control{
    padding: 10px;
    border: 2px solid #0005;
    font-size: 1.6rem;
    color: #000;
    appearance: auto;
}

.checkout-sec .form-control::placeholder{
    color: #000;
}

.checkout-sec .form-control:focus{
    border: 2px solid #000;
    box-shadow: none;
}

.checkout-sec .form-group{
    margin: 10px 0;
}

.checkout-sec .form-group label{
    font-size: 2rem;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.product-col,.price-col{
    padding: 10px!important;
    border: 1px solid #0004;
}

.crt-btn{
    font-size: 1.9rem;
    display: inline-block;
    margin-bottom: 2rem;
}

#order-cart-section{
    margin-bottom: 2rem;
}

.shippinAddress label{
    margin:10px 0;
}

.question1{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.question1 span{
    display: inline-block;
    padding-left: 5px;
}

.custom-checkbox{
    display: flex;
    align-items: start;
    gap: 10px;
}

.custom-checkbox input{
    margin-top: 5px;
}

.error_handler_body_content p{
    padding-left: 10px;
    font-size: 2rem;
    color: rgb(185, 34, 34);
}

/* Terms */

.terms_sec h2{
    font-size: 2.5rem;
    margin: 10px 0;
    font-weight: 700;
}

.terms_sec h4{
    font-size: 2rem;
    margin: 10px 0;
    font-weight: 700;
}

.terms_sec p{
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    margin: 10px 0;
}

.prdct-bx p{
    padding: 10px;
    border: 1px solid #0003;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Privacy */

.privacy-sec h2{
    font-size: 2.5rem;
    margin: 10px 0;
    font-weight: 700;
}

.privacy-sec strong{
    font-size: 2rem;
    display: block;
    margin: 10px 0;
    font-weight: 700;
}

.privacy-sec p{
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    margin: 10px 0;
}

/* Contact Us */

.contact-page{
       padding: 20px;
    border-left: 10px solid #290b51;
}

.contact-sec img{
    border-radius: 10px;
}

.contact-sec .item{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-sec .item:last-child{
    margin-bottom: 0;

}

.contact-sec .icon{
    width: 62px;
    height: 62px;
    background: #e797ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #290b51;
    font-size: 20px;
}

.chy-heading{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-page p{
    line-height: 2;
    color: #333;
}

.contact-page p a{
    color: #333;
    text-decoration: underline;
    transition: 0.5s all;
}

.contact-page p a:hover{
    color: #3cafff;
}

.ordr-btn .main-btn{
   border-radius: 50px;
}

.privacy-sec .row{
    row-gap: 0;
}

/* Cookie Design */

 #cookiePopup {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #200741;
        padding: 15px;
        /* display: flex; */
        flex-wrap: wrap;
        z-index: 999999;
        gap: 20px;
        align-items: center;
        justify-content: center;
        text-align: center;
        display: none;
    }

    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }

    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }

    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }

    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }

    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
        padding: 10px 20px;
        border-radius: 10px;
            background: #200741;
        cursor: pointer;
        transition: all 0.5s ease;
        border: 2px solid #fff;
    }

    .cookieBtns button:last-child {
        background-color: #fff;
        color: #2924ac;
    }
  
  .scl-mdia-sec{
      position: relative;
  }
  .shap2 {
        position: absolute;
        right: 0;
        bottom: 0%;
        z-index: -1;
        opacity: 0.15;
        width: 330px;
        animation: UpDown 4s linear infinite;
}
.prsnc-tx {
    padding: 30px;
    width: 50%;
}
.prsnc-main-img {
 border-radius: 100px 0 0 100px;
    overflow: hidden;
    margin: 30px 0 30px 60px;
    outline: 2px dashed #d36736;
    outline-offset: 12px;
}
.prsnc-img {
    position: relative;
}
.prod-top-cont{
       background: #e68a60;
    margin: -15px;
    padding: 15px;
    border-radius: 20px;

}
.prduct-sec .hdng h2 {
    color: #29282d;
}
.ftr-lgo p{
    width: 80%;
    margin: 20px 0;
}
.contact-sec .hdng h2 {
    color: #000;

}

.hdng.text-left{
    margin-top: 70px;
    position: relative;
    z-index: 2;
}
.bnr-btn {
    text-align: left;
}
.bnr-sec .hdng h1 span {
    color: #d36736;
}

#img3
{
    display: none;
}
#img5
{
    display: none;
}
.bnr-sec .hdng p span{
    color: #d36736;
    font-weight: bold;
}
.bann-img-2 img
{
    position: relative;
    z-index: 2
}
.bnr-sec::after
{
    content: "";
    position: absolute;
    width: 125px;
    bottom: 0;
    right: 3%;
    z-index: 1;
    background: url(../images/left_icon1.png) no-repeat;
    height: 183px;
    background-size: contain;
     animation-name: destraSinistra2;
  animation-duration: 6s; 
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate-reverse 
}
@keyframes destraSinistra2 {
  0% {
    right: 0%;
  }
  50% {
    right:7%;
    bottom: 0;
    
  }

  100% {
    bottom:5%;
    right: 10%;
  }
}
.bnr-sec::before
{
    content: "";
    position: absolute;
    width: 125px;
    top: 10%;
    left: 3%;
    z-index: 1;
    background: url(../images/left_icon2.png) no-repeat;
    height: 183px;
    background-size: contain;
    animation-name: destraSinistra;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate-reverse
}
@keyframes destraSinistra {
  0% {
    left: 3%;
    top: 21%;
  }
  50% {
    left: 6%;
    top: 24%;
  }

  100% {
    top: 30%;
    left: 1%;
  }
}

.img-bx.shwdivc::after
{
    content: "";
    position: absolute;
    width: 125px;
    bottom: 0;
    right: 3%;
    z-index: 1;
    background: url(../images/left_icon3.png) no-repeat;
    height: 183px;
    background-size: contain;
     animation-name: destraSinistra3;
  animation-duration: 6s; 
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate-reverse 
}
@keyframes destraSinistra3 {
  0% {
    right: 0%;
  }
   50% {
    right:-2%;
    
  }

  100% {
    bottom:1%;
    right: 2%;
  }
}


.img-bx.shwdivc::before
{
    content: "";
    position: absolute;
    width: 125px;
    top: 10%;
    left: 3%;
    z-index: 1;
    background: url(../images/left_icon4.png) no-repeat;
    height: 183px;
    background-size: contain;
      animation-name: destraSinistra4;
  animation-duration: 5s; 
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate-reverse 
}
@keyframes destraSinistra4 {
  0% {
    left: 2%;
  }
  50% {
    left:-4%;
    
  }

  100% {
    top:7%;
    left: 6%;
  }
}


@keyframes UpDown2 {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 4em;
  }
  100% {
    bottom: 0;
  }
}