:root {
  --accent-color:#c5a55b;
  --green-color:#032e25;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  background-color: var(--green-color);
}
body.no-scroll {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.page-wrapper {
  overflow: hidden;
}

.container {
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container--left {
  max-width: 100%;
  margin-left: calc(50% - 765px);
}
@media screen and (max-width: 1530px) {
  .container--left {
    margin-left: 0;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
}
.button:hover {
  cursor: pointer;
}
.button--base {
  padding: 24px;
  height: 52px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}
.button--middle {
  padding: 10px 30px;
  height: 70px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .button--middle {
    padding: 10px;
  }
}
.button--full {
  width: 100%;
}
.button--orange {
  background-color: var(--accent-color);
  color: #fff;
  border: 2px solid transparent;
  transition: 0.3s background-color, 0.3s border-color, 0.3s color;
}
.button--orange:hover {
  color: #2d323a;
  background: #fff;
  border-color: var(--accent-color);
}
.button--disabled {
  pointer-events: none;
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .button {
    width: 100%;
  }
}

.title {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
.title--small {
  font-size: 26px;
  line-height: 22px;
  font-weight: 800;
}
.title--base {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
}
@media screen and (max-width: 600px) {
  .title--base {
    font-size: 32px;
  }
}
.title--big {
  font-size: 51px;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  .title--big {
    font-size: 40px;
  }
}
.title--white {
  color: #fff;
}
.title--orange {
  color: var(--accent-color);
}
.title--dark {
  color: #2d323a;
}
.title--normal {
  text-transform: none;
}
.title--center {
  text-align: center;
}

.text sup {
  vertical-align: super;
  font-size: 8px;
}
.text--tiny {
  font-size: 14px;
  line-height: 1.2;
}
.text--base {
  font-size: 16px;
  line-height: 23px;
}
.text--small {
  font-size: 17px;
  line-height: 21px;
}
.text--big {
  font-size: 19px;
  line-height: 22px;
}
.text--biggest {
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
}
.text--medium {
  font-weight: 500;
}
.text--semibold {
  font-weight: 600;
}
.text--bold {
  font-weight: 700;
}
.text--white {
  color: #fff;
}
.text--dark {
  color: #2d323a;
}
.text--dark--light {
  color: #60687e;
}
.text--orange {
  color: var(--accent-color);
}
.text--blue {
  color: #d6f3ed;
}
.text--green {
  color: #658e85;
}
.text--underline {
  text-decoration: underline;
  text-underline-position: under;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.burger {
  width: 40px;
  height: 25px;
  position: relative;
}
.burger--active .burger__item:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}
.burger--active .burger__item:nth-child(2) {
  left: -10px;
  opacity: 0;
  visibility: hidden;
}
.burger--active .burger__item:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}
.burger__item {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
}
.burger__item:nth-child(1) {
  top: 0;
  left: 0;
  transition: 0.3s top, 0.3s transform;
}
.burger__item:nth-child(2) {
  top: calc(50% - 1px);
  left: 0;
  transition: 0.3s left, 0.3s opacity, 0.5s visibility;
}
.burger__item:nth-child(3) {
  top: calc(100% - 2px);
  left: 0;
  transition: 0.3s top, 0.3s transform;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
.header__block {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1530px) {
  .header__block {
    gap: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .header__block {
    width: 100%;
  }
}
.header__wrapper {
  padding: 40px 70px 0 70px;
}
@media screen and (max-width: 1530px) {
  .header__wrapper {
    padding: 30px 15px 0 15px;
  }
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.header__logo {
  flex-shrink: 0;
  width: 150px;
  height: 130px;
}
@media screen and (max-width: 1300px) {
  .header__logo {
    width: 80px;
    height: 60px;
  }
}
.header__nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1530px) {
  .header__nav {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
  }
}
@media screen and (max-width: 1100px) {
  .header__nav {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: var(--green-color);
    padding: 120px 15px 30px 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s visibility, 0.5s opacity, 0.5s top;
  }
  .header__nav--active {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
.header__burger {
  margin: 0 0 0 auto;
}
@media screen and (min-width: 1101px) {
  .header__burger {
    display: none;
  }
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  transition: 0.3s color;
}
@media screen and (max-width: 1100px) {
  .header__phone {
    display: none;
  }
}
.header__phone:hover {
  color: var(--accent-color);
}
.header__phone::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
  background: url("../images/icons/phone.png") center center/contain no-repeat;
}

.nav__list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.nav__item {
  flex-shrink: 0;
}
@media screen and (min-width: 1101px) {
  .nav__item--mobile {
    display: none;
  }
}
.nav__link {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 17px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 10px;
  transition: 0.3s color, 0.3s background-color;
}
.nav__link:hover {
  background: rgba(19, 37, 59, 0.19);
  color: var(--accent-color);
}
@media screen and (max-width: 1300px) {
  .nav__link {
    padding: 15px;
  }
}

.language-select--active .language-select__content {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.language-select--active .language-select__current {
  border-radius: 10px 10px 0 0;
}
.language-select--active .language-select__current::after {
  transform: rotate(180deg);
}
.language-select__wrapper {
  position: relative;
}
.language-select__content {
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s visibility, 0.5s opacity, 0.5s top;
}
.language-select__item {
  background: rgba(19, 37, 59, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  width: 70px;
  height: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}
.language-select__item:hover {
  cursor: pointer;
}
.language-select__item + .language-select__item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.language-select__current {
  border-radius: 10px;
  transition: 0.5s border-radius;
}
.language-select__current::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.6);
  transition: 0.3s transform;
}

.hero {
  background: url("../images/hero.png") top center/cover no-repeat;
}
.hero__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  height: 100vh;
  min-height: 900px;
  max-height: 1200px;
  padding: clamp(150px, 15vw, 250px) 0 100px 0;
}
@media screen and (max-width: 1024px) {
  .hero__box {
    height: 700px;
    min-height: auto;
    max-height: unset;
  }
}
.hero__header {
  text-align: center;
}
.hero__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 50px;
  transition: 0.3s transform;
}
.hero__link:hover {
  transform: translateY(15px);
}
.hero__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 188px;
  height: 70px;
  border-radius: 16px;
  background: #e6c985;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0px 10px 15px 0px rgba(230, 201, 133, 0.5);
}
.hero__button::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
  background: url("../images/cart.png") center center/contain no-repeat;
  transition: 0.3s transform;
}
.hero__button:hover::before {
  transform: translateX(5px);
}

.section--advantages {
  position: relative;
  overflow: hidden;
}
.section--advantages::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 100px;
  width: 100%;
  height: 100%;
  background: url("../images/advantages-bg.png") left top/contain no-repeat;
}
.section--green {
  background-color: #1f4a41;
}
.section-decor {
  position: relative;
}
.section-decor__wrapper {
  position: absolute;
  transform: rotate(45deg);
  display: block;
  overflow: hidden;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.section-decor__wrapper--middle {
  border-radius: 40px;
}
.section-decor__wrapper--small {
  border-radius: 20px;
}
.section-decor__wrapper--big {
  border-radius: 60px;
}
.section-decor__img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 160%;
  height: 160%;
  left: -30%;
  top: -30%;
  z-index: 3;
  transform: rotate(-45deg);
}
.section-decor__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-jobs__content {
  position: relative;
  z-index: 3;
}
.section-jobs__wrapper {
  position: relative;
}
.section-jobs__decor {
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .section-jobs__decor {
    display: none;
  }
}
.section-jobs__decor::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(10px);
  right: -15px;
  top: 0px;
  z-index: 1;
  transform: rotate(45deg);
}
.section-jobs__decor--middle {
  width: 264px;
  height: 264px;
  bottom: -30px;
  right: 80px;
}
.section-jobs__decor--middle::before, .section-jobs__decor--middle img {
  border-radius: 40px;
}
.section-jobs__decor--small {
  width: 156px;
  height: 156px;
  top: 25px;
  right: 175px;
}
.section-jobs__decor--small::before, .section-jobs__decor--small img {
  border-radius: 20px;
}
.section-jobs__decor--big {
  width: 412px;
  height: 412px;
  top: 20px;
  right: -260px;
}
.section-jobs__decor--big::before, .section-jobs__decor--big img {
  border-radius: 60px;
}
.section__wrapper {
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .section__wrapper {
    padding: 30px 0;
  }
}
.section__wrapper--big {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .section__wrapper--big {
    padding: 60px 0;
  }
}
.section__wrapper--padding--bottom--big {
  padding-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .section__wrapper--padding--bottom--big {
    padding-bottom: 90px;
  }
}
.section__header {
  display: flex;
  flex-direction: column;
  position: relative;
}
.section__header:not(:last-child) {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 1024px) {
  .section__header:not(:last-child) {
    margin: 0 0 40px 0;
  }
}
.section__header::before {
  content: "";
  position: absolute;
  top: calc(50% - 50px);
  left: -24px;
  width: 6px;
  height: 100px;
  border-radius: 6px;
  background: var(--accent-color);
  box-shadow: 0 0 15px 0 rgba(230, 201, 133, 0.5);
}
.section__header::after {
  content: "";
  position: absolute;
  background: rgba(4, 51, 41, 0.7);
  height: 80px;
  width: 100vw;
  top: calc(50% - 40px);
  right: calc(100% + 40px);
}
.section__header--green::after {
  background: rgba(34, 79, 70, 0.7);
}
@media screen and (max-width: 1530px) {
  .section__header {
    padding-left: 20px;
  }
  .section__header::before {
    left: 0px;
  }
  .section__header::after {
    right: calc(100% + 5px);
  }
}
.section__text {
  padding: 55px 95px 55px 65px;
  background-color: #1f4a41;
  border-radius: 20px;
  box-shadow: 8px 13px 59px 0px rgba(25, 27, 36, 0.1);
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.section__text--small {
  padding: 40px 70px 40px 40px;
}
@media screen and (max-width: 600px) {
  .section__text {
    padding: 30px 15px;
    width: calc(100% + 30px);
    transform: translateX(-15px);
  }
}
.section__text:not(:first-child) {
  margin: 30px 0 0 0;
}

.slider {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.slider__pagination {
  top: 20px;
  right: 20px;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.slider-pagination__bullet {
  width: 9px;
  height: 9px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.33);
  transition: 0.3s background-color;
}
.slider-pagination__bullet--active {
  background: #fff;
}

.offers-img-slider {
  width: 100%;
  height: 100%;
}
.offers-slider {
  display: flex;
  align-items: stretch;
  gap: 70px;
  overflow: auto;
  scrollbar-width: none;
}
.offers-slider::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1530px) {
  .offers-slider {
    width: calc(100% + 30px);
    transform: translateX(-15px);
    padding-left: 15px;
  }
}
.offers-slider__item {
  max-width: 450px;
  width: calc(100% - 12px);
  height: auto;
  flex-shrink: 0;
}
.offers-item__wrapper {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.offers-item__soon {
  transform: rotate(-15deg);
  position: relative;
}
.offers-item__soon::before, .offers-item__soon::after {
  content: "";
  position: absolute;
}
.offers-item__soon::before {
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  top: -12px;
  left: -12px;
  display: block;
  border: 4px solid var(--accent-color);
}
.offers-item__soon::after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  top: -6px;
  left: -6px;
  display: block;
  border: 2px solid var(--accent-color);
}
.offers-item__header {
  height: 445px;
  border-radius: 20px;
  overflow: hidden;
  width: calc(100% + 12px);
  transform: translateX(-6px);
  position: relative;
}
@media screen and (max-width: 600px) {
  .offers-item__header {
    height: 360px;
  }
}
.offers-item__box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offers-item__tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  padding: 10px 13px;
  background: rgba(45, 50, 58, 0.8);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}
