.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.header__nav {
  width: 100%;
  max-width: var(--contWidth);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__logo {
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav-list a {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1024px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .header__nav-btn {
    display: none;
  }
}
.header__burger {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--green5);
  border-radius: 5px;
}
@media (max-width: 1024px) {
  .header__burger {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 16px;
  }
}

.footer {
  margin-top: 150px;
  background-color: var(--green);
}
@media (max-width: 1024px) {
  .footer {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .footer {
    margin-top: 80px;
  }
}
.footer__inner {
  width: 100%;
  max-width: calc(var(--contWidth) + 80px);
  margin: 0 auto;
  padding: 0 40px;
}
.footer__contacts {
  padding: 100px 0 50px;
}
.footer__contacts-title {
  margin-bottom: 40px;
}
.footer__contacts-heading {
  font-size: 25px;
  font-weight: 500;
  color: var(--white);
}
.footer__contacts-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.footer__contacts-content {
  display: flex;
  gap: 8px;
}
.footer__map {
  min-height: 616px;
  flex: 1;
  background-color: rgba(253, 255, 253, 0.05);
  border-radius: 4px;
}
.footer__form-wrap {
  width: 519px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 24px;
  background-color: var(--white);
  border-radius: 4px;
}
.footer__form-header {
  margin-bottom: 32px;
}
.footer__form-title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green);
}
.footer__form-subtitle {
  font-size: 13px;
  color: var(--green);
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__field-label {
  font-size: 13px;
  color: var(--green);
}
.footer__field-input {
  height: 40px;
  padding: 0 12px;
  font-size: 13px;
  color: var(--green);
  background-color: rgba(2, 82, 57, 0.05);
  border-radius: 5px;
}
.footer__field-input::-moz-placeholder {
  color: var(--green);
  opacity: 0.8;
}
.footer__field-input::placeholder {
  color: var(--green);
  opacity: 0.8;
}
.footer__field-textarea {
  height: 66px;
  padding: 10px 12px;
  resize: none;
}
.footer__field--select .footer__field-input {
  padding-right: 40px;
  background-color: rgba(2, 82, 57, 0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23025239' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.footer__form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
}
.footer__checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--green);
}
.footer__check-text {
  font-size: 11px;
  line-height: 160%;
  color: var(--green);
  opacity: 0.8;
}
.footer__submit {
  width: 100%;
  margin-top: 16px;
  background-color: var(--green);
}
.footer__submit span {
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid rgba(253, 255, 253, 0.05);
}
.footer__bottom .footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer__bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 36px;
}
.footer__logo {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}
.footer__nav-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer__contact-label, .footer__contact-value {
  font-size: 13px;
  color: var(--white);
}
.footer__socials {
  display: flex;
  gap: 8px;
}
.footer__socials .social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(253, 255, 253, 0.05);
  border-radius: 5px;
}
.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copyright span,
.footer__copyright a {
  font-size: 13px;
  color: var(--white);
}
@media (max-width: 1024px) {
  .footer__inner {
    padding: 0 24px;
  }
  .footer__contacts {
    padding: 60px 0 40px;
  }
  .footer__contacts-content {
    flex-direction: column;
  }
  .footer__map {
    width: 100%;
    min-height: 580px;
    flex: none;
  }
  .footer__form-wrap {
    width: 100%;
  }
  .footer__bottom .footer__inner {
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer__nav-contacts {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 0 16px;
  }
  .footer__contacts {
    padding: 40px 0 32px;
  }
  .footer__contacts-heading {
    font-size: 20px;
  }
  .footer__map {
    min-height: 315px;
  }
  .footer__bottom-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer__bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer__nav-contacts {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .footer__copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.mobile-menu {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fdfffd;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.opened {
  transform: translateX(0);
}
.mobile-menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
}
.mobile-menu__header {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-menu__header .logo-link {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(2, 82, 57, 0.0509803922);
  border-radius: 5px;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}
.mobile-menu__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
}
.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-menu__contacts-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
}
.mobile-menu__contacts-label {
  opacity: 0.6;
}
.mobile-menu__contacts-value {
  font-weight: 500;
}
.mobile-menu__socials {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.mobile-menu__socials .social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(2, 82, 57, 0.0509803922);
  border-radius: 5px;
}/*# sourceMappingURL=template.css.map */