@font-face {
  font-family: 'Stem';
  src: url("../fonts/Stem-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stem';
  src: url("../fonts/Stem-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stem';
  src: url("../fonts/Stem-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stem';
  src: url("../fonts/Stem-SemiLight.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset and base styles  */
* {
	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, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    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;
}

section {
  overflow: hidden;
  position: relative;
}

:root {
  --container-width: 1244px;
  --container-padding: 15px;

  --font-main: "Manrope", sans-serif;
  --font-accent: Stem, sans-serif;

  --page-bg: #fff;
  --text-color: #151515;
  --accent: #555555;
  --link-color: #1e478c;
  --form-text: #333;
  --footer-bg: #f0f0f0;
}

html {
  scroll-behavior: smooth;
  background-color: rgb(39, 39, 39);
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
}

img {
  display: block;
}

a {
  color: var(--link-color);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background:var(--link-color);
}

::-webkit-scrollbar-thumb:hover {
  background:var(--link-color);
}

/* Контейнеры */
.container {
	margin: 0 auto;
	padding: 0 var(--container-padding);

	max-width: var(--container-width);
	width: 100%;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.page {
  height: 100%;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  line-height: 18px;
}

.page__body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000000;
}

.page-main {
  flex-grow: 1;
}

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}

/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;

  --width: 40px;
  --height: 30px;

  --line-height: 4px;
  --spacing: 6px;

  --color: #000;
  --radius: 4px;

  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */

  /* Dynamic height and width */
  height: calc(var(--line-height) * 3 + var(--spacing) * 2);
  width: var(--width);

  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;

  width: var(--width);
  height: var(--line-height);

  border-radius: var(--radius);
  background-color: var(--color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
  z-index: 999;
  display: none;
}

.mobile-nav {
  position: fixed;
  // top: 0;
  top: 0;
  left: -110%;
  width: 80%;
  height: 100%;
  z-index: 99;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  padding: 50px 10px 40px 40px;
  background: var(--page-bg);
  transition: all 0.4s ease-in;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__list a {
  display: block;
  padding: 15px 0;
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 110%;
  font-weight: 400;
  color: var(--text-color);
  transition: 0.4s linear;
  width: 100%;
  text-transform: uppercase;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus,
.mobile-nav__list a:active {
  color: var(--accent);
}

.menu__close {
  display: none;
}

.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 200;
  transition: 0.7s ease;
}
.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fixed-social__link {
  display: block;
  transform: rotate(0deg);
  transition: 0.7s ease;
}

.fixed-social__link img {
  width: 70px;
  height: 70px;
}

.fixed-social__link:hover {
  transform: rotate(360deg);
}

.fixed-social.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
}

.pagination .swiper-pagination-bullet {
  width: 7px;
  height: 9px;
  background-color: var(--background-pagination);
  opacity: 0.5;
  border-radius: 0;
  transition: all 0.3s ease;
}

.pagination .swiper-pagination-bullet-active {
  background-color: var(--text-color);
  opacity: 1;
  height: 15px;
  transform: scale(1.2);
}

.advantages__inner .pagination .swiper-pagination-bullet-active {
  height: 24px;
}

.slider-arrow {
  width: 35px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slider-arrow);
  z-index: 50;
  cursor: pointer;
  transition: 0.5s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  border: 1px solid var(--link-color);
}

.button-prev img {
  position: relative;
}

.button-next img {
  position: relative;
  transform: rotate(180deg);
}

.advantages__inner .swiper-pagination {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: auto;
  right: -52px !important;
  transform: translateY(-50%);
  z-index: 10;
}

.park__block .swiper-pagination {
  bottom: -50px !important;
}

.partners__block .swiper-pagination {
  bottom: -50px !important;
}

.certificates .swiper-pagination {
  bottom: -50px !important;
}

.title-1 {
  font-size: 68px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-accent);
  color: var(--page-bg);
}

.title-1 span {
  text-transform: uppercase;
}

.title-2 {
  position: relative;
  font-size: 52px;
  line-height: 60px;
  font-weight: 500;
  font-family: var(--font-accent);
  color: var(--text-color);
}

.title-3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
}

.title-4 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-color);
}

.text {
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.promo__text {
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.promo__text strong {
  font-weight: 700;
  text-decoration: underline;
}

.contact__text {
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  transition: 0.4s linear;
  color: var(--text-color);
}

.contact__link:focus,
.contact__link:hover,
.contact__link:active {
  color: var(--link-color);
}

.contact__text-2 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--accent);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--page-bg);
  background-color: var(--link-color);
  padding: 20px 5px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn:focus,
.btn:hover,
.btn:active {
  box-shadow: 0 0 20px var(--link-color);
}

.promo-btn {
  max-width: 265px;
  width: 100%;
}

.form__btn {
  max-width: 265px;
  width: 100%;
}

.after-line::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -30px;
  height: 5px;
  width: 57px;
  background-color: var(--link-color);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  padding: 10px 0;
  z-index: 98;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: var(--page-bg);
}

.header__row {
  display: flex;
  align-items: center;
}
.logo {
  flex: 0 0 63px;
}
.header__nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.nav__list a {
  font-size: 17px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.4s linear;
  text-transform: uppercase;
}

.nav__list a:focus,
.nav__list a:hover,
.nav__list a:active {
  color: var(--link-color);
}

