@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  font-size: 100%;
  line-height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100dvh;
  min-width: 320px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  font-size: inherit;
  color: inherit;
  display: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

address {
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format(woff2);
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format(woff2);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Regular.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Medium.woff2") format(woff2);
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format(woff2);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*----------------------------------variables--------------------------------*/
:root {
  --color-black: #1D1D1B;
  --color-white: #FFFFFF;
  --color-orange: #F39200;
  --border: 1px solid var(--color-black);
  --border-radius: 10px;
  --border-radius-small: 5px;
  --shadow: 0px 0px 20px 0px var(--color-black);
  --font-family-base: "Inter", sans-serif;
  --container-width: 84.3rem;
  --container-padding-x: 1rem;
  --section-padding-y: 4.5rem;
}

/*----------------------------------variables--------------------------------*/
/*----------------------------------global--------------------------------*/
body.lock {
  overflow: hidden;
}

body {
  font-family: var(--font-family-base);
  font-size: clamp(0.875rem, 1.2148823083vw, 1rem);
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-white);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

._container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px var(--container-padding-x);
}

section {
  padding: var(--section-padding-y) 0px;
}
@media (max-width: 48rem) {
  section {
    padding: 2rem 0px;
  }
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.5rem, 3.9483675019vw, 3.25rem);
  line-height: 120%;
  margin-bottom: 2rem;
}

.subtitle {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.25rem, 2.4297646166vw, 2rem);
  line-height: 100%;
  margin-bottom: 2.5rem;
}
@media (max-width: 48rem) {
  .subtitle {
    margin-bottom: 1rem;
  }
}

.button {
  font-family: "Unbounded", sans-serif;
  position: relative;
  font-size: clamp(0.75rem, 1.0630220197vw, 0.875rem);
  padding: 1rem 1.3rem;
  color: var(--color-black);
  cursor: pointer;
  border: none; /* Основной бордер убираем */
  -webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background-color 0.3s ease;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-orange);
  gap: 0.5rem 2.5rem;
}
@media (max-width: 48rem) {
  .button {
    gap: 1rem;
  }
}
.button__arrow {
  transition: all 0.3s;
}
@media (hover: hover) {
  .button:hover .button__arrow {
    transform: rotate(45deg);
  }
}
.button:active {
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.button::before {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 0.17rem;
  top: 1.4rem;
  right: 1.3rem;
  background-color: #1D1D1B;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translate(0.2rem, 0rem);
}
@media (max-width: 64rem) {
  .button::before {
    display: none;
  }
}
.button:active::before {
  opacity: 1;
  transform: translate(0rem, 0rem);
}

.button--header {
  background-color: inherit;
  border: 1px solid #D9D9D9;
}
@media (max-width: 48rem) {
  .button--header {
    display: none;
  }
}
.button--header::hover {
  background-color: var(--color-orange);
}
.button--header::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 5px;
  top: 2px;
  right: -7px;
  background-color: #D9D9D9;
  transform: rotate(45deg);
}
.button--header:hover {
  background-color: #FDE9CC;
}
.button--header:active {
  background-color: #FEF5E6;
}

.button--mod {
  background-color: inherit;
  border: 1px solid #D9D9D9;
  color: var(--color-white);
}
.button--mod::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 5px;
  top: 2px;
  right: -7px;
  background-color: #D9D9D9;
  transform: rotate(45deg);
}
.button--mod:hover {
  background-color: rgba(217, 217, 217, 0.3647058824);
}
.button--mod:active {
  background-color: rgba(217, 217, 217, 0.0862745098);
}
.button--mod::before {
  position: absolute;
  background-color: #828282;
}
.button--mod:active::before {
  opacity: 1;
}

