* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  background-color: #020E04;
  font-family: "Manrope", sans-serif;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

header.main {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 40px 0;
  z-index: 10;
}

header.main .row {
  align-items: center;
  justify-content: space-between;
}

header.main nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
  margin: 0;
}

header.main nav ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-decoration: none;
  padding: 8px 0;
  transition: 0.5s;
}

header.main nav ul li a:hover {
  color: #fff;
}

header.main nav ul li.button a {
  color: #fff;
  border: 2px solid #15B52B;
  padding: 14px 40px;
  border-radius: 64pc;
  font-weight: 600;
}

header.main nav ul li.button a:hover {
  background: #15B52B;
  color: #fff;
}

@media (min-width: 1200px) {
  .hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
  }
  .hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #15B52B;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-underline-from-center:hover:before,
  .hvr-underline-from-center:focus:before,
  .hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
  }
}

header.main .brand img {
  display: block;
}

.hero {
  position: relative;
  padding: 224px 0 0;
  background-size: cover;
}

.hero .row {
  align-items: flex-end;
}

.hero .desc {
  width: 50%;
  margin-bottom:56px;
}

.hero .desc h1 {
  color: #fff;
  font-weight: 800;
  font-size: 56px;
  line-height:64px;
  letter-spacing: -0.5px;
  margin: 0;
}

.hero .desc h2{
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin: 0 0 24px;
}

h1 span,
h2 span,
h3 span,
h4 span {
  color: #15B52B;
}

.hero .desc p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 32px;
  margin: 32px 0 32px;
  width:90%;
}


.hero .desc h4{
  color: #15B52B;
    font-size: 14px;
    margin: 0 0 32px;
    /* text-align: center; */
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.hero .desc p strong{
  color:#fff;
  font-weight: 600;
}

.hero .desc .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

a.primary {
  background: #15B52B;
  padding: 20px 56px;
  font-size: 16px;
  border-radius: 64px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.5s;
}

a.primary:hover {
  background: #fff;
  color: #020E04;
}

a.secondary {
  background: transparent;
  border: 2px solid #15B52B;
  padding: 18px 54px;
  font-size: 16px;
  border-radius: 64px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.5s;
}

a.secondary:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #020E04;
}

.hero .img {
  width: 50%;
}

.hero .img img {
  display: block;
  width: 100%;
  margin:0;
  animation: heroimg 8s infinite;
}

/*@keyframes heroimg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
*/
.about {
  padding: 96px 0;
  background-color:#09110A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about .row.text {
  align-items: center;
  margin-bottom:96px;
}

.about .desc {
  width: 45%;
}
.about .desc h3 {
  color: #15B52B;
  font-size: 16px;
  margin: 0;
}
.about .desc h2 {
  color: #fff;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin: 24px 0 32px;
}

.about .desc p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 28px;
  margin: 12px 0;
}

.about .desc a {
  margin-top: 32px;
  display: inline-block;
  margin-bottom:80px;
}

.about .img {
  width: 50%;
}

.about .img img {
  display: block;
  width: 100%;
  margin:0 auto;
  animation: heroimg 8s infinite;
}

.about .single-about {
  width: 31%;
}

.single-about img {
  width: 96px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 3px;
}

.single-about img.click{
    width: 100%;
    max-width: 325px;
    background:transparent;
    border-radius: 0;
    margin:40px 0 0;
    padding:0;
    display: block;

}

.about .single-about h4 {
  color: #fff;
  font-size: 21px;
  margin: 24px 0 24px;
}

.about .single-about hr{
  display: block;
  margin: 24px 0;
  width: 15%;
  height: 2px;
  border: 0;
  background: #15B52B;
}

.about .single-about p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  width: 90%;
  line-height: 25px;
}

.about .single-about p strong{
  color:#fff;
}

.card {
  padding: 64px 0px;
  background-image: url("bg-cosmos.png");
  background-size: cover;
}

.card .row {
  align-items: center;
}

.card .desc {
  width: 45%;
}
.card .desc h3 {
  color: #15B52B;
  font-size: 16px;
  margin: 0;
}
.card .desc h2 {
  color: #fff;
  font-weight: 800;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin: 24px 0 32px;
}

.card .desc p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 28px;
  margin: 12px 0;
}
.card .desc p.strong {
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
}
.card .desc a {
  margin-top: 32px;
  display: inline-block;
}

.card .img {
  width: 50%;
}

.card .img img {
  display: block;
  width: 100%;
  animation: heroimg 8s infinite;
}

