/**
 * Theme Name: onex
 */

@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/GolosText/GolosText-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/GolosText/GolosText-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/GolosText/GolosText-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Onest/Onest-Regular.woff2") format("woff2");
}

html {
  margin: 0 !important;
  height: 100%;
  font-family: "Golos Text" !important;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: "Golos Text" !important;
  font-weight: 400 !important;
  color: #222222;
  background-color: #ffffff;
}

header {
  /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
  flex: 0 0 auto;
}
.main {
  /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
  flex: 1 0 auto;
}
footer {
  /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
  flex: 0 0 auto;
}

.button {
  border-radius: 12px;
  background-color: #004bca;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 250ms ease-out;
  line-height: 16px;
  &:hover {
    opacity: 0.94;
  }
}

/* .disabled {
   display: none;
} */

/* MAIN */

.main {
  width: 100%;
}

.main__wrapper {
  max-width: 1241px; /* Устанавливаем максимальную ширину */
  margin: 0 auto; /* Центрируем контент */
  padding: 0px; /* Отступы внутри контейнера */
  background-color: #ffffff; /* Цвет фона для внутреннего содержимого */
  position: relative; /* Для позиционирования */
  z-index: 1; /* Убедимся, что этот элемент выше фона */
}



.title {
  color: #222222;
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  margin: 0 0 23px 0;
}

.text {
  width: 1089px;
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 0%;
  margin: 0;
  margin-bottom: 45px;
}



.display-none {
  display: none;
}

.br {
  width: 100%;
  height: 1px;
  background-color: #c4cdd5;
  margin: 32px 0;
}

@media screen and (max-width: 1200px) {
  .main__wrapper {
     padding: 0 32px;
  }

  .title {
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 16px;
  }

  .text {
    width: 100%;
    margin-bottom: 32px;
  }
}

