body {
  color: #fff;
  min-width: 320px;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0px;
}
body.lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

a:focus {
  color: #fff;
  text-decoration: none;
}

button, button[typhonee=submit], a, input {
  outline: none;
}

button:hover, button[type=submit], a:hover, input:hover {
  outline: none;
}

button:focus, button[type=submit], a:focus, input:focus {
  outline: none;
}

.wrapper {
  overflow: hidden;
}

/*font-family: 'Gilroy-Regular', sans-serif;*/
.header {
  position: fixed;
  top: 0;
  z-index: 50;
  padding: 20px 40px;
  transition: 0.3s;
  margin-top: 20px;
  left: 20%;
  right: 20%;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 2;
  transition: 0.3s;
}
.header .header__body {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__body .header__logo {
  z-index: 3;
  flex-shrink: 0;
  transition: 0.3s;
  font-weight: 900;
  font-size: 20px;
  font-style: italic;
}
.header .header__body .header__logo img {
  max-width: 100%;
  display: block;
  width: 200px;
}
.header .header__body .header__burger {
  display: none;
}
.header .header__menu .header__list {
  display: flex;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.header .header__menu .header__list li {
  list-style: none;
  margin: 0 15px 0 15px;
}
.header .header__menu .header__list li .header__link {
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.header .header__menu .header__list li .header__link:hover {
  color: #3f66cf;
}
.header .header__menu .header__list li .header__link img {
  width: 20px;
  margin-right: 5px;
}
.header .header__menu .mobile-number {
  display: none;
}
.header .header__menu .mobile-number a {
  color: #2e3192;
  border: 1px solid #2e3192;
  display: block;
  padding: 8px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.header .actions {
  position: relative;
  z-index: 2;
}
.header .actions a {
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
}
.header .actions .ico {
  display: none;
}
.header .actions .ico a {
  color: #7e7d8b;
}
.header.active {
  margin-top: 0;
  left: 0;
  right: 0;
}
.header.active::before {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(57, 63, 72, 0.3) 0px 3px 5px;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}
.header.active .header__body .header__logo {
  color: #3f66cf;
}
.header.active .header__menu .header__list li .header__link {
  color: #272727;
}
.header.active .actions a {
  color: #3f66cf;
}

@media (max-width: 1400px) {
  .header {
    left: 10%;
    right: 10%;
  }
}
@media (max-width: 1200px) {
  .header {
    left: 0;
    right: 0;
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .header {
    padding: 7px 0;
    margin-top: 0;
  }
  .header::before {
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: rgba(57, 63, 72, 0.3) 0px 3px 5px;
    -webkit-backdrop-filter: blur(25px);
            backdrop-filter: blur(25px);
  }
  .header .header__body {
    height: 50px;
  }
  .header .header__body .header__logo {
    color: #3f66cf;
    order: 1;
  }
  .header .header__body .header__logo img {
    width: 130px;
  }
  .header .header__body .header__burger {
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
    z-index: 3;
    order: 3;
  }
  .header .header__body .header__burger span {
    position: absolute;
    background-color: #7e7d8b;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    top: 7px;
    transition: all 0.3s ease 0s;
  }
  .header .header__body .header__burger::before, .header .header__body .header__burger::after {
    content: "";
    background-color: #7e7d8b;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .header .header__body .header__burger::before {
    top: 0;
  }
  .header .header__body .header__burger::after {
    bottom: 0;
  }
  .header .header__body .header__burger.active::before {
    transform: rotate(45deg);
    top: 7px;
  }
  .header .header__body .header__burger.active::after {
    transform: rotate(-45deg);
    bottom: 7px;
  }
  .header .header__body .header__burger.active span {
    transform: scale(0);
  }
  .header .header__body .header__menu {
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    width: 300px;
    background-color: #fff;
    transition: all 0.3s ease 0s;
    overflow: auto;
    padding: 70px 25px 25px;
    z-index: 2;
  }
  .header .header__body .header__menu.active {
    left: 0;
    height: 100%;
  }
  .header .header__body .header__menu .header__list {
    display: block;
    margin-bottom: 20px;
  }
  .header .header__body .header__menu .header__list li {
    margin: 0 0 4px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #e2e6ec;
  }
  .header .header__body .header__menu .header__list li .header__link {
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: underline;
    padding: 8px 0;
    font-weight: 600;
  }
  .header .header__body .header__menu .mobile-number {
    display: block;
  }
  .header .actions {
    order: 2;
    margin-left: auto;
    margin-right: 20px;
  }
  .header .actions a {
    display: none;
  }
  .header .actions .ico {
    display: block;
  }
  .header .actions .ico a {
    display: block;
  }
}
.section-title {
  margin-bottom: 36px;
}
.section-title h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
}
.section-title h3 span {
  color: #3f66cf;
}

.container-xl {
  max-width: 1200px;
}

#first-section {
  background-image: url(/images/first-section.png?a16018553350fcb20651b53b4bf78222);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 991px) {
  #first-section {
    padding-top: 100px;
  }
}
#first-section .first-section .first-section-wrap {
  display: flex;
  align-items: center;
  min-height: 100vh;
}
#first-section .first-section .first-section-wrap .content h1 {
  font-weight: 500;
  font-size: 52px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #first-section .first-section .first-section-wrap .content h1 {
    font-size: 38px;
  }
}
#first-section .first-section .first-section-wrap .content p {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 40px;
}
#first-section .first-section .first-section-wrap .content .button a {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  text-align: center;
  background-color: #2969ff;
  color: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
  border: 1px solid #d9d9d9;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  width: 180px;
}
#first-section .first-section .first-section-wrap .content .button a:hover {
  background-color: #fff;
  color: #3f66cf;
  border-color: #3f66cf;
}

