/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body{
  max-width: 600px;
  Margin: 0 auto;
}

:root {
  scroll-behavior: smooth;
}
a {
  color: var(--color-links);
  text-decoration: none;
}
a:hover {
  color: var(--color-white);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
}
p{
  line-height: 25px;
  font-size: 15px;
}
.logo-img{
  max-width: 220px;
}

li {
  line-height: 30px;
}
@media (max-width: 425px) {
.mobile-center{
  text-align: center;
}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before, #preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}
.section-header h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 10px;
  color: var(--color-default);
  text-align: center;
}
.section-header h4 {
  color: var(--color-primary);
  font-size: 18px;
}
@media (max-width: 768px) {
  .section-header h2 {
      font-size: 25px;
  }
}
@media (max-width: 425px) {
  .section-header h2 {
      font-size: 22px;
      line-height: 30px;
  }
}
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}
.scroll-top:hover {
  background: var(--color-links-hover);
  color: var(--color-white);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-animated .hero-title {
  font-weight: 600;
  font-size: 40px;
  color: var(--color-default);
  line-height: 55px;
}
.hero-animated .hero-title span {
  color: var(--color-primary);
}
.hero-animated h4 {
  font-size: 18px;
  color: var(--color-primary);
}
.hero-animated h2 span {
  color: var(--color-primary);
}
.hero-animated .hero-desc {
  font-size: 20px;
  line-height: 35px;
}
.hero-animated .logo{
  width: 300px;
}
.hero-animated .payment img {
  width: 300px;
}
.video {
  margin-top: 30px;
}
.red-bouns{
  color: #bf0000;
}
.green-bouns{
  color: #198754;
}
@media (max-width: 768px) {
  .hero-animated .hero-title {
    font-size: 30px;
  }
  .hero-animated .hero-desc {
    font-size: 20px;
    line-height: 30px;
}
}
@media (max-width: 425px) {
  .hero-animated .hero-title {
    font-size: 25px;
    line-height: 35px;
  }
  .hero-animated .hero-desc {
    font-size: 18px;
    line-height: 25px;
}
}  
/*--------------------------------------------------------------
# why-us Section
--------------------------------------------------------------*/
.why-us {
  background: var(--color-default);
  color: var(--color-white);
}
.why-us .section-header h2{
  color: var(--color-white);
}
.why-us .check-list {
  list-style: none;
  padding: 0;
  line-height: 38px;
}
.why-us .check-list li:before {
  content: '✓';
  margin-left: 10px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  height: 20px;
  display: inline-block;
  font-size: 14px;
}

.hero-h2{
    font-size: 16px;
    padding: 15px;
    background: #bdffc1;
    margin-bottom: 0;
    margin-top: 15px;
}

.hero-h2 img{
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    float: right !important;
    top: -10px !important;
    position: relative !important;
    
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--color-secondary);
}
.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.faq .content p {
  font-size: 15px;
  color: var(--color-gray);
}
.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}
.faq .accordion-item {
  border: 0;
  margin-top: 15px;
  box-shadow: 0px 5px 25px 0px rgba(var(--color-black-rgb), 0.06);
}
.faq .accordion-collapse {
  border: 0;
}
.faq .accordion-button {
  padding: 15px 40px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 16px;
  color: var(--color-default);
  text-align: right;
  background: var(--color-white);
  box-shadow: none;
  border-radius: 5px;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}
.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}
.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--color-primary);
}
.faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: none;
}

.progress {
  height: 30px;
  font-size: 15px;
  border-radius: 0;
  background-color: var(--color-white);
}
/*--------------------------------------------------------------
# bouns Section
--------------------------------------------------------------*/
.bouns{
  background: var(--color-secondary);
}
.bouns .section-header{
  text-align: center;
}
/*--------------------------------------------------------------
# modal
--------------------------------------------------------------*/
.modal-header .btn-close {
  margin: -0.5rem auto -0.5rem -0.5rem;
}
.modal-content {
  background-image: url(../img/investor-popup.png);
  background-color: var(--color-white);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 0;
}
.modal-body .contact{
  background: unset;
}
.contact-form {
  padding: 30px 20px;
}
.contact-form .php-email-form .form-group {
  padding-bottom: 5px;
}
.contact-form .php-email-form input[type=text], .contact-form .php-email-form input[type=email],.contact-form .php-email-form input[type=tel],.contact-form .php-email-form input[type=number], .contact-form .php-email-form select ,.contact-form .php-email-form select:focus , .contact-form .php-email-form textarea{
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background-color: transparent;
}
.contact-form .php-email-form select option:hover{
  background: var(--color-primary);

}

.contact-form .php-email-form select {
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px 17px;
}
.contact-form .php-email-form input[type=text]:focus, .contact-form .php-email-form input[type=email]:focus,.contact-form .php-email-form input[type=tel]:focus, .contact-form .php-email-form input[type=number]:focus,.contact-form .php-email-form select:focus , .contact-form .php-email-form textarea:focus {
  border-color: var(--color-primary);
}
.contact-form .php-email-form input[type=text], .contact-form .php-email-form input[type=email],.contact-form .php-email-form input[type=tel] ,.contact-form .php-email-form input[type=number] , .contact-form .php-email-form select{
  height: 45px;
  padding: 10px 15px;
}

.contact-form .php-email-form .form-check-label {
  font-size: 14px;
  color: var(--color-default);
}
.contact-form .php-email-form .form-check .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: unset;
}
.contact-form .php-email-form .form-check {
  padding-left: unset;
  padding-right: 1.5em;
}
.contact-form .php-email-form .form-check-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--color-primary-rgb), 0.2);
}
.contact-form .php-email-form .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.contact-form .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 11px 50px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 0;
}
.contact-form .bi-send::before {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.contact-form .php-email-form button[type=submit]:hover {
  background: var(--color-links-hover);
}
.btn-getstarted, .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 8px 40px;
  transition: 0.3s;
}
.btn-getstarted:hover, .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: var(--color-links-hover);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}
.footer .footer-content {
  border-bottom: 1px solid var(--color-white);
  margin-bottom: 25px;
}
.footer .footer-content img {
  width: 230px;
}
.footer .footer-content p{
  font-size: 11px;
  line-height: 20px;
}
.footer .footer-links a{
  color: var(--color-white);
  transition: 0.4s;

}
.footer .footer-links a:hover{
  color: var(--color-primary);
}
.footer .footer-legal {
  padding: 30px 0;
  background: #09060d;
}
.social-links a {
  font-size: 18px;
  padding: 0 5px;
  color: var(--color-white);
}
.social-links a:hover {
  color: var(--color-primary);
}
.footer .contact-info i {
  color: var(--color-primary);
}
@media (min-width: 425px) {
#thank-footer {
  position: fixed;
  bottom: 0;
  width: -webkit-fill-available;
}
}