@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');



/* hero main section */

section.hero-main{
    height: 100%;
    /* background: url(../images/service-banner.jpg);
    background: url(../images/banner.jpg); */
    background: url(../images/bg-slide.png) #0A0D12;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    padding-top: 180px;
    background-size: cover;
}

section.hero-main .shape-img {
    position: absolute;
    width: 220px;
    right: 145px;
    top: 210px;
    transform: rotate(96deg);
    animation: rotate-animation 10s infinite linear;
    z-index: 1;
    background: radial-gradient(#7da6f0, #cdb6ff);
    border-radius: 50%;
    display: none;
}
section.hero-main .container{
    display: flex;
    height: 100%;
    align-items: center;
    flex-direction: column;
}
section.hero-main .container .cont-sec{
    width: 100%;
}
section.hero-main .container .cont-sec p.left{
    font-size: 22px;
    text-transform: capitalize;
    font-style: italic;
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
    display: inline-block;
    margin-bottom: 40px;
}
section.hero-main .container .right {
    text-align: left;
    padding-right: 160px;
    margin-top: 50px;
}
section.hero-main .container .right span{
    font-size: 16px;
    width: 50%;
    display: inline-block;
    text-align: left;
}
section.hero-main h1{
    font-size: 65px;
    margin: 0;
}
section.hero-main h1 span{
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
}
section.hero-main .arrow{
    text-align: center;
}
section.hero-main img{
    width: 120px;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: .5s ease-in-out;
}
section.hero-main img:hover{
    transform: rotate(-45deg);
}

/* section video banner */

section.video-banner{
    height: 90vh;
    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.271);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
section.video-banner .video-cont h1{
    font-size: 52px;
    /* font-family: "Jersey 15", serif; */
    -webkit-text-stroke: 0.8px #fff;
    -webkit-text-fill-color: transparent;
    font-family: var(--primary-font);
}
section.video-banner .video-cont h1 span{
    margin-right: 20px;
}
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;
}

/* fade-in and fade-out animation */
.fade-in {
    animation: fadeIn ease 5s;
    -webkit-animation: fadeIn ease 5s;
    -moz-animation: fadeIn ease 5s;
    -o-animation: fadeIn ease 5s;
    -ms-animation: fadeIn ease 5s;
}
.fade-out {
    animation: fadeOut ease 5s;
    -webkit-animation: fadeOut ease 5s;
    -moz-animation: fadeOut ease 5s;
    -o-animation: fadeOut ease 5s;
    -ms-animation: fadeOut ease 5s;
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-moz-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-webkit-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-o-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

.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; */
}

.letterDrop {
    position: relative;
    top: 0;  
    display: inline-block;
    text-transform: uppercase; 
    letter-spacing: 0.5em;
    opacity: 1;
    transform: rotateX(-90deg);
    animation: letterDrop 3.2s ease 1 normal forwards;
  }
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;
        
        
        }      

        /* about bdglifesciences */
        
.about-numbers{
    background: #0A0D12;
    padding: 40px 0;
}
.about-numbers img{
    width: 65px !important;
}
.about-numbers .simple{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 60px;
    color: var(--heading-color);
}
.about-numbers .transparent{
    font-size: 48px;
    font-weight: 600;
    margin-right: 60px;
    -webkit-text-stroke: 0.8px #fff;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    font-family: var(--primary-font);
}
.about-numbers .img{
    display: flex;
    gap: 20px;
    align-items: center;
}
  /* client slide */
  section.clients {
    background: #000;
}
section.clients img{
    width: 120px !important;
    height: 120px;
    object-fit: contain;
}
section.clients .container{
    border: 1px solid #ffffff66;
    padding: 0;
}
section.clients .item{
    border-right: 1px solid #ffffff66;
    text-align: center;
}
section.clients .item .img{
    display: flex;
    justify-content: center;
    align-items: center;
}


