* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}
a,
button:active,
button:focus,
input:active,
input:focus {
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@-webkit-keyframes up-down2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes up-down2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes blinking {
  0% {
    color: #3eff00;
  }

  50% {
    color: red;
  }
  100% {
    color: #3eff00;
  }
}

@keyframes blinking {
  0% {
    color: #3eff00;
  }

  50% {
    color: red;
  }
  100% {
    color: #3eff00;
  }
}

/* popup */
.popup {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  min-height: 100vh;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.popup.open {
  display: block;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}
.popup .container {
  height: 100%;
}
.popupInner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.popupVideo {
  position: relative;
  height: 70%;
  width: 70%;
  background: #000;
}
.popupVideo video {
  position: absolute;
  height: 400px;
  width: 600px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.closeBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 1;
}
.closeBtn i {
  font-size: 20px;
}

/* promo */
.promo {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 1rem 0.5rem;
  background-color: rgba(72, 128, 255, 0.2);
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  z-index: 1000;
}
.promoLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.promoLink svg {
  fill: #7c79a8;
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}
.promoLink:hover svg {
  fill: #ffc600;
}

/* popupForm */
.popupForm {
  display: none;
  background: rgba(0, 0, 0, 0.85);
  min-height: 100vh;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.popupForm.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}
.popupFormTitle {
  color: #ad112c;
  text-align: center;
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
}
.popupFormSub {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}
.closeBtn1 {
  position: absolute;
  right: 50px;
  top: 50px;
  cursor: pointer;
  z-index: 1;
}
.closeBtn1 img {
  display: block;
  width: 50px;
  height: 50px;
}
#formbox2 {
  margin: 0 auto;
  padding: 0;
  margin-top: 26px;
}
#formbox2 .checklabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
#formbox2 .check {
  display: block;
}
#formbox2 .checklabel p {
  color: #fff;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
#formbox2 .checklabel p a {
  color: #fff;
  text-decoration: underline;
}

