@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

@font-face {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 400;
  src: url('../font/gotham/Gotham-Book.eot');
  src: local(''),
    url('../font/gotham/Gotham-Book.eot?#iefix') format('embedded-opentype'),
    url('../font/gotham/Gotham-Book.woff2') format('woff2'),
    url('../font/gotham/Gotham-Book.woff') format('woff'),
    url('../font/gotham/Gotham-Book.ttf') format('truetype');
}
@font-face {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 700;
  src: url('../font/gotham/Gotham-Bold.eot');
  src: local(''),
    url('../font/gotham/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
    url('../font/gotham/Gotham-Bold.woff2') format('woff2'),
    url('../font/gotham/Gotham-Bold.woff') format('woff'),
    url('../font/gotham/Gotham-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 800;
  src: url('../font/gotham/Gotham-Black.eot');
  src: local(''),
    url('../font/gotham/Gotham-Black.eot?#iefix') format('embedded-opentype'),
    url('../font/gotham/Gotham-Black.woff2') format('woff2'),
    url('../font/gotham/Gotham-Black.woff') format('woff'),
    url('../font/gotham/Gotham-Black.ttf') format('truetype');
}

html {
  font-size: 16px;
  height: 100%;
}

body {
  overflow-x: hidden;
  background-color: #121317;
  font-weight: 700;
  font-family: 'Gotham', sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100vw;
  height: 100%;
  color: #ffffff;
  font-style: normal;
}

body::before {
  content: '';
  display: block;
  position: fixed;
  width: 100vw;
  height: 39vh;
  left: 0;
  top: 0;
  background-image: url(../images/shadow-top.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -100;
}
body::after {
  content: '';
  display: block;
  position: fixed;
  width: 100vw;
  height: 49vh;
  left: 0;
  bottom: 0;
  background-image: url(../images/shadow-bottom.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -100;
}

img {
  display: block;
}

.cover {
  padding-left: calc(50% - 139vh / 2);
  padding-right: calc(50% - 139vh / 2);
}

.header {
  padding-top: 1.8vh;
  padding-bottom: 1.8vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 101;
}

.logo {
  margin: 0 10vh;
}

.logo img {
  display: block;
  height: 5.5vh;
  max-width: unset;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__language {
  margin-left: 0;
  z-index: 5;
  position: absolute;
  right: calc(50% - 139vh / 2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);

  width: 80px;
  cursor: pointer;
  z-index: 100;
}

.header__language > .header-language__top {
  border-radius: 10px;
  background-color: #121317;
  z-index: 100;
}

.header__language > ul {
  margin-bottom: 0;
  padding: 5px 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-height: 70vh;
  overflow-y: scroll;
  z-index: -1;
  border-radius: 10px;
  background-color: #ffffff;
}

.header__language > ul::-webkit-scrollbar {
  width: 0;
  display: none;
}

.header__language ul > li:before {
  display: none;
}

.header__language.list-hidden > ul {
  padding: 0 10px;
  margin-bottom: 0;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.header-language__link {
  margin-left: auto;
  margin-right: auto;
  padding: 5px 5px 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: auto;
  overflow: hidden;
  width: 100%;
  cursor: pointer !important;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000000;
}

.header-language__top .header-language__link {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #ffffff;
}

.header-language__link img {
  margin-right: 8px;
  display: block;
  width: 20px;
  height: 20px;
}

.header__language > ul li {
  display: block;
  padding: 0;
}

.header__language > ul .header-language__link:hover {
  opacity: 0.75;
}

.header__language > ul li img {
  z-index: -1;
}

.main {
  padding-top: 7vh;
  padding-bottom: 5vh;
  margin-top: auto;
  margin-bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.main > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 1.8vh) / 2);
  -ms-flex: 0 0 calc((100% - 1.8vh) / 2);
  flex: 0 0 calc((100% - 1.8vh) / 2);
}

.prime {
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 100;
}

.prime__title,
.prime__pre-title {
  width: 100%;
}

.prime__pre-title {
  margin-bottom: 5.9vh;
  font-size: 2.7vh;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
}

.prime__title {
  margin-bottom: 4.7vh;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 800;
  font-family: 'Gotham';
  text-align: left;
  text-transform: uppercase;
}

.prime__title-main {
  font-size: 4.1vh;
}

.prime__title-main .large {
  margin-bottom: 2.2vh;
  display: block;
  font-size: 8.2vh;
}

.prime__title-main .contrast {
  color: #4ca421;
}

.prime__title-secondary {
  font-weight: 700;
  font-size: 2.3vh;
  text-transform: none;
}

.prime__title-secondary .large {
  display: block;
  font-size: 3.6vh;
  text-transform: uppercase;
}

.prime__title-secondary .contrast {
  color: #f2a721;
}

.prime__title-secondary br {
  display: none;
}

/* form */
.prime__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  min-width: 46vh;
}

.prime-form__item {
  margin-right: 2.7vh;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30vh;
  -ms-flex: 0 0 30vh;
  flex: 0 0 30vh;
  position: relative;
  -webkit-box-shadow: 0 0 5vh #121317;
  box-shadow: 0 0 5vh #121317;
}

.prime-form__item label {
  padding: 0 0.5vh;
  display: block;
  position: absolute;
  left: 1.5vh;
  top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.1vh;
  line-height: 1;
  color: rgba(225, 225, 225, 0.5);
  background-color: #121317;
  -webkit-box-shadow: 0 0 2vh #121317;
  box-shadow: 0 0 2vh #121317;
  border-radius: 0.3vh;
}
/* .prime-form__item label.active {
  color: rgba(182, 49, 34, 0.5);
} */

.prime-form__item input {
  margin: 0 !important;
  padding: 0.7vh 1.5vh;
  outline: none;
  width: 100%;
  font-size: 1.9vh;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(225, 225, 225, 0.75);
  background-color: #121317;
  border: 0.1vh solid rgba(225, 225, 225, 0.5);
  border-radius: 0.3vh;
}
/* .prime-form__item input.error {
  border-color: rgba(182, 49, 34, 0.5);
} */

.prime-form__item input::-webkit-input-placeholder {
  color: rgba(225, 225, 225, 0.25);
  font-size: 1.9vh;
  font-weight: 400;
  line-height: 1.2;
}

.prime-form__item input::-moz-placeholder {
  color: rgba(225, 225, 225, 0.25);
  font-size: 1.9vh;
  font-weight: 400;
  line-height: 1.2;
}

.prime-form__item input:-ms-input-placeholder {
  color: rgba(225, 225, 225, 0.25);
  font-size: 1.9vh;
  font-weight: 400;
  line-height: 1.2;
}

.prime-form__item input::-ms-input-placeholder {
  color: rgba(225, 225, 225, 0.25);
  font-size: 1.9vh;
  font-weight: 400;
  line-height: 1.2;
}

.prime-form__item input::placeholder {
  color: rgba(225, 225, 225, 0.25);
  font-size: 1.9vh;
  font-weight: 400;
  line-height: 1.2;
}

.prime-form__button {
  padding: 0.6vh 2.2vh;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 12vh;
  -ms-flex: 0 0 12vh;
  flex: 0 0 12vh;
  font-size: 1.3vh;
  line-height: 2.05;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  border-radius: 0.3vh;
  background-image: -o-linear-gradient(right, #4ca421 40%, #a6fc71 100%);
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(40%, #4ca421),
    to(#a6fc71)
  );
  background-image: linear-gradient(-90deg, #4ca421 40%, #a6fc71 100%);
}
.prime-form__button:hover {
  color: #2db155;
  background: #fff;
}

.popup {
  padding: 0.9vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  position: absolute;
  text-align: left;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.25vh;
  opacity: 0;
  z-index: -1000;
  border-radius: 0.3vh;
}
.popup-success {
  color: #121317;
  background-color: #4ca421;
}
.popup-error {
  color: #ffffff;

  background-color: #b63122;
}
.popup.active {
  opacity: 1;
  z-index: 1000;
}

.popup__icon {
  margin-right: 0.9vh;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.8vh;
  -ms-flex: 0 0 1.8vh;
  flex: 0 0 1.8vh;
  height: 1.8vh;
}
.popup__icon img {
  display: block;
}

/* benefits */
.benefits {
  padding: 3.2vh 2.7vh;
  border-radius: 1vh;
  background-image: -o-linear-gradient(
    left,
    rgba(18, 19, 23, 0.25) 0%,
    rgba(18, 19, 23, 0.25) 0%,
    rgba(18, 19, 23, 0.85) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(18, 19, 23, 0.25)),
    color-stop(0%, rgba(18, 19, 23, 0.25)),
    to(rgba(18, 19, 23, 0.85))
  );
  background-image: linear-gradient(
    90deg,
    rgba(18, 19, 23, 0.25) 0%,
    rgba(18, 19, 23, 0.25) 0%,
    rgba(18, 19, 23, 0.85) 100%
  );
}

.benefits__list {
  width: 100%;
  text-align: right;
  list-style: none;
}

.benefits__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 1.6vh;
  line-height: 1.1;
  font-weight: 700;
  text-align: right;
}

.benefits__list li + li {
  margin-top: 3.6vh;
}

.benefits-list__icon {
  margin-left: 1vh;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.9vh;
  -ms-flex: 0 0 1.9vh;
  flex: 0 0 1.9vh;
  height: 1.9vh;
}

.benefits-list__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -101;
  height: 100vh;
}

.image img {
  display: block;
  height: 100%;
  max-width: unset;
  -o-object-position: center top;
  object-position: center top;
  -o-object-fit: cover;
  object-fit: cover;
}

.image img ~ img {
  display: none;
}

/* Footer */
.footer {
  padding-top: 1.8vh;
  padding-bottom: 1.8vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 100;
}

.footer img {
  display: block;
}

.footer__copy {
  margin-right: 1.8vh;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 26vh;
  -ms-flex: 0 0 26vh;
  flex: 0 0 26vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer-copy__logo {
  margin-right: 2.7vh;
}
.footer-copy__logo img {
  height: 7.3vh;
  max-width: unset;
}

.footer-copy__desc {
  font-size: 1.3vh;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.35;
}

.footer__payment {
  margin-left: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  list-style: none;
}

.footer__payment li + li {
  margin-left: 2.7vh;
}

.footer__payment img {
  height: 3.6vh;
}