/* about us section */
section.about-us{
    background: var(--main-bg);
    background: #000;
    background-attachment: fixed;
}
section.about-us .common-head{
    text-align: left;
}
section.about-us .common-head p{
    position: relative;
    padding-left: 65px;
}
section.about-us .common-head p::before{
    position: absolute;
    content: '';
    background: var(--white-color);
    width: 70px;
    height: 2px;
    top: 14px;
    left: -20px;
}
section.about-us .cont-sec {
    padding: 48px;
    position: relative;
}
section.about-us .shape-img {
    position: absolute;
    width: 150px;
    right: -30px;
    top: 10px;
    z-index: 1;
    animation: rotate-animation 10s infinite linear;
}
section.about-us .img-sec img{
    border-radius: 10px;
}
section.about-us .exp .col-6{
    border: 1px solid #999999a3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
}
section.about-us .exp .col-6 span{
    color: #fff;
}
section.about-us p{
    color: #fff;
}
ul.points{
    margin-top: 50px;
}

ul.points li{
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 50px;
}
ul.points p{
    margin-bottom: 0;
}
ul.points img{
    width: 24px;
}
/* process section */

section.featured-pro {
    background: #161515;
    position: relative;
    background: url(../images/al-bg.png), linear-gradient(black, black);
    background-attachment: fixed;
    background-size: cover;
}
section.featured-pro::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #000000bd; */
    /* --background-overlay: ''; */
    /* background-image: linear-gradient(174deg, #000202d1 0%, #0f0501 100%); */
}
section.featured-pro .main{
    position: relative;
}

section.featured-pro .head-sec {
    text-align: center;
    margin-bottom: 50px;
}
section.featured-pro .head-sec h2{
  color: var(--heading-color);
}
section.featured-pro .head-sec p{
   color: var(--white-color);
}
section.featured-pro .row{
    gap:20px 0;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-bottom: 40px;
    overflow-x: scroll;
}
section.featured-pro .main-prop {
    position: relative;
    overflow: hidden;
    width: 32%;
}
section.featured-pro ::-webkit-scrollbar {
    width: 6px;
    height: 5px;
    transition: 8.3s all;
  }
  
  /* Track */
  section.featured-pro  ::-webkit-scrollbar-track {
    background: #ffeddd; 
  }
   
  /* Handle */
  section.featured-pro  ::-webkit-scrollbar-thumb {
    background: #190033; 

  }
  
  /* Handle on hover */
  section.featured-pro  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }


section.featured-pro .pro-sec{
   position: relative; 
}
section.featured-pro .main-prop h4{
    font-size: 18px;
    color: #fff;
}
section.featured-pro img.img-fluid {
    width: 100%;
    height: 450px;
    object-fit: cover;
    position: relative;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}
section.featured-pro .main-prop:hover img{
    transform: scale(1.14);
}
section.featured-pro .pro-img a:before{
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}
section.featured-pro .pro-img a{
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    border-radius: 10px 10px 0 0;
    display: block;
}
section.featured-pro .pro-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--p24);
    background: #000000c2;
    position: absolute;
    bottom: -100px;
    width: 75%;
    z-index: 1;
    transition: all 0.7s;
}
section.featured-pro .pro-cont h6{
    -webkit-text-stroke: 1px #ffffff8f;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-size: 50px;
}
section.featured-pro .pro-cont .view-more{
    color: var(--white-color);
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}
section.featured-pro .pro-cont .view-more i{
    background: var(--btn-color);
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
}
section.featured-pro .line {
    text-align: center;
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: 10px 0;
}
section.featured-pro .main-prop:hover .line{
    width: 97%;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}
section.featured-pro a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

section.featured-pro .main-prop:nth-child(3){

}
section.featured-pro .single ul{
justify-content: flex-start;
gap: 40px;
}
section.featured-pro .single .pro-img {
height: 550px;
}
section.featured-pro .single .pro-img img{
    height: 550px;   
}
section.featured-pro .single {
    margin-top: var(--m40);
}
section.featured-pro .single a{
    top: 27px;
}
section.featured-pro .single .pro-cont{
    width: 98%;
}
section.featured-pro .main-prop:hover .pro-cont {
bottom: 0;
}