.header-right {
  margin-left: 128px;
  max-width: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-contact__link {
  font-size: 17px;
  line-height: 100%;
  font-weight: 350;
  font-family: var(--font-accent);
  transition: 0.4s linear;
  color: var(--text-color);
}

.header-contact__link:focus,
.header-contact__link:hover,
.header-contact__link:active {
  color: var(--link-color);
}

.footer {
  background-color: var(--footer-bg);
  padding: 35px 0 25px 0;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(218, 218, 218, 1);
}

.footer__btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--link-color);
}

.footer__copyright a{
  font-weight: 300;
  font-size: 15px;
  line-height: 100%;
  font-family: var(--font-accent);
  color: var(--text-color);
}

.promo {
  height: 100vh;
}

.promo__wrapper {
  min-width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.promo__wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.banner {
  height: 100vh;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  max-width: 687px;
}

.promo__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about {
  min-width: 320px;
  padding: 90px 0;
}

.about__wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 106px;
}
.about__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about__info {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.about__block-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.catalog {
  min-width: 320px;
  padding-bottom: 90px;
}

.catalog__wrapper {
  display: flex;
  flex-direction: column;
  gap: 84px;
}

.catalog__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.catalog__item {
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 20px;
  background-color: #d9d9d9;
  transition: 0.4s linear;
  height: 303px;
  overflow: hidden;
}
.catalog__img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.catalog__img img {
  object-fit: contain;
  transition: 0.4s linear;
  transform: scale(1);
}

.catalog__item:focus .catalog__img img,
.catalog__item:hover .catalog__img img,
.catalog__item:active .catalog__img img {
  transform: scale(1.1);
}

.catalog__info {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}

.catalog__bg {
  width: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(33px);
}

.catalog__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--link-color);
  transition: 0.4s linear;
}

.catalog__item:focus .catalog__link,
.catalog__item:hover .catalog__link,
.catalog__item:active .catalog__link {
  box-shadow: 0 0 20px var(--link-color);
}

.advantages {
  min-width: 320px;
  padding-bottom: 95px;
}

.advantages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 84px;
}

.advantages__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 45px 10px 64px 25px;
  border: 1px solid #dadada;
}
.advantages__icon {
  width: 90px;
  height: 85px;
}

.advantages__icon img {
  object-fit: cover;
}
.advantages__info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.home-form {
  position: relative;
  z-index: 1;
}

.home-form__wrapper {
  display: flex;
  justify-content: flex-end;

  position: relative;
}
.home-form__person {
  position: absolute;
  left: -45px;
  bottom: 0;
}
.home-form__person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form__inner {
  max-width: 566px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 43px;
  padding: 80px 0;
}
.form__inner-top {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.form__layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-textarea {
  grid-column: 1/3;
  outline: none;
  resize: none;
  height: 116px;
}

.label-form__block{
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.label-form {
  position: relative;
  width: 100%;
}
.form-input {
  width: 100%;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
  border: 1px solid #d2d2d2;
  padding: 10px 12px;
}

.form-input::placeholder {
  color: var(--accent);
}

.form-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.input-required-star {
  color: red;
  top: 7px;
  position: absolute;
  font-size: 18px;
  vertical-align: middle;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
}

.star{
	position: relative;
}

.star-1 .input-required-star {
  left: 32%;
}

.star-2 .input-required-star {
  left: 17%;
}

.star-3 .input-required-star {
  left: 25%;
}

.select__wrapper {
  position: relative;
  width: 100%;
}

.select__wrapper::after {
  position: absolute;
  content: "";
  background: url("/storage/app/media/svg/select-arrow.svg") no-repeat;
  background-position: center;
  background-size: cover;
  width: 13px;
  height: 10px;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.production {
  min-width: 320px;
  padding: 90px 0;
}

.production__wrapper {
  display: flex;
  flex-direction: column;
  gap: 84px;
}
.production__slide-block {
  position: relative;
}

.production__slide {
  max-height: 613px;
}

.production__slide-img {
  display: block;
  width: 100%;
  height: 100%;
}

.production__slide-img img {
  height: 613px;
  width: 100%;
  object-fit: cover;
}

.progress-slide {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--page-bg);
  padding: 44px 10px 6px 0;
  max-width: 748px;
  width: 100%;
  z-index: 3;
}
.progress-slide-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 538px;
  width: 100%;
}
.progress__num {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--font-accent);
  color: var(--text-color);
}

.progress__role {
  position: relative;
  flex-grow: 1;
  background-color: #d7d4d4;
  height: 2px;
  overflow: hidden;
}

.progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--link-color);
  transition: width 0.4s linear;
}

.contact {
  min-width: 320px;
  padding-bottom: 90px;
}

.contact__wrapper {
  display: flex;
  gap: 65px;
}
.contact__inner {
  max-width: 456px;
  width: 100%;
  padding: 50px 82px 50px 72px;
  border: 1px solid #ddd;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__social-list {
  display: flex;
  gap: 20px;
}
.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border: 1.4px solid var(--text-color);
}
.contact__map {
  max-width: 694px;
  width: 100%;
}

.contact__map iframe{
	height: 100%;
}

.form__success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__success .alert-success {
  width: 500px;
  background-color: white;
  padding: 20px;
  position: relative;
  border-radius: 15px;
}

.form__success .alert-success button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 19px;
  line-height: 23px;
  color: #151515;
  background: url("/storage/app/media/svg/close-success-2.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__success .alert-success button span {
  visibility: hidden;
}

.form__success .alert-success p {
  font-size: 19px;
  line-height: 23px;
  color: #151515;
}

