@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #070809;
  --color-main: #fff;
  --color-brand: #b1ed26;
  --color-txt: #d6d6d6;
  --black: #000;
  --bg: #1e1f20;
  --font-main: "Gilroy", sans-serif;
  --font-second: "Inter", sans-serif;
}

/* GLOBAL */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: var(--color-dark);
  color: var(--color-main);
  font: 400 1rem/1.2 var(--font-main);
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
}

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

a {
  text-decoration: none;
  color: var(--color-brand);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 18px;
}
p:last-child {
  margin-bottom: 0;
}

input[type=search], input[type=submit], input[type=text], textarea {
  -webkit-appearance: none;
}

input, textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  font-size: 1rem;
  border-radius: 12px;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  background-color: #2c2c2c;
  border: 1px solid rgba(231, 231, 231, 0.1);
  color: inherit;
}
input:focus, textarea:focus {
  border-color: #c5c5c5;
}

input {
  height: 3.6875rem;
}

textarea {
  padding-top: 20px;
  padding-bottom: 20px;
  resize: vertical;
  display: block;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

input:-moz-placeholder {
  text-overflow: ellipsis;
}

input:-ms-input-placeholder {
  text-overflow: ellipsis;
}

::-webkit-input-placeholder {
  color: var(--color-txt);
}

::-moz-placeholder {
  color: var(--color-txt);
}

:-ms-input-placeholder {
  color: var(--color-txt);
}

button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3 {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1;
  letter-spacing: -0.02em;
}

h1, .heading-1 {
  font-size: 6rem;
  margin-bottom: 28px;
}
@media (max-width: 1360px) {
  h1, .heading-1 {
    font-size: calc(64px + 32 * (100vw - 400px) / 960);
  }
}

h2, .heading-2 {
  font-size: 3.5rem;
  margin-bottom: 44px;
}
@media (max-width: 1360px) {
  h2, .heading-2 {
    font-size: calc(34px + 22 * (100vw - 400px) / 960);
  }
}

h3, .heading-3 {
  font-size: 2.625rem;
  margin-bottom: 30px;
}
@media (max-width: 1360px) {
  h3, .heading-3 {
    font-size: calc(26px + 16 * (100vw - 400px) / 960);
  }
}

/* COMMON */
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
}

.content-page {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  min-height: 1px;
}

.container {
  width: 100%;
  max-width: 1360px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* BUTTON */
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: var(--black);
  border: 1px solid var(--color-brand);
  background-color: var(--color-brand);
  border-radius: 50px;
  padding: 16px 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  will-change: transform;
}
.button:hover {
  text-decoration: none;
}
.button:hover:before {
  opacity: 1;
}
.button:before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 2px solid var(--color-brand);
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  pointer-events: none;
}
.button_outline {
  background-color: transparent;
  color: inherit;
}
.button_outline:before {
  inset: 2px;
  border-width: 1px;
}
.button_sm {
  padding: 10px 16px;
}
.button_full {
  width: 100%;
  min-width: 0;
  padding-left: 20px;
  padding-right: 20px;
}