section.featured-pro .rating i {
    color: #E3E3E3;
    margin-right: var(--m3);
    font-size:var(--f14);
}
section.featured-pro .rating i.checked {
    color: #FCAF3D;
}
section.featured-pro .rating{
    margin-bottom:var(--m15);
    display: none;
}
section.featured-pro h3.title {
    font-size: var(--f22);
    line-height: 1.2;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: var(--m11);
    height: 75px;
    overflow: hidden;
}
section.featured-pro h3.title a{
    color: var(--heading-color);
}
section.featured-pro p.adr {
    font-size: var(--f14);
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: var(--m20);
    line-height: 1.5;
    height:21px;
    overflow:hidden;
    display: none;
}
section.featured-pro ul {
    margin: 0 0 0px;
    padding: var(--p20) var(--p20) var(--p15);
    padding-left: 0;
    padding-top: 3px;
    padding-right: 0;
    font-size: var(--f14);
    align-items: center;
    display: flex;
    justify-content: space-between;
}
section.featured-pro i {
    margin-right: 0;
}
section.featured-pro p.adr i{
    margin-right:8px;
}
section.featured-pro ul li{
    font-size: var(--f14);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
section.featured-pro h5{
    font-size: var(--f14);
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 0;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}
section.featured-pro .pro-img {
    position: relative;
    overflow: hidden;
    height: 450px;
}
section.featured-pro h5 span{
    font-weight: 600;
    font-size: var(--f24);
    color: var(--white-color);
}
section.featured-pro .featured i{
    margin-right: 0;
    cursor: pointer;
}

section.featured-pro .featured span {
    font-weight: 400;
    font-size: var(--f18);
    color: var(--white-color);
    background-color: transparent;
    padding: var(--p7) var(--p15);
    display: inline-block;
    border-radius: 5px;
    transform: rotate(-90deg);
    letter-spacing: .2em;
    border: 1px solid;
}
section.featured-pro .featured{
    position: absolute;
    top: 50px;
    right: -10px;
    z-index: 0;
}


/* portfolio section */
/* portfolio section  */

.head h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    position: relative;
}
.head svg{
  width: 250px;
  fill: var(--btn-color);
}
.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.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: #000;
  }  
  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;
      }
    }
  }
  
/* new blog */

/* new blog section */


section.new-blog{
    background: #000;
}
section.new-blog .head{
    text-align: left;
}
section.new-blog .img-sec{
    position: relative;
    height: 250px;
    overflow: hidden;
}
section.new-blog .img-sec img{
    height: 250px;
    transition: .5s ease-in-out;
}
section.new-blog .col-4:hover img{
    transform: scale(1.12);
}
section.new-blog .img-sec span{
    position: absolute;
    left: 20px;
    top: 20px;
    font-family: var(--primary-font);
    color: #fff;

}
section.new-blog .cont span{
    color: #fff;
    opacity: .8;
}
section.new-blog .cont h4{
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}
section.new-blog .cont{
    padding: 20px;
}
section.new-blog .col-4{
    margin-bottom: 30px;
    border: 1px solid #bababaa6;
    width: 31%;
    padding: 0;

}
section.new-blog .row{
gap: 25px;
}

/* section testimonials */


/* testimonials sections */

section.testimonial {
    position: relative;
}
section.testimonial .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background: url(../images/al-bg.png), linear-gradient(black, black);
}
section.testimonial .icon{
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        left: 10%;
        z-index: 1;
        top: 75%;
}
section.testimonial .owl-carousel .owl-item img {
margin-top: var(--m20);
border-radius: 50%;
}
section.testimonial .testy {
   width: 100%;
    margin: auto;
    padding: 0;
    padding-bottom: 0;
    border-radius: 0px;
    background: transparent;
}
section.testimonial .item {
    padding-left: var(--p15);
    padding-right: var(--p15);
    padding-bottom: var(--p15);
    background: transparent;
    height: auto;
    overflow: hidden;
}
section.testimonial .top-text {
    position: relative;
}
section.testimonial .test-pro {
    height: 100px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}
