@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter";
  font-weight: 300;
  color: #363C4E;
  overflow-x: hidden;
}
body .hidden {
  display: none;
}
body h1 {
  font-weight: 700;
  font-size: 30px;
}
@media (min-width: 767px) {
  body h1 {
    font-size: 48px;
  }
}
body h3 {
  font-weight: 700;
  font-size: 24px;
}
@media (min-width: 767px) {
  body h3 {
    font-size: 30px;
  }
}
body p {
  margin: 0;
}
body .bc-gray {
  background-color: #F2F4F8;
}
body .bc-blue {
  background-color: #1B74FD;
}
body form .form-group.has-error .input-field {
  box-shadow: none;
  border-bottom: 2px solid #ED143B;
  position: relative;
}
body form .form-group.has-error .input-field::placeholder {
  color: #ED143B;
}
body form .input-field--error {
  color: #ED143B;
  font-size: 12px;
  position: absolute;
}
body form .input-field {
  background: none;
  border: none;
  border-bottom: 2px solid #ADB3C5;
  font-size: 14px;
  outline: none;
  padding: 35px 0px 20px 0px;
  text-indent: 0px;
  border-radius: 0;
  box-shadow: none;
}
@media (min-width: 1199px) {
  body form .input-field {
    font-size: 17px;
  }
}
body form .input-field:focus {
  outline: none;
  box-shadow: none;
  border-color: #1B74FD;
}

form .form-control::-webkit-input-placeholder {
  color: #ADB3C5;
  font-weight: 300;
}

form .form-control::-moz-placeholder {
  color: #ADB3C5;
  font-weight: 300;
}

form .form-control:-ms-input-placeholder {
  color: #ADB3C5;
  font-weight: 300;
}

form .form-control:placeholder {
  color: #ADB3C5;
  font-weight: 300;
}

.text-color-white {
  color: #FFFFFF;
}
.text-color-gray {
  color: #737986;
}
.text-fw500 {
  font-weight: 500;
}
.text-fw700 {
  font-weight: 700;
}
.text-fs24-16 {
  font-size: 16px;
}
@media (min-width: 767px) {
  .text-fs24-16 {
    font-size: 24px;
  }
}
.text-fs24-22 {
  font-size: 22px;
}
@media (min-width: 767px) {
  .text-fs24-22 {
    font-size: 24px;
  }
}
.text-fs20-18 {
  font-size: 18px;
}
@media (min-width: 767px) {
  .text-fs20-18 {
    font-size: 20px;
  }
}
.text-fs18-16 {
  font-size: 16px;
}
@media (min-width: 767px) {
  .text-fs18-16 {
    font-size: 18px;
  }
}
.text-fs18-14 {
  font-size: 14px;
}
@media (min-width: 767px) {
  .text-fs18-14 {
    font-size: 18px;
  }
}
.text-fs16-14 {
  font-size: 14px;
}
@media (min-width: 767px) {
  .text-fs16-14 {
    font-size: 16px;
  }
}
.text-fs16-12 {
  font-size: 12px;
}
@media (min-width: 767px) {
  .text-fs16-12 {
    font-size: 16px;
  }
}
.text-fs14-12 {
  font-size: 12px;
}
@media (min-width: 767px) {
  .text-fs14-12 {
    font-size: 14px;
  }
}
.text-fs12 {
  font-size: 12px;
}

.btn {
  padding: 13px 30px;
  outline: none;
  border-radius: 30px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 767px) {
  .btn {
    width: auto;
    font-size: 16px;
  }
}
.btn-blue {
  background-color: #1B74FD;
  color: #FFFFFF;
}
.btn-blue:hover {
  background-color: #0042FF;
  color: #FFFFFF;
}

.custom-checkbox {
  cursor: pointer;
  position: absolute;
  opacity: 0;
  padding: 0;
}

.custom-checkbox ~ label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  font-size: 14px;
}

