@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&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');


html, body {
   position: relative;
    
}
body {
    font-family: 'Open Sans', sans-serif;    
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

header {
    position: relative;
    z-index: 1;
    overflow: hidden;
}


header::before {
    content: "";
    background-image: url("images/bg1.webp");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    position: absolute;
    top: -70%;
    right: -45%;
    z-index: -1;
    transform: rotate(-20deg);
    border-radius: 100px;
}
header::after {
    content: "";
    background-color: #fe85a4;
    height: 100%;
    width: 100%;
    position: absolute;
    top: -68%;
    right: -45%;
    z-index: -2;
    transform: rotate(-20deg);
    border-radius: 100px;
}

.logo {
    
}

.bannerImg {
    position: relative;
    z-index: 1;
}

.bgImg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}



.icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.25);
}

.icon2 {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.25);
    transition: .2s ease-in-out;
}

.iconBox:hover .icon2 {
    background-color: #5b3bb6;
}

.iconBox img {
    transition: .2s ease-in-out;
}

.iconBox:hover img {
    filter: brightness(0) invert();
}

.small {
    font-size: 14px!important;
}

.smaller {
    font-size: 12px;
}

.btn1 {    
    font-family: 'Poppins', sans-serif;
    letter-spacing: .1rem;
    font-weight: 600;    
    color: #fff;
    transition: .4s ease-in-out;
    font-size: 1.2rem;
    background-color: #5b3bb6;
    position: relative;
    z-index: 1;
    border: none;
    overflow: hidden;
}

.btn1:hover {       
    color: #fff;
    background-color: #5b3bb6;
}

.btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #7b5ad9 , #5b3bb6);
    font-weight: 600;    
    color: #fff;
    z-index: -1;
    transition: .2s ease-in-out;
}


.btn1:hover::before {    
    width: 100%;
}


.btn2 {    
    font-family: 'Poppins', sans-serif;
    letter-spacing: .1rem;
    font-weight: 600;    
    color: #5b3bb6;
    transition: .4s ease-in-out;
    font-size: 1.2rem;
    background-color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: solid #fff 2px;
}

.btn2:hover {       
    color: #fff;
    background-color: transparent;
    border: solid #fff 2px;
}








.headerVideo {
    position: relative;
    z-index: 2;
}

.play-button {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 9;
}

.headerVideo button {
    background: transparent;
    font-size: 120px;
    text-shadow: 0 10px 10px rgba(0,0,0,.25);
}

#mainVideo video {
    box-shadow: 5px 10px 10px rgba(0,0,0,.5);
}