/* HEADER */
.header {
  padding: 15px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__start {
  margin-right: 10px;
}
.header__end {
  margin-left: auto;
}
.header__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -18px;
}
.header__group-item {
  padding: 0 18px;
}
.header__button {
  font-size: 0.875rem;
  min-width: 168px;
}
@media (max-width: 767px) {
  .header {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .header__group {
    margin: 0 -4px;
  }
  .header__group-item {
    padding: 0 4px;
  }
}
@media (max-width: 420px) {
  .header .button {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.logo {
  display: block;
  max-width: 150px;
}

.lang {
  position: relative;
  text-transform: uppercase;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lang__title {
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 10px 6px;
  font-weight: 600;
}
.lang__title:hover {
  opacity: 1;
}
.lang__title:after {
  content: "";
  margin-left: 5px;
  width: 11px;
  height: 11px;
  background: url("../img/corner.svg") no-repeat 0 0/contain;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.lang__dropdown {
  list-style: none;
  margin: 0;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  border-radius: 6px;
  background-color: var(--bg);
  overflow: hidden;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lang__dropdown a {
  display: block;
  text-align: center;
  padding: 8px 10px;
  color: inherit;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.lang__dropdown a:hover {
  background-color: #3e3e3e;
}
.lang.is-active .lang__title {
  opacity: 1;
}
.lang.is-active .lang__title:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.lang.is-active .lang__dropdown {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* SECTION */
.section {
  margin-bottom: 175px;
}
@media (max-width: 1360px) {
  .section {
    margin-bottom: calc(120px + 55 * (100vw - 400px) / 960);
  }
}
.section-header {
  width: 100%;
  max-width: 42.5rem;
  margin: 0 auto 68px;
}
.section-header__title {
  margin-bottom: 24px;
}
.section-header__info {
  font-size: 1.25rem;
  color: var(--color-txt);
  font-weight: 600;
}
.section-header_lg {
  max-width: 850px;
}
.section-header_mb {
  margin-bottom: 44px;
}
@media (min-width: 501px) {
  .section-header {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .section-header__fontSize {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 44px;
  }
  .section-header_mb {
    margin-bottom: 24px;
  }
}
.section-header_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* INTRO */
@media (min-width: 992px) {
  .intro-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
  }
  .intro-grid__item {
    width: 50%;
    padding: 0 10px;
  }
  .intro-grid__inner {
    max-width: 540px;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .intro-grid__item:not(:last-child) {
    margin-bottom: 65px;
  }
}
.intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 501px) and (max-width: 991px) {
  .intro {
    text-align: center;
  }
}
.intro__body:not(:last-child) {
  margin-bottom: 30px;
}
.intro__body p {
  color: var(--color-txt);
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .intro__body p {
    font-size: 0.875rem;
  }
}
.intro__info {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-txt);
}
.intro__subtitle {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-txt);
}
@media (max-width: 575px) {
  .intro__subtitle {
    font-size: 1.25rem;
  }
}
.intro__row:not(:last-child) {
  margin-bottom: 30px;
}
.intro__block {
  width: 100%;
  max-width: 264px;
}
.intro__block_max {
  max-width: 315px;
}
@media (max-width: 500px) {
  .intro__block_max {
    max-width: 100%;
  }
}
.intro__block-item:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 501px) and (max-width: 991px) {
  .intro__block {
    margin-left: auto;
    margin-right: auto;
  }
}
.intro__note {
  font-size: 0.8125rem;
  color: var(--color-txt);
}
@media (max-width: 500px) {
  .intro__note {
    text-align: center;
  }
}
.intro__footer {
  margin-top: auto;
}
@media (min-width: 992px) {
  .intro__max {
    max-width: 345px;
  }
}
.intro-media {
  position: relative;
}
.intro-media__img {
  border-radius: 24px;
}
.intro-label {
  position: absolute;
  bottom: 24px;
  right: 24px;
  max-width: calc(100% - 48px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 5px 11px;
  background-color: var(--color-main);
  color: var(--black);
}
@media (max-width: 991px) {
  .intro__hidden {
    display: none;
  }
}
@media (max-width: 991px) {
  .intro_mobile {
    text-align: center;
  }
  .intro_mobile .intro__body {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    margin: 60px 0 0;
  }
  .intro_mobile .intro__block {
    margin-left: auto;
    margin-right: auto;
  }
}

.form__note {
  font-size: 0.75rem;
  line-height: 1;
  color: var(--color-txt);
  margin-top: 10px;
  text-align: center;
}

/* POSTER */
.poster {
  position: relative;
  cursor: pointer;
}
.poster_max {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.poster:hover .pulse-hover:before, .poster:hover .pulse-hover:after {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.poster__img {
  border-radius: 24px;
  overflow: hidden;
  opacity: 0.8;
}
.poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--color-brand);
  background-color: currentColor;
  display: grid;
  place-content: center;
}
.poster__play img {
  position: relative;
}
.poster__info {
  border-radius: 12px;
  background-color: var(--bg);
  border: 1px solid var(--color-brand);
  padding: 8px;
  max-width: 9.875rem;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 0.8125rem;
}
@media (max-width: 991px) {
  .poster__info {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.pulse-hover__item {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: currentColor;
  position: absolute;
  top: 0;
  left: 0;
}
.pulse-hover:before, .pulse-hover:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  border: 2px solid #fff;
  -webkit-animation: pulsate infinite 1.25s linear;
  animation: pulsate infinite 1.25s linear;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.pulse-hover:before {
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
}
.pulse-hover:after {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}
/* COURSE */
.course-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
.course-grid__item {
  width: 33.333%;
  padding: 10px;
}
@media (max-width: 1180px) {
  .course-grid {
    margin: -6px;
  }
  .course-grid__item {
    padding: 6px;
  }
}
@media (max-width: 991px) {
  .course-grid__item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .course-grid.block-cut {
    overflow: hidden;
    height: 120vw;
    position: relative;
  }
  .course-grid.block-cut:after {
    content: "";
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(var(--color-dark)), to(rgba(7, 8, 9, 0)));
    background: linear-gradient(0deg, var(--color-dark) 0%, rgba(7, 8, 9, 0) 100%);
  }
}

.course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  height: 0;
  padding-top: 131.148%;
  position: relative;
  color: inherit;
}
.course:hover .course__img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.course:hover .course__button {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.course__media, .course__content {
  position: absolute;
}
.course__media {
  inset: 0;
}
.course__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
  -webkit-transition: -webkit-transform 1.5s;
  transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
}
.course__content {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 14px 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  background: -webkit-gradient(linear, left bottom, left top, from(#070809), to(rgba(7, 8, 9, 0)));
  background: linear-gradient(0deg, #070809 0%, rgba(7, 8, 9, 0) 100%);
}
@media (max-width: 600px) {
  .course__content {
    padding: 10px 5px 10px 10px;
  }
}
.course__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.course__group-fluid {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.course__group-end {
  margin-left: auto;
  padding-left: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.course__title {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.05;
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 1360px) {
  .course__title {
    font-size: calc(16px + 24 * (100vw - 400px) / 960);
  }
}
.course__txt {
  display: block;
  font-size: 1.375rem;
  opacity: 0.8;
}
@media (max-width: 1360px) {
  .course__txt {
    font-size: calc(12px + 10 * (100vw - 400px) / 960);
  }
}
.course__button {
  width: 48px;
  height: 48px;
  padding: 5px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: var(--color-brand);
  background-color: currentColor;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media (max-width: 1180px) {
  .course__button {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 600px) {
  .course__button {
    width: 25px;
    height: 25px;
  }
}

/* OFFER */
.offer-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
.offer-grid__item {
  width: 33.333%;
  padding: 10px;
}
@media (max-width: 1200px) {
  .offer-grid__item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .offer-grid__item {
    width: 100%;
  }
}

.offer {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(231, 231, 231, 0.3);
  border-radius: 24px;
  padding: 24px 20px;
  background-color: #2c2c2c;
  font-weight: 500;
}
@media (min-width: 576px) {
  .offer {
    font-size: 1.125rem;
  }
}
.offer_v1 {
  background-color: transparent;
  padding: 24px 12px;
}
.offer__icon {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 12px;
}

/* GRID-MAIN */
@media (min-width: 992px) {
  .grid-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
  }
  .grid-main__item {
    width: 50%;
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .grid-main__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* BENEFIT */
.benefit-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
.benefit-grid__item {
  width: 50%;
  padding: 10px;
}
@media (max-width: 575px) {
  .benefit-grid {
    margin: -6px;
  }
  .benefit-grid__item {
    padding: 6px;
    width: 100%;
  }
  .benefit-grid.block-cut {
    overflow: hidden;
    height: 120vw;
    position: relative;
  }
  .benefit-grid.block-cut:before {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#070809), to(rgba(7, 8, 9, 0)));
    background: linear-gradient(0deg, #070809 0%, rgba(7, 8, 9, 0) 100%);
  }
}
.benefit {
  border: 1px solid rgba(231, 231, 231, 0.3);
  border-radius: 24px;
  padding: 24px 20px;
  height: 100%;
  min-height: 269px;
}
@media (max-width: 991px) {
  .benefit {
    min-height: 220px;
  }
}
@media (max-width: 575px) {
  .benefit {
    padding: 20px;
  }
}
.benefit__icon {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-brand);
  margin-bottom: 18px;
}
.benefit__icon svg, .benefit__icon img {
  max-height: 100%;
}
.benefit__title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* CONNECT */
.connect {
  border-radius: 16px;
  padding: 60px;
  background-color: var(--bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 1100px) {
  .connect {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .connect {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.connect__block:not(:last-child) {
  margin-bottom: 38px;
}
.connect__header {
  text-align: center;
  margin-bottom: 40px;
}
.connect__subtitle {
  color: var(--color-txt);
}
.connect-form__row {
  margin-bottom: 18px;
}
.connect-form__footer {
  margin-top: 40px;
}

.timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.timer__item {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 12px;
  background-color: #2c2c2c;
  border: 1px solid var(--color-brand);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  position: relative;
  margin-right: 26px;
}
.timer__item:last-child {
  margin-right: 0;
}
.timer__item:last-child:after {
  display: none;
}
.timer__item:after {
  content: "";
  background: url("../img/divider.svg") no-repeat 0 0;
  width: 6px;
  height: 22px;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 11px;
}
.timer__val {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--color-brand);
}
.timer__txt {
  font-size: 0.625rem;
  letter-spacing: -0.02em;
  color: #f8f8f8;
  margin-top: 1px;
}

/* COMMENT */
.comment-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
.comment-grid__item {
  width: 33.333%;
  padding: 10px;
}
@media (max-width: 991px) {
  .comment-grid__item {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .comment-grid__item {
    width: 100%;
  }
}
.comment {
  border: 2px solid var(--bg);
  border-radius: 16px;
  padding: 26px;
  height: 100%;
}
.comment__header {
  margin-bottom: 34px;
}
.comment__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.comment__user-ava {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e8fabe;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
}
.comment__user-ava img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.comment__title {
  font-weight: 600;
  line-height: 1;
  font-size: 1.25rem;
  min-width: 1px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment__body {
  font-weight: 500;
}
.comment-wrap.block-cut {
  position: relative;
  max-height: 600px;
  overflow: hidden;
}
.comment-wrap.block-cut:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 168px;
  background: -webkit-gradient(linear, left bottom, left top, from(#070809), to(rgba(7, 8, 9, 0)));
  background: linear-gradient(0deg, #070809 0%, rgba(7, 8, 9, 0) 100%);
}
.comment-button {
  text-align: center;
}

/* LIST */
.list {
  margin: 0;
  padding: 0 0 0 22px;
  list-style-image: url("../img/check.svg");
  color: rgba(255, 255, 255, 0.8);
}
.list li:not(:last-child) {
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 44px 0 0;
  font-size: 0.875rem;
  font-family: var(--font-second);
  border-top: 1px solid #2B2626;
  color: #B2B4B2;
}
.footer__title {
  font-weight: 500;
  color: var(--color-main);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__bottom {
  padding: 47px 0;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px -10px;
}
.footer__nav a {
  color: inherit;
  margin: 5px 10px;
}
.footer__nav a:hover {
  color: var(--color-brand);
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer__item {
    width: 23.713%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .footer__main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 1px;
    max-width: 100%;
    padding: 0 22px;
  }
}
@media (max-width: 767px) {
  .footer__group > div:not(:last-child) {
    margin-bottom: 40px;
  }
  .footer__bottom {
    padding: 30px 0;
  }
}
.link {
  color: inherit;
}
.link:hover {
  color: var(--color-brand);
  text-decoration: none;
}

.social-wrap {
  margin: -10px -20px;
}
@media (min-width: 501px) {
  .social-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: inherit;
  padding: 10px;
  margin: 0 10px;
}
.social:hover {
  color: var(--color-brand);
  text-decoration: none;
}
.social__icon {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}

/* MODAL */
.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 15px;
}
.modal.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.is-show .modal__inner {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal__bg {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
}
.modal__inner {
  width: 100%;
  max-width: 744px;
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 10;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  background-color: var(--bg);
  padding: 70px 32px 32px;
  border-radius: 32px;
}
@media (max-width: 767px) {
  .modal__inner {
    padding: 50px 20px 24px;
    border-radius: 21px;
  }
}
.modal__hide {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-content: center;
  border-radius: 10px;
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 15px;
  border: none;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: inherit;
}
.modal__hide:hover {
  background-color: var(--color-brand);
}
@media (max-width: 767px) {
  .modal__hide {
    top: 5px;
    right: 5px;
  }
}
.modal_v1 .modal__hide {
  top: 0;
  right: 0;
}
.modal_v1 .modal__inner {
  max-width: 840px;
  padding: 40px 0 0;
  background-color: transparent;
  border-radius: 0;
}
.modal-show {
  overflow: hidden;
}

/* VIDEO-CONTAINER */
.video-container {
  width: 100%;
  max-width: 839px;
  height: 0;
  padding-top: 56.25%;
  position: relative;
  background-color: var(--bg);
  border-radius: 12px;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
}

/* HELPERS */
.color-brand {
  color: var(--color-brand);
}

.text-up {
  text-transform: uppercase;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.nowrap {
  white-space: nowrap;
}

.font-sm {
  font-size: 0.75rem;
}

.font-md {
  font-size: 0.875rem;
}

.mb-0 {
  margin-bottom: 0;
}

.sprite {
  display: none;
}

@media (min-width: 576px) {
  .d-block {
    display: block;
  }
  .xs-visible {
    display: none;
  }
}
@media (min-width: 768px) {
  .sm-visible {
    display: none;
  }
}

.spinner {
  display: none;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}