@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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');
:root{
    --w-column: 200px;
}

/* back to top */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-image: var(--main-bg);
    color: var(--white-color);
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
  }
  
  #myBtn:hover {
    background: transparent;
    border: 1px solid var(--white-color);
  }

/* video banner */


/* section video banner */
section.video-banner{
    height: 100vh;
    padding: 0;
    position: relative;
}
section.video-banner .video-cont{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.44);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
section.video-banner .video-cont     .text-blob {
    font-size: 100px;
    font-family: "Dancing Script", cursive;
    color: #fff;
    text-shadow: 0 0 5px var(--black-color);
    margin-top: 110px;
}

.video-cont p {
 margin: auto;
 color: var(--lt-color);
 text-transform: capitalize;
 font-size: var(--f36);
 font-family: "Dancing Script", cursive;
 font-weight: 700;
 text-shadow: 0 0 5px var(--black-color);
 /* margin-bottom: 160px; */
}

section.video-banner .video-cont .container{
    position: relative;
    z-index: 2;
}
section.video-banner video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.scroll .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
  
    }
    
    .scroll .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
    }
    
    .scroll .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
    }
    
    .scroll .chevron:before,
    .scroll .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--white-color);
    }
    
    .scroll .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
    }
    
    .scroll .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
    }
    
    @keyframes move {
    25% {
     opacity: 1;
    
    }
    33% {
     opacity: 1;
     transform: translateY(30px);
    }
    67% {
     opacity: 1;
     transform: translateY(40px);
    }
    100% {
     opacity: 0;
     transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
    }

    .scroll .text {
        display: block;
        margin-top: 75px;
        margin-left: -30px;
        font-family: var(--primary-font);
        font-size: var(--f12);
        color: var(--white-color);
        text-transform: uppercase;
        white-space: nowrap;
        opacity: .25;
        animation: pulse 2s linear alternate infinite;
        }
        
        @keyframes pulse {
        to {
         opacity: 1;
        }
        }
        .video-cont .scroll{
            position: absolute;
            bottom: 10px;
            /* display: none; */
            width: 100%;
            display: flex;
            justify-content: center;
        }

  /* our story */
section.about-us .scrolling-text{
    margin: 0;
    padding: 0;
    /* height: 100vw; */
    /* overflow-x: hidden; */
  }
 section.about-us .left-animation{
    margin: 0;
    padding: 0;
    position: relative;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    white-space: nowrap;
    font-size: 145px;
    /* left: 100vw; */
    width: 40%;
    text-align: right;
    color: var(--heading-color);
    font-weight: 500;
}
  section.about-us .right-animation{
    margin: 0;
    padding: 0;
    position: relative;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    white-space: nowrap;
    font-size: 145px;
    right: 100vw;
    text-align: right;
    width: 40%;
    color: var(--heading-color);
    font-weight: 500;
  }
  section.about-us .para{
    width: 100%;
    display: flex;
    justify-content: center;
}
  section.about-us .para p{
    color: var(--white-color);
    font-size: var(--f35);
    line-height: 4rem;
    width: 55%;
    font-family: var(--primary-font);
    text-align: center;
  }
  section.about-us .container{
    position: relative;
  }
  section.about-us{
    background: url('../images/aadivox1.jpeg.jpg');
    background-attachment: fixed;
    /* height: 520px; */
    position: relative;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
  }
  section.about-us:before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: radial-gradient(#000000, #320065);
    background-image: linear-gradient(to right, #1d052f, #32006518);
    top: 0;
    left: 0;
    opacity: 1;
  }

  section.about-us .hovicon {
    display: inline-block;
    font-size: var(--f24);
    line-height: 1.7rem;
    cursor: pointer;
    margin: 20px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    text-decoration: none;
    z-index: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.about-us .hovicon.small {
    font-size: 20px;
    line-height:45px;
    width:45px;
    height:45px;
    margin:7px;
}
section.about-us .hovicon.mini {
    font-size: 15px;
    line-height:32px;
    width:30px;
    height:30px;
    margin:7px;
}
section.about-us .hovicon.auto-width {
    width: auto;
    height: auto;
    padding: 15px;
}
section.about-us .hovicon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content:'';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
section.about-us .hovicon:before {
    font-size: 48px;
    line-height: 90px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
}
section.about-us .hovicon.effect-8 {
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
    -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
    transition: transform ease-out 0.1s, background 0.2s;
}
section.about-us .hovicon.effect-8:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    opacity: 0.2;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    background: #ffe3f6;
}
section.about-us .hovicon.effect-8:hover {
    background: rgba(255, 255, 255, 0.05);
    -webkit-transform: scale(0.93);
    -moz-transform: scale(0.93);
    -ms-transform: scale(0.93);
    transform: scale(0.93);
    color: #fff;
}
section.about-us .hovicon.effect-8:hover i {
    color: #fff;
}
section.about-us .hovicon.effect-8:hover:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    -moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}
@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e99964, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e99964, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}
@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e99964, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e99964, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e99964, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e99964, 0 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
section.about-us .btn-sec{
 text-align: center;   
 position: absolute;
 width: 100%;
 bottom: -50px;
}
section.about-us .btn-sec a{
    display: flex;
    justify-content: center;
}