/*----------------------------------global--------------------------------*/
/*----------------------------------header--------------------------------*/
.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: var(--color-white);
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem 0rem;
  line-height: 171%;
  border-bottom: 1px solid #F1F1F1;
}
@media (max-width: 64rem) {
  .header__top {
    justify-content: end;
  }
}
.header__address {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.75rem, 1.0630220197vw, 0.875rem);
}
@media (max-width: 64rem) {
  .header__address {
    display: none;
  }
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 1.4rem 0px;
}
@media (max-width: 64rem) {
  .header__body {
    padding: 0.9rem 0px;
  }
}
.header__logo {
  z-index: 3;
}
.header__contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 600;
  gap: 1.5rem;
  font-size: clamp(0.75rem, 1.0630220197vw, 0.875rem);
}
@media (max-width: 64rem) {
  .header__contacts {
    gap: 0.5rem;
  }
}
.header__link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  transition: all 0.3s;
}
@media (hover: hover) {
  .header__link:hover {
    color: var(--color-orange);
  }
}

/*----------------------------------header--------------------------------*/
/*----------------------------------menu--------------------------------*/
.menu ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.menu__link {
  line-height: 17px;
  position: relative;
  transition: all 0.3s;
  font-size: clamp(0.75rem, 1.2148823083vw, 1rem);
}
@media (max-width: 64rem) {
  .menu__link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .menu__link:hover {
    color: var(--color-orange);
  }
}
@media (max-width: 64rem) {
  .menu {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-orange);
    padding: 65px 30px 30px 30px;
    transition: All 0.5s ease 0s;
    overflow: auto;
    z-index: 9;
  }
  .menu._active {
    top: 0;
  }
  .menu__list-item:not(:last-child) {
    margin-bottom: 30px;
  }
  .menu ul {
    display: block;
    text-align: center;
    position: relative;
    color: var(--color-black);
  }
  .menu ul li {
    margin-bottom: 1rem;
  }
}

/*----------------------------------menu--------------------------------*/
/*----------------------------------burger--------------------------------*/
.burger__wrapper {
  display: none;
}
@media (max-width: 64rem) {
  .burger__wrapper {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 50%;
    position: relative;
    display: block;
    z-index: 9;
  }
  .burger__wrapper .burger {
    z-index: 2;
    cursor: pointer;
  }
  .burger__wrapper .burger__line {
    height: 5px;
    width: 27px;
    position: absolute;
    transition: all 0.3s ease 0s;
    background: #000;
    transform: translate(-50%, -50%);
    border-radius: 1px;
  }
  .burger__wrapper .burger__line:first-child {
    left: 50%;
    top: 25%;
  }
  .burger__wrapper .burger__line:nth-child(2) {
    left: 50%;
    top: 50%;
  }
  .burger__wrapper .burger__line:last-child {
    left: 50%;
    top: 75%;
  }
  .burger__wrapper._active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .burger__wrapper._active .burger__line:first-child {
    transform: rotate(-45deg);
    left: 30%;
    top: 50%;
  }
  .burger__wrapper._active .burger__line:last-child {
    transform: rotate(45deg);
    left: 30%;
    top: 50%;
  }
}

