<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/Roboto-Regular.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: italic;
  src: url(../fonts/Roboto-Italic.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 100;
  font-style: normal;
  src: url(../fonts/Roboto-Thin.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 100;
  font-style: italic;
  src: url(../fonts/Roboto-ThinItalic.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 300;
  font-style: normal;
  src: url(../fonts/Roboto-Light.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 300;
  font-style: italic;
  src: url(../fonts/Roboto-LightItalic.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
  src: url(../fonts/Roboto-Medium.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 500;
  font-style: italic;
  src: url(../fonts/Roboto-MediumItalic.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-style: normal;
  src: url(../fonts/Roboto-Bold.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-style: italic;
  src: url(../fonts/Roboto-BoldItalic.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 900;
  font-style: normal;
  src: url(../fonts/Roboto-Black.ttf)
    format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-weight: 900;
  font-style: italic;
  src: url(../fonts/Roboto-BlackItalic.ttf)
    format("truetype");
}

body {
  font-family: Roboto, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 33px;
  font-weight: 900;
  line-height: 39px;
  color: #575756;
  margin-bottom: 10px;
}

.header {
  padding: 21px 100px;
  background-color: #fff;
}

.header-logo {
}

.header-logo img {
  height: 55px;
}

/* Hero */
.hero-section {
  position: relative;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url(../images/hero-bg.png);
  background-size: cover;
  background-position: center;
  padding: 90px 100px;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 100px;
}

.left {
  flex: 2;
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 45px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
}

.right {
  flex: 1;
}

.video-section {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.video-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1440px) and (min-width: 1280px) {
  .hero-content {
    gap: 50px;
  }
  .left,
  .right {
    flex: 1;
  }
}

@media (max-width: 1280px) and (min-width: 768px) {
  .hero-section {
    padding: 70px 20px;
  }
  .hero-content {
    gap: 50px;
  }
  .left,
  .right {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 10px;
  }
  .hero-content {
    gap: 10px;
    flex-direction: column;
  }
  .video-section {
    margin-bottom: 50px;
    margin-top: 20px;
  }
}

/* Success stories */
.success-stories {
  background-color: #f6f6f6;
  text-align: center;
  padding: 70px 0px;
}

.success-subtitle {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: #575756;
  margin-bottom: 40px;
}

.success-cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.success-card {
  border-radius: 5px;
  overflow: hidden;
  flex: 1;
}

.success-caption {
  background-color: #e4e4e4;
  color: #575756;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding: 20px 30px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .success-cards {
    flex-direction: column;
  }

  .success-card {
    width: 100%;
  }
}

/* Investment calculator */
.investment-calculator {
  text-align: center;
  padding: 70px 0px;
  background-color: #fff;
}

.investment-calculator h2 {
  margin-bottom: 10px;
}

.investment-calculator p {
  font-size: 33px;
  font-weight: 600;
  line-height: 39px;
  text-align: center;
  margin-bottom: 20px;
  color: #575756;
}

.investment-calculator .slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.investment-calculator .profit {
  margin-top: 20px;
  margin-bottom: 30px;
}

.investment-calculator .profit p {
  font-size: 33px;
  font-weight: 600;
  line-height: 39px;
  text-align: center;
  color: #575756;
  margin-bottom: 10px;
}

.investment-calculator .profit h3 {
  font-size: 33px;
  font-weight: 600;
  line-height: 39px;
  text-align: center;
  color: #575756;
}

.arrow-button {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  color: #3a72d3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.arrow-button:hover {
  color: #3a72d3;
}

.arrow-button .circle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3a72d3;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.arrow-button .circle-icon img {
  width: 12px;
  height: 12px;
  rotate: 90deg;
}

.arrow-button .join-now:hover .circle-icon {
  background-color: #3a72d3;
}

@media (max-width: 1200px) {
  .investment-calculator {
    padding: 40px 10px;
  }
  .arrow-button.mob-hide {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .arrow-button.tablet-hide {
    display: none !important;
  }
}

/* Advantages */
.advantages {
  padding: 70px 0;
  background-color: #f6f6f6;
  text-align: center;
}

.advantages .section-title {
  margin-bottom: 40px;
}

.advantage-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 80px;
  row-gap: 50px;
}

.advantage-item {
  display: flex;
  align-items: center;
  flex: 0 1 calc(50% - 80px);
}

.advantage-item .number {
  font-size: 128px;
  font-weight: 900;
  color: #3a72d3;
  line-height: 150px;
  margin-right: 40px;
}

.advantage-item .text {
  text-align: left;
}

.advantage-item .text h3 {
  font-size: 22px;
  color: #3a72d3;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: 900;
}

.advantage-item .text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: hsla(60, 1%, 34%, 1);
}

@media (max-width: 768px) {
  .advantage-item {
    flex: auto;
  }
}

/* Reviews */
.reviews {
  text-align: center;
  background-color: #fff;
  padding: 70px 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews-subtitle {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: #575756;
  margin-bottom: 40px;
  text-align: center;
  max-width: 70%;
}

.swiper-wrapper {
  width: 100%;
}

.swiper {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 40px;
}

.swiper-slide {
  display: flex;
}

.reviews-card {
  background-color: #fff;
  width: 370px;
  min-height: 270px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.reviews-card-header {
  background-color: #3a72d3;
  color: #fff;
  padding: 15px;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.reviews-card-body {
  color: #444;
  font-size: 16px;
  line-height: 26px;
  flex-grow: 1;
  padding: 20px 30px;
}

.reviews-card-body p {
  margin: 0;
}

/** FAQ **/
.faq-section {
  padding: 70px 0;
  background-color: #f6f6f6;
  text-align: center;
}

.faq-section .section-title {
  margin-bottom: 40px;
}

.faq-section .accordion {
  border-top: 1px solid #575756;
}

.faq-section .faq-item {
  border-bottom: 1px solid #575756;
  padding: 20px 0;
}

.faq-section .faq-question {
  margin-bottom: 10px;
}

.faq-section .faq-btn {
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  color: #575756;
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.faq-section .faq-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/arrow_down.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
.faq-section .faq-btn.collapsed::after {
  transform: translateY(-50%) rotate(-180deg);
}

.faq-section .faq-answer {
  font-size: 14px;
  color: hsla(60, 1%, 34%, 1);
  font-style: italic;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
  display: none;
}

.faq-section .faq-answer.show {
  display: block;
}

@media (max-width: 768px) {
  .faq-section .faq-btn {
    font-size: 20px;
    padding-right: 40px;
  }
}

/* CTA */
.cta-section {
  display: flex;
  padding: 40px 0px;
  background-color: #fff;
}

.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.cta-left {
  width: 100%;
}

.cta-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 52px;
  color: #575756;
  margin-bottom: 40px;
}

.cta-list {
  list-style: disc;
  margin-left: 20px;
  color: #575756;
  line-height: 40px;
  font-weight: 400;
}

.cta-right {
  width: 100%;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 20.9px 3.1px rgb(13 13 13 / 43%);
  padding-bottom: 10px;
}

.countdown {
  display: flex;
  justify-content: space-around;
}

.countdown ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
}

.countdown li {
  display: flex;
  align-items: center;
  height: 100px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.countdown-item-dots {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 15px;
}

.countdown-time {
  font-size: 40px;
  font-weight: 900;
  line-height: 47px;
  color: #3a72d3;
}

.countdown-label {
  font-size: 12px;
  color: #777;
}

.countdown_dots {
  height: 20px;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
  }
}

/* Comments */
.comments-section {
  padding: 50px 0px;
  color: #333;
  background-color: #fff;
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 10px;
  margin-bottom: 55px;
}

.comments-count {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #1a1a1a;
}

.comments-sort {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sort-button {
  border: 1px solid #d3d3d3;
  background: #f1f1f1;
  padding: 0px 17px;
  text-decoration: none;
  color: inherit;
  border-radius: 3px;
}

.comments-list {
  list-style: none;
  padding: 0;
}

.comment {
  display: flex;
  gap: 47px;
  margin-bottom: 20px;
}

.comment-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.comment-content {
  flex: 1;
}

.comment-author {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
  color: #074d72;
}

.comment-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

.comment-text a {
  color: inherit;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.actions-buttons {
  display: flex;
  align-items: center;
  gap: 3px;
}

.actions-buttons .like-button,
.actions-buttons .reply-button {
  border: none;
  background: none;
  color: #074d72;
  font-weight: bold;
  text-decoration: none;
}

.actions-buttons .like-button:hover,
.actions-buttons .reply-button:hover {
  text-decoration: underline;
}

.actions-stats {
  display: flex;
  align-items: center;
  color: #020507;
}

.actions-stats .comment-likes::after {
  content: "Â·";
  margin: 0 5px;
  color: #777;
  font-weight: normal;
}

.comment-replies {
  margin-left: 135px;
  border-left: 1px solid #d9d9d9;
  margin-bottom: 55px;
  padding-right: 75px;
}

.comment-replies &gt; .comment.reply:not(:last-child) {
  margin-bottom: 30px;
}

.comment.reply {
  margin-bottom: 0;
}

.reply .comment-avatar img {
  width: 70px;
  height: 70px;
}

.reply {
  padding-left: 15px;
}

.show-more {
  background-color: #e9e9e9;
  padding: 10px;
  width: 611px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #020507;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin-left: 15px;
}

.show-more:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .comment-replies {
    margin-left: 0;
    padding-right: 15px;
  }

  .comment-avatar img,
  .reply .comment-avatar img {
    width: 50px;
    height: 50px;
  }

  .comment {
    gap: 20px;
  }

  .show-more {
    width: 100%;
  }
}

/* Footer */
.footer {
  background-color: #f6f6f6;
  padding: 80px 100px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: start;
  padding-bottom: 20px;
}

.footer-logo img {
  width: 160px;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #575756;
  margin: 30px 0;
}

.footer-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px;
  color: #575756;
}

.footer-content p {
  margin-bottom: 20px;
}

.footer-links {
  margin: 20px 0;
  font-size: 14px;
}

.footer-links a {
  color: inherit;
  margin: 0 5px;
}

.footer-bottom {
  font-size: 12px;
  color: #575756;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom span {
  margin-left: 5px;
}

@media (max-width: 768px) {
  .footer {
    padding: 70px 20px 20px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-links a {
    margin: 0;
  }
}

.cta-right .form .lander-form-wrapper {
  background: #f8f8f8 !important;
  box-shadow: none !important;
}

.hero-content .right .lander-form-wrapper {
  background-color: #f8f8f8 !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.modal-dialog {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  margin: auto;
}

.modal-content {
  border-radius: 8px;
  overflow: hidden;
}

.modal-header {
  background-color: #003366;
  color: white;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header h5 {
  margin: 0;
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.modal-body {
  padding: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #002855;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #004080;
}

.spinner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.loading {
  width: 30px;
  height: 30px;
  border: 4px solid #002855;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.modal-footer {
  padding: 16px;
  text-align: center;
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.clickable {
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.display-5 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.fw-bold {
  font-weight: 700;
}

.mb-3 {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
}

.fw-semibold {
  font-weight: 600;
}

.mt-4 {
  margin-top: 1.5rem;
}

.text-muted {
  color: #6c757d;
}

.ms-3 {
  margin-left: 1rem;
}

ul {
  padding-left: 0;
  list-style: none;
}

ul.ms-3 li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.link {
  color: #3a72d3;
}

.link:hover {
  text-decoration: underline;
}

.iti__country-list {
  color: #020507 !important;
}
</pre></body></html>