@font-face {
  font-family: Manrope-Regular;
  src: url(../fonts/Manrope-Regular.ttf);
}

@font-face {
  font-family: Manrope-Medium;
  src: url(../fonts/Manrope-Medium.ttf);
}

@font-face {
  font-family: Manrope-SemiBold;
  src: url(../fonts/Manrope-SemiBold.ttf);
}

* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
}

body {
  font-family: Manrope-Regular, Arial, Helvetica, sans-serif;
  color: #02020277;
  font-size: 16px;
  background-color: #fff;
}

body.fixed {
  overflow: hidden;
}

a {
  color: #02020277;
  text-decoration: none;
}

h1 {
  margin: 0;
  font-family: Manrope-SemiBold;
  font-size: 48px;
  line-height: 110%;
  color: #020202;
}

h1 .caption {
  width: 100%;
  color: #0078FF;
}

h2 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 36px;
  color: #020202;
  line-height: 110%;
  font-size: 36px;
  font-family: Manrope-SemiBold;
  text-align: center;
}

h2 .caption {
  color: #0078FF;
}

.d-none {
  display: none !important;
}

.info-caption {
  display: table;
  text-align: center;
  margin: 0 auto 12px;
  border: 1px solid rgba(2, 2, 2, 0.1);
  border-radius: 100px;
  padding: 10px 15px;
  height: 100%;
  white-space: nowrap;
  color: #020202;
}

.scroll-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.scroll-btn img {
  width: 60px;
  height: 60px;
}

.scroll-btn.hidden {
  display: none;
}

.wrapper {
  width: 100%;
  max-width: 100%;
  margin: auto;
}

section {
  width: 1200px;
  max-width: 100%;
  padding: 40px;
  margin: 0 auto 40px;
}

.full-width {
  width: 100%;
}

.header {
  position: relative;
  z-index: 999;
  width: 1200px;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 20px 40px;
  background-color: #fff;
}

.header.fixed {
  position: fixed;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid #0202021A;
  box-shadow: 0 0 10px #dddddd;
}

.header .auth-btn {
  padding: 11px 16px;
}

.header .auth-btn.menu {
  display: none;
}

.header .auth-btn.menu span:nth-child(2) {
  display: none;
}

.header .login-buttons {
  display: none;
}

.header.opened {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 29px 40px 36px;
}

.header.opened .auth-btn.menu span:nth-child(1) {
  display: none;
}

.header.opened .auth-btn.menu span:nth-child(2) {
  display: block;
}

.header.opened .nav-list {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.header.opened .nav-item {
  margin-bottom: 36px;
}

.header.opened .nav-item a {
  font-size: 48px;
  color: #020202;
  font-family: 'Manrope-SemiBold';
  padding: 0;
}

.header.opened .auth-btn.menu {
  position: absolute;
  top: 20px;
  right: 40px;
}

.header.opened .login-buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header.opened .login-buttons .continue-btn {
  width: 100%;
  margin-bottom: 12px;
}

.header.opened .login-buttons .register-btn {
  width: 100%;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0;
}

.nav-item a {
  padding: 0 10px;
}

.auth-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 15px 25px;
  background: #0078FF;
  box-shadow: 0px 0px 15px rgba(0, 120, 255, 0.66);
  border-radius: 10px;
  color: #fff;
  border: 1px solid #0078FF;
}

.continue-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-right: 12px;
  width: 94px;
  height: 49px;
  background: #0078FF;
  box-shadow: 0px 0px 15px rgba(0, 120, 255, 0.66);
  border-radius: 10px;
  color: #fff;
}

.continue-btn:hover {
  box-shadow: none;
}

.register-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 208px;
  height: 49px;
  border: 1px solid rgba(2, 2, 2, 0.1);
  border-radius: 12px;
}

.register-btn:hover {
  border: 1px solid #020202;
}

.action-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #0202021A;
  border-radius: 100px;
  white-space: nowrap;
  margin: 0 5px 5px 0;
}

.action-btn.active {
  background: #0078FF;
  border: 1px solid #0078FF;
  color: #fff;
}

.gray-section {
  border-radius: 40px;
  background-color: #f6f6f6;
}

.widget-list {
  display: flex;
  justify-content: space-between;
  padding: 0;
  flex-wrap: wrap;
  margin-bottom: -20px;
}

.widget {
  width: calc(50% - 10px);
  border: 1px solid #0202021A;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.widget h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #020202;
  font-weight: normal;
}

.widget .btns-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: -10px;
}

.widget .action-btn {
  margin-right: 5px;
  margin-bottom: 5px;
}

section.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

section.banner .container {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  width: 50%;
}

section.banner .banner-image {
  overflow: hidden;
  width: 550px;
  max-width: 50%;
  height: 420px;
  border-radius: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  margin-top: -40px;
}

section.banner .container img {
  width: auto;
  height: 100%;
}