footer.main {
  padding: 0 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer.main .copy {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  align-items: center;
}

footer.main .copy ul{
  list-style: none;
  display:flex;
  gap:32px;
  padding:0;
  margin:0;
}

footer.main .copy ul li a{
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

footer.main .copy span {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer.main .white-logo {
  display: block;
  margin: -45px auto 0;
}

footer.main .cta-wrapper {
  flex-direction: column;
}

footer.main .cta-wrapper h2 {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 40px auto 40px;
}

footer.main .cta-wrapper a {
  width: 100%;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.timeline{
  padding: 80px 0 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline h3.section-header{
  width: 100%;
  text-align: center;
  color: #15B52B;
  font-size: 16px;
  margin: 0;
}

.timeline h2.section-header{
width: 100%;
text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin: 16px 0 64px;
}

.timeline .col{
  width:48%;
  padding: 32px;
  background: rgba(255,255,255,.05);
  border-radius: 3px;
}

.timeline .col ul{
  list-style: none;
  padding:0;
  margin:0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 28px;
}

.timeline .col ul li{
  padding-left:24px;
  position: relative;
}

.timeline .col ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #15B52B; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  position:absolute;
  left:0;
  top:0;
}

.timeline-wrapper{
  margin-top:96px;
}

.timeline .timeline-wrapper h2.section-header{
  margin-bottom:80px;
}

ul.timeline-ul{
  display:flex;
  list-style: none;
  margin:0;
  padding:0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 28px;
  position: relative;
}

ul.timeline-ul:before{
  content:"";
  width:105%;
  height: 1px;
  background:rgba(255,255,255,.2);
  position: absolute;
  top:0;
  left:-2.5%;
}

ul.timeline-ul li{
  position: relative;
  min-width: 25%;
}

ul.timeline-ul > li::before{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
  background: #15B52B;
  margin: -6px 0 32px;
  content: "";
}

ul.timeline-ul ul{
  list-style: none;
  padding:0;
  margin:0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 25px;
  width:80%
}

ul.timeline-ul ul li{
  padding-left:24px;
  position: relative;
}

ul.timeline-ul h3{
  position: relative;
  color: #fff;
  margin: 0px 0 32px;
  font-size: 21px;
}

ul.timeline-ul ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #15B52B; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  position:absolute;
  left:0;
  top:0;
}

.pricing{
  padding: 80px 0 120px;
  background-color: #09110A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.pricing h3.section-header{
  width: 100%;
  text-align: center;
  color: #15B52B;
  font-size: 16px;
  margin: 0;
}

.pricing h2.section-header{
width: 100%;
text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin: 16px 0 72px;
}

.pricing .columns{
  justify-content: center;
}

.pricing .single-column{
  width: 100%;
    max-width: 650px;
  margin:0 5%;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 28px;
}

.pricing .single-column img{
  display: block;
  width: 100%;
  max-width: 120px;
  margin: -70px auto 40px;
  animation: heroimg 8s infinite;
}

.pricing .single-column.standard img{
  opacity:.75;
}

.pricing .single-column h3, .pricing .single-column ul{
  position: relative;
  z-index: 1;
}

.pricing .single-column h3{
  color: #fff;
  font-size: 21px;
  text-align: center;
  margin: 0 0 40px;
}

.pricing .single-column h3 small{
  color:#15B52B
}


.pricing ul{
  list-style: none;
  padding:0;
  margin:0 auto;
  width: 95%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 30px;
}

.pricing ul li{
  padding-left:24px;
  margin:8px 0;
  position: relative;
}

.pricing ul li strong{
  color:#fff;
  font-weight: 600;
}

.pricing ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #15B52B; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  position:absolute;
  left:0;
  top:0;
}

.pricing ul > strong{
  
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin: 12px 0;
  display: block;
  text-align: center;
  color: #fff;
}

.pricing a.primary, .pricing a.secondary{
  
  display: block;
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 800px) {
  section {
    max-width: 100vw;
    overflow: hidden;
  }
  .container {
    padding: 0 20px;
  }
  header.main nav {
    display: none;
  }
  header.main .row {
    justify-content: center;
  }
  .hero {
    padding-top: 156px;
    padding-bottom: 24px;
  }
  .hero .desc {
    width: 100%;
    order: 2;
    margin:0 0;
    padding-top:32px;
    border-top:1px solid rgba(255,255,255,.1)
  }
  .hero .img {
    width: 100%;
    order: 1;
  }
  .hero img {
    width: 100%;
  }
  .hero .desc h1 {
    font-size: 26px;
    line-height: 36px;
    text-align: center;
  }
  .hero .desc p {
    text-align: center;
    font-size: 16px;
    line-height: 28px;
  }
  .hero .btns a,
  .about .desc a,
  .card .desc a {
    width: 100%;
    text-align: center;
  }
  .about {
    padding-top: 64px;
    padding-bottom: 24px;
  }
  .about .desc {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .about .desc h2 {
    color: #fff;
    font-weight: 800;
    font-size: 26px;
    line-height: 36px;
  }
  .about .img {
    width: 100%;
    order: 1;
    margin: 0;
  }
  .about .img img {
    width: 100%;
    margin: 0;
  }
  /* .about .row.text {
    margin-bottom: 64px;
  } */
  .about .single-about {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .about .single-about img {
    display: block;
    margin: 0 auto;
  }
  .about .single-about p {
    margin: 0 auto;
  }
  .card {
    padding-top: 24px;
    padding-bottom: 120px;
  }
  .card .desc {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .card .desc h2 {
    color: #fff;
    font-weight: 800;
    font-size: 26px;
    line-height: 36px;
  }
  .card .img {
    width: 100%;
    order: 1;
    margin: 0;
  }
  .card .img img {
    width: 100%;
    margin: 0;
  }
  footer.main .cta-wrapper h2 {
    font-size: 26px;
  }
  .hero .img img{
    margin:0;
  }
  br{
    display: none
  }
  .timeline .col{
    width:100%;
    margin-bottom: 40px;
  }
  ul.timeline-ul{
    flex-wrap: wrap;
  }
  ul.timeline-ul:before{
    display:none;
  }
  ul.timeline-ul > li{
    width:100%;
    margin-bottom:40px;
  }
  ul.timeline-ul li:before{
    display: none;
  }
  .pricing .single-column{
    width:100%;
    margin:0 0 160px;
  }
  .pricing .single-column:last-of-type{
    margin:0;
  }
  footer.main .copy ul{
    flex-direction: column;
    width: 100%;
    margin: 16px 0;
    gap: 4px;
  }
}

header.main.static{
  position: initial;
}

.page--content{
    padding: 56px 0 120px;
    background-image: url(bg-cosmos.png);
    background-size: cover;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Manrope", sans-serif !important;
  color:#fff;
  font-size:15px !important;
}

.page--content p, .page--content ol,.page--content ul{
  margin:8px 0;
  font-size:15px;
  line-height: 25px;
}

.page--content a{
  color:#15B52B;
}


#countdown ul{
  gap:16px;
  display:flex;
  margin:0 0 32px;
  padding:0;
}

#countdown2{
  width:100%
}

#countdown2 ul {
  gap:16px;
  display:flex;
  margin:0 auto 132px;
  padding:0;
  justify-content: center;
}


#countdown ul{
  width:100%;
  justify-content: center;
  margin:0;
}

#countdown ul li{
  background: rgba(255,255,255,.05);
  width: 85px;
  height: 110px;
  border-radius: 3px;
  color: rgba(255,255,255,.75);
  flex-wrap: wrap;
  gap: 0;
  line-height: 28px;
  font-size: 14px;
  font-weight: 500;
  flex-direction: column;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 0;
}