/*----------------------------------burger--------------------------------*/
/*----------------------------------main-section--------------------------------*/
.main-section {
  margin-top: 6.9rem;
  position: relative;
}
@media (max-width: 64rem) {
  .main-section {
    margin-top: 6rem;
  }
}
.main-section__content {
  position: relative;
  color: var(--color-white);
}
.main-section__body {
  position: relative;
  z-index: 9;
}
.main-section .title {
  max-width: 43.5rem;
}
.main-section__text {
  font-size: clamp(1rem, 1.5186028853vw, 1.25rem);
  margin-bottom: 3.1rem;
  max-width: 38rem;
  line-height: 150%;
  opacity: 0.7;
}
.main-section__buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}
@media (max-width: 64rem) {
  .main-section__buttons {
    margin-bottom: 2rem;
  }
}
.main-section__blocks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.main-section__block {
  flex-basis: 19rem;
  padding: 1.2rem;
}
@media (max-width: 64rem) {
  .main-section__block {
    padding: 1.2rem 0rem;
  }
}
.main-section__block_number {
  font-size: clamp(1.5rem, 2.7334851936vw, 2.25rem);
  margin-bottom: 1rem;
  display: flex;
  align-items: start;
}
.main-section__block_number :last-child {
  color: var(--color-orange);
  margin-top: -0.2rem;
}
.main-section__block_text {
  font-size: clamp(0.75rem, 1.0630220197vw, 0.875rem);
  opacity: 0.7;
}
.main-section__block:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2431372549);
}
@media (max-width: 64rem) {
  .main-section__block:not(:last-child) {
    border-right: none;
  }
}
.main-section__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*----------------------------------main-section--------------------------------*/
/*----------------------------------mission--------------------------------*/
.mission__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7rem 1rem;
  margin-bottom: 3.7rem;
}
@media (max-width: 80rem) {
  .mission__body {
    gap: 2rem 1rem;
  }
}
@media (max-width: 64rem) {
  .mission__body {
    flex-wrap: wrap;
  }
}
.mission__info {
  flex-basis: 70rem;
}
.mission__text {
  font-size: clamp(1rem, 1.8223234624vw, 1.5rem);
  margin-bottom: 4.5rem;
  line-height: 133%;
}
@media (max-width: 48rem) {
  .mission__text {
    margin-bottom: 1rem;
  }
}
.mission__image {
  margin-right: -19rem;
}
@media (max-width: 80rem) {
  .mission__image {
    margin-right: -5rem;
  }
}
.mission__blocks {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem 1.3rem;
}
@media (max-width: 48rem) {
  .mission__blocks {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.mission__block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 2rem;
  border: 1px solid #f1f1f1;
  padding: 2.5rem 1rem;
  width: 33.333%;
}
@media (max-width: 48rem) {
  .mission__block {
    width: 100%;
    padding: 2rem 1rem;
  }
}
.mission__block_text {
  flex-basis: 9rem;
}

/*----------------------------------mission--------------------------------*/
/*----------------------------------plots--------------------------------*/
.plots__list ul {
  counter-reset: list-counter 0;
}
.plots__list ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-bottom: 1.5rem;
  counter-increment: list-counter;
  position: relative;
  padding-left: 4em;
}
@media (max-width: 48rem) {
  .plots__list ul li {
    flex-wrap: wrap;
  }
}
.plots__list ul li::before {
  font-family: "Unbounded", sans-serif;
  content: "0" counter(list-counter);
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-size: 1.5rem;
}
.plots__list ul li:not(:last-child) {
  border-bottom: 1px solid #F1F1F1;
  margin-bottom: 2rem;
}
.plots__list_title {
  font-family: "Unbounded", sans-serif;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.plots__list_text {
  color: #535353;
}

/*----------------------------------plots--------------------------------*/
/*----------------------------------plot--------------------------------*/
.plot {
  scroll-margin-top: 100px;
}
.plot__body {
  display: flex;
  justify-content: space-between;
  gap: 2rem 1rem;
}
@media (max-width: 48rem) {
  .plot__body {
    flex-wrap: wrap;
  }
}
.plot__image {
  flex-basis: 40.5rem;
}
@media (max-width: 48rem) {
  .plot__image:nth-child(even) {
    order: -1;
  }
}
.plot__info {
  flex-basis: 38rem;
}
.plot__info_inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .plot__info_inner {
    flex-wrap: wrap;
  }
}
.plot__text {
  margin-bottom: 1rem;
  line-height: 120%;
}
.plot__block {
  margin-bottom: 2rem;
  color: #535353;
}
.plot__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1rem, 1.5186028853vw, 1.25rem);
  margin-bottom: 1rem;
  color: var(--color-black);
  line-height: 110%;
}
.plot__list {
  display: flex;
  gap: 0.2rem 2rem;
  flex-wrap: wrap;
}
.plot__list li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.plot__list li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 0.8rem;
  border-radius: 50%;
  background-color: var(--color-black);
}
.plot__list_title {
  margin-bottom: 0.5rem;
}
.plot__lists {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.plot__boxes {
  display: flex;
  align-items: stretch;
  gap: 1.3rem;
}
.plot__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plot__box_numbers {
  font-size: clamp(0.875rem, 1.2148823083vw, 1rem);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.plot__box_numbers--mod {
  flex-wrap: wrap;
}
.plot__box_text {
  font-size: 0.5rem;
  white-space: nowrap;
}

/*----------------------------------plot--------------------------------*/
/*----------------------------------card--------------------------------*/
.card {
  max-width: 20rem;
  height: 100%;
}
.card__image {
  margin-bottom: 2rem;
}
.card__title {
  font-size: clamp(1rem, 1.5186028853vw, 1.25rem);
  margin-bottom: 1rem;
}
.card .plot__box_text {
  white-space: wrap;
}

/*----------------------------------card--------------------------------*/
/*----------------------------------examples--------------------------------*/
.examples__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem 1rem;
  flex-wrap: wrap;
}
.examples__block {
  flex-basis: 49%;
}
@media (max-width: 48rem) {
  .examples__block {
    flex-basis: 100%;
  }
}
.examples__image {
  margin-bottom: 1.6rem;
  -webkit-clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
          clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
}
.examples__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1rem, 1.5186028853vw, 1.25rem);
  margin-bottom: 1rem;
}