/* collection section css */

section.collections{
    background-image: var(--main-bg);
     /* height: 100vh;  */
     padding-top: 0;
}
section.collections .head h2{
    text-align: center;
    font-size: 170px;
    font-weight: 500;
    top: 180px;
    position: relative;
}
section.collections .head{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;  
}
section.collections .head img{
 width: 131px;
 height: 500px;   
 position: relative;
}
section.collections p{
    color: var(--white-color);
    font-size: var(--f35);
    line-height: 4rem;
    font-family: var(--primary-font);
    text-align: center;
}

.cover {
    width: 100%;
    height: 100%;
    background: black;
    position: absolute;
    top: 0;
    left: 0;
  }
  
/* our work process */
section.about-sec{
    background-image: var(--main-bg);
    padding: 0;
    /* background: url(https://i.pinimg.com/originals/ef/e4/91/efe4911c1514bd6da486c87cab240f60.gif);     */
    position: relative;
    background-size: cover;
    background-position: bottom;
}
section.about-sec::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #0a061c82;
}

section.about-sec .img {
    display: none;
    width: 100%;
  }
  section.about-sec #image1{
    display: block;
  }
  section.about-sec{
    color: white;
  }
  
  .list-item:hover+.img-container>.img {
    display: block;
  }
  section.about-sec .about-cont li.list-item::before{
  
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    right: 0;
    top: -10px;
    background: white;
    transition: .5s ease-in-out;
  }
  section.about-sec .about-cont li.list-item:hover::before{
    width: 100%;
  }
  section.about-sec .about-cont li.list-item{
    position: relative;
  }
  
  section.about-sec .about-cont ul {
    list-style: none;
    line-height: 15px;
  }
  
  section.about-sec .about-cont{
    padding: 40px 22px;
  }
  section.about-sec .container-fluid, .col-7, .col-5{
    padding: 0;
  }
  section.about-sec .container-fluid{
    position: relative;
    z-index: 3;
  }
  section.about-sec .about-cont ul h2.list-item {
    position: relative;
    text-align: end;
    font-size: 27px;
    font-family: var(--primary-font);
    letter-spacing: 1px;
    font-weight: 400;
    background-image: radial-gradient(#d898ff, #8a8595);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  section.about-sec .about-cont li.list-item p{
    color: var(--white-color);
    opacity: .67;

}

/* testimonials section */


/* ====================================================================
		Testimonial Section
==================================================================== */


.large-container {
    position: static;
    max-width: 1580px;
    padding: 0px 30px;
    margin: 0 auto;
  }
  
  .testimonial-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 230px;
    background-image: var(--main-bg);
    overflow: hidden;
    &:before {
      position: absolute;
      left: -200px;
      top: 22%;
      background-image: url(../images/ring.png);
      background-repeat: no-repeat;
      background-position: center;
      width: 701px;
      height: 756px;
      background-size: cover;
      content: "";
      -webkit-animation: fa-spin 25s infinite alternate;
      -moz-animation: fa-spin 25s infinite alternate;
      -ms-animation: fa-spin 25s infinite alternate;
      -o-animation: fa-spin 25s infinite alternate;
      animation: fa-spin 25s infinite alternate;
    }
    .sec-title {
      position: relative;
      margin-bottom: 115px;
      .title {
        margin-bottom: 20px;
      }
    }
    .testimonial-carousel {
      position: relative;
      max-width: 1100px;
      margin: 0 -50px;
    }
  }
  
  .testimonial-block {
    position: relative;
    padding: 50px;
    .inner-box {
      padding: 80px 105px;
      background-color: #d6821e1c;
      box-shadow: 0px 0px 3px rgba(226, 222, 232, 0.75);
    }
    .text {
      position: relative;
      display: block;
      font-size: 18px;
      line-height: 32px;
      color: var(--white-color);
      font-weight: 400;
      margin-bottom: 50px;
      font-family: var(--primary-font);
      letter-spacing: 1px;
    }
    .info-box {
      position: relative;
      padding-left: 115px;
      padding-top: 10px;
      .thumb {
        position: absolute;
        left: 0;
        top: 0;
        height: 82px;
        width: 82px;
        img {
          border: 6px solid #e5e6fa;
          border-radius: 50%;
          overflow: hidden;
          display: block;
          width: 100%;
          box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
        }
      }
      .name {
        position: relative;
        display: block;
        font-size: 21px;
        line-height: 1.2em;
        color: var(--white-color);
        font-weight: 700;
        margin-bottom: 10px;
        font-family: "Niramit", sans-serif;
      }
      .designation {
        position: relative;
        display: block;
        font-size: 16px;
        line-height: 24px;
        color: #b67547;
        font-weight: 400;
        font-family: "Muli", sans-serif;
      }
    }
  }
  
  .testimonial-carousel {
    .owl-nav {
      position: absolute;
      right: 75px;
      bottom: 70px;
      display: flex;
      gap: 15px;
    }
    .owl-next, .owl-prev {
      position: relative;
      display: inline-block;
      height: 75px;
      width: 75px;
      line-height: 75px;
      text-align: center;
      border-radius: 50%;
      background-color: #ffffff;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      border: none;
    }
    .owl-next:hover, .owl-prev:hover {
      background-color: var(--main-bg);
      box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
    }
  }
  
  .arrow-right, .arrow-left {
    position: relative;
    display: inline-block;
    height: 9px;
    width: 43px;
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .arrow-right {
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
  }
  
  .testimonial-section .thumb-layer {
    position: absolute;
    right: 30px;
    top: 120px;
    .image {
      position: relative;
      margin-right: 0;
      img {
        display: inline-block;
        max-width: 100%;
        height: auto;
        width: 545px;
        height: 800px;
        object-fit: cover;
      }
    }
  }
  
  @media only screen and (max-width: 767px) {
    .testimonial-section .sec-title {
      margin-bottom: 50px;
    }
    .testimonial-block {
      padding: 0;
      .inner-box {
        box-shadow: none;
        border: 2px solid #f1f1f1;
      }
    }
    .testimonial-carousel {
      .owl-nav {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        text-align: center;
      }
      .owl-next, .owl-prev {
        border: 2px solid #f1f1f1;
      }
    }
  }
  
  @media only screen and (max-width: 1366px) {
    .large-container {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  .testimonial-section .head h2{
    text-align: left;
    font-size: var(--f80);
  }
  
  .testimonial-section .head p{
    text-align: left;
    font-size: var(--f30);
    left: 80px;
    bottom: 43px;
  }
   section.banner3{
    background: url('../images/discount.jpg');
    /* background: url('https://static.vecteezy.com/system/resources/previews/001/631/794/non_2x/red-arrow-gift-voucher-discount-coupon-banner-free-vector.jpg'); */
    height: 500px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: none;
    background-repeat: no-repeat;
}
section.bannerincense{
    background: url(../images/1520X600\ Insen\ a.jpg);
    /* background: url(https://forestfragrance.com/wp-content/uploads/2021/04/Floral-wood_1400X600.jpg); */
    background-attachment: fixed;
    height: 85vh; 
    background-size: cover;
}
section.bannerincense .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
    height: 100%;
}
section.bannerincense .container p{
    color: var(--white-color);
    font-size: var(--f18);
}

        
.about-numbers{
    background: url(../images/body-bg.webp);
    padding: 40px 0;
}
.about-numbers img{
    width: 65px !important;
}
.about-numbers .simple{
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 60px;
    color: #c389ff;
}
.about-numbers .transparent{
    font-size: 46px;
    font-weight: 600;
    margin-right: 60px;
    -webkit-text-stroke: 0.8px #fff;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}
.about-numbers .img{
    display: flex;
    gap: 20px;
    align-items: center;
}
           
/* on load pop modal */

.instructions {
    text-align:center;
    font-size:20px;
    margin: 15vh;
  }  
  
  /* //////////////////////////////////////////////////////////////////////////////////////////////
      //   Default Modal Styles   //
  ////////////////////////////////////////////////////////////////////////////////////////////// */
  /*   This is the background overlay   */
  .backgroundOverlay {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      height: 100%;
      width: 100%;
      margin: 0;
      padding: 0;
      background: #000000;
      opacity: .85;
      filter: alpha(opacity=85);
      -moz-opacity: .85;
      z-index: 101;
      display: none;
  }
  /*   This is the Popup Window   */
  .delayedPopupWindow {
      display: none;
      position: fixed;
      width: auto;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: transparent;
      z-index: 102;
  }
  .delayedPopupWindow .signup-box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    
  }
  .delayedPopupWindow .signup-box .main-box{
    display: flex;
    background: var(--white-color);
    position: relative;
    z-index: 104;
    max-height: 520px;
  }
  .delayedPopupWindow .signup-box .main-box h6{
    margin-bottom: 0;
    font-family: var(--primary-font);
  }
  .delayedPopupWindow img{
    max-height: 520px;
    height: 100%;
    object-fit: cover;
    width: 55%;
  }
  .delayedPopupWindow .signup-box .signup-form {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.delayedPopupWindow .signup-box .signup-form h2{
    font-size: 60px;
    background-image: var(--main-bg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--primary-font);
    font-weight: 100;
}
.delayedPopupWindow .signup-box .signup-form p{
    font-size: var(--f16);
}
.delayedPopupWindow .signup-box .signup-form p{
    margin-top: var(--m25);
}
.delayedPopupWindow .signup-box .signup-form span{
    font-size: var(--f14);
    color: #4a4a4a;
}
.delayedPopupWindow .signup-box .signup-form span a{
    color: var(--btn-color);
    font-family: 'Poppins';
}
.delayedPopupWindow .signup-box .signup-form form{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}
.delayedPopupWindow .signup-box .signup-form form input{
    width: 100%;
    padding: var(--p15);
}
.delayedPopupWindow .signup-box .signup-form form button{
    width: 100%;
    background: var(--main-bg);
    border: none;
    padding: var(--p15);
    color: var(--white-color);
}
  /*   This is the closing button  */
  #btnClose {
      /* width:100%; */
      display: block;
      text-align: right;
      text-decoration: none;
      color: #fff;
      position: absolute;
      top: 10px;
      right: 10px;
      height: 30px;
      width: 30px;
      background-image: var(--main-bg);
      display: flex;
      justify-content: center;
      align-items: center;
      background: #8e3409cc;
      border-radius: 50%;
  }
  /*   This is the closing button hover state  */
  #btnClose:hover {
      /* color: #c90c12; */
  }
  /*   This is the description headline and paragraph for the form   */
  #delayedPopup > div.formDescription {
      float: left;
      display: flex;
      width: 44%;
      padding: 1% 3%;
      font-size: 18px;
      color: #666;
      clear: left;
  }
  /*   This is the styling for the form's headline   */
  #delayedPopup > div.formDescription h2 {
      color: #444444;
      font-size: 36px;
      line-height: 40px;
  }
  
  /* 
  ////////// MailChimp Signup Form //////////////////////////////
  */
  
  /*   This is the signup form body  */
  #delayedPopup #mc_embed_signup {
      float: left;
      width: 47%;
      padding: 1%;
      display: flex;
      font-size: 16px;
      color: #666;
      margin-left: 1%;
  }
  /*   This is the styling for the signup form inputs  */
  #delayedPopup #mc-embedded-subscribe-form input {
      width: 95%;
      height: 30px;
      font-size: 18px;
      padding: 3px;
    margin-bottom: 5px;
  }
  /*   This is the styling for the signup form inputs when they are being hovered with the mouse  */
  #delayedPopup #mc-embedded-subscribe-form input:hover {
      border:solid 2px #40c348;
      box-shadow: 0 1px 3px #AAAAAA;
  }
  /*   This is the styling for the signup form inputs when they are focused  */
  #delayedPopup #mc-embedded-subscribe-form input:focus {
      border:solid 2px #40c348;
      box-shadow: none;
  }
  /*   This is the styling for the signup form submit button  */
  #delayedPopup #mc-embedded-subscribe {
      width: 100%!important;
      height: 40px!important;
      margin: 10px auto 0 auto;
      background: #5D9E62;
      border: none;
      color: #fff;
  }
  /*   This is the styling for the signup form submit button hover state  */
  #delayedPopup #mc-embedded-subscribe:hover {
      background: #40c348;
      color: #fff;
      box-shadow:none!important;
      cursor: pointer;
  }




  /* hero sec */
  :root{
    --border-color: #fff5;
    --w-image: 500px;
    --calculate: calc(3 / 2);
}
  .carousel{
    margin-top: 0px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0;
}
.carousel .list{
    height: 100%;
    position: relative;
}
.carousel .list::before{
    position: absolute;
    width: var(--w-image);
    height: 100%;
    content: '';
    top: 0;
    left: calc(100% - calc(var(--w-image) * var(--calculate)));
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    z-index: 4;
    pointer-events: none;
}
.carousel .list::after{
    position: absolute;
    top: 50px;
    left: 50px;
    content: '';
    /* background-color: red; */
    background: transparent;
    width: 400px;
    height: 300px;
    z-index: 10;
    pointer-events: none;
    border-radius: 20px  50px 110px  230px;
    filter: blur(150px);
    opacity: .6;
}
.carousel .list .item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.carousel .list .item .image{
    width: var(--w-image);
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(100% - calc(var(--w-image) * var(--calculate)));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    font-weight: 500;
}
.carousel .list .item .image img{
    width: 90%;
    margin-bottom: 20px;
    filter: drop-shadow(0 150px 50px #9e0c0c55);
}
.carousel .list .item .image figcaption{
    font-family: 'Aboreto';
    font-weight: bold;
    font-size: 1.3em;
    text-align: right;
    margin-bottom: 30px;
    width: 70%;
}
.carousel .list .item .main-content{
    height: 100%;
    display: grid;
    grid-template-columns: calc(100% - calc(var(--w-image) * var(--calculate)));
}
.carousel .list .item .main-content .content{
    padding: 150px 20px  20px 80px;
}
.carousel .list .item .main-content .content h2{
    font-size: 5em;
    background-image: url("../images/4.gif");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-background-clip: text; 
   background-clip: text;
  -webkit-text-fill-color: transparent;
}
.carousel .list .item .main-content .content .price{
    font-family: 'Aboreto';
    font-size: 3em;
    margin: 20px 0;
}
.carousel .list .item .main-content .content .addToCard{
    background-color: #4f8b69;
    color: #fff;
    padding: 10px  30px;
    font-family: Poppins;
    font-size: large;
    font-weight: 500;
    border-radius: 30px;
    border: none;
    margin-top: 20px;
}
.arrows{
    position: absolute;
    bottom: 20px;
    width: calc(100% - calc(var(--w-image) * var(--calculate)));
    display: grid;
    grid-template-columns: repeat(2, 50px);
    grid-template-rows: 50px;
    justify-content: end;
    gap: 10px;
}
.arrows button{
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: monospace;
    font-size: large;
    font-weight: bold;
    line-height: 0;
    box-shadow: 0 10px 40px #5555;
    cursor: pointer;
    transition: 0.5s;
}
.arrows button:hover{
    background-color: #eee5;
}
.carousel .list .item{
    display: none;
}
.carousel .list .item.active,
.carousel .list .item.other_1,
.carousel .list .item.other_2{
    display: block;
}
.carousel .list .item.active{
    z-index: 2;
}
.carousel .list .item.other_1,
.carousel .list .item.other_2{
    pointer-events: none;
}
.carousel .list .item.active .main-content{
    animation: showContent 1s ease-in-out 1 forwards;
}
@keyframes showContent{
    from{
        clip-path: circle(0% at 70% 50%);
    }to{
        clip-path: circle(100% at 70% 50%);
    }
}
.next .item.other_1{
    z-index: 1;
}
.next .item .image img,
.next .item .image figcaption{
    animation: effectNext .5s ease-in-out 1 forwards;
}
@keyframes effectNext{
    from{
        transform: translateX(calc(var(--transform-from)));
    }to{
        transform: translateX(calc(var(--transform-from) - var(--w-image)));
    }
}
.next .item.active .image{
    --transform-from: var(--w-image);
}
.next .item.other_1 .image{
    z-index: 3;
    --transform-from: 0px;
    overflow: hidden;
}
.next .item.other_2 .image{
    z-index: 3;
    --transform-from: calc(var(--w-image) * 2);
}
.arrows{
    z-index: 2;
}
/* prev */
.prev .list .item .image img,
.prev .list .item .image figcaption{
    animation: effectPrev 0.5s ease-in-out 1 forwards;
}
@keyframes effectPrev{
    from{
        transform: translateX(calc(var(--transform-from)));
    }to{
        transform: translateX(calc(var(--transform-from) + var(--w-image)));
    }
}
.prev .list .item.active .image{
    --transform-from: calc(var(--w-image) * -1);
    overflow: hidden;
}
.prev .list .item.other_1 .image{
    --transform-from: 0px;
    z-index: 3;
}
.prev .list .item.other_2 .image{
    z-index: 3;
    --transform-from: var(--w-image);
}
.prev .list .item.other_2 .main-content{
    opacity: 0;
}
@media screen and (max-width: 1023px){
    :root{
        --calculate: 1;
        --w-image: 400px; 
    }
    .carousel .list .item .main-content .content h2{
        font-size: 3em;
    }
}
@media screen and (max-width: 767px){
    .carousel .list .item .image{
        width: 100%;
        left: 0;
        justify-content: center;
    }
    .carousel .list .item .image figcaption{
        color: #fff;
        width: 100%;
        text-align: center;
    }
    .carousel .list .item .main-content .content{
        display: none;
    }
    .arrows{
        left: 50%;
        justify-content: center;
    }
}

section.our-categ{
    background-image: var(--main-bg);
}
section.our-categ .owl-item .item {
   transform: translate3d(0, 0, 0); /* DO NOT REMEMBER WHERE TU PUT THIS, SEARCH FOR 3D ACCELERATION */
 /* transform: scale(0.9);

  transition: all .25s ease-in-out;  */
  margin: 50px 0; /* OVERWRITE PLUGIN MARGIN */
 }

 section.our-categ .screenshot_slider .owl-item .item img {
    -webkit-transition: 0.3s;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    -o-transition: 0.3s;
    transition: 0.3s;
    width: 450px !important;
    height: 450px !important;
    object-fit: cover;
    border-radius: 50%;
    filter: blur(10px);
    transform: rotate(45deg);
    /* transform: scale(0.80); */
}
section.our-categ .screenshot_slider .owl-item{
    /* width: 432px !important; */
    height: 540px !important;
}

section.our-categ .screenshot_slider .owl-item.center .item img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1);
    transform: rotate(0);
    filter: blur(0px);
    width: 468px !important;
    height: 468px !important;
    object-fit: cover;
}