section.banner h4 {
  width: 100%;
  margin: 15px 0 20px;
  font-size: 20px;
  font-weight: normal;
}

section.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

section.about .info-caption {
  margin-left: 0;
}

section.about h2 {
  margin: 0 auto 36px 0;
  text-align: left;
}

section.about .adv-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

section.about .item {
  width: 33%;
  height: 204px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

section.about .adv-list .item .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

section.about .adv-list .item h3 {
  font-weight: normal;
  font-size: 24px;
  font-family: Manrope-Medium;
  color: #020202;
}

section.about .adv-list .item p {
  width: 100%;
  padding: 20px 0 0;
}

section.about .adv-list .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  margin-right: 16px;
  border: 1px solid rgba(19, 23, 27, 0.1);
  border-radius: 12px;
}

section.history h2 {
  max-width: 480px;
}

section.history .his-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 48px auto;
  padding-bottom: 48px;
  text-align: center;
}

section.history .his-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  margin-bottom: 20px;
  border-radius: 26px;
  background-color: #f6f6f6;
  padding: 18px;
}

section.history .his-list .icon img {
  width: 100%;
}

section.history .his-list h4 {
  font-family: Manrope-Medium;
  color: #020202;
  font-size: 24px;
  font-weight: normal;
}

section.history .his-list .date {
  margin-top: 8px;
  font-size: 16px;
  color: #02020277;
}

section.history .line-block {
  position: absolute;
  left: 67px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0202021A;
  height: 2px;
  width: calc(100% - 134px);
}

section.history .line-block .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #0078FF;
  box-shadow: 0px 0px 15px rgba(0, 120, 255, 0.66);
  border-radius: 50%;
}

section.why {
  display: flex;
  flex-wrap: wrap;
}

section.why h2 {
  max-width: 100%;
  margin-top: 36px;
}

section.why h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #020202;
  font-weight: normal;
}

section.why .item.map {
  display: flex;
  align-items: flex-end;
  padding: 20px;
  width: 640px;
  height: auto;
  background: url(../images/map.png) no-repeat center / cover;
  border-radius: 20px;
}

section.why .item.map .info-text {
  background: #ffffff9c;
}

section.why .item.variants {
  width: calc(100% - 640px);
  padding-left: 20px;
}


section.why .item.variants .subitem {
  border-radius: 20px;
  background-color: #fff;
  padding: 20px;
}

section.why .item.variants .subitem:nth-child(1) {
  margin-bottom: 20px;
}

section.why .item.variants .btns-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: -5px;
}

section.why .item.additional {
  width: 100%;
  padding: 36px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 20px;
}

section.why .item.additional .subitem {
  border: 1px solid #0202021A;
  width: calc(50% - 10px);
}

section.why .item.additional .action-btn img {
  margin-right: 10px;
}

section.why .subsection {
  padding: 0 40px 40px;
  background: #fff;
  margin-top: 20px;
  border-radius: 20px;
}

section.why .subsection h2 {
  width: 100%;
  max-width: 340px;
}

section.advantages .widget:nth-child(3) {
  width: calc(33% - 10px);
}

section.advantages .widget:nth-child(4) {
  width: calc(33% - 10px);
}

section.advantages .widget:nth-child(5) {
  width: calc(33% - 10px);
}

section.registration {
  width: 550px;
  max-width: 100%;
  border: 1px solid #0202021A;
  border-radius: 40px;
}

section.registration h2 {
  margin-bottom: 80px;
}

section.registration h3 {
  margin: 0 auto;
  font-size: 24px;
  color: #020202;
  font-weight: normal;
  text-align: center;
}

section.registration h4 {
  margin: 10px auto 15px;
  text-align: center;
}

section.registration .register-form {
  display: flex;
  flex-direction: column;
}

section.registration .register-form label {
  position: relative;
  display: inline-block;
  height: 49px;
  width: 100%;
  margin-bottom: 10px;
}

section.registration .register-form input:hover {
  border: 1px solid #02020285;
}

section.registration .register-form input {
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 16px 35px 16px 16px;
  border: 1px solid #0202021A;
  border-radius: 12px;
}

section.registration .register-form .error {
  border: 1px solid #f00;
}

section.registration .register-form [type="submit"] {
  margin-top: 10px;
}

section.registration .register-form button[disabled] {
  opacity: 0.5;
  user-select: none;
  cursor: not-allowed;
}

section.registration .register-form .email-error {
  color: #f94e4e;
  background: #fff;
  position: relative;
  top: -8px;
  left: 10px;
  margin: auto;
  width: 170px;
  font-size: 14px;
  text-align: center;
}

section.registration .register-form .help-icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  margin: 15px 10px;
  background: #0078ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  text-align: center;
  cursor: pointer;
}

