/* Black */
@font-face {
  font-family: "Inter";
  font-weight: 900;
  font-style: normal;
  src: url("/fonts/Inter_24pt-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 900;
  font-style: italic;
  src: url("/fonts/Inter_24pt-BlackItalic.ttf") format("truetype");
}

/* Extra Bold */
@font-face {
  font-family: "Inter";
  font-weight: 800;
  font-style: normal;
  src: url("/fonts/Inter_24pt-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 800;
  font-style: italic;
  src: url("/fonts/Inter_24pt-ExtraBoldItalic.ttf") format("truetype");
}

/* Bold */
@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  src: url("/fonts/Inter_24pt-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: italic;
  src: url("/fonts/Inter_24pt-BoldItalic.ttf") format("truetype");
}

/* SemiBold */
@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  src: url("/fonts/Inter_24pt-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: italic;
  src: url("/fonts/Inter_24pt-SemiBoldItalic.ttf") format("truetype");
}

/* Medium */
@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: normal;
  src: url("/fonts/Inter_24pt-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: italic;
  src: url("/fonts/Inter_24pt-MediumItalic.ttf") format("truetype");
}

/* Regular */
@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  src: url("/fonts/Inter_24pt-Regular.ttf") format("truetype");
}

/* Light */
@font-face {
  font-family: "Inter";
  font-weight: 300;
  font-style: normal;
  src: url("/fonts/Inter_24pt-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 300;
  font-style: italic;
  src: url("/fonts/Inter_24pt-LightItalic.ttf") format("truetype");
}

/* Extra Light */
@font-face {
  font-family: "Inter";
  font-weight: 200;
  font-style: normal;
  src: url("/fonts/Inter_24pt-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 200;
  font-style: italic;
  src: url("/fonts/Inter_24pt-ExtraLightItalic.ttf") format("truetype");
}

/* Thin */
@font-face {
  font-family: "Inter";
  font-weight: 100;
  font-style: normal;
  src: url("/fonts/Inter_24pt-Thin.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 100;
  font-style: italic;
  src: url("/fonts/Inter_24pt-ThinItalic.ttf") format("truetype");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  position: relative;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}
header {
  padding-block: 12px;
}
.menu-container svg {
  display: none;
}

.reg-button {
  border-radius: 10px;
  border: 1px solid #256400;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  text-decoration: none;
  color: #256400;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: block;
  background: white;
  transition: all 0.6s ease;
  &:hover {
    color: white;
    border: 1px solid white;
    background: #256400;
  }
}
.menu-container,
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-container .left-part,
.footer-top .left-part {
  display: flex;
  align-items: center;
  gap: 46px;
}
.menu-list {
  display: flex;
  align-items: center;
  gap: 50px;
}
.menu-list a {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  transition: color 0.5s ease;
  &:hover {
    color: #1a4601;
  }
}
.menu-list a.active {
  color: #256400;
}
.menu-tablet-list {
  display: none;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 60px; /* ниже хедера */
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #ddd;
  padding: 10px 0;
  z-index: 10;
}

.mobile-menu a {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

/* Активное меню */
.mobile-menu.show {
  display: flex;
}
footer {
  padding-block: 80px;
  background: #f7f5f6;
}
.footer-text {
  color: #6e6e6e;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 32px;
  margin-top: 16px;
  width: 100%;
  max-width: 516px;
}
footer span {
  color: #6e6e6e;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
}
.footer-bottom {
  width: 100%;
  max-width: 516px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom a {
  color: #256400;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
.reg-btn-mob {
  display: none;
}
footer .menu-list-mobile,
footer .menu-list-tablet {
  display: none;
}
.hero,
.start-exploring {
  min-height: 800px;
  background-image: url("/img/home-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.start-exploring {
  background-image: url("/img/start-exploring.png");
}
.hero-block,
.start-exploring-block {
  display: flex;
  justify-content: space-between;
  gap: 92px;
}
.subpage-hero-block {
  align-items: start;
}
.subpage-hero-info {
  margin-top: 70px;
}

.hero-info,
.se-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 736px;
}
.hero::after,
.start-exploring:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}
.hero-info,
.se-info,
.form-wrapper {
  position: relative;
  z-index: 2;
}
h1 {
  color: #fff;
  font-family: Inter;
  font-size: 50px;
  font-weight: 800;
  max-width: 532px;
}
.se-info h1 {
  max-width: 100%;
}
h1 span {
  color: #ffbd01;
}
.hero-info p,
.hero-info ul li,
.se-info p {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
}
.hero-info ul {
  margin-left: 20px;
}
.yellow-button {
  display: block;
  border-radius: 10px;
  background: linear-gradient(90deg, #ffbf00 0%, #f80 100%);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 45px;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  max-width: fit-content;
  margin-top: 20px;
  transition: all 0.6s ease;
  &:hover {
    background: linear-gradient(90deg, #f80 0%, #ffbf00 100%);
    transform: translateY(-10px);
  }
}
.form-wrapper {
  width: 100%;
  min-width: 400px;
  max-width: 450px;
  margin-inline: auto;
}
.subpage-hero,
.noform-hero {
  background-image: url("/img/subpage-hero.png");
}
.noform-hero {
  min-height: auto;
  padding-block: 146px 264px;
}
.no-form-hero-h1 {
  max-width: 720px;
}
.hero-no-form-block {
  padding-block: 0;
}
@media (max-width: 1281px) {
  .container {
    max-width: 100%;
    padding-inline: 30px;
  }
}
@media (max-width: 900px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .menu-container {
    width: 100%;
  }
  .left-part .menu-list {
    display: none;
  }
  .menu-tablet-list {
    display: flex;
  }
  footer .menu-list-tablet {
    display: flex;
    margin-top: 16px;
  }
  .hero-block,
  .start-exploring-block {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-block: 70px 100px;
  }
  .subpage-hero-block {
    padding-block: 80px 160px;
  }
  .form-wrapper {
    min-width: auto;
  }
  .subpage-hero-info {
    margin-top: 0px;
  }
  .noform-hero {
    min-height: auto;
    padding-block: 80px 214px;
  }
  .hero-no-form-block {
    padding-block: 0;
  }
}
@media (max-width: 500px) {
  .container {
    max-width: 100%;
    padding-inline: 20px;
  }
  .menu-tablet-list {
    display: none;
  }
  .reg-button {
    display: none;
  }
  .menu-container svg {
    display: block;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 40px;
    align-items: start;
  }
  footer .menu-list-tablet {
    display: none;
  }
  footer .menu-list-mobile {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 32px;
  }
  .reg-btn-mob {
    display: inline-block;
    margin-bottom: 50px;
  }
  h1 {
    font-size: 40px;
    margin-bottom: 4px;
  }
  .hero-info,
  .se-info {
    gap: 16px;
  }
  .hero-info p,
  .hero-info ul li,
  .se-info p {
    font-size: 16px;
  }
  .hero-block,
  .start-exploring-block {
    gap: 40px;
  }
  .subpage-hero-block {
    padding-block: 42px 104px;
  }
  .yellow-button {
    max-width: 100%;
  }
}