section.our-categ .screenshot_slider .owl-nav {
    text-align: center;
    /* // margin: 40px 0; */
}

section.our-categ .screenshot_slider .owl-nav button {
	font-size: 24px !important;
	margin: 10px;
	color: #033aff !important;
}



.head h2 {
    text-align: center;
    font-size: 60px;
    font-weight: 500;
    /* top: 40px; */
    position: relative;
}
.head svg{
  width: 250px;
  fill: #c389ff;
}
.head p {
    text-align: center;
    font-size: 80px;
    font-weight: 500;
    position: relative;
    color: #fff;
    bottom: 60px;
    left: 257px;
    opacity: 0.2;
    font-family: var(--secondary-font);
}
.head {
    margin-bottom: var(--m30);
    text-align: center;
}





/* section services */

section.services{
    background-image: var(--main-bg);
}
section.services .row{
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 40px 0;
}
section.services .row img{
    height: 485px;
    border-radius: 20px;
    object-fit: cover;
    transition: .4s ease-in;
}
section.services .row img:hover{
    transform: scale(1.1);
}
.service-img{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.service-img h3{
    font-size: var(--f26);
    position: absolute;
    width: 100%;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5),rgba(0,0,0,.8));
    padding: 20px;
    margin-bottom: 0;
    
    font-weight: 400;
}
section.services .col-3{
    width: 28%;
}