.custom-checkbox ~ label::before {
  border-radius: 3px;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #DFE3EC;
  margin-right: 1em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:hover ~ label::before {
  cursor: pointer;
}

.custom-checkbox:checked ~ label::before {
  border-color: #1B74FD;
  background-color: #1B74FD;
  background-image: url("../img/tick.svg");
  background-size: auto;
}

header .swiper-container .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
header .swiper-container .header .loginBtn {
  background-color: #1B74FD;
  border-radius: 50%;
  padding: 13px;
}
@media (min-width: 767px) {
  header .swiper-container .header .loginBtn {
    background-image: url("../img/Login-desc.svg");
    background-repeat: no-repeat;
    background-position: 21px 16px;
    font-weight: 500;
    background-color: transparent;
    border: 1px solid #1B74FD;
    border-radius: 30px;
    -webkit-transition: all 0.3s ease-in-out !important;
    -moz-transition: all 0.3s ease-in-out !important;
    -ms-transition: all 0.3s ease-in-out !important;
    -o-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
  }
  header .swiper-container .header .loginBtn:hover {
    color: #FFFFFF;
    background-color: #1B74FD;
    text-decoration: none;
    background-image: url("../img/Login-mob.svg");
  }
}
header .swiper-container .buttons {
  position: absolute;
  bottom: 30px;
  z-index: 100;
}
header .swiper-container .buttons .next:after, header .swiper-container .buttons .prev:after {
  content: none;
}
header .swiper-container .swiper-slide .slide1, header .swiper-container .swiper-slide .slide2 {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
header .swiper-container .swiper-slide .slide1 {
  background-image: url("../img/slide-1-mob.png");
}
@media (min-width: 767px) {
  header .swiper-container .swiper-slide .slide1 {
    background-image: url("../img/slide-1.png");
    background-position: -650px;
  }
}
@media (min-width: 991px) {
  header .swiper-container .swiper-slide .slide1 {
    background-position: -568px;
  }
}
@media (min-width: 1199px) {
  header .swiper-container .swiper-slide .slide1 {
    background-position: center;
  }
}
header .swiper-container .swiper-slide .slide2 {
  background-image: url("../img/slider-2-mob.png");
}
@media (min-width: 767px) {
  header .swiper-container .swiper-slide .slide2 {
    background-position: -650px;
    background-image: url("../img/slide-2.png");
  }
}
@media (min-width: 991px) {
  header .swiper-container .swiper-slide .slide2 {
    background-position: -568px;
  }
}
@media (min-width: 1199px) {
  header .swiper-container .swiper-slide .slide2 {
    background-position: center;
  }
}

main .bullets {
  width: 70px;
  height: 70px;
}
main .banner {
  height: 850px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-image: url("../img/banner-mob.png");
}
@media (min-width: 767px) {
  main .banner {
    background-position: -100px;
    height: auto;
    background-image: url("../img/banner-desctop.png");
  }
}
@media (min-width: 991px) {
  main .banner {
    background-position: left;
  }
}
main form {
  background-color: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0px 9px 20px rgba(48, 66, 117, 0.13);
  padding: 30px 15px;
}
@media (min-width: 767px) {
  main form {
    padding: 30px;
  }
}
@media (min-width: 991px) {
  main form {
    padding: 70px 100px;
  }
}
main .collapse-link {
  text-decoration: none;
  position: absolute;
  color: #363C4E;
  border: 1px solid #DFE3EC;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
main .collapse-link:hover {
  color: #363C4E;
  border: 1px solid #1B74FD;
}
main .collapse-link:before {
  content: "Скрыть все ";
}
main .collapsed {
  text-decoration: none;
  position: absolute;
  color: #363C4E;
  margin-top: 30px;
  display: inline-block;
  border: 1px solid #DFE3EC;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
main .collapsed:hover {
  color: #363C4E;
  border: 1px solid #1B74FD;
}
main .collapsed:before {
  content: "Показать все ";
}
main .upline {
  border-top: none;
}
main .uplineColor {
  border-top: 1px solid #DFE3EC;
}
main .table-container {
  padding-right: 0px;
}
main .table-width {
  min-width: 250px;
}
@media (min-width: 767px) {
  main .table-width {
    min-width: 600px;
  }
}
main .table-rule-link {
  color: #363C4E;
  border-bottom: 2px dotted #DFE3EC;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
main .table-rule-link:hover {
  text-decoration: none;
  color: #1B74FD;
  border-bottom: 2px dotted #1B74FD;
}

footer .link {
  font-weight: 500;
  color: #FFFFFF;
}
footer .link:hover {
  text-decoration: none;
  color: #FFFFFF;
}
footer .op {
  opacity: 0.7;
}
footer .rules {
  color: #FFFFFF;
  border-bottom: 2px dotted #DFE3EC;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
footer .rules:hover {
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 2px dotted #DFE3EC;
}
footer .custom-border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 767px) {
  footer .custom-border-top {
    border-top: none;
  }
}
footer .custom-border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal .modal-content {
  border-radius: 30px;
}
.modal .btn-close {
  width: 16px;
  height: 16px;
  border: none;
  outline: none;
  background-image: url("../img/Close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
}

.slider-nav__item {
  position: relative;
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 50%;
  transition: all 150ms ease-in-out;
  background-color: white;
  border-color: transparent;
}
.slider-nav__item:focus {
  outline: none;
}
.slider-nav__item::after {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  background-image: url("../img/arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: 14px 11px;
  background-size: 12px;
}

.slider-nav--fill .slider-nav__item {
  background-color: white;
}

.slider-nav__loading svg {
  position: absolute;
  top: -5px;
  left: -6px;
  width: 64px;
  height: 62px;
}

.slider-nav__loading circle {
  stroke-dashoffset: 283;
  stroke-dasharray: 283;
  stroke-width: 6px;
  stroke: #1B74FD;
}

.backward {
  width: 52px;
}

/*# sourceMappingURL=styles.css.map */
