@import url("https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap");
/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

@font-face {
  font-family: "uaarmylabels";
  src: url("../../fonts/uaarmylabels.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Tektur", sans-serif;
  color: #DBDEE6;
}

button {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  width: calc(100% - 32px);
  margin-inline: auto;
}

.section {
  padding-block: 32px;
}
@media (min-width: 768px) {
  .section {
    padding-block: 48px;
  }
}
@media (min-width: 1024px) {
  .section {
    padding-block: 64px;
  }
}

.title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 64px;
  }
}

.description {
  text-align: center;
  line-height: 140%;
}
@media (min-width: 768px) {
  .description {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .description {
    font-size: 24px;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  padding: 15px 20px;
  font-size: 16px;
  color: #DBDEE6;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #6A0012;
}
.btn-primary:hover {
  background-color: rgb(80.5, 0, 13.6698113208);
}

.btn-secondary {
  border-color: #D8A643;
  border: 1px solid #D8A643;
}
.btn-secondary:hover {
  background-color: #6a0012;
}

.title--decoration {
  padding-block: 16px;
  border-top: 1px solid #D8A643;
  border-bottom: 1px solid #D8A643;
}

.swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #DBDEE6;
  background: transparent;
}
.swiper .swiper-pagination-bullet-active {
  background: #D8A643;
  border-color: #D8A643;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.header--scrolled {
  background: rgba(21, 1, 4, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.header__container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  max-width: 60px;
}
.header {
  /* BURGER */
}
.header__burger {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.header__burger-line {
  width: 100%;
  height: 2px;
  background: #DBDEE6;
  transition: 0.3s ease;
}
.header__burger--active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger--active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger--active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header {
  /* NAVIGATION */
}
.header__nav {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  padding: 32px 20px;
  background: linear-gradient(90deg, #6A0012 0%, #150104 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.header__nav--active {
  transform: translateX(0);
}
.header__menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header__link {
  font-size: 20px;
  font-weight: 500;
  color: #DBDEE6;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header__link:hover {
  color: #D8A643;
}
.header__join {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D8A643;
  color: #150104;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header__join:hover {
  background: #DBDEE6;
  color: #150104;
}
@media (min-width: 1024px) {
  .header__container {
    min-height: 88px;
  }
  .header__burger {
    display: none;
  }
  .header__nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .header__menu {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .header__link {
    font-size: 16px;
  }
}

.hero {
  min-height: 100svh;
  background: url("../../../src/images/hero/hero-bg.webp") center center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__content, .hero__buttons {
  display: grid;
  grid-gap: 16px;
  justify-items: center;
}
.hero__content {
  text-align: center;
}
.hero__buttons {
  margin-block-start: 32px;
}
@media (min-width: 768px) {
  .hero__content {
    grid-gap: 24px;
  }
  .hero__buttons {
    grid-template-columns: repeat(2, auto);
    margin-block-start: 48px;
  }
}

.about {
  background: linear-gradient(90deg, #6A0012 0%, #150104 100%);
}
.about__content {
  display: grid;
  grid-gap: 16px;
}
.about__description {
  text-align: justify;
}
.about__slide {
  position: relative;
}
.about__slide img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}
.about__buttons {
  margin-block-start: 16px;
  text-align: center;
}
.about .about-swiper {
  margin-block-start: 32px;
  width: 100%;
  height: 200px;
}
@media (min-width: 768px) {
  .about .about-swiper {
    height: 350px;
  }
}
.about .about-swiper-wrapper {
  height: 160px;
}
@media (min-width: 768px) {
  .about .about-swiper-wrapper {
    height: 300px;
  }
}

.vacancies {
  background: linear-gradient(90deg, #6A0012 0%, #150104 100%);
}
.vacancies__content {
  display: grid;
  grid-gap: 16px;
}
.vacancies__wrapper {
  display: grid;
  grid-template-rows: 1fr 50px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.vacancies__wrapper:hover .vacancies__cover {
  transform: translateY(0);
  transition: transform 0.2s ease-in-out;
}
.vacancies__cover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  overflow-y: scroll;
  padding: 8px;
  transform: translateY(-100%);
  transition: transform 0.2s ease-in-out;
}
.vacancies__text {
  font-size: 12px;
  text-align: justify;
}
@media (min-width: 768px) {
  .vacancies__text {
    font-size: 14px;
  }
}
.vacancies__image {
  overflow: hidden;
}
.vacancies__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vacancies .job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  background: white;
  color: #150104;
  font-weight: 600;
  text-transform: uppercase;
  padding-inline: 10px;
}
.vacancies .job__expand {
  background: #6A0012;
  color: #DBDEE6;
  width: 30px;
  height: 30px;
  font-weight: 400;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vacancies .vacancies-swiper {
  margin-block-start: 32px;
  width: 100%;
  height: 300px;
}
@media (min-width: 768px) {
  .vacancies .vacancies-swiper {
    height: 350px;
  }
}
.vacancies .vacancies-swiper-wrapper {
  height: 250px;
}
@media (min-width: 768px) {
  .vacancies .vacancies-swiper-wrapper {
    height: 300px;
  }
}

.contact {
  background: linear-gradient(90deg, #6A0012 0%, #150104 100%);
}
.contact__content {
  display: grid;
  grid-gap: 16px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
  margin-block: 24px 0;
}
.contact__select-wrapper {
  position: relative;
}
.contact__select-wrapper:has(.contact__select:focus)::after {
  transform: translateY(-50%) rotate(180deg);
}
.contact__select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #150104;
  pointer-events: none;
}
.contact__input, .contact__select {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  font: inherit;
  color: #150104;
  background-color: #fff;
}
.contact__input::placeholder, .contact__select::placeholder {
  color: #150104;
}
.contact__input:focus, .contact__select:focus {
  outline: 2px solid #D8A643;
}
.contact__input {
  padding-inline: 20px;
}
.contact__select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 0 35px 0 20px;
}
.contact__radio-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-block: 8px 20px;
}
.contact__radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.contact__radio-input {
  width: 20px;
  height: 20px;
  accent-color: #D8A643;
  cursor: pointer;
}
.contact__radio-text {
  font-size: 18px;
  color: #DBDEE6;
}
.contact__buttons {
  text-align: center;
}
.contact__btn {
  width: 100%;
}

.roadmap {
  background: linear-gradient(90deg, #6A0012 0%, #150104 100%);
}
.roadmap__content {
  display: grid;
  grid-gap: 16px;
}
.roadmap__cards {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  padding: 16px;
  margin-block-start: 32px;
  padding: 10px;
}
.roadmap__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 250px;
  max-width: 250px;
  min-height: 250px;
  padding: 16px;
  background: linear-gradient(180deg, #150104 0%, #6A0012 100%);
  position: relative;
  border: 1px solid #D8A643;
}
.roadmap__card:first-of-type {
  margin-inline-start: 5px;
}
.roadmap .card__title {
  font-size: 20px;
  margin-block-end: 20px;
  color: #D8A643;
}
.roadmap .card__number {
  justify-self: flex-start;
  margin-bottom: auto;
  font-size: 48px;
}

/*# sourceMappingURL=main.css.map */