section.services ::-webkit-scrollbar {
    width: 6px;
    height: 5px;
    transition: 8.3s all;
  }
  
  /* Track */
  section.services ::-webkit-scrollbar-track {
    background: #ffeddd; 
  }
   
  /* Handle */
  section.services ::-webkit-scrollbar-thumb {
    background: #411076; 

  }
  
  /* Handle on hover */
  section.services ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }



  /* section process */

  section.process{
    background-image: radial-gradient(#210134, #09070e);
  }
  
  section.process .img-p img{
    width: 79px;
    height: 52px;
  }
  section.process .main-pr {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #a3a3a3;
    padding: 22px;
    padding-left: 0;
} 
section.process .main-pr p{
    font-size: 18px;
    color: #fff;
    opacity: .7;
}
section.process .cont {
    padding-left: 65px;
}
section.process .img-part img{
    width: 270px;
    animation: rotate-animation 10s infinite linear;

}
section.process .img-part{
    display: flex;
    align-items: center;   
    flex-direction: column;
    position: sticky;   
    top: 20px;
}

section.process h2{
    font-size: 32px;
    margin-bottom: 40px;
}

section.process h2::before {
    background: #B7B3FF;
    content: "";
    display: inline-block;
    height: 1px;
    margin-right: 1.25rem;
    position: relative;
    top: -.5625rem;
    width: 3.6875rem;
  }
  section.process .img-part h4{
    color: #fff;
    margin-top: 30px;
    opacity: .8;
    font-size: 24px;
    text-align: center;
  }

@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
  


.main-p{
    width: 100%;
    height: 100vh;
    background-color: rgb(61, 61, 61);
}

#main{
    position: relative;
    width: 100%;
    height: 100vh;
    /* background-color: aquamarine; */
    overflow: hidden;
}