#countdown h4, #countdown2 h4{
  color: #15B52B;
  font-size: 14px;
  margin: 0 auto 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

#countdown{
  padding:32px 0;
  position: relative;
  background:#161D16;
  z-index: 1;
}

#countdown2 ul li{
  background: rgba(255,255,255,.05);
  width: 85px;
  height: 110px;
  border-radius: 3px;
  color: rgba(255,255,255,.75);
  flex-wrap: wrap;
  gap: 0;
  line-height: 28px;
  font-size: 14px;
  font-weight: 500;
  flex-direction: column;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding:0;
}

#countdown2 ul li:before{
  display:none;
}

#countdown ul li span{
  display: block;
  font-weight: 700;
  font-size: 44px;
  color: #fff;
  width: 100%;
  line-height: 44px;
}

#countdown2 ul li span{
  display: block;
  font-weight: 700;
  font-size: 44px;
  color: #fff;
  width: 100%;
  line-height: 44px;
}

@media (max-width:800px){
  #countdown{
    margin:0 0 56px;
    width:90%;
    margin:0 auto;
  }
  #countdown ul li span, #countdown2 ul li span{
    font-size:24px;
    line-height:32px;
  }
  #countdown ul li, #countdown2 ul li{
    font-size:13px;
    height:90px
  }
}