#steps {
  color: #000;
  background-color: #f5f5f3;
  padding: 80px 0;
}
#steps .section-title {
  max-width: 510px;
}
#steps .step-list {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  #steps .step-list .step-list-wrap .step-li-wrap {
    margin-bottom: 25px;
  }
}
#steps .step-list .step-list-wrap .step-li-wrap .step-li {
  padding: 30px 24px;
  background-color: #fff;
  height: 100%;
  border-radius: 10px;
}
#steps .step-list .step-list-wrap .step-li-wrap .step-li .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}
#steps .step-list .step-list-wrap .step-li-wrap .step-li .desc {
  line-height: 1.2;
  font-size: 13px;
}
#steps .steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  #steps .steps {
    flex-direction: column;
    align-items: center;
  }
}
#steps .steps .step-wrap {
  position: relative;
}
#steps .steps .step-wrap .step {
  max-width: 340px;
  text-align: center;
  padding: 0 15px;
}
#steps .steps .step-wrap .step .num {
  width: 80px;
  height: 80px;
  border-radius: 16px 16px 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: 600;
  background-color: #fff;
  margin: 0 auto 30px;
}
#steps .steps .step-wrap .step .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
#steps .steps .step-wrap .step .desc {
  font-size: 12px;
}
#steps .steps .step-wrap .arrow {
  position: absolute;
  top: 0;
  left: calc(50% + 60px);
  max-width: 300px;
  width: 100%;
}
@media (max-width: 1024px) {
  #steps .steps .step-wrap .arrow {
    max-width: 210px;
  }
}
@media (max-width: 767px) {
  #steps .steps .step-wrap .arrow {
    position: initial;
    transform: rotate(90deg);
    height: 230px;
    max-width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #steps .steps .step-wrap .arrow img {
    width: 180px;
  }
}
#steps .steps .step-wrap:nth-child(2) .arrow {
  transform: scaleY(-1);
  top: 40px;
}
@media (max-width: 767px) {
  #steps .steps .step-wrap:nth-child(2) .arrow {
    transform: rotate(90deg) scaleY(-1);
  }
}
#steps .content {
  font-size: 16px;
}
#steps .content p:last-child {
  margin-bottom: 0;
}