#top{
    position: absolute;
    top: 0%;
    width: 100%;
    height: 50vh;
    background-image: var(--main-bg);
    z-index: 9;
    overflow: hidden;
}

#center{
    position: relative;
    width: 100%;
    height: 100vh;
    transform-origin: center;
    background-color: rgb(0, 0, 0);
    transition: all cubic-bezier(0.19, 1, 0.22, 1)1s;
    overflow: hidden;
    background: url(https://media.licdn.com/dms/image/D4D12AQENyXzi1yfyGg/article-cover_image-shrink_720_1280/0/1707842746441?e=2147483647&v=beta&t=ZRIEQaA9PT4IjVXQTvozyIrCW4pv80RrFLJE_BPmgKU);
    background: url(https://miro.medium.com/v2/resize:fit:1400/1*yYyk2Wx3KLp-k3HnQffF8Q.jpeg);
    background-position: center;
    background-size: cover;
}

#bottom{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50vh;
    background-image: var(--main-bg);
    overflow: hidden;
}

#main h1{
    font-family: Founder;
    font-size: 19vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#top-h1{
    bottom: 50%;
}

#bottom-h1{
    top: 0% !important;
}

.content{
    margin-top: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    color: #fff;
    gap: 4vh;
    background: #00000061;
}

.content h4{
    font-size: 2vw;
    font-family: Founder;
    color: var(--heading-color);
}