.ml-subscribe-form{

}

.ml-subscribe-form input[type="email"] {
  width: 100%;
  padding: 16px 32px;
  background: rgba(255,255,255,.05);
  border-radius: 24px;
  display: block;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.1);
  font-size: 15px;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.ml-subscribe-form input[type="email"]::placeholder{
  color:rgba(255,255,255,.8);
}

.ml-subscribe-form input[type="text"] {
  width: 100%;
  padding: 16px 32px;
  background: rgba(255,255,255,.05);
  border-radius: 24px;
  display: block;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.1);
  font-size: 15px;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.ml-subscribe-form input[type="text"]::placeholder{
  color:rgba(255,255,255,.8);
}

.ml-subscribe-form button.primary {
  background: #15B52B;
  padding: 16px 56px;
  width: 100%;
  font-size: 16px;
  border-radius: 64px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  transition: 0.5s;
  cursor:pointer;
}

.ml-subscribe-form p.small{
  
  font-size: 11px;
  line-height: 20px;
  margin: 24px 0;
  color: rgba(255,255,255,.5);
}

.ml-subscribe-form{
  width: 100%;
  max-width: 500px;
}

.ml-subscribe-form .ml-form-successContent{
  text-align: center;
  color:#fff;;
}

.pricing .ml-subscribe-form{
  margin: 0 auto;
}

.thank-you {
  position: relative;
  padding: 196px 0 0;
  background-size: cover;
}

.thank-you .row{
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin:0 auto;
  text-align: center;
}

.thank-you .row > *{
  width:100%;
}

.thank-you h2 {
  color: #fff;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -0.5px;
  margin: 0 0 32px;
}

.thank-you p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 32px;
  margin: 8px auto;
  width: 90%;
}

.thank-you h3 {
  color: #fff;
  font-weight: 800;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.5px;
  margin: 32px 0 24px;
}

.thank-you  a.cta{
  background: #15B52B;
  padding: 16px 56px;
  width: 100%;
  font-size: 16px;
  border-radius: 64px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  transition: 0.5s;
  cursor: pointer;
  max-width: 300px;
  margin: 24px auto 0;
}

.about--point{
  margin:144px 0;
  align-items: center;
}

@media (max-width:800px){
  .thank-you h2 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom:24px;
  }
  
  .thank-you h3 {
    font-size: 24px;
    line-height: 36px;
    margin:24px 0;
  }
  .thank-you{
    padding:156px 0 24px;
  }
  .hero .desc h2{
    text-align: center;
  }
  #countdown{
    width:100%;
  }
}

.sl-wrapper{
  background-color:rgba(0,0,0,0.75);
}

.testimonies{
  padding:56px 0 96px;
}

.testimonies .row{
  align-items: stretch;
}

.testimonies h2{
  color: #fff;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin: 0 0 64px;
  text-align: center;
  width: 100%;
}

.testimonies .single-testimony {
  width: 48%;
  color: #fff;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.05);
  background: #161D16;
  border-radius: 3px;
  margin-bottom: 40px;
}

.testimonies .single-testimony  .stars{
  color:#15B52B;
  letter-spacing: 5px;
}

.testimonies .single-testimony h5{
  color:#15B52B;
  font-size:16px;
  font-weight: 600;
  margin:0;
}

.testimonies .single-testimony p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 28px;
  margin: 32px 0 24px;
}

.testimonies video{
  width: 100%;
  border: 10px solid #161D16;
  border-radius: 3px;
  display:block;
}

.testimonies .owl-carousel{
  margin:24px 0 80px;
}

.testimonies .owl-theme .owl-nav.disabled+.owl-dots{
  margin-top:32px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
  background:#15B52B;
}

@media (max-width:800px){
  .testimonies{
    padding:40px 0 56px;
  }
  .testimonies h2{
    font-size:26px;
    line-height: 36px;
    margin:0 0 32px;
  }
  .testimonies .single-testimony{
    width: 100%;
  }
}

.days30{
  flex-direction: column;
}

.days30  h6{
  color: #fff;
  font-weight: 800;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin: 56px 0 40px;
  text-align: center;
  width: 100%;
}

.days30 p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 28px;
  margin: 8px auto;
  text-align: center;
  max-width: 700px;
}

.days30 p strong{
  font-weight: 600;
  color:#15B52B;
  font-size:18px
}