.color {
    background: linear-gradient(to right, #ff7692, #ff9063);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color2 {
    color: #5b3bb6;
}

.ball {
  position: absolute;
  border-radius: 100%;
  opacity: 0.7;
    z-index: -1;
    
}

.block01 {
    background-image: url("images/bg1.webp");
    background-size: cover;
    background-position: center center;
    background-color: #81040a;
    background-attachment: fixed;
}

.reviewBox {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviewBox .textBox {
    position: absolute;
    top: 0;
    right: 3rem;
}

.playButton {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse2 1s infinite ease-in-out;
}

@keyframes pulse2 {
  0% {
    transform: translateX(-50%) scale(1)
  }
  50% {
    transform: translateX(-50%) scale(1.2)
  }
  100% {
     transform: translateX(-50%) scale(1)
  }
}

.testimonial {
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    position: relative;
}

.testimonial img {
    position: absolute;
    left: 3rem;
    top: -40px;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
}

.fa-star {
    color: gold;
    margin-left: 4px;
}



.scenes {
  position: relative;
  aspect-ratio: 3 / 2;
}

.scene-1, .scene-2 {
  position: absolute;
  inset: 0;
  background-size: cover;
}


.scene-2 { 
  -webkit-mask-image: linear-gradient(to right, transparent 40%, #fff 60%);
  -webkit-mask-size: 210%;
  -webkit-mask-position: left;
    animation: slider 5s linear infinite;
}


@keyframes slider {
  0% {
    -webkit-mask-position: left;
  }
    
  50% {
    -webkit-mask-position: right;
  }
    
  100% {
    -webkit-mask-position: left;
  }
}

.card {
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    overflow: hidden;
}

.product {
    position: relative;
    z-index: 1;
}

.pulse {
  position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
    z-index: -1;
    opacity: .3;
}

.irradiance {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.irradiance::before {
    content: "";
    background: rgb(255,0,0);
background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(218,25,33,1) 17%, rgba(218,25,33,0) 52%);
    background-size: 400% 400%;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    margin-left: 3rem;
    animation: polygons 5s infinite;
}


@keyframes polygons {
  0% {
    background-position: 60% 100%;
  }
  50% {
    background-position: 30% 50%;
  }
  100% {
     background-position: 60% 100%;
  }
}

.benefits h5,
.benefits2 h5 {
    position: relative;
    z-index: 1;
}

@media screen and (min-width:768px) {
    .benefits h5::before {
        content: "";
        height: 1px;
        width: 100px;
        border-radius: 5px;
        background-color: #5b3bb6;
        position: absolute;
        top: 50%;
        right: -110px;
        transform: translateY(-50%);
    }
    .benefits h5::after {
        content: "";
        height: 10px;
        width: 10px;
        border-radius: 5px;
        background-color: #5b3bb6;
        position: absolute;
        top: 50%;
        right: -1rem;
        transform: translateY(-50%);
    }
    .benefits2 h5::before {
        content: "";
        height: 1px;
        width: 100px;
        border-radius: 5px;
        background-color: #5b3bb6;
        position: absolute;
        top: 50%;
        left: -110px;
        transform: translateY(-50%);
    }
    .benefits2 h5::after {
        content: "";
        height: 10px;
        width: 10px;
        border-radius: 5px;
        background-color: #5b3bb6;
        position: absolute;
        top: 50%;
        left: -1rem;
        transform: translateY(-50%);
    }    
    
}

.accordion-item {
    background: #fff;
    border: none!important;
}

.accordion-body {
    background-color: transparent!important;
    color: #fff;
    margin-top: 0!important;
    border-top: none!important;
    background: linear-gradient(to right, #5b3bb6, #7b5ad9);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.contentFAQ .accordion-item {
    border-bottom: none;
    margin-top: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}



.contentFAQ .accordion-button {
    font-weight: 500;
    color: #5b3bb6;
    background: transparent;
    padding: 1rem;    
}

.contentFAQ .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235b3bb6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.contentFAQ .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.contentFAQ .accordion-body {
    border-radius: 0;
    margin-top: 1rem;
}

.accordion-button:not(.collapsed) {
    font-weight: 500;
    color: #fff;
    background: linear-gradient(to right, #5b3bb6, #7b5ad9);
    padding: 1rem;
    border-bottom: none!important;
    box-shadow: none!important;
}

footer img {
    filter: brightness(0) invert();
}

@media screen and (max-width:767px) {
    .btn {
        letter-spacing: 0;
    }
    .logo {
        height: 40px!important;
    }
    .effect:before, .effect:after
{
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 20px;
    left: 1rem;
    width: 40%;
    top: 80%;
    max-width:30%;
    background: rgba(0,0,0,.25);
    box-shadow: 0 25px 10px rgba(0,0,0,.25)!important;
    transform: rotate(-3deg);
    border-radius: 20px;
}
    .testimonial img {
    position: absolute;
    left: 50%!important;
    transform: translateX(-50%);
    top: -40px;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
}
    .irradiance::before {
    content: "";
    background: rgb(255,0,0);
background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(218,25,33,1) 17%, rgba(218,25,33,0) 52%);
    background-size: 400% 400%;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    margin-left: 0rem!important;
    animation: polygons 5s infinite;
}
    html, body {
        overflow-x: hidden;
    }
}



.package {
  text-decoration: none;
  color: #222;
}
.package .colBox {
  transition: .4s;
  border: solid transparent 1px;
}
.package:hover .colBox {
  text-decoration: none;
  color: #222;
  border: solid #5b3bb6 1px;
}
.bgGradient {
  background: linear-gradient(to right, #ff7692, #ff9063);
}
.package {
  position: relative;
  z-index: 1;
}
.package1, .package2, .package3 {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  color: #fff;
  border-radius: .75rem;
  word-wrap: normal;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
    font-size: 14px;
}
.package1 {
  text-align: center;
  background-color: gold;
}
.package2 {
  text-align: center;
  background-color: orange;
}
.package3 {
  text-align: center;
  background-color: red;
}

.colBox {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}

.pulse3 {
  animation-name: pulse3;
  -webkit-animation-name: pulse3;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse3 {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes pulse3 {
  0% {
    -webkit-transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
  }
}

.sticky-bar {   
    transition: .4s ease-in;    
    background: linear-gradient(to right, #ffb2aa , #ff4073);
    margin-bottom: -90px;
    color: #fff;
}

.sticky-bar.show {
    margin-bottom: 0;
    opacity: 1;
}

.sticky-bar img {
    filter: brightness(0) invert();
}

.glowBox {
    position: relative;
    z-index: 1;
}

.glow {
    position: absolute;
    top: 16.7%;
    right: 8.1%;
      background-color:transparent;
      width:67px;
      height:59px;
      border-radius:50%;
      box-shadow: 0 0 5px red, inset 0 0 5px red;
      -webkit-animation: glow 2s infinite;
    border: solid rgba(255,0,0,.7) 8px;
    filter: blur(2px);
}

@-webkit-keyframes glow {
  0% { 
      box-shadow:0 0 5px red, inset 0 0 5px red; }
  50% { 
      box-shadow:0 0 20px red, inset 0 0 20px red; }
  100% { 
      box-shadow:0 0 5px red, inset 0 0 5px red; }
}


#particles-js {
  position: absolute;
  height: 100vh;
  width: 100vw;
    top: 0;
    left: 0; 
    z-index: -2;
    max-width: 100%;
}

.container .inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px 30px;
  background-color: #EEE;
}

.comparison-slider-wrapper {
  position: relative;
  width: 100%;
  background-color: white;
}
.comparison-slider-wrapper .comparison-slider {
  position: relative;
  width: 100%;
  margin: 0;
  border: 0 white solid;
  box-sizing: border-box;
}
.comparison-slider-wrapper .comparison-slider > img {
  width: 100%;
  height: auto;
  display: block;
}
.comparison-slider-wrapper .comparison-slider .overlay {
  display: none;
  position: absolute;
  width: 250px;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  box-sizing: border-box;
  color: #DDD;
  text-align: right;
}
@media screen and (min-width: 767px) {
  .comparison-slider-wrapper .comparison-slider .overlay {
    display: block;
  }
}
.comparison-slider-wrapper .comparison-slider .resize {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}
.comparison-slider-wrapper .comparison-slider .resize > img {
  display: block;
}
.comparison-slider-wrapper .comparison-slider .resize .overlay {
  right: auto;
  left: 20px;
  text-align: left;
}
.comparison-slider-wrapper .comparison-slider .divider {
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  left: 50%;
  top: 0;
  bottom: 0;
  margin-left: -1px;
  cursor: ew-resize;
}
.comparison-slider-wrapper .comparison-slider .divider:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: -9px;
  top: 50%;
  margin-top: -10px;
  background-color: #5b3bb6;
  transform: rotate(45deg);
  transition: all 0.1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: -5px;
  top: 50%;
  margin-top: -6px;
  background-color: white;
  transform: rotate(45deg);
  transition: all 0.1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider.draggable:before {
  width: 30px;
  height: 30px;
  left: -14px;
  margin-top: -15px;
}
.comparison-slider-wrapper .comparison-slider .divider.draggable:after {
  width: 20px;
  height: 20px;
  left: -9px;
  margin-top: -10px;
  background-color: #5b3bb6;
}
.comparison-slider-wrapper .caption {
  position: relative;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 12px;
  font-style: italic;
}

.effect
{
    position: relative;
}
.effect:before, .effect:after
{
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 20px;
    left: 1rem;
    width: 50%;
    top: 80%;
    max-width:50%;
    background: #777;
    box-shadow: 0 40px 20px rgba(0,0,0,.25);
    transform: rotate(-3deg);
    border-radius: 20px;
}
.effect:after
{
    transform: rotate(3deg);
    right: 1rem;
    left: auto;
}


.head {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;    
    animation: head 5s linear infinite;
}

@-webkit-keyframes head {
  0% { 
      right: 0;
      opacity: 0;
    }
    30% {
        opacity: 1;
    }  
  50% { 
      right: calc(100% - 200px);
      opacity: 1;
    }
    60% {
        opacity: 0;
    }
    100% {
        right: 0;
      opacity: 0;
    }
    
}


.headerCircle {
  position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
    z-index: -1;
    opacity: .5;
    
}
.headerCircle:after, .headerCircle:before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.headerPulse:before, .headerPulse:after {
  position: absolute;
  background: red;
  animation: headerPulse 2s linear infinite;
  opacity: 0;
}
.headerPulse:after {
  animation: headerPulse 2s linear 0.3s infinite;
}

@keyframes headerPulse {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.glowImg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    animation: glowImg 5s linear infinite;
}

@keyframes glowImg {
  0%, 100% {
    opacity: 0;
  }
  40%, 60% {
    opacity: 1;
  }
}

.floating {
    position: absolute;    
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: floating 5s linear infinite;
    height: 100%;
    width: auto;
    filter: drop-shadow(0px 10px 10px rgba(0,0,0,.5));
}


@keyframes floating {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 10%;
      
  }
}

.playButton {
    z-index: 9;
}
#headerVideoContainer {
  display: inline-block;
  position: relative;
}
.material-symbols-outlined {
  font-size: 6rem !important;
  color: #fff !important;
  font-variation-settings:
    'FILL'1, 'wght'700, 'GRAD'0, 'opsz'24
}
#muteUnmuteButton {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  color: #000000;
  padding: 10px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#muteUnmuteButton {
  background-color: transparent;
  opacity: .75 !important;
}
header video {
  border: solid #fff 10px;
}
