body {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin: 0;
  transition: opacity 0.2s linear;
}
html{
    scroll-behavior: smooth;
}
.mainContainer{
    transition: opacity 1s;
    opacity: 0;
}
.loader{
    position: fixed;
    width: 100%;
    height: 100%;
}
/*Cinta*/
.bar{
    color: #fff;
    background-color: #000A1E;
    box-shadow: 0 -3px 7px 0 rgba(0, 0, 0, 0.49);
    /*display: flex;
    justify-content: space-between;*/
    display: -webkit-box;
    overflow-x: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 99999;
}

.bar::-webkit-scrollbar {
  width: 8px; 
  height: 12px;
}

.bar::-webkit-scrollbar-track {
  background: #00050F;        /* color of the tracking area */
}

.bar::-webkit-scrollbar-thumb {
    background-color: #032c56;
    border-radius: 20px;
    border: 2px solid #154678;
}
.bar .barScroll{
    display: flex;
    position: relative;
    animation: scroll 30s linear infinite;
}
.bar .textOne{
    position: absolute;
    background-color: #000A1E;
    padding-bottom: 22px;
    margin-left: 0;
    z-index: 2;
}
@keyframes scroll {
        0% {left:0%;}
        100% {left:-100%;}
}
.bar p{
    text-align: center;
    /*width: 25%;*/
    width: 20%;
    font-size: 70%;
    margin: 18px 10px;
    border-right: 1px solid #182336;
}
/*.bar .textThree{
    border-left: 1px solid #182336;
    border-right: 1px solid #182336;
}
.bar .textFour{
    border-right: 1px solid #182336;
}*/
.bar .variation{
    padding-left: 22px;
}
.bar .variation.less{
    color: #F31010;
}
.bar .variation.more{
    color: #8CE870;
}
.bar .variation .arrow{
    padding-left: 8px;
    margin-bottom: 2px;
}
/*Cinta*/
/*Loader*/
#container {
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      background: #ffffff;
    }
 
    .circle {
      border-radius: 50%;
      background-color: #0069bc;
      width: 150px;
      height: 150px;
      position: absolute;
      opacity: 0;
      animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
    }
 
    .item {
      z-index: 100;
    padding: 5px;
    background: #0e1a33;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    border: 4px solid #ffffff;
    }
 
    .item img {
      width: 100px;
      margin: 0 auto;
    }
    @keyframes scaleIn {
      from {
        transform: scale(.5, .5);
        opacity: .5;
      }
      to {
        transform: scale(2.5, 2.5);
        opacity: 0;
      }
    }
/*Loader*/

.visibleF{
    opacity: 1;
    max-height: 1000px;
  }
  .hiddenF{
    opacity: 0;
    max-height: 0;
  }
.fixed{
    background: #262624;
    position: fixed;
    width: 100%;
    height: 100%;
    transition: max-height 0.15s, opacity 0.15s linear;
}
.onchange{
    opacity: 0;
}
.change{
    opacity: 1;
}

.menuMobile {
  visibility: hidden;
  height: 0;
  margin-top: -20px;
}

.noShow {
  display: none;
}

.showMB {
  display: none;
}

a {
  text-decoration: none;
  -webkit-transition: all ease 300ms;
  transition: all ease 300ms;
}

.big {
  font-size: 120%;
}

.buttonCommon {
  border: 1px solid #0069bc;
  color: #ffffff;
  font-size: 70%;
  font-weight: bold;
  padding: 6px 30px;
  border-radius: 24px;
  background-color: #0069bc;
  cursor: pointer;
    display: block;
    text-align: center;
    width: 135px;
}

.buttonCommon:hover {
  background: transparent;
}

.contentBanner {
  background: url("../images/bannerTop.jpg") left top no-repeat;
  background-size: cover;
  color: #ffffff;
}

.contentBanner .topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 4%;
  padding: 10px 0 0;
  border-bottom: 1px solid #2b4268;
}

.contentBanner .topbar .options {
  display: inline-block;
}

.contentBanner .topbar a {
  color: #d5dce5;
  font-size: 70%;
  margin: 0 24px;
}

.contentBanner .topbar a:hover {
  color: #ffffff;
}