section.testimonial .test-pro:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}
section.testimonial .test-pro img {
    position: absolute;
    /*top: -35%;*/
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    max-width: none;
}
section.testimonial .user-icon {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 20%;
    -webkit-transform: translate3d(-50%, -10px, 0);
    -moz-transform: translate3d(-50%, -10px, 0);
    transform: translate3d(-50%, -10px, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
}
section.testimonial .user-icon img{
    width: 140px;
    height: 140px;
    object-fit:cover;
    border-radius: 50%;
    border: 2px solid var(--white-color);
}
section.testimonial .container{
    z-index: 1;
    position: relative;
}
section.testimonial .head-sec h2 {
 color: var(--secondary-color);
 margin-bottom: var(--m30);
}
section.testimonial .head-sec p{
    color: var(--white-color);
    margin-bottom: var(--m15);
}
section.testimonial .test-card {
    text-align: left;
    background: transparent;
    border-radius: 0px;
    /* box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1); */
    padding-bottom: 0;
    /* max-width: 1100px;  */
    margin: auto;
    overflow: hidden;
    width: 100%;
}
section.testimonial .test-card p{
    color: var(--white-color);
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: var(--m10);
}

section.testimonial .test-card h4 {
    font-size: var(--f20);
    margin-bottom: var(--m7);
    font-weight: 600;
    color: var(--heading-color);
}
section.testimonial .cont-sec{
    padding: var(--p20);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.testimonial i.fa-solid.fa-star {
    color: #FCAF3D;
    font-size: var(--f10);
    margin-right: var(--m3);
}
section.testimonial hr {
    width: 200px;
    opacity: 1;
    border-top: 3px solid;
    color: var(--white-color);
}
section.testimonial h3 {
  padding-left: 0;
    font-size: var(--f20);
    font-weight: 700;
    text-align: left;
    color: var(--btn-color);
    margin: 20px 0;
}
section.testimonial .para p{
   width: 78%;
   margin: auto;
   padding-left: 0;
   padding-right: 0;
   position: relative;
   color: var(--white-color);
   /* height: 128px; */
   max-height: 128px;
   margin-top: var(--m30);
   font-size: var(--f16);
   overflow: hidden;
   text-align: center;
   margin-bottom: 0;
}
section.testimonial .owl-stage-outer {
    padding-left: 0;
    padding-right: 0;
}

section.testimonial .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}
section.testimonial .owl-dots button.owl-dot{
    border-radius: px 0 5px 0;
    background: var(--white-color);
    width: 11px;
    height: 11px;
    border: none;
    transform: rotate(128deg);
}
section.testimonial .owl-dots button.owl-dot.active{
    background: var(--btn-color);
    transform: scale(1.14);
    transform: rotate(128deg);
}
section.testimonial .para i{
    font-size:var(--f30);
}
section.testimonial i.fa-solid.fa-quote-right {
    position: absolute;
    right: 20px;
    bottom: -10px;
}
section.testimonial i.fa-solid.fa-quote-left {
    position: absolute;
    left: 20px;
    top: -10px;
}
section.testimonial p.clt-name{
    color: var(--heading-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-top: var(--m15);
    margin-bottom: 0px;
}

section.testimonial span {
    height: auto;
    overflow: hidden;
    display: block;
}
section.testimonial .test-card:hover .test-pro {
    height: 180px;
}
section.testimonial .test-card:hover .test-pro img {
    top: 0;
    height:100%;
}
section.testimonial .test-card:hover .user-icon {
    -webkit-transform: translate3d(-50%, -20px, 0);
    -moz-transform: translate3d(-50%, -20px, 0);
    transform: translate3d(-50%, -20px, 0);
}

section.cta {
    background-image: url(../images/bbr-bg.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 90px;
    background-position: right;
    background-attachment: fixed;
    position: relative;
}
section.cta::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.cta .container{
    position: relative;
}
section.cta .counter-icon {
    height: 130px;
    width: 130px;
    background: url(../images/bg-icon-counter-white.png);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--m10);
    background: transparent;
    border-radius: 50%;
    border: 3px dotted #fff;
}
section.cta .counter-icon i{
    color: #fff;
    font-size: 50px;
}

section.cta .col-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--m30)
}

section.cta .row h3 {
    color: var(--white-color);
    margin-bottom: 0
}

section.cta .row p {
    color: rgba(255,255,255,.5);
    margin-bottom: 0;
    font-size: var(--f19);
    margin-top: var(--m5)
}

section.cta .col-3:hover p {
    color: #fff
}

section.cta .col-12.cta-bottom {
    padding-top: var(--p40)
}

