

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #000 !important;
}

a {
  color: #426FEB;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}
.getstarted.scrollto.darkHeader{
  color: #fff !important;
  background: #426FEB !important;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
#button {
  display: inline-block;
  background-color: #426feb;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 30px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #426FEB;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}


#header .logo img {
  height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
a.getstarted.scrollto.dis-mob {
  display: none;
}
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #426FEB;
}

.getstarted,
.getstarted:focus {
  padding: 7px 14px 7px 14px;
  margin-left: 30px;
  border-radius: 8px;
  color: #426FEB;
  border: 1.5px solid #426FEB;
}

.getstarted:hover,
.getstarted:focus:hover {
  color: #fff;
  background: #426FEB;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #426FEB;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    color: #000;
  }
  i.fa.mobile-nav-toggle.fa-times {
    color: #fff;
    font-size: 18px;
    top: 25px;
}
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(42 42 42 / 90%);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 10px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #426FEB;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #426FEB;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  position: relative;
}

#hero:before {
  content: "";
  background: rgb(255 255 255);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 72px;
  color: #27282B;
  margin-bottom: 20px;
}

#hero p {
  font-size: 20px;
  color: #5D616C;
  font-weight: 400;
}
#hero p.small-text{
  font-size: 14px;
  color: #5D616C;
  font-weight: 400;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10.5px 21px 10.5px 21px;
  border-radius: 15px;
  transition: 0.5s;
  margin-top: 15px;
  color: #fff;
  background: #426FEB;
  margin-bottom: 20px;
}

#hero .btn-get-started:hover {
  background: #426FEB;
}

.header-img {
  width: 90%;
  margin: auto;
  margin-top: 35px;
}
.header-img  img{
  width: 100%;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
    padding-top: 180px;
  }
}

@media (max-height: 800px) {
  #hero {
    height: auto;
  }
}

@media (max-width: 992px) {
  #hero {
    height: auto;
    padding-top: 140px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero p {
    font-size: 14px;
    color: #5D616C;
    font-weight: 400;
    margin-bottom: 0px;
}
#hero p.small-text {
  font-size: 10px;
  color: #5D616C;
  font-weight: 600;
}

}
/*--------------------------------------------------------------
# Sections traders-trust
--------------------------------------------------------------*/
.traders-trust {
  background: #18191B;
}
.traders-trust h1{
  color: #777A87;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 50px;
}
.traders-trust h1 span{
  color: #fff;
}
.traders-trust-box {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  width: 25%;
}
.traders-trust-box h6{
  color: #777A87;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-size: 17px;
}
.traders-trust-box h2{
  color:#fff;
  font-weight: 700;
  font-size: 36px;
}
.traders-trust-logo img {
  height: 38px;
}

.traders-trust-logo img:nth-child(2){
  margin-left: 8px;
}
/*--------------------------------------------------------------
# Sections traders-trust
--------------------------------------------------------------*/

/* Start Benafit *//* Start Benafit *//* Start Benafit */

.about img {
  width: 50px;
  margin-bottom: 25px;
  margin-top: 15px;
}

.about h5{
  color: #27282B;
  font-size: 27px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 20px;

}

.about p{
  color: #5D616C;
  font-size: 17px;
  font-weight: 200;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-title {
  text-align: left;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #27282B;
}
.section-title h2 b{
  font-weight: bold;

}




/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px 0px;
  background: #fff;
  position: relative;
  border-bottom: 1px solid #ccc;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  color: #27282B;
  margin-bottom: 20px;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
  color: #426FEB;
  font-weight: 100;
}

.faq .faq-list p {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  color: #5D616C;

}
.faq-list {
  width: 700px;
}
.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.copyright {
  color: #A2A6AE;
  font-size: 14px;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: 0em;
  text-align: center;
}
.container.d-md-flex {
  border-top: 1px solid #a0a0a0;
  padding: 10px 0px;
}
#footer {
  background: #18191B;
}

#footer .footer-top {
  padding: 30px 0 20px 0;
  background: #18191B;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  color: #fff;
  margin-bottom: 20px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  color: #A2A6AE;
  
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #426FEB;
}
#footer .footer-top .footer-links ul a img {
  width: 15px;
  margin-right: 10px;
}

@media screen and (min-device-width: 768px) and (max-device-width: 1023px) { 
  .navbar.mx-auto {
    margin-left: 0 !important;
    margin-right: 0px !important;
  }
  .container.d-flex.align-items-center {
    justify-content: space-between;
  }
  a.getstarted.scrollto {
    display: none;
  }
  a.getstarted.scrollto.dis-mob {
    display: block;
    color: #fff;
  }
  .traders-trust h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}
.traders-trust-box {
  width: 33.333%;
}
.traders-trust-box h6 {
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-size: 13px;
}
.traders-trust-box h2 {
  font-size: 25px;
}
.traders-trust-logo img {
  height: 30px;
}
}



@media screen and (min-device-width: 320px) and (max-device-width: 767px) { 
  #hero {
   padding-top: 100px;
  }
  section {
    padding: 50px 0;
    overflow: hidden;
  }
  .traders-trust h1 {
    color: #777A87;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    line-height: 45px;
}
.traders-trust-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  border: 1px solid #ffffff6e;
  padding: 10px 0px;
  margin: auto;
  border-radius: 12px;
  margin-bottom: 15px;
  height: 160px;
}
.section-title h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
  padding-bottom: 0;
  color: #27282B;
}
.about img {
  width: 50px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.about h5 {
  color: #27282B;
  font-size: 17px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 8px;
}

.about p {
  color: #5D616C;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 0px;
}
.col-lg-6.mb-5 {
  margin-bottom: 2rem !important;
}
.faq-list {
  width: 100%;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
  margin-bottom: 0px;
}
.faq .faq-list li+li {
  margin-top: 0px;
}
.faq .faq-list a {
  font-size: 13px;
  margin-bottom: 0px;
}
.faq .faq-list p {
  margin-bottom: 5px;
  font-size: 13px;
  line-height:20px;
}
.navbar.mx-auto {
  margin-left: 0 !important;
  margin-right: 0px !important;
}
.container.d-flex.align-items-center {
  justify-content: space-between;
}
a.getstarted.scrollto {
  display: none;
}
a.getstarted.scrollto.dis-mob {
  display: block;
  color: #426FEB;
}
}