.contentBanner .topbar a.button {
  color: #ffffff;
  font-weight: bold;
  border: 1px solid #0069bc;
  padding: 8px 30px;
  border-radius: 24px;
  cursor: pointer;
}

.contentBanner .topbar a.button:hover {
  background-color: #0069bc;
}

.contentBanner .topbar a.langButton {
  color: #ffffff;
  background-color: #0069bc;
  border-radius: 5px;
  padding: 2px 4px;
  border: 1px solid #0069bc;
  display: inline-block;
  width: 18px;
  text-align: center;
  cursor: pointer;
}

.contentBanner .topbar a.langButton:hover {
  background-color: transparent;
}

.contentBanner .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 100px 10% 110px;
}

.contentBanner .content .left {
  width: 60%;
}

.contentBanner .content .left h2 {
  font-size: 250%;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.contentBanner .content .left p {
  margin: 15px 0 20px;
}

.contentBanner .content .right {
  width: 40%;
}

.whyAFX {
  background-color: #f5f6f8;
  text-align: center;
  padding: 50px 0 100px;
}

.whyAFX .title {
  color: #012259;
  font-size: 200%;
  margin: 0 0 4px;
}

.whyAFX .text {
  color: #7d8b9e;
  width: 65%;
  margin: 0 auto;
}

.whyAFX .whyRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
  margin: 50px auto 0;
}

.whyAFX .whyRow .box {
    min-height: 215px;
  width: 270px;
  background-color: #ffffff;
  border-radius: 24px;
  -webkit-box-shadow: 0 0 20px 0 rgba(210, 217, 223, 0.12);
          box-shadow: 0 0 20px 0 rgba(210, 217, 223, 0.12);
}

.whyAFX .whyRow .box .logo {
  margin: 20px 10px 0;
}