#advantages {
  padding: 80px 0;
  background-image: url(/images/advantages.jpg?980e497b637956f871716ab4d36b9409);
  background-size: cover;
}
#advantages .advantages .section-title {
  margin-bottom: 20px;
}
#advantages .advantages .section-title h3 {
  font-size: 42px;
  font-weight: 700;
}
#advantages .advantages .advantage-wrap {
  margin-bottom: 25px;
}
#advantages .advantages .advantage-wrap .advantage {
  border-radius: 10px;
  background: hsla(0, 0%, 100%, 0.2);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  padding: 40px 20px;
  height: 100%;
  text-align: center;
}
#advantages .advantages .advantage-wrap .advantage .ico {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin: 0 auto 10px;
}
#advantages .advantages .advantage-wrap .advantage .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
#advantages .advantages .advantage-wrap .advantage .desc {
  font-size: 16px;
}

#trust {
  padding: 80px 0;
}
#trust .trust .section-title {
  margin-bottom: 100px;
}
#trust .trust .section-title h3 {
  color: #000;
  font-size: 36px;
  font-weight: 600;
}
#trust .trust .trust-video {
  position: relative;
}
#trust .trust .trust-video img {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
#trust .trust .trust-video .button {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#trust .trust .trust-video .button a {
  padding: 20px 30px;
  background: hsla(0, 0%, 100%, 0.2);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
}
#trust .trust .trust-video .button a i {
  font-size: 20px;
  margin-right: 20px;
}

#footer {
  background-color: #f5f5f3;
  padding: 50px 0;
}
#footer .footer {
  border-radius: 40px;
  background: rgb(248, 248, 249);
  background: linear-gradient(180deg, rgb(248, 248, 249) 0%, rgb(177, 193, 235) 100%);
  color: #000;
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  padding: 40px;
}
#footer .footer .top-footer {
  margin-bottom: 30px;
}
#footer .footer .top-footer .footer-block .footer-logo {
  margin-bottom: 15px;
  font-size: 20px;
  color: #3f66cf;
  font-weight: 700;
  font-style: italic;
}
#footer .footer .top-footer .footer-block p {
  font-size: 12px;
}
#footer .footer .top-footer .footer-block .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer .top-footer .footer-block .footer-list li {
  margin-bottom: 15px;
}
#footer .footer .top-footer .footer-block .footer-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #footer .footer .top-footer .footer-block .footer-list li:last-child {
    margin-bottom: 15px;
  }
}
#footer .footer .top-footer .footer-block .footer-list li a {
  color: #000;
  font-weight: 500;
}
#footer .footer .top-footer .footer-block .location {
  line-height: 200%;
}
#footer .footer .bottom-footer .bottom-footer-left {
  color: #272727;
  font-size: 12px;
  line-height: 200%;
}
#footer .footer .bottom-footer .bottom-footer-right a {
  color: #3f66cf;
  font-weight: 700;
}
#footer .footer .bottom-footer .bottom-footer-right p {
  color: #272727;
  font-size: 12px;
}

#page #first-section {
  background-image: url(/images/terms.jpg?e85b42410709e45bfb5ee910f69224bd);
  background-size: cover;
  position: relative;
}
#page #first-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
#page #first-section .first-section {
  padding-right: 30px;
  height: 724px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  #page #first-section .first-section {
    height: 393px;
  }
}
#page #first-section .first-section h1 {
  margin-bottom: 24px !important;
  font-size: 48px;
  font-weight: 600;
}
#page #first-section .first-section p {
  font-size: 19px;
}
#page #terms-page {
  color: #000;
  padding: 80px 0;
}
#page #terms-page a {
  color: #3f66cf;
}