.content h3{
    width: 50%;
    font-size: 3vw;
    font-family: CardinalR;
    text-align: center;
    font-weight: 400;
}

.content .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7vw;
    height: 2vw;
    border-radius: 50px;
    background-color: #fff;
    color: #0d0d0d;
    font-family: Founder;
    display: none;
}

.content h2{
    font-size: 20vw;
    font-family: Founder;
}
section.aadivox{
    background-image: var(--main-bg);
    padding: 0;
}




/* portfolio section  */


section.portfolio-sec .window {
    width: 100%;
    margin: auto;
    border: 5px solid #000;
    border-radius: 20px;
    box-shadow: 0px 20px 46px 2px #bcc6ff;
    cursor: n-resize;

  
    img {
      width: 100%;
      object-fit: cover;
      object-position: top;
      height: 550px;
      border-radius: 20px;
      transition: 8s all ease;
  
      &:hover {
        object-position: bottom;
      }
    }
  }
  section.portfolio-sec{
    background: url(../images/body-bg.webp);
  }  
  section.portfolio-sec .credit {
    font-weight: 300;
    text-align: center;
    margin-top: 6rem;
    color: #b6bee8;
    font-size: 14px;
  
    &:hover {
      span {
        color: #e91e63;
      }
  
      a {
        color: #e91e63;
        border-color: #e91e63;
      }
    }
  
    section.portfolio-sec span {
      color: #b6bee8;
      transition: ease all 200ms;
    }
  
    section.portfolio-sec a {
      color: #b6bee8;
      transition: ease-in all 700ms;
      -webkit-text-decoration: none;
      text-decoration: none;
      border-bottom: 2px solid #b6bee8;
  
      &:hover {
        color: #fff;
        box-shadow: inset 0 -5.5rem 0 #e91e63;
        border-bottom: 2px solid #e91e63;
      }
    }
  }
  




  /* newsletter section */

  section.newsl{
    background: url(../images/newsl.webp);
    /* background: url(../images/newsl2.webp); */
    /* height: 450px; */
    background-position: center;
    background-attachment: fixed;
  }

  section.newsl .main-news{
    background:   rgba(0,0,0,.15);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 60px;
    position: relative;
  }
  section.newsl .main-news:before {
    position: absolute;
    content: "";
    width: 80%;
    height: 1.3px;
    top: 0;
    background: linear-gradient(45deg, transparent, rgb(30 5 47), rgb(36 5 57), rgb(87 6 135), rgb(24 5 38), transparent);
    inset-inline-start: 10%;
    box-shadow: 1px -9px 17px 0 rgb(33 5 53);
}
  section.newsl .main-news .col-6{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  section.newsl .main-news .col-6.forms{
    justify-content: end;
  }
  

  section.newsl .main-news form{
    display: flex;
    justify-content: end;
    /* height: 100%; */
    gap: 20px;
    padding: 20px;
    background: #f0f8ff5e;
    border-radius: 40px;
    border: 1px solid rgb(62 10 73);
  }

  section.newsl .main-news form input{
    background: #f0f8ff5e;
    padding: 10px 30px;
    border-radius: 20px;
    border: none;
    width: 70%;
  }
  section.newsl .main-news form button{
    background: linear-gradient(to left, #805AF5, #CD99FF);
    background: var(--main-bg);
    color: #fff;
    padding: 10px 30px;
    border-radius: 20px;
    border: none;
    width: 30%;
  }
  section.newsl .n-dash{
  width: 100%;
  height: 1.3px;
  top: 0;
  background: linear-gradient(45deg, transparent, rgb(30 5 47), rgb(36 5 57), rgb(87 6 135), rgb(24 5 38), transparent);
  inset-inline-start: 10%;
  box-shadow: 1px -9px 17px 0 rgb(33 5 53);
  margin-top: 60px;
  margin-bottom: 60px;
} 
section.newsl p{
  color: #e7e6e6;
  font-size: 15px;
  letter-spacing: 1px;
  opacity: .75;
}
section.newsl .main-news h2{
  letter-spacing: 1px;
}
 



/* our team */

section.our-team .owl-carousel .owl-item img {
     padding: 8px;
     height: 500px;
     border-radius: 30px;
     object-fit: cover;
}
section.our-team{
  background: url(../images/light-bg-2.png);
  background: url(../images/body-bg.webp);
}
section.our-team .about-team {
  color: #fff;
  width: 100%;
  padding: 10px 10px 10px 40px;
  position: absolute;
  bottom: 15px;
}
section.our-team .owl-dots{
  display: none;
}
section.our-team .about-team h5{
  text-shadow: 0 0 5px #320065;
}
section.our-team .about-team h6 {
  font-size: 15px;
  font-weight: 300;
  opacity: 1;
  color: var(--heading-color);
  text-shadow: 0 0 5px #320065;
}

section.our-team .carousel-wrap {
  
  position: relative;
}

/* fix blank or flashing items on carousel */
section.our-team .owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

/* end fix */

section.our-team .owl-nav{

 
  position: absolute;
  padding: 7px;
  display: flex;
  gap: 35px;
  left: -70px;
  bottom: 160px;
}

section.our-team .team-icon {
  display: flex;
  background: #000;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
section.our-team .team-media {
  display: flex;
  gap: 10px;
  display: none;
}
section.our-team .team-icon:hover{
background: #fff;
color: var(--main-color);
}


section.our-team .team-media i{
  font-size: 13px;
}

section.our-team .owl-prev{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #380459bf;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  color: #fff;
}

section.our-team .owl-nav i {
  font-size: 25px;
}

section.our-team .owl-next{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #380459bf;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  color: #fff;
}
section.our-team .owl-dots button{
    background: #ffe3f6;
    border: none;
    padding: 10px;
}

/*new Testimonial css*/


section.testimonial{
  background-image: var(--main-bg);
  position: relative;
  background: url(../images/test-bg.webp);
  text-align: center;
  padding: 100px 0;
}
section.testimonial .shape-img{
  position: absolute;
    width: 500px;
    right: -104px;
    bottom: -120px;
    transform: rotate(96deg);
    animation: rotate-animation 10s infinite linear;
}
section.testimonial::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e05004c;
  background: #EEC19C;
  z-index: 1;
  display: none;
}
section.testimonial .container{
  position: relative;
  z-index: 2;
}
section.testimonial h2{
  padding-bottom: 15px;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0px;
}
section.testimonial h6{
  line-height: 1.3;
  color: var(--white-color);
  letter-spacing: 0.03em;
  font-size: var(--f17);
  font-weight: 600;
  margin-bottom: 0px;
}
section.testimonial  .owl-item {
  padding-left: var(--p5);
  padding-top: var(--p5);
  padding-right: var(--p5);
  padding-bottom: var(--p10);
}
section.testimonial  .owl-item .quote-icon img{
  width:40px;
  margin-bottom: var(--m10);
}
section.testimonial .item {
  background: transparent;
  /* box-shadow: 0px 2px 6px 0px #ccc; */
  padding: 0;
  border-radius: 0;
  height: auto;
  width: 60%;
  margin: auto;
}
section.testimonial .item .para{
  padding-top: 0;
}
section.testimonial .test-cont h6{
  color: var(--heading-color);
  text-align: center;
  margin-top: var(--m30);
  font-size: var(--f22);
}
section.testimonial .item .para p{
  max-height: 205px;
  overflow: hidden;
  height: auto;
  text-align: center;
  color: var(--black-color);
  font-size: 16px;
}
section.testimonial .user-icon {
  align-items: center;
  margin-top: 0;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
section.testimonial .user-icon img{
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  background: var(--white-color);
}
section.testimonial p.stay {
  margin-bottom: 0px;
}
section.testimonial i.fa-solid.fa-star {
  color: #FCAF3D;
  font-size: var(--f14);
  margin-right: var(--m3);
}
section.testimonial h6 {
  width: 100%;
}
section.testimonial #testimonial-home .owl-nav {
  text-align: right;
  position: absolute;
  top: -75px;
  right: 0;
  z-index: 2;
}
section.testimonial #testimonial-home .owl-nav button.owl-prev {
  margin-right: var(--m15);
  background: var(--heading-color);;
}
section.testimonial #testimonial-home .owl-nav button {
  background: var(--heading-color);;
  padding: var(--p10);
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
section.testimonial #testimonial-home .owl-nav button:hover {
  background: var(--black-color) !important;
}
section.testimonial #testimonial-home .owl-nav button i {
  font-size: var(--f20);
  line-height: 35px;
  color: var(--white-color);
}
section.testimonial #testimonial-home .owl-nav button:hover i {
  color: var(--white-color);
}
section.testimonial .rating {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testy {
  margin-top: var(--m30);
}
.col-6.rev-head {
  min-height: 50px;
}

section.testimonial  .owl-thumbs{}
section.testimonial  .owl-thumbs .owl-thumb-item{
height:150px;
width: 100%;
max-width:150px;
background: transparent;
border: none;
overflow: hidden;
}
section.testimonial .owl-thumbs .owl-thumb-item img{
max-width:100%;
height:auto;
}
section.testimonial  div#thumbs {
  width: 500px;
  margin: auto;
}
section.testimonial div#thumbs .item{
  width: 100%;
  opacity: 0.5;
}
section.testimonial div#thumbs .owl-item.active.current .item{
opacity: 1;
}
section.testimonial div#thumbs .owl-nav{
  display: none;
}
section.testimonial .owl-nav {
  max-width: 600px;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
section.testimonial .owl-nav button{
  background: #fff !important;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 500ms ease;
  width: 45px;
  height: 45px;
  line-height: 45px !important;
  color: #4c1a00;
  border: none;
}

section.testimonial h2 span{
  color: #c389ff;
}