.whyAFX .whyRow .box .boxTitle {
  font-size: 120%;
  color: #0069bc;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

.whyAFX .whyRow .box .boxText {
  color: #00051d;
  font-size: 90%;
  margin: 2px auto 25px;
  width: 190px;
  line-height: 1.2;
}

.services {
  background-color: #f5f6f8;
  text-align: center;
  padding: 50px 0;
  margin: 0 0 4px;
}
.services .title{
  color: #012259;
  font-size: 200%;
}
.servicesList{
    /*display:inline-block;*/
    width: 80%;
    margin: 0 auto;
}

.firstList {
  text-align: left;
  margin: 0 0 4px;
  display: flex;
}
.firstList .titleOne{
  color: #0069BC;
  font-size: 120%;
  margin-bottom: 10px;
    
}
.borderServices{
    border-bottom:3px solid #CDD6E6;
}
.topSect{
    cursor: pointer;
    position: relative;
}
.iconShow{
    position: absolute;
    right: -5px;
    bottom: -11px;
    width: 26px;
}
.hideIcon{
    display: none;
}
.listSect.showSect{
    opacity: 1;
    height: 175px;
}
.listSect.showSect.listTwo{
    height: 300px;
}
.listSect{
    background-image: linear-gradient(180deg, #EAEEF6 0%, rgba(255, 255, 255, 0) 100%);
    margin-right: 18px;
    opacity: 0;
    height: 80px;
    transition: height 500ms, opacity 500ms;
}
.SubtitleList, .infoText {
    color: #4E5E73;
    font-size: 90%;
}
.infoText{
    margin: -18px 0 0 20px;
}
.marginSer{
    margin:1% 0;
}
.logoSect{
    position: relative;
    width: 167px;
}
.logoServices {
    /*float:left;
    margin-top:-2%;*/
    position: absolute;
    top: -40px;
    width: 170px;
}

.textlist{
    /*display: table-cell;*/
    width: 80%;
}

.ulServices{
    /*width: 100%;
    height: 130px;
    margin:2% 0;*/
    margin: 0 0 30px;
    padding-top: 14px;
    padding-right: 15px;
}

.center {
  background-color: #012761;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 12%;
}

.center.two {
  background-color: #00050f;
}

.center .textContent {
  width: 60%;
  font-size: 140%;
}
.center.three{
  background-color: #CDD6E6;
  color: #012259;
}
.center.three .buttonCommon:hover{
    color: #0069bc;
}
.center .textContent.three {
  width: 72%;
}

.center .textContent.two {
  border-left: 10px solid #0069bc;
  padding-left: 28px;
}

.center .textContent p {
  margin: 0;
  line-height: 1.3;
}

.center .textContent p.textTwo {
  font-weight: bold;
}

.us {
  background-color: #edeff4;
  padding: 50px 0 80px 12%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.us .textContent {
  width: 50%;
  margin-right: 4%;
}

.us .textContent .title {
  color: #012259;
  font-size: 200%;
  margin: 0 0 4px;
}

.us .textContent .text {
  color: #4e5e73;
  margin: 0 auto;
}

.benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: -webkit-gradient(linear, right top, left top, from(#000720), to(#022662));
  background-image: linear-gradient(270deg, #000720 0%, #022662 100%);
  color: #ffffff;
  padding: 0 12% 0 0;
}

.benefits .contentImg {
  width: 60%;
}

.benefits .contentText .title {
  font-size: 200%;
}

.benefits .contentText .benefitList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.benefits .contentText .benefitList p {
  margin: 10px 0 10px 28px;
  font-weight: bold;
}

.contact {
  background-color: #000822;
  color: #ffffff;
  padding: 70px 0;
}

.contact .title {
  font-size: 200%;
  text-align: center;
  margin: 0 0 30px;
}

.contact .text {
  width: 65%;
  margin: 0 auto 30px;
  text-align: center;
}

.contact .contactList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 350px;
  margin: 0 auto;
}

.contact .contactList p {
  margin: 10px 0 10px 28px;
}

.contact .contactList p a {
  color: #ffffff;
}

.contact .contactList p a:hover {
  color: #7d8b9e;
}

.footer {
  background-color: #000512;
  color: #ffffff;
  text-align: center;
  margin-bottom: 55px;
}

.footer .rrss img {
  width: 20px;
  height: 20px;
  margin: 40px 10px 8px;
}

.footer .lastText {
  font-size: 70%;
  margin: 0 0 40px;
}

.footer .lastText .rightsReserved {
  color: #d5dce5;
}

.footer .copy {
  border-top: 1px solid #515050;
}

.footer .copy .copyText {
  font-size: 60%;
  margin: 0;
  padding: 22px 0;
  color: #77828a;
  display: block;
}
.footer .copy .copyText:hover {
    color: #ffffff;
}

@media only screen and (max-width: 1252px) {
  .contentBanner .content {
    padding: 100px 6% 110px;
  }
  .contentBanner .content .right img {
    width: 100%;
  }
  .servicesList {
    width: 90%;
  }
  .center {
    padding: 40px 8%;
  }
  .us {
    padding: 50px 0 80px 8%;
  }
  .benefits {
    padding: 0 6% 0 0;
  }
}

@media only screen and (max-width: 1190px) {
  .whyAFX .text {
    width: 78%;
  }
  .whyAFX .whyRow {
    width: 85%;
  }
  .whyAFX .whyRow .box {
    width: 275px;
  }
  .us .textContent {
    width: 50%;
  }
  .us .imgContent {
    width: 50%;
  }
  .us .imgContent img {
    width: 100%;
  }
  .benefits {
    padding-bottom: 40px;
  }
  .benefits .contentImg {
    width: 55%;
  }
  .benefits .contentImg img {
    width: 130%;
  }
  .benefits .contentText {
    width: 50%;
  }
  .contact .text {
    width: 78%;
  }
}

@media only screen and (max-width: 1110px) {
  body {
    font-size: 18px;
  }
  .center .textContent {
    width: 70%;
  }
  .whyAFX .whyRow .box {
    min-height: unset;
  }
  .logoServices {
    top: -47px;
 }
}

@media only screen and (max-width: 996px) {
  body {
    font-size: 16px;
  }
  .whyAFX .whyRow .box {
    width: 260px;
  }
  .logoServices {
    top: -53px;
 }
  .bar .textOne{
      display: none;
  }
  .bar p {
    display: flex;
    flex-direction: column;
    }
    .bar .variation {
    padding-left: 0px;
    }
    .footer{
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 956px) {
  .contentBanner .topbar a {
    margin: 0 20px;
  }
  .contentBanner .content {
    padding: 70px 6% 90px;
  }
  .contentBanner .content .left {
    width: 70%;
  }
  .contentBanner .content .right {
    width: 30%;
  }
  .whyAFX {
    padding: 50px 0;
  }
  .whyAFX .whyRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 10px auto;
  }
  .whyAFX .whyRow.two {
    margin-top: -10px;
  }
  .whyAFX .whyRow .box {
    margin: 12px auto;
  }
  .textlist{
      width: 75%;
  }
}

@media only screen and (max-width: 767px) {
  .showMB {
    display: block;
  }
  .showD {
    display: none;
  }
  .buttonCommon {
    width: 150px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 30px;
    font-size: 12px;
  }
  .contentBanner {
    background: url("../images/bannerTopMobile.jpg") left bottom no-repeat;
    background-size: cover;
  }
  .contentBanner .topbar .options {
    display: none;
  }
  .contentBanner .content {
    padding: 50px 10%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contentBanner .content .left {
    width: 100%;
  }
  .contentBanner .content .left h2 {
    font-size: 160%;
  }
  .contentBanner .content .right {
    width: 80%;
    margin-top: 50px;
  }
  .center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 12%;
  }
  .center.three {
     padding: 40px 0; 
  }
  .center.two {
    padding: 40px 20%;
  }
  .center .textContent {
    width: 100%;
    margin-bottom: 35px;
    font-size: 120%;
  }
  .center .textContent.two {
    border-left: 5px solid #0069bc;
    padding-left: 20px;
  }
  .center .textContent p {
    line-height: 1.6;
  }
  .whyAFX .title {
    font-size: 150%;
    margin: 0 0 12px;
  }
  .us {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 10% 0;
  }
  .us .textContent {
    width: 100%;
  }
  .us .textContent .title {
    font-size: 150%;
    margin: 0 0 12px;
  }
  .us .imgContent {
    width: 100%;
  }
  .benefits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0;
  }
  .benefits .contentText {
    width: 100%;
  }
  .benefits .contentText .title {
    font-size: 150%;
    margin-right: 12%;
    margin-left: 12%;
  }
  .benefits .contentText .text {
    margin-right: 12%;
    margin-left: 12%;
  }
  .benefits .contentText .benefitList {
    margin-right: 12%;
    margin-left: 12%;
  }
  .benefits .contentText .benefitList img {
    width: 25px;
  }
  .benefits .contentText .benefitList p {
    margin: 8px 0 8px 15px;
  }
  .benefits .contentImg {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
  }
  .benefits .contentImg img {
    width: 140%;
  }
  .contact {
    padding: 60px 12%;
  }
  .contact .title {
    text-align: left;
    font-size: 150%;
  }
  .contact .text {
    text-align: left;
    width: 100%;
  }
  .contact .contactList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    width: 100%;
  }
  .contact .contactList p {
    margin: 6px 0 20px;
  }
  .menuMobile {
    background-color: #00050f;
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 60px 10px 10px 20px;
    -webkit-transition: visibility 0s, opacity 0.15s linear;
    transition: visibility 0s, opacity 0.15s linear;
  }
  .menuMobile p {
    color: #0069bc;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: 56px;
    top: 14px;
  }
  .menuMobile a {
    display: block;
    color: #ffffff;
    padding: 10px;
  }
  .menuMobile a.button {
    margin-top: 12px;
    color: #ffffff;
    font-weight: bold;
    border: 1px solid #0069bc;
    padding: 8px 30px;
    border-radius: 24px;
    width: 120px;
    text-align: center;
  }
  .menuMobile a.button:hover {
    background-color: #0069bc;
  }
  .visible {
    visibility: visible;
    opacity: 1;
    max-height: 1000px;
  }
  .hidden {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
  }
  .services{
      padding: 10px 0 50px;
  }
  .firstList .titleOne{
      text-align: center;
  }
  .servicesList{
      width: 100%;
  }
  .listSect{
      height: 5px;
  }
   .listSect.showSect {
    height: auto;
    }
    .listSect.showSect.listTwo{
    height: auto;
    }
  .firstList {
    flex-direction: column;
    align-items: center;
  }
  .logoServices {
    position: relative;
    top: unset;
  }
  .textlist{
      width: 90%;
  }
  .logoServices.nMob{
      display: none;
  }
  .logoServices.nDesk{
      display: block;
  }
}
/*# sourceMappingURL=styles.css.map */