/* form */
.formbox {
  max-width: 567px;
  width: 100%;
  background: #090958;
  margin-top: 46px;
}
.formTitle {
  padding-top: 18px;
}
.formTitle p {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 33.6px;
  letter-spacing: 1px;
}
.filed_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 33px 15px 40px 15px;
  position: relative;
}
.intl-tel-input {
  width: 100%;
}
.fname,
.lname,
.email,
.phone {
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #a94442;
  background: #fff;
  -webkit-box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.08) inset;
  box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.08) inset;
  width: 100%;
  padding: 13px;
  margin-bottom: 10px;
}
.phone {
  padding-left: 60px;
}
.checklabel,
.check {
  display: none;
}
.submit {
  display: inline-block;
  width: 100%;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 6px 0px #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border-radius: 3px;
  background: #41ca04;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13) inset;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13) inset;
  border: 0;
  cursor: pointer;
  margin-top: 10px;
  padding: 15.5px 18px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.submit:hover {
  -webkit-box-shadow: 0 0 10px #fff;
  box-shadow: 0 0 10px #fff;
}
.formText {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  padding: 0 18px;
}
.formSub {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.formSub a {
  color: #007bff;
}
.error-msg {
  display: block;
  margin-top: 20px;
  color: red;
  font-size: 20px;
}
.formImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.loadingView {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loadingView img {
  max-width: 100%;
}

/* container */
.container {
  max-width: 1300px;
  margin: 0 auto;
}

/* topBar */
.topBar {
  background: #ff0100;
  padding: 7px 0;
}
.topBarSub {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* header */
.header {
  background: #00062b;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.headerInner {
  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;
  padding: 10px 93px 10px 54px;
}
.headerLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.logo {
  padding-right: 37px;
  border-right: 2px solid #ffc600;
}
.location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.locationSub {
  color: #fff;
  font-family: Roboto;
  font-size: 15.558px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.337px;
}
.headerBtn {
  display: inline-block;
  color: #212529;
  font-family: Roboto;
  font-size: 15.558px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.337px;
  border-radius: 4px;
  border: 2px solid #ffc600;
  background: #ffc600;
  padding: 9px 17px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.headerBtn:hover {
  -webkit-box-shadow: 0 0 10px #ffc600;
  box-shadow: 0 0 10px #ffc600;
}

/* intro */
.intro {
  background: url('../../assets/img/introBg.svg'), -o-linear-gradient(top, #081047, #201193);
  background: url('../../assets/img/introBg.svg'),
    -webkit-gradient(linear, left top, left bottom, from(#081047), to(#201193));
  background: url('../../assets/img/introBg.svg'), linear-gradient(180deg, #081047, #201193);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  padding-top: 160px;
  padding-bottom: 55px;
}
.introInner {
  position: relative;
}
.introTitle {
  color: #fff;
  font-family: Roboto;
  font-size: 38.894px;
  font-style: normal;
  font-weight: 500;
  line-height: 46.673px;
  letter-spacing: 1px;
}
.introSub {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: Roboto;
  font-size: 17.113px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.004px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.introImg {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.introProfit {
  display: block;
  max-width: 100%;
}
.playImg {
  position: absolute;
  cursor: pointer;
}
.playButton {
  display: block;
  max-width: 180px;
  width: 100%;
  -webkit-animation: up-down2 5s ease-out 0.5s infinite;
  animation: up-down2 5s ease-out 0.5s infinite;
}
.pointer {
  -webkit-animation: opacity 0.8s step-end 0.8s infinite;
  animation: opacity 0.8s step-end 0.8s infinite;
}
.isNow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  border-bottom: 6px solid #2c0f6d;
  background: #4e1cbf;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.2);
  padding: 7px 30px 7px 15px;
}
.isNowImg img {
  display: block;
}
.isNowTitle {
  color: #fff;
  font-family: Roboto;
  font-size: 23.337px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.005px;
  letter-spacing: 1px;
}
.isNowSub {
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  text-transform: uppercase;
  -webkit-animation: blinking 0.4s step-end 0.4s infinite;
  animation: blinking 0.4s step-end 0.4s infinite;
}

/* introBottom */
.introBottom {
  background: #091560;
  padding: 33px 0;
}
.introBottomInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.introBottomBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 25%;
  padding: 0 30px;
}
.introBottomBlockImg img {
  display: block;
}
.introBottomBlockTitle {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background: #5c24d7;
  padding: 4px;
}
.introBottomBlockSub {
  color: #212529;
  font-family: Roboto;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.2px;
  border-radius: 0px 0px 8px 0px;
  background: #eaeaea;
  padding: 2px 4px;
}

/* problem */
.problem {
  background: url('../../assets/img/problemBg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 68px;
  padding-bottom: 530px;
  position: relative;
  z-index: 1;
}
.problemTitle {
  color: #3d71e4;
  font-family: Roboto;
  font-size: 54px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}
.problemBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 65px;
}
.problemBlock {
  width: 22%;
  position: relative;
  padding-right: 20px;
}
.problemBlock::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 250px;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #4979e6 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#4979e6));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #4979e6 100%);
}
.problemBlock2::after {
  height: 370px;
}
.problemBlockNumber {
  color: #4677e5;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 1px;
}
.problemBlockSub {
  color: #000;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-top: 6px;
}

/* solution */
.solution {
  background: url('../../assets/img/solutionBg.svg'), -o-linear-gradient(top, #091049, #2b229c);
  background: url('../../assets/img/solutionBg.svg'),
    -webkit-gradient(linear, left top, left bottom, from(#091049), to(#2b229c));
  background: url('../../assets/img/solutionBg.svg'), linear-gradient(180deg, #091049, #2b229c);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 560px;
  margin-top: -450px;
}
.solutionTitle {
  color: #fff;
  font-family: Roboto;
  font-size: 54px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}
.solutionText {
  background: url('../../assets/img/textBg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 85px 120px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.solutionSub {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

/* steps */
.steps {
  background: -o-linear-gradient(left, #17a9f9 0%, #6145f5 100%);
  background: -webkit-gradient(linear, left top, right top, from(#17a9f9), to(#6145f5));
  background: linear-gradient(90deg, #17a9f9 0%, #6145f5 100%);
  padding: 50px 0;
  margin-top: -80px;
}
.stepsInner {
  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;
}
.stepsTitle {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 37.338px;
  letter-spacing: 1px;
  width: 30%;
}
.stepsBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 68%;
}
.stepsBlock {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.stepsBlockTitle {
  color: rgba(255, 255, 255, 0.1);
  font-family: Roboto;
  font-size: 180px;
  font-style: normal;
  font-weight: 100;
  line-height: 194.471px;
}
.stepBlockText {
  margin-left: -20px;
}
.stepsBlockSub {
  color: #f9ff00;
  font-family: Roboto;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
  text-align: center;
}
.stepsBlockSub1 {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

/* what */
.what {
  padding: 70px 0;
}
.whatTitle {
  color: #3d71e4;
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 37.338px;
  letter-spacing: 1px;
}
.whatSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 75px;
  margin-top: 40px;
}
.whatSub {
  color: #00062b;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* items */
.items {
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.items::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../../assets/img/itemsBg.png') no-repeat center -14rem,
    -o-linear-gradient(top, #201c81, #2c229c);
  background: url('../../assets/img/itemsBg.png') no-repeat center -14rem,
    -webkit-gradient(linear, left top, left bottom, from(#201c81), to(#2c229c));
  background: url('../../assets/img/itemsBg.png') no-repeat center -14rem,
    linear-gradient(180deg, #201c81, #2c229c);
  z-index: -1;
}
.items::after {
  content: '';
  position: absolute;
  z-index: 0;
  content: '';
  top: -7.5rem;
  width: 0;
  height: 0;
  border-bottom: 60rem solid #f5f7f7;
  border-left: 100vw solid transparent;
  z-index: -1;
}
.itemsTitle {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.itemsBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}
.itemsBlock {
  width: 48%;
  border-radius: 12px;
  background: #fff;
  padding: 70px 36px 50px 36px;
}
.itemsBlockTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.itemsBlockImg img {
  width: 132px;
  height: 132px;
}
.itemBlockText img {
  display: block;
  margin-top: 20px;
}
.itemsBlockTitle {
  color: #000;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.itemsBlockSub {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 20px;
}
.itemsBlockSub1 {
  color: #000;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px;
  margin-top: 20px;
}

/* partners */
.partners {
  background: #f5f7f7;
  padding-top: 70px;
  padding-bottom: 150px;
}
.partnersTitle {
  color: #3e71e5;
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 37.338px;
  letter-spacing: 1px;
}
.partnersImgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 78px;
  gap: 18%;
}
.partnersImgsBlock img {
  display: block;
  max-width: 100%;
}

/* get */
.get {
  background: #1b1a75;
  padding-top: 68px;
}
#formbox1 {
  margin: 0;
}

/* footer */
.footer {
  padding-top: 24px;
  background: #1b1a75;
  padding-bottom: 140px;
}
.footerInner {
  border-top: 1px solid #8998ff;
  padding-top: 42px;
}
.footerTop {
  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;
}
.footerTitle {
  color: #8998ff;
  text-align: center;
  font-family: Roboto;
  font-size: 15.558px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.337px;
}
.footerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 5px;
}
.footerLink {
  color: #337ab7;
  text-align: center;
  font-family: Roboto;
  font-size: 15.558px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.337px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  padding-right: 3px;
  border-right: 1px solid #337ab7;
}
.footerLink:last-child {
  border: 0;
}
.footerText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 19px;
  margin-top: 33px;
}
.footerSub {
  color: #8998ff;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.footerSub a {
  color: rgba(51, 122, 183, 1);
  text-decoration: underline;
}
