@font-face {
  font-family: 'DM Sans';
  src: url('../assets/fonts/dmsans/DMSans-SemiBold.woff') format('woff'), url('./assets/fonts/dmsans/DMSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/plus-jakarta-sans/PlusJakartaSans-Light.woff') format('woff'), url('./assets/fonts/plus-jakarta-sans/PlusJakartaSans-Light.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/plus-jakarta-sans/PlusJakartaSans-SemiBold.woff') format('woff'), url('./assets/fonts/plus-jakarta-sans/PlusJakartaSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/plus-jakarta-sans/PlusJakartaSans-Bold.woff') format('woff'), url('./assets/fonts/plus-jakarta-sans/PlusJakartaSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #171717;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans';
  font-weight: 100;
}

.with-background-accent {
  background-image: url('../assets/images/bg-circle.png');
  background-size: auto 1224px;
  background-position: right -511px top 616px;
  background-repeat: no-repeat;
}

* {
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 100px;
}

@media (max-width: 1400px) {
  .wrapper {
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }
}

.wrapper__column {
  width: 100%;
}

.wrapper__column--60 {
  width: 56%;
}

.wrapper__column--40 {
  width: 44%;
  padding-right: 60px;
}

.wrapper__column--100 {
  padding: 0 50px;
}

@media (max-width: 1400px) {
  .wrapper__column--60 {
    width: 380px;
  }

  .wrapper__column--40 {
    width: calc(100% - 450px);
  }

  .wrapper__column--100 {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .wrapper__column--60 {
    width: 270px;
  }

  .wrapper__column--40 {
    width: calc(100% - 350px);
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .wrapper__column--60 {
    margin-top: 50px;
    width: 100%;
  }

  .wrapper__column--40 {
    width: 100%;
  }
}

.wrapper__column--vertical {
  display: flex;
  flex-direction: column;
}

  .wrapper__column--vertical > * {
    align-self: center;
  }

.wrapper__column--alignright {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .wrapper__column--alignright {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .wrapper__column--alignright {
    justify-content: center;
  }
}

h1 {
  max-width: 930px;
  margin-top: 68px;
  margin-bottom: 0;
  font-size: 65px;
  line-height: 80px;
  text-align: center;
  font-family: 'DM Sans', 'Open Sans';
  font-weight: 600;
}

@media (max-width: 1024px) {
  h1 {
    margin-top: 50px;
    font-size: 30px;
    line-height: 35px;
  }
}

h2 {
  margin: 40px 0 27px;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
}

@media (max-width: 1024px) {
  h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

p, ul, ol {
  font-size: 18px;
  font-weight: 100;
  line-height: 32px;
  list-style: none;
  text-shadow: -1px -1px rgba(23,23,23, 0.2), 1px 1px #171717;
  /* text-align: justify; */
}

@media (max-width: 1024px) {
  p, ul, ol {
    font-size: 16px;
    line-height: 24px;
  }
}

p {
  margin: 30px 0;
}

@media (max-width: 1024px) {
  p {
    margin: 15px 0;
  }
}

p:first-of-type {
  margin-top: 0;
}

ul, ol {
  padding-left: 0;
}

  ul > li {
    position: relative;
    padding-left: 22px;
    line-height: 36px;
  }

@media (max-width: 768px) {
  ul > li {
    line-height: 25px;
  }
}

ul > li:before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  left: 7px;
  top: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  ;
}

@media (max-width: 1024px) {
  ul > li:before {
    top: 12px;
  }
}

.listheading {
  margin-bottom: 19px;
  padding-left: 0;
  list-style: none;
}

  .listheading:before {
    display: none;
  }

/*p + ul {
  margin-top: 57px;
}*/

ul + ul {
  margin-top: 35px;
}

a {
  color: #ffffff;
  text-decoration: none;
}

  a:hover {
    text-decoration: underline;
  }

b, strong {
  font-weight: 700;
}

.header {
  padding-top: 137px;
  margin-bottom: 153px;
}

@media (max-width: 1024px) {
  .header {
    padding-top: 25px;
    margin-bottom: 50px;
  }
}

.header__logo {
}

  .header__logo > img {
    width: 228px;
  }

.swiper {
  margin: 0;
  max-width: 380px;
  transform: translate(-56px, -181px);
  padding-bottom: 38px;
}

@media (max-width: 1400px) {
  .swiper {
    transform: translateY(-90px);
  }
}

@media (max-width: 1024px) {
  .swiper {
    transform: none;
  }
}

.swiper-wrapper {
  height: auto;
}

.swiper-pagination {
}

.swiper-pagination-bullet {
  background-color: #aaaaaa;
}

.swiper-pagination-bullet-active {
  background-color: #ffffff;
}


.phone-image {
  position: relative;
  width: 100%;
}

  .phone-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
  }

@media (max-width: 1024px) {
  .phone-image {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}

.footer {
  margin-top: 138px;
  padding: 0 66px;
  background-color: #ffffff;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .footer {
    margin-top: 50px;
  }
}

.footer .wrapper__column {
  max-width: 1960px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}

@media (max-width: 1024px) {
  .footer .wrapper__column {
    padding: 20px 0;
  }
}

.footer__logo {
}

  .footer__logo > img {
    width: 35px;
  }

.footer__navigation {
}

  .footer__navigation > ul {
    margin: 0;
  }

    .footer__navigation > ul > li {
    }

      .footer__navigation > ul > li > a {
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        line-height: 21px;
        color: #000000;
        text-shadow: none;
      }

@media (max-width: 1024px) {
  .footer__navigation > ul > li > a {
    font-size: 16px;
    line-height: 24px;
  }
}

.footer__navigation > ul > li > a:hover {
  text-decoration: underline;
}

.infotile {
  display: flex;
  margin: 81px auto;
  background-color: #FAFAFA;
  color: #000000;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .infotile {
    flex-direction: column;
  }
}

.infotile > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .infotile > * {
    align-self: center;
  }
}

.infotile__image {
  min-height: 300px;
  padding: 34px 42px;
}

  .infotile__image img {
    width: 228px;
  }

.infotile__content {
  padding: 34px 42px 34px 4px;
}

@media (max-width: 1024px) {
  .infotile__content {
    padding: 34px 42px;
  }
}

.infotile__content p {
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  text-shadow: none;
  text-align: justify;
}

.infotile__content b, .infotile__content strong {
  font-weight: 700;
}

.infotile__summary {
  display: flex;
  justify-content: center;
  background-color: #EBEBEB;
  border-radius: 10px;
  width: 300px;
  flex-shrink: 0;
  padding-bottom: 9px;
  padding-right: 4px;
}

@media (max-width: 1024px) {
  .infotile__summary {
    padding: 20px 0;
    width: 100%;
  }
}

.infotile__summary__block {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.infotile__summary__block__item {
  font-size: 26px;
  line-height: 36px;
  font-weight: 100;
}


/* register */
/* register flow */
h1 {
  max-width: 1100px;
}

.swiper {
  transform: translate(-56px, 0);
}

@media (max-width: 1400px) {
  .swiper {
    transform: none;
  }
}

.formsummary {
  color: #ff7e5e;
  text-shadow: -1px -1px rgba(23,23,23, 0.2), 1px 1px #171717;
}

  .formsummary li:before {
    background-color: #ff7e5e;
  }

  form {
    max-width: 354px;
    width: 100%;
  }

@media (max-width: 768px) {
  form {
    max-width: 100%;
    margin: 0 auto;
  }
}

.form__section {
  width: 100%;
  margin: 40px 0;
}

.form__section__input {
  width: 100%;
  margin: 10px 0;
}

.form__section__input--error input {
  outline: 2px solid #ff7e5e !important;
}

.form__section__input input {
  width: 100%;
  padding: 20px 29px 19px;
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 6px;
  font-size: 16px;
  list-style: 21px;
  color: #000000;
  font-weight: 400;
}

  .form__section__input input:focus {
    outline: none;
  }

  .form__section__input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 16px;
    list-style: 21px;
    font-family: 'Plus Jakarta Sans';
    color: #9A9A9A;
    font-weight: 400;
  }

  .form__section__input input::-moz-placeholder { /* Firefox 19+ */
    font-size: 16px;
    list-style: 21px;
    font-family: 'Plus Jakarta Sans';
    color: #9A9A9A;
    font-weight: 400;
  }

  .form__section__input input:-ms-input-placeholder { /* IE 10+ */
    font-size: 16px;
    list-style: 21px;
    font-family: 'Plus Jakarta Sans';
    color: #9A9A9A;
    font-weight: 400;
  }

  .form__section__input input:-moz-placeholder { /* Firefox 18- */
    font-size: 16px;
    list-style: 21px;
    font-family: 'Plus Jakarta Sans';
    color: #9A9A9A;
    font-weight: 400;
  }

.form__section__input__error {
  display: inline-block;
  padding: 5px 0;
  color: #ff7e5e;
  text-shadow: -1px -1px rgba(23,23,23, 0.2), 1px 1px #171717;
}

.form__section--actions {
}

  .form__section--actions input {
    width: 100%;
    padding: 20px 29px 19px;
    background-color: #505DFA;
    border: 1px solid #505DFA;
    border-radius: 6px;
    font-size: 16px;
    list-style: 21px;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    opacity: 1;
    transition: 250ms ease;
  }

    .form__section--actions input:hover {
      opacity: 0.9;
    }

    .form__section--actions input[disabled] {
      pointer-events: none;
      background-color: #C1C1C1;
      border-color: #C1C1C1;
    }