section.cta .bottom-content {
    border-radius: 15px;
    background: linear-gradient(to right, #07000e 0, #001c2f 100%);
}

section.cta .bottom-content img {
    margin-top: -80px
}

section.cta .bottom-content .col-3 {
    margin-bottom: 0;
    display: none
}

section.cta .bottom-content .col-9 {
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

section.cta .bottom-content h2 {
    margin-bottom: 0;
    width: 75%;
    font-size: var(--f30);
    color: var(--white-color);
    line-height: 1.2
}

section.cta .bottom-content a.main-btn::after {
    background: var(--btn-color)
}

section.cta .bottom-content a.main-btn:hover .icon-container {
    transform: translateX(93%)
}


/* section let */

section.let{
    background: var(--main-bg);
    padding: 0 12px;
}
section.let img{
    width: 45%;
}
section.let .cont{
    position: relative;
}
section.let .cont a i{
    color: var(--heading-color);
    transform: rotate(-45deg);
}
section.let .cont a{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 175px;
    font-weight: 700;
    font-family: var(--secondary-font);
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    padding: 15px;
    height: 100%;
}


/* counter section */



.count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border: 2px dashed #ffffff99;
    border-radius: 50%;
    font-size: 40px;
    font-weight: bold;
}

.counter-img {
    position: absolute;
    top: -60px;
    right: 0;   
    display: flex;
    align-items: center;
    justify-content: end;
}

.counter-img img{
    width: 300px;
    height: 150px;
}

section.counter-sec{
  background: #161515;
  padding-top: 100px;
}


.counter-wrapper {
    padding: 50px;
    border-radius: 30px;
    background: #7572FD ;
    background: cover;
    background-position: center center;
    position: relative;
}



.counter-inner {
    position: relative;
    z-index: 2;
}

.count-icon {
    font-size: 48px;
}

.counter-btn{
    margin-top: 50px;
}
.counter-cont{
    padding-top: 50px ;
}
.counter-cont h3{
    font-weight: 700;
    line-height: 50px;
    font-size: 40px;
    font-family: var(--heading-font);
    color: #fff;

}
.counter-btn a{
    text-decoration: none;
    border-radius: 5px;
    background: #000;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.48px;
    line-height: 1;
    padding: 16px 35px;
    align-items: center;
}
.counter-btn a:hover{
    background: #fff;
    color: #000;
}

.count-line{
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    
}


/* section let */

section.let{
    background: #0C0C0C;
    padding: 0 12px;
}
section.let img{
    width: 45%;
}
section.let .cont{
    position: relative;
}
section.let .cont a i{
    color: var(--heading-color);
    transform: rotate(-45deg);
}
section.let .cont a{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 175px;
    font-weight: 700;
    font-family: var(--secondary-font);
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    padding: 15px;
    height: 100%;
}


 /* video */
 section.video{
    padding: 0;
}
  #play_button{position:absolute;width:100px;height:100px;top:0;bottom:0;left:0;right:0;margin:auto;background:transparent;border:none;cursor:pointer;}
#play_button > img{ width:100%; height:auto;}
#video_container{position:relative;width: 100%;height: 100%;display: flex;}
#video{
    width:100%;
    height: 90vh;
    object-fit: cover;
    object-position: center;
}
#play_button.hide{
  display: none;
}



