/* Reset and base styles  */
html,
body {
  width: 100%;
  height: 100%;
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

option:checked:not(:disabled) {
  color: red; /* or whatever your default style is */
}

@font-face {
  font-family: "GolosText";
  src: url("../../assets/fonts/golos-text_demibold.woff2") format("woff2"), url("../../assets/fonts/golos-text_demibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "GolosText";
  src: url("../../assets/fonts/golos-text_medium.woff2") format("woff2"), url("../../assets/fonts/golos-text_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "GolosText";
  src: url("../../assets/fonts/golos-text_regular.woff2") format("woff2"), url("../../assets/fonts/golos-text_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Monocraft";
  src: url("../../assets/fonts/Monocraft.ttf") format("truetype"), url("../../assets/fonts/Monocraft.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  z-index: 1000;
  top: 18px;
  width: 100%;
  max-width: 1920px;
  padding: 0 60px;
}
.header__container {
  display: flex;
  position: relative;
  height: 54px;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #ffffff;
  width: 100%;
  background-color: #0c0b0e;
}
.header__left {
  z-index: 950;
  display: flex;
  padding: 10px 60px;
  justify-content: center;
  align-items: center;
  width: 345px;
  height: 100%;
  background-color: #ffffff;
}
.header__right {
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: right;
  width: 100%;
  padding-right: 24px;
  z-index: 950;
}
.header__link {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 110%;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0;
  text-align: center;
}
.header__menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
}
.header__burger {
  display: none;
}
.header__burger-menu {
  overflow-y: hidden;
  z-index: 900;
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  flex-direction: column;
  align-items: start;
  gap: 18px;
  background-color: #0c0b0e;
  transition: max-height 0.2s ease, padding-top 0.2s ease, padding-bottom 0.2s ease;
  max-height: 0;
  padding-left: 16px;
  padding-right: 16px;
  outline: 2px solid #ffffff;
}
.header__burger-menu .header__link {
  width: 100%;
  text-align: start;
}

.burger {
  display: none;
  position: relative;
  cursor: pointer;
  width: 34px;
  height: 26px;
}
.burger__stick {
  transition: top 0.2s 0.2s, transform 0.2s, opacity 0.2s;
  height: 1px;
  background-color: #0c0b0e;
  position: absolute;
  width: 24px;
  left: 5px;
}
.burger__stick:nth-child(1) {
  top: 5px;
}
.burger__stick:nth-child(2) {
  top: 13px;
}
.burger__stick:nth-child(3) {
  top: 21px;
}
.burger:active {
  opacity: 0.7;
}

@media screen and (max-width: 1000px) {
  .header {
    max-width: 1848px;
    padding: 0 24px;
  }
  .header__container {
    background-color: #ffffff;
  }
  .header__left {
    padding: 15px 18px;
  }
  .header__right {
    padding-right: 13px;
    justify-content: right;
  }
  .header__burger-menu {
    display: flex;
  }
  .header .header__burger-menu:has(~ .header__right .burger_active) {
    max-height: 500px;
    padding-top: 16px;
    padding-bottom: 18px;
  }
  .header__menu {
    display: none;
  }
  .header__link {
    font-size: 22px;
  }
  .header__left {
    padding-left: 16px;
  }
  .burger {
    display: block;
    z-index: 910;
  }
  .burger_active .burger__stick {
    top: 13px;
    transition: top 0.2s, transform 0.2s 0.2s, opacity 0.2s 0.15s;
  }
  .burger_active .burger__stick:nth-child(1) {
    transform: rotate(45deg);
  }
  .burger_active .burger__stick:nth-child(2) {
    opacity: 0;
  }
  .burger_active .burger__stick:nth-child(3) {
    transform: rotate(-45deg);
  }
}
.footer {
  width: 100%;
  padding: 54px 0 208px;
  border-top: 2px solid #ffffff;
}
.footer__wrapper {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.footer__list {
  width: 100%;
  display: flex;
  -moz-column-gap: 130px;
       column-gap: 130px;
  justify-content: space-between;
  padding-bottom: 108px;
}
.footer__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.footer__item img {
  width: 100%;
}
.footer__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__text {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 90%;
  color: #ffffff;
  font-size: 27px;
  letter-spacing: 0;
  text-wrap: wrap;
}
.footer__darktext {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 90%;
  color: #787878;
  font-size: 24px;
  letter-spacing: 0;
}
.footer__vault {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}

@media screen and (max-width: 1200px) {
  .footer__text {
    font-size: 24px;
  }
  .footer__darktext {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .footer__text {
    font-size: 20px;
  }
  .footer__list {
    flex-direction: column;
    gap: 56px;
  }
  .footer__item img {
    width: 300px;
  }
  .footer__darktext {
    font-size: 17px;
  }
  .footer__vault {
    flex-direction: column;
    gap: 20px;
  }
  .footer__vault *:last-child {
    padding-top: 30px;
  }
}
@media screen and (max-width: 800px) {
  .footer {
    padding: 30px 0 165px;
  }
  .footer__item img {
    width: 178px;
  }
  .footer__block {
    gap: 16px;
  }
  .footer__text {
    font-size: 18px;
  }
  .footer__darktext {
    font-size: 15px;
  }
}
@media screen and (max-width: 550px) {
  .footer__darktext {
    font-size: 14px;
  }
}
* {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

@media (pointer: fine) {
  *::-webkit-scrollbar {
    width: 8px;
    background-color: #0c0b0e;
  }
  *::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #b4fc64;
  }
}
body.modalOpened {
  overflow-y: hidden;
}

a {
  transition: opacity 0.2s ease-in-out;
}

a:hover {
  opacity: 0.8;
}

a:active {
  opacity: 0.9;
}

.wrapper {
  width: 100%;
  background-color: #0c0b0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
}

.section-title {
  font-family: "Monocraft", sans-serif;
  font-weight: 400;
  line-height: 90%;
  color: #b4fc64;
  font-size: 72px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.section-title::before {
  content: "> ";
}

.copy {
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .section-title {
    font-size: 63px;
  }
}
@media screen and (max-width: 680px) {
  .section-title {
    font-size: 52px;
  }
}
@media screen and (max-width: 580px) {
  .section-title {
    font-size: 48px;
  }
}
@media screen and (max-width: 540px) {
  .section-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 490px) {
  .section-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 450px) {
  .section-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 410px) {
  .section-title {
    font-size: 30px;
  }
}
.main {
  padding: 36px 60px 60px 60px;
}
.main__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  border: 2px solid #ffffff;
  min-height: 738px;
  max-width: 1800px;
  width: 100%;
  position: relative;
  z-index: 101;
}
.main__text {
  font-family: "GolosText", sans-serif;
  font-weight: 600;
  line-height: 90%;
  color: #b4fc64;
  font-size: 181px;
  letter-spacing: 0;
  z-index: 103;
}
.main__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-right: 24px;
  z-index: 103;
}
.main__subtext {
  font-family: "GolosText", sans-serif;
  font-weight: 600;
  line-height: 90%;
  color: #ffffff;
  font-size: 40px;
  letter-spacing: 0;
  z-index: 103;
}
.main__img {
  width: 46.2%;
  position: absolute;
  top: 50%;
  right: 34px;
  z-index: 102;
  transform: translate(0, -50%);
}
.main__timer {
  z-index: 103;
  font-family: "Monocraft", sans-serif;
  font-weight: 400;
  line-height: auto;
  color: #b4fc64;
  font-size: 100px;
  letter-spacing: 0;
}
.main__register {
  background-color: #b4fc64;
  padding: 22px 92px;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  font-family: "Monocraft", sans-serif;
  font-weight: 400;
  line-height: 90%;
  color: #0c0b0e;
  font-size: 32px;
  letter-spacing: 0;
  z-index: 103;
}

.header__menu {
  max-width: 200px;
}

@media screen and (max-width: 1900px) {
  .main__text {
    font-size: 160px;
  }
  .main__timer {
    font-size: 90px;
  }
  .main__register {
    padding: 20px 87px;
  }
}
@media screen and (max-width: 1730px) {
  .main__text {
    font-size: 150px;
  }
  .main__timer {
    font-size: 80px;
  }
  .main__register {
    padding: 16px 77px;
  }
}
@media screen and (max-width: 1650px) {
  .main__text {
    font-size: 140px;
  }
  .main__timer {
    font-size: 70px;
  }
  .main__register {
    padding: 16px 72px;
  }
}
@media screen and (max-width: 1530px) {
  .main__timer {
    font-size: 60px;
  }
}
@media screen and (max-width: 1440px) {
  .main__text {
    font-size: 130px;
  }
  .main__timer {
    font-size: 50px;
  }
  .main__register {
    font-size: 30px;
  }
}
@media screen and (max-width: 1300px) {
  .main__text {
    font-size: 120px;
  }
  .main__timer {
    font-size: 45px;
  }
  .main__register {
    padding: 16px 63px;
    font-size: 28px;
  }
  .main__subtext {
    padding-top: 20%;
  }
}
@media screen and (max-width: 1230px) {
  .main__text {
    font-size: 110px;
  }
  .main__timer {
    font-size: 40px;
  }
  .main__register {
    padding: 16px 58px;
    font-size: 26px;
  }
}
@media screen and (max-width: 1120px) {
  .main__timer {
    font-size: 37px;
  }
  .main__register {
    padding: 16px 40px;
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .main {
    padding: 36px 24px 10px 24px;
  }
  .main__wrapper {
    padding: 18px 18px 27px 18px;
    min-height: auto;
  }
  .main__img {
    position: static;
    width: 100%;
    transform: none;
    margin-bottom: 36px;
  }
  .main__bottom {
    padding: 0;
    flex-direction: column;
    align-items: start;
  }
  .main__text {
    font-size: 90px;
  }
  .main__timer {
    font-size: 70px;
    margin-bottom: 46px;
  }
  .main__register {
    padding: 30px 20px;
    font-size: 56px;
    width: 100%;
  }
  .main__subtext {
    padding-bottom: 5%;
  }
}
@media screen and (max-width: 880px) {
  .main__text {
    font-size: 80px;
  }
  .main__timer {
    font-size: 60px;
  }
  .main__register {
    font-size: 46px;
  }
}
@media screen and (max-width: 720px) {
  .main__text {
    font-size: 70px;
  }
  .main__timer {
    font-size: 55px;
    margin-bottom: 36px;
  }
  .main__register {
    font-size: 40px;
  }
}
@media screen and (max-width: 650px) {
  .main__text {
    font-size: 60px;
  }
  .main__timer {
    font-size: 45px;
  }
  .main__register {
    font-size: 30px;
    padding: 20px 20px;
  }
}
@media screen and (max-width: 540px) {
  .main__text {
    font-size: 50px;
  }
  .main__timer {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .main__register {
    font-size: 27px;
  }
}
@media screen and (max-width: 470px) {
  .main__text {
    font-size: 45px;
  }
  .main__timer {
    font-size: 33px;
    margin-bottom: 27px;
  }
  .main__register {
    font-size: 25px;
    padding: 18px 20px;
  }
}
@media screen and (max-width: 435px) {
  .main__text {
    font-size: 40px;
  }
  .main__timer {
    font-size: 28px;
    margin-bottom: 23px;
  }
  .main__register {
    font-size: 23px;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 400px) {
  .main__text {
    font-size: 37px;
  }
  .main__register {
    font-size: 20px;
  }
}
.abouthackaton {
  width: 100%;
  padding: 120px 60px 60px 60px;
}
.abouthackaton__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.abouthackaton__text {
  width: 49.5%;
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 130%;
  color: #ffffff;
  font-size: 32px;
  letter-spacing: 0;
}
.abouthackaton__text p {
  margin-bottom: 1.3em;
}
.abouthackaton__video {
  width: 50.5%;
}
.abouthackaton__video video {
  width: 100%;
  margin-bottom: 18px;
}
.abouthackaton__figcaption {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 90%;
  color: #787878;
  font-size: 32px;
  letter-spacing: 0;
}

@media screen and (max-width: 1400px) {
  .abouthackaton__text {
    font-size: 28px;
  }
  .abouthackaton__figcaption {
    font-size: 28px;
  }
}
@media screen and (max-width: 1000px) {
  .abouthackaton {
    padding: 80px 24px 10px 24px;
  }
  .abouthackaton__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .abouthackaton__text {
    width: 100%;
  }
  .abouthackaton__video {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .abouthackaton__text {
    font-size: 24px;
  }
  .abouthackaton__figcaption {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .abouthackaton__text {
    font-size: 20px;
  }
  .abouthackaton__figcaption {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .abouthackaton__text {
    font-size: 18px;
  }
  .abouthackaton__figcaption {
    font-size: 18px;
  }
}
.cases {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 120px 60px 60px 60px;
}
.cases__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 18px;
}
.cases__case {
  width: calc(50% - 18px);
}

@media screen and (max-width: 1000px) {
  .cases {
    padding: 80px 24px 10px 24px;
  }
  .cases__list {
    flex-wrap: wrap;
  }
  .cases__case {
    width: 100%;
  }
}
.cases-modal {
  display: none;
  justify-content: center;
  overflow-y: scroll;
  background-color: rgba(12, 11, 14, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  padding: 60px;
}
.cases-modal_open {
  display: flex;
}
.cases-modal__cross {
  cursor: pointer;
  position: absolute;
  width: 44px;
  height: 44px;
  top: 60px;
  right: max(60px, (100vw - 1500px) / 2);
  z-index: 10100;
  transition: opacity 0.15s ease;
}
.cases-modal__cross:hover {
  opacity: 0.8;
}
.cases-modal__cross:active {
  opacity: 0.7;
}
.cases-modal__cross:before, .cases-modal__cross:after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 22px);
  display: block;
  rotate: 45deg;
  width: 44px;
  height: 2px;
  background-color: #fff;
}
.cases-modal__cross:after {
  rotate: -45deg;
}
.cases-modal__case {
  position: relative;
  max-width: 1500px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  transition: opacity 0.15s ease;
  padding: 2px 2px 2px 2px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 35.24% 0, 40.4% min(9.67%, 54px), 100% min(9.67%, 54px), 100% 100%, 74% 100%, 0 100%, 0% 30%);
}
.cases-modal__case:hover {
  opacity: 1;
}
.cases-modal__case:active {
  opacity: 1;
}
.cases-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  background-color: #0c0b0e;
  width: 100%;
  height: 100%;
  padding: 110px 53px 153px;
  clip-path: polygon(0 0, calc(35.24% - 2px) 0, calc(40.4% - 2px) min(9.67%, 54px), 100% min(9.67%, 54px), 100% 100%, 74% 100%, 0 100%, 0% 30%);
}
.cases-modal__logo {
  max-width: 57.52%;
  align-self: flex-end;
}
.cases-modal__title {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 115%;
  color: #ffffff;
  font-size: 54px;
  letter-spacing: 0;
  margin-bottom: 65px;
  gap: 0px;
}
.cases-modal__subtitle {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 90%;
  color: #787878;
  font-size: 22px;
  letter-spacing: 0;
  margin-bottom: 30px;
}
.cases-modal__desc {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 125%;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 0;
}

@media screen and (max-width: 1000px) {
  .cases-modal {
    padding: 24px;
  }
  .cases-modal__cross {
    top: 24px;
    right: max(24px, (100vw - 1500px) / 2);
  }
  .cases-modal__content {
    padding: 85px 20px 40px;
  }
  .cases-modal__title {
    font-size: 48px;
    margin-bottom: 35px;
  }
  .cases-modal__subtitle {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .cases-modal__desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .cases-modal__title {
    font-size: 46px;
  }
  .cases-modal__subtitle {
    font-size: 20px;
  }
  .cases-modal__desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 670px) {
  .cases-modal__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .cases-modal__subtitle {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .cases-modal__title {
    font-size: 20px;
  }
  .cases-modal__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .cases-modal__desc {
    font-size: 16px;
  }
}
.case {
  padding: 2px 2px 2px 2px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 35.24% 0, 40.4% min(9.67%, 54px), 100% min(9.67%, 54px), 100% 100%, 74% 100%, 0 100%, 0% 30%);
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.case:hover {
  opacity: 0.8;
}
.case:active {
  opacity: 0.7;
}
.case__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  background-color: #0c0b0e;
  width: 100%;
  height: 100%;
  padding: 110px 53px 30px 36px;
  clip-path: polygon(0 0, calc(35.24% - 2px) 0, calc(40.4% - 2px) min(9.67%, 54px), 100% min(9.67%, 54px), 100% 100%, 74% 100%, 0 100%, 0% 30%);
}
.case__logo {
  max-width: 57.52%;
  align-self: flex-end;
}
.case__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case__title {
  font-family: "Monocraft", sans-serif;
  font-weight: 400;
  line-height: 115%;
  color: #ffffff;
  font-size: 54px;
  letter-spacing: 0;
}
.case__subtitle {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 90%;
  color: #787878;
  font-size: 32px;
  letter-spacing: 0;
}
.case__desc {
  display: none;
}
.case__wordColor {
  color: #B4FC64;
}

@media screen and (max-width: 1400px) {
  .case__content {
    padding-top: 90px;
    padding-right: 47px;
  }
  .case__title {
    font-size: 40px;
  }
  .case__subtitle {
    font-size: 28px;
  }
}
@media screen and (max-width: 1320px) {
  .case__title {
    font-size: 36px;
  }
  .case__subtitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 1210px) {
  .case__content {
    padding-top: 90px;
    padding-right: 30px;
  }
  .case__title {
    font-size: 34px;
  }
  .case__subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 1150px) {
  .case__title {
    font-size: 28px;
  }
  .case__subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .case__content {
    padding: 70px 23.6px 28px 22px;
  }
  .case__title {
    font-size: 50px;
  }
  .case__subtitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 880px) {
  .case__title {
    font-size: 46px;
  }
  .case__subtitle {
    font-size: 28px;
  }
}
@media screen and (max-width: 780px) {
  .case__title {
    font-size: 40px;
  }
  .case__subtitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 690px) {
  .case__title {
    font-size: 34px;
  }
  .case__subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .case__content {
    padding: 70px 23.6px 18px 15px;
  }
  .case__title {
    font-size: 30px;
  }
  .case__subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 540px) {
  .case__content {
    padding-top: 60px;
    padding-right: 23px;
  }
  .case__text {
    gap: 15px;
  }
  .case__title {
    font-size: 26px;
  }
  .case__bottom {
    gap: 8px;
  }
}
@media screen and (max-width: 480px) {
  .case__text {
    gap: 10px;
  }
  .case__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 400px) {
  .case__title {
    font-size: 18px;
  }
  .case__subtitle {
    font-size: 14px;
  }
}
.timeline {
  padding: 120px 60px 60px 60px;
}
.timeline__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.timeline__item {
  display: grid;
  grid-template-columns: 1.6fr 3fr 4fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  padding: 32px 36px 26px;
  border: 2px solid #ffffff;
}
.timeline__time {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 115%;
  color: #ffffff;
  font-size: 40px;
  letter-spacing: 0;
  display: inline-block;
}
.timeline__name {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 90%;
  color: #b4fc64;
  font-size: 40px;
  letter-spacing: 0;
}
.timeline__desc {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 120%;
  color: #787878;
  font-size: 32px;
  letter-spacing: 0;
}
.timeline__desc_marked:before {
  content: "* ";
  color: #ff3434;
}

@media screen and (max-width: 1755px) {
  .timeline__time {
    font-size: 35px;
  }
  .timeline__name {
    font-size: 35px;
  }
  .timeline__desc {
    font-size: 27px;
  }
}
@media screen and (max-width: 1580px) {
  .timeline__time {
    font-size: 30px;
  }
  .timeline__name {
    font-size: 30px;
  }
  .timeline__desc {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .timeline {
    padding: 80px 24px 10px 24px;
  }
  .timeline__item {
    display: flex;
    gap: 18px;
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 800px) {
  .timeline__item {
    padding: 28px 28px 22px;
    flex-direction: column;
    align-items: start;
  }
  .timeline__time {
    font-size: 27px;
  }
  .timeline__name {
    font-size: 27px;
  }
  .timeline__desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .timeline__item {
    padding: 26px 21px 19px;
    flex-direction: column;
    align-items: start;
  }
  .timeline__time {
    font-size: 24px;
  }
  .timeline__name {
    font-size: 27px;
  }
  .timeline__desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .timeline__item {
    padding: 26px 21px 19px;
    flex-direction: column;
    align-items: start;
  }
  .timeline__time {
    font-size: 22px;
  }
  .timeline__name {
    font-size: 23px;
  }
  .timeline__desc {
    font-size: 18px;
  }
}
.partners {
  display: flex;
  flex-direction: column;
  padding: 120px 60px 60px 60px;
}
.partners__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 100px 50px;
  padding-top: 50px;
}

.partner {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  width: calc(25% - 50px);
}
.partner a {
  height: 100%;
}
.partner__role {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 90%;
  color: #787878;
  font-size: 32px;
  letter-spacing: 0;
  text-wrap: nowrap;
}
.partner__logo {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1250px) {
  .partner__role {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .partners {
    padding: 80px 24px 10px 24px;
  }
  .partners__list {
    padding-top: 14px;
    gap: 54px 24px;
  }
  .partner {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 820px) {
  .partner__role {
    font-size: 20px;
  }
}
@media screen and (max-width: 680px) {
  .partner__role {
    font-size: 16px;
  }
}
@media screen and (max-width: 520px) {
  .partner {
    max-width: 437px;
  }
}
@media screen and (max-width: 520px) {
  .partner {
    max-width: 350px;
  }
}
.faq {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 120px 60px 60px 60px;
}
.faq__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: calc(50% - 25px);
}
.faq__item {
  cursor: pointer;
}
.faq__item:after {
  content: "";
  margin-top: 24px;
  display: block;
  height: 2px;
  background-color: #787878;
}
.faq__question {
  font-family: "GolosText", sans-serif;
  font-weight: 500;
  line-height: 90%;
  color: #ffffff;
  font-size: 54px;
  letter-spacing: 0;
}
.faq__answer {
  font-family: "GolosText", sans-serif;
  font-weight: 400;
  line-height: 110%;
  color: #ffffff;
  font-size: 32px;
  letter-spacing: 0;
  transition: all 0.4s ease;
  max-height: 0;
  overflow-y: hidden;
}
.faq__answer p:not(:last-of-type) {
  margin-bottom: 0.5em;
}
.faq__item_open .faq__answer {
  margin-top: 26px;
  max-height: 700px;
  padding-bottom: 10px;
}

@media screen and (max-width: 1600px) {
  .faq__question {
    font-size: 44px;
  }
  .faq__answer {
    font-size: 28px;
  }
  .faq__item:after {
    margin-top: 22px;
  }
}
@media screen and (max-width: 1180px) {
  .faq__question {
    font-size: 35px;
  }
  .faq__answer {
    font-size: 24px;
  }
  .faq__item:after {
    margin-top: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .faq {
    padding: 80px 24px 10px 24px;
  }
  .faq__container {
    flex-direction: column;
    gap: 50px;
  }
  .faq__list {
    width: 100%;
  }
  .faq__question {
    font-size: 42px;
  }
  .faq__answer {
    font-size: 26px;
  }
  .faq__item:after {
    margin-top: 22px;
  }
}
@media screen and (max-width: 800px) {
  .faq__question {
    font-size: 40px;
  }
  .faq__answer {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  .faq__question {
    font-size: 30px;
  }
  .faq__answer {
    font-size: 22px;
  }
  .faq__item:after {
    margin-top: 18px;
  }
}
@media screen and (max-width: 470px) {
  .faq__question {
    font-size: 27px;
  }
  .faq__answer {
    font-size: 18px;
  }
}