/*----------------------------------examples--------------------------------*/
/*---------------------------------------sliders----------------------------*/
.main-slider {
  overflow: hidden;
  position: relative;
  padding-bottom: 5rem;
  margin-right: -20rem;
}

/*---------------------------------------параметры чтобы слайды имели одинаковую высоту----------------------------*/
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  transition: all 0.5s ease;
}

/*---------------------------------------параметры чтобы слайды имели одинаковую высоту----------------------------*/
.swiper-button-next,
.swiper-button-prev {
  top: 95%;
}
@media (max-width: 48rem) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 90%;
  }
}

.swiper-button-next {
  right: 87%;
}

.swiper-button-prev {
  left: 1rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/*---------------------------------------sliders----------------------------*/
/*----------------------------------develop--------------------------------*/
.develop__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 1.5rem;
}
.develop__block {
  border: 1px solid #d9d9d9;
  padding: 1.3rem;
  display: grid;
  grid-template-rows: auto 1fr;
}
.develop__block_icon {
  margin-bottom: 1rem;
}
.develop__block_title {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 1rem;
}

/*----------------------------------develop--------------------------------*/
/*----------------------------------contacts--------------------------------*/
.contacts__content {
  position: relative;
  padding: 2rem 0rem;
}
.contacts__body {
  position: relative;
  z-index: 9;
}

.map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*----------------------------------contacts--------------------------------*/
/*----------------------------------form--------------------------------*/
.form {
  max-width: 26.5rem;
  color: var(--color-black);
  padding: 3.5rem;
  background-color: var(--color-white);
  border-radius: 5px;
  position: relative;
}
@media (max-width: 48rem) {
  .form {
    padding: 1rem;
  }
}
.form__label {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Unbounded", sans-serif;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 1.2rem 1rem;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
  margin-bottom: 1.4rem;
  border: 1px solid #d9d9d9;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #B3B3B3;
  font-size: 1rem;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: #B3B3B3;
  font-size: 1rem;
}
.form__textarea {
  margin-bottom: 1rem;
  height: 5rem;
}
.form .button {
  width: 100%;
}

/*----------------------------------form--------------------------------*/
/*----------------------------------footer--------------------------------*/
.footer {
  padding: 3rem 0rem;
}
.footer__body {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}
@media (max-width: 64rem) {
  .footer__body {
    flex-wrap: wrap;
  }
}
.footer__info {
  flex-basis: 20rem;
}
@media (max-width: 64rem) {
  .footer__info {
    flex-basis: 100%;
  }
}
.footer__logo {
  margin-bottom: 2rem;
}
.footer__text {
  color: #757575;
}
.footer__text--mod p {
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 48rem) {
  .footer__text--mod p {
    white-space: wrap;
  }
}
.footer__text--mod a {
  color: var(--color-orange);
}
.footer__contacts {
  flex-basis: 56rem;
  display: flex;
  justify-content: end;
  gap: 1.5rem 1rem;
}
@media (max-width: 64rem) {
  .footer__contacts {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.footer__title {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 1.5rem;
}
.footer__nav {
  color: #757575;
}
.footer__nav ul li {
  margin-bottom: 1.3rem;
}
.footer__box {
  font-size: 0.9rem;
  color: #757575;
  margin-bottom: 1rem;
}
.footer__box_title {
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.3rem;
}

/*----------------------------------footer--------------------------------*//*# sourceMappingURL=styles.css.map */