/* blogs sections */
section.blogs{
    background: var(--main-bg);
    position: relative;
}
section.blogs .overlay{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/body-bg.png);
    background-position: 50% 19%;
    top: 0;
    left: 0;
}
section.blogs .main-blog{
    padding: 13px;
}
section.blogs .blog-img{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
section.blogs .blog-img:hover .blogs-img{
    transform: scale(1.14);
}
section.blogs .blog-img img{
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    transition: .4s ease-in-out;
}
section.blogs .blog-img span{
    position: absolute;
    background: var(--main-bg);
    padding: 10px;
    color: #fff;
    border-radius: 0 10px 10px 0;
    top: 10px;
    left: 0px;
    font-size: 10px;
    letter-spacing: 1px;
}
section.blogs .heading h2{
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}
.blog-cont span{
    color: var(--heading-color);
    margin-top: 10px;
    margin-bottom: 10px;
}
.blog-cont h4{
    color: var(--white-color);
    font-family: var(--secondary-font);
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
    letter-spacing: 1px;
}
.blog-cont p{
    color: #fff;
    opacity: .7;
    display: none;
    margin-bottom: 5px;
}
.blog-cont{
    padding: 10px;
}
.blog-cont a {
    font-size: 18px;
    color: #B0AEF7;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
    z-index: 2;
}
.blog-cont a::before{
    position: absolute;
    content: '';
    width: 0px;
    height: 7px;
    background: #ffffff6b;
    bottom: 7px;
    transition: .5s ease-in-out;
    z-index: -1;
}
.blog-cont a:hover::before{
    width: 100px;
}

.blog-cont a i{
    color: #fff;
    font-size: 15px;
}


/* fade-in and fade-out animation */
.fade-in {
    animation: fadeIn ease 5s;
    -webkit-animation: fadeIn ease 5s;
    -moz-animation: fadeIn ease 5s;
    -o-animation: fadeIn ease 5s;
    -ms-animation: fadeIn ease 5s;
}
.fade-out {
    animation: fadeOut ease 5s;
    -webkit-animation: fadeOut ease 5s;
    -moz-animation: fadeOut ease 5s;
    -o-animation: fadeOut ease 5s;
    -ms-animation: fadeOut ease 5s;
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-moz-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-webkit-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-o-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

.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; */
}

.letterDrop {
    position: relative;
    top: 0;  
    display: inline-block;
    text-transform: uppercase; 
    letter-spacing: 0.5em;
    opacity: 1;
    transform: rotateX(-90deg);
    animation: letterDrop 3.2s ease 1 normal forwards;
  }
section.video-banner .video-cont .container{
    position: relative;
    z-index: 2;
}
section.video-banner video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn{
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.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;
           }        
  

           
/* 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);
    color: var(--black-color);
}
.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;
  }

  /* best selling categories */


  /* Portfolio css start */
section.portfolio {background-image: var(--main-bg);
    padding: var(--p90) var(--p12);
    padding-top: 50px;
    position: relative;
    background: #000;
    background: url(../images/al-bg.png), linear-gradient(black, black);
    background-size: cover;
}
section.portfolio .container{
    position: relative;
}

section.portfolio .content-area {
    width: 80%;
    position: sticky;
    top: 150px;
}
section.portfolio .col-6.portfolio-content {
   position: sticky;
    top: 150px;
    /* width: 50%; */
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 35%;
}
section.portfolio .col-6.portfolio-content h2{
    color: var(--heading-color);
    margin-bottom: var(--m20);
}
section.portfolio .col-6.portfolio-content p{
    color: var(--white-color);
    margin-bottom: var(--m50);
    /* font-size: var(--f20); */
}
section.portfolio a.main-btn {
    display: block;
    width: 200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}
section.portfolio .col-6.portfolio-img svg {
    /* z-index: -1; */
    position: absolute;
    top: 0;
    left: 0;
    width: 181px;
    height: auto;
    display: none;
}
section.portfolio .col-6.portfolio-img .tag {
    display: flex;
    /* align-items: center;
    justify-content: center; */
    flex-direction: column;
    transition: .3s ease-out;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 55px;
    left: 55px;
    z-index: 1;
    color: #dedddd;
    overflow: hidden;
    padding: 10px 15px;
    opacity: 1;
}
section.portfolio .col-6.portfolio-img {
    position: relative;
    width: 65%;
}
section.portfolio .col-6.portfolio-img .tag a.main-bttn {
    height: 50px;
    width: 235px;
}
section.portfolio .col-6.portfolio-img .tag h3{
    margin-bottom: 0;
    font-size: 32px;
    z-index: 1;
    position: relative;
    text-align: left;
    margin-bottom: var(--m50);
    font-weight: 700;
    /* opacity: .68; */
    display: none;
}
section.portfolio .col-6.portfolio-img .img-area {
    position: relative;
   border-radius: 50px;
    margin-top: 60px;
    display: block;
    width: 100%;
    position: sticky;
    transition: 1.2s ease-out;
    top: 60px;
}
section.portfolio .col-6.portfolio-img .img-area img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    object-position: top;
}
section.portfolio .col-6.portfolio-img button.main-btn {
    position: absolute;
    right: 30px;
    bottom: 40px;
}

@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}