.offers-item__tag::before {
  content: "";
  width: 15px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  background: url("../images/icons/pin.png") center center/contain no-repeat;
}
.offers-item__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 600px) {
  .offers-item__content {
    padding: 15px;
  }
}
.offers-item__info {
  padding: 15px 30px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 10px 18px 54px 0px rgba(25, 27, 36, 0.15);
  margin: auto 0 0 0;
  flex-grow: 1;
}
.offers-item__info--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
}
@media screen and (max-width: 600px) {
  .offers-item__info {
    padding: 5px 15px;
  }
}
.offers-item__footer {
  padding: 30px;
  min-height: 112px;
}
@media screen and (max-width: 600px) {
  .offers-item__footer {
    padding: 15px;
    min-height: 82px;
  }
}
.offers-info__block {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.offers-info__block:not(:last-child) {
  border-bottom: 1px solid #eff0f6;
}
.offers-img {
  width: 100%;
  height: 100%;
  display: flex;
}
.offers-img__item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.advantages__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.advantages__content {
  margin: 100px 0 0 0;
}
@media screen and (max-width: 600px) {
  .advantages__content {
    margin: 50px 0 0 0;
  }
}
.advantages-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.advantages-list__item {
  max-width: 225px;
  width: 100%;
  flex-grow: 1;
}
@media screen and (max-width: 600px) {
  .advantages-list__item {
    flex: calc(50% - 20px);
    max-width: unset;
  }
}
.advantages-item__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.advantages-item__img {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.advantages-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.jobs__content {
  display: flex;
  flex-direction: column;
  margin: 70px 0 0 0;
}
@media screen and (max-width: 600px) {
  .jobs__content {
    margin: 35px 0 0 0;
  }
}
.jobs__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0 0 0;
}

.banner__wrapper {
  background: rgba(31, 74, 65, 0.13) url("../images/banner-bg.jpg") center center/cover no-repeat;
  padding: 55px;
  border-radius: 20px;
}
@media screen and (max-width: 600px) {
  .banner__wrapper {
    padding: 30px 15px;
  }
}
.banner__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.banner__header:not(:last-child) {
  margin: 0 0 45px 0;
}

.about__wrapper {
  padding: 0 50px 0 65px;
  background: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 90px;
  position: relative;
}
.about__wrapper::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  top: -23px;
  left: calc(50% - 23px);
  background: url("../images/about-decor-1.png") center center/contain no-repeat;
}
.about__wrapper::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 80px;
  width: 27px;
  height: 27px;
  display: block;
  background: url("../images/about-decor-2.png") center center/contain no-repeat;
}
@media screen and (max-width: 1024px) {
  .about__wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    width: calc(100% + 30px);
    transform: translateX(-15px);
    padding: 30px 15px 0 15px;
  }
}
.about__block {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (min-width: 1025px) {
  .about__block {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .about__block {
    gap: 15px;
  }
}
.about__block--form {
  position: relative;
}
.about__form {
  padding: 34px 40px;
  border-radius: 20px;
  background: #1f4a41;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% + 140px);
  width: 100%;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .about__form {
    position: relative;
    top: 0;
    height: 100%;
    width: calc(100% + 30px);
    transform: translateX(-15px);
    padding: 30px 15px;
  }
}

@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.form--submitted {
  height: var(--form-height);
}
.form--submitted .form-content {
  display: none;
}
.form--submitted .form-result {
  display: block;
  animation: show 0.5s linear;
}
.form-content {
  animation: show 0.5s linear;
}
.form-result {
  display: none;
}
.form__wrapper {
  width: 100%;
  height: 100%;
}
.form__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__header:not(:last-child) {
  margin: 0 0 30px 0;
}
.form__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__input {
  width: 100%;
  height: 60px;
  border: 1px solid #407f72;
  background: #1c463d;
  border-radius: 10px;
  padding: 20px 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s border-color;
}
.form__input::-moz-placeholder {
  color: #8f99a4;
  opacity: 1;
}
.form__input::placeholder {
  color: #8f99a4;
  opacity: 1;
}
.form__input:focus, .form__input:hover {
  border-color: #fff;
}
.form__input--textarea {
  height: 160px;
}
.form__close {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  right: 0;
}
.form__close::before, .form__close::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  display: block;
  background: #2e6257;
  top: 0;
  right: 5px;
  transition: 0.3s background-color;
}
.form__close::before {
  transform: rotate(45deg);
}
.form__close::after {
  transform: rotate(-45deg);
}
.form__close:hover {
  cursor: pointer;
}
.form__close:hover::before, .form__close:hover::after {
  background: #fff;
}
.form-result {
  height: 100%;
}
.form-result__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 15px 30px;
}
.form-result__logo {
  width: 170px;
  height: 140px;
}
.form-result__title {
  max-width: 260px;
  width: 100%;
}
.form-result__content {
  margin: 50px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.footer__wrapper {
  padding-top: 60px;
}
@media screen and (max-width: 1024px) {
  .footer__wrapper {
    padding-top: 30px;
  }
}
.footer__row {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__map {
  height: auto;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__map {
    height: 300px;
    width: calc(100% + 30px);
    transform: translateX(-15px);
  }
}
.footer-map__item {
  width: 100%;
  height: calc(100% - 40px);
}
@media screen and (max-width: 1024px) {
  .footer-map__item {
    height: 100%;
  }
}
.footer-map__item iframe {
  width: 100%;
  height: 100%;
}
.footer__info {
  padding: 90px 50px 80px 0;
  max-width: 485px;
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.footer__info::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
  background: #1f4a41;
  border-radius: 0 10px 0 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .footer__info {
    max-width: 100%;
    padding: 30px 0;
  }
  .footer__info::before {
    right: -15px;
  }
}
.footer__logo {
  width: 130px;
  height: 115px;
}
.footer-info__row {
  margin: 60px 0 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .footer-info__row {
    margin: 30px 0 0 0;
  }
}
.footer-info__title {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: 0 0 100px 0;
}
.footer-info__title::before {
  content: "";
  width: 100vw;
  height: 5px;
  display: block;
  border-radius: 5px;
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--accent-color);
}
@media screen and (max-width: 1024px) {
  .footer-info__title {
    margin: 0 0 60px 0;
  }
}
.footer-social__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-social__link {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  transition: 0.3s color;
}
.footer-social__icon {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-contact__qr {
  padding: 10px;
  border-radius: 10px;
  background: #1c443c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact__qr img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.footer-contact__wrapper {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.footer-contact__link {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #6b8983;
  transition: 0.3s fill;
}
.footer-contact__link:hover {
  fill: var(--accent-color);
}
.footer-contact__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-contact__icon {
  width: 100%;
  height: 100%;
}

a.footer-social__link:hover {
  color: var(--accent-color);
}
.jobs__wrapper{
	max-width:1120px;
	min-height:187px;
}
.section-jobs__decor--middle{
	bottom:-104px;
}
.about__form{
	height:auto;
}
.footer-info__title{
	width:auto;
}
.hero__button{
	width:auto;
	padding:10px 20px;
}
.wpcf7-response-output{
	display:none;
}
.wpcf7-spinner{
	margin: 10px auto;
    display: block;
}