section.registration .register-form .help-text {
  display: none;
  position: absolute;
  right: 0px;
  z-index: 999;
  background: #e0efff;
  padding: 10px;
  border-radius: 10px;
  color: #676767;
  box-shadow: 5px 5px 5px #cfcfcf;
}

section.registration .register-form .help-text::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: -10px;
  right: 10px;
  background: #e0efff;
  transform: rotate(45deg) scale(0.5);
}

section.registration .register-form .show-icon,
section.registration .register-form .hide-icon {
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 10;
  margin: 15px 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.5;
}

section.registration .register-form .show-icon img,
section.registration .register-form .hide-icon img {
  width: 20px;
  height: auto;
}

section.registration .additional-block {
  padding: 20px;
  border: 1px solid #0202021A;
  border-radius: 12px;
  margin: 10px;
}

section.registration .confirm-message a {
  color: #0078FF;
}

.footer section {
  margin: 0;
  border-radius: 40px 40px 0 0;
  padding-bottom: 25px;
}

.footer .container {
  width: 1200px;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: auto;
}

.footer .container .bottom-nav {
  display: flex;
}

.footer .container .nav-list {
  width: 170px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer .container .nav-list .item {
  margin-bottom: 12px;
}

.footer .container .nav-list .item:nth-child(1) {
  color: #020202;
}

.footer .container .nav-list a:hover {
  color: #0078FF;
}

.footer .container .social img {
  margin-right: 5px;
}

.footer .container .social img:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1200px) {
  section.about .adv-list {
    flex-direction: column;
  }

  section.about .item {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  section.why .item.map {
    width: 100%;
    height: 560px;
    margin-bottom: 20px;
  }

  section.why .item.variants {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
  }

  section.why .item.variants .subitem {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}


@media screen and (max-width: 992px) {
  .header .auth-btn {
    display: none;
  }

  .header .auth-btn.menu {
    display: flex;
  }

  .header .nav-list {
    display: none;
  }

  .header.opened .nav-list {
    display: flex;
    margin-top: 60px;
  }

  section.banner {
    flex-direction: column;
  }

  section.banner .container {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  section.banner .banner-image {
    max-width: 740px;
  }

  section.why .item.map {
    height: 440px;
  }

  section.registration h2 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  section.why .item.map {
    height: 320px;
  }

  section.why .item.variants {
    flex-direction: column;
  }

  section.why .item.variants .subitem {
    width: 100%;
  }

  .widget-list {
    flex-direction: column;
  }

  .widget {
    width: 100% !important;
  }

  .footer .container {
    flex-direction: column;
  }

  .footer .container .bottom-nav {
    flex-direction: column;
  }

  .footer .container .nav-list {
    margin-top: 40px;
  }

  .footer .social {
    margin-top: 40px;
  }
}

@media screen and (max-width: 576px) {
  .header {
    padding: 20px;
  }

  .header.opened {
    padding: 20px;
  }

  h1 {
    font-size: 40px;
  }

  .header.opened .nav-item {
    margin-bottom: 24px;
  }

  .header.opened .nav-item a {
    font-size: 28px;
  }

  .continue-btn {
    width: 100%;
    margin: 0 auto 10px;
  }

  .register-btn {
    width: 100%;
  }

  section {
    padding: 28px;
    margin: 0 auto 28px;
  }

  section.banner {
    padding: 0 20px;
  }

  section.banner .container {
    padding: 0;
  }

  section.history {
    padding: 15px;
  }

  section.history .his-list .icon {
    width: 85px;
    height: 85px;
    padding: 7px;
  }

  section.history .his-list h4 {
    font-size: 16px;
  }

  section.history .line-block {
    left: 35px;
    width: calc(100% - 66px);
  }

  section.why .item.map {
    height: 280px;
  }

  section.why .subsection {
    padding: 0 20px 20px;
  }
}

@media screen and (max-width:340px) {
  .action-btn {
    font-size: 14px;
  }

  section {
    padding: 10px;
    margin: 0 auto 20px;
    border-radius: 20px;
  }

  section.registration {
    border-radius: 20px;
  }

  .footer section {
    border-radius: 20px 20px 0 0;
  }
}

@media (orientation: landscape) and (max-height:640px) {
  .header.opened {
    flex-wrap: nowrap;
  }

  .header.opened .nav-item {
    margin-bottom: 15px;
  }

  .header.opened .nav-item a {
    font-size: 22px;
  }
}

@media (orientation: landscape) and (max-height:440px) {
  .header.opened .nav-list {
    margin-top: 0;
  }

  .header.opened .nav-item {
    margin-bottom: 5px;
  }

  .header.opened .nav-item a {
    font-size: 18px;
  }
}

@media (orientation: landscape) and (max-height:340px) {
  .header.opened {
    padding: 20px 40px;
  }

  .continue-btn {
    height: 40px;
  }

  .header.opened .login-buttons .continue-btn {
    margin-bottom: 5px;
  }
}
