* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  color: #fff;
  background-color: #377036;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  margin-top: 28px;
}
@media screen and (min-width: 1400px) {
  .btn-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 64px;
  padding: 0;
  border: none;
  background: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  background: #CBE86A;
}

.title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-style: italic;
}
@media screen and (min-width: 1400px) {
  .title {
    font-weight: 900;
    font-size: 42px;
    line-height: 52px;
  }
}

.text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.55)), to(rgba(55, 112, 54, 0)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(55, 112, 54, 0) 100%);
  backdrop-filter: blur(38px);
}
.header .logo {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}
.header .container {
  max-width: none;
}

.header__button-wrapper {
  margin-left: auto;
}

.header__icon-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: none;
  padding: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.header__icon {
  position: absolute;
  width: 28px;
  height: 28px;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}

.header__icon--menu {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.header__icon--close {
  opacity: 0;
  -webkit-transform: rotate(-90deg) scale(0.6);
          transform: rotate(-90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--menu {
  opacity: 0;
  -webkit-transform: rotate(90deg) scale(0.6);
          transform: rotate(90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--close {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 16px;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
  padding-top: 112px;
  padding-left: 60px;
  background: #0a342b;
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  height: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  position: relative;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.navigation__link::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../../images/leaf.svg") no-repeat center/contain;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.navigation__link:hover {
  color: #90db46;
}
.navigation__link:hover::before {
  opacity: 1;
}
.navigation .btn-link {
  width: 208px;
  height: 54px;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(12, 74, 110, 0.1490196078);
          box-shadow: 4px 4px 0px 0px rgba(12, 74, 110, 0.1490196078);
  border: 1px solid #ffffff;
  background: #bae6fd;
  color: #161616;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}
.navigation .btn-link:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (min-width: 1400px) {
  .header__button-wrapper {
    display: none;
  }
  .header .container {
    max-width: 1320px;
  }
  .navigation {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 auto;
    margin-left: auto;
    padding: 20px 0px;
  }
  .navigation__list {
    background: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    gap: 32px;
    backdrop-filter: none;
  }
}
.hero {
  padding: 200px 20px 31px 20px;
  background-image: url("../../images/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .hero {
    padding-top: 288px;
    padding-bottom: 80px;
  }
}
.hero .wrapper {
  max-width: 500px;
  width: 100%;
  margin-bottom: 81px;
}
@media screen and (min-width: 1400px) {
  .hero .wrapper {
    max-width: 761px;
    margin-bottom: 88px;
  }
}
.hero h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 40px;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 span {
  color: #90db46;
}
@media screen and (min-width: 1400px) {
  .hero h1 {
    font-weight: 900;
    font-size: 62px;
    line-height: 70px;
  }
}
.hero h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 42px;
}
@media screen and (min-width: 1400px) {
  .hero h2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1400px) {
  .hero .text {
    font-size: 20px;
  }
}
.hero a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 8px 6px 24px;
  border-radius: 80px;
  border: 1px solid #08362f;
  background: #90db46;
  font-family: "Nunito", sans-serif;
  color: #08362f;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.hero a:hover {
  background: #59a50d;
}

.sec-1 {
  background: #cbe86a;
  color: #08362f;
  padding: 40px 20px 332px 20px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .sec-1 {
    padding-top: 100px;
    padding-bottom: 310px;
  }
}
.sec-1 .container {
  position: relative;
  z-index: 3;
}
.sec-1 .grass {
  position: absolute;
  bottom: 0;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
@media screen and (min-width: 1400px) {
  .sec-1 .grass {
    width: 100%;
  }
}
.sec-1 .chiken {
  position: absolute;
  bottom: 0;
  right: -250px;
  max-width: 600px;
  z-index: 1;
}
@media screen and (min-width: 1400px) {
  .sec-1 .chiken {
    right: unset;
    left: 50%;
    -webkit-transform: translateX(17%);
            transform: translateX(17%);
  }
}

.sec-2 {
  background-image: url("../../images/birds.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: auto;
  padding: 40px 20px 136px 20px;
}
@media screen and (min-width: 1400px) {
  .sec-2 {
    background-repeat: repeat-x;
    padding-block: 100px;
  }
}
.sec-2 .sec-2-list {
  margin-top: 28px;
}
@media screen and (min-width: 1400px) {
  .sec-2 .sec-2-list {
    margin-top: 72px;
  }
}
.sec-2 li {
  margin: 0 10px;
}
.sec-2 li img {
  max-width: 375px;
  height: 480px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1400px) {
  .sec-2 li img {
    max-width: none;
  }
}

.sec-3 {
  background-image: url("../../images/birds.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: auto;
  padding: 40px 20px 120px 20px;
}
@media screen and (min-width: 1400px) {
  .sec-3 {
    background-repeat: repeat-x;
    padding-bottom: 100px;
    padding-top: 81px;
  }
}
.sec-3 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1400px) {
  .sec-3 .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.sec-4 {
  background: #cbe86a;
  color: #08362f;
  padding: 40px 20px;
}
@media screen and (min-width: 1400px) {
  .sec-4 {
    padding-block: 100px;
  }
  .sec-4 ul {
    min-width: 500px;
  }
}
.sec-4 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1400px) {
  .sec-4 .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 86px;
  }
}
.sec-4 li {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  border-bottom: 1px solid #08362f;
  padding-bottom: 12px;
  padding-top: 18px;
}

.sec-5 {
  padding: 40px 20px;
}
@media screen and (min-width: 1400px) {
  .sec-5 {
    padding-block: 100px;
  }
}
.sec-5 h2 {
  text-align: center;
}
.sec-5 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1400px) {
  .sec-5 .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sec-5 li {
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  padding-top: 26px;
}
.sec-5 li h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 4px;
}
.sec-5 li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}

.sec-7 {
  padding: 40px 20px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .sec-7 {
    padding-block: 100px;
  }
}
.sec-7 .grass {
  position: absolute;
  bottom: 0;
  max-width: none;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.sec-7 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  margin-top: 32px;
}
@media screen and (min-width: 1400px) {
  .sec-7 ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-top: 50px;
  }
}
.sec-7 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 22px 10px;
  max-width: 425px;
  width: 100%;
  max-height: 279px;
  border-radius: 22px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.25);
}
.sec-7 h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
}

.contacts {
  background: #cbe86a;
  color: #08362f;
  padding: 40px 20px 0 20px;
}
@media screen and (min-width: 1400px) {
  .contacts {
    padding-top: 100px;
    background-image: url("../../images/birds.png");
    background-repeat: repeat-x;
    background-position: top;
    background-size: auto;
  }
}
.contacts .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 22px;
}
@media screen and (min-width: 1400px) {
  .contacts .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.contacts .box {
  max-width: 660px;
  width: 100%;
}
@media screen and (min-width: 1400px) {
  .contacts .box {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.contacts .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.contacts .form-input,
.contacts .form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #08362f;
  background: transparent;
  padding-left: 10px;
  padding-bottom: 12px;
  font-size: 16px;
  color: rgba(8, 54, 47, 0.6980392157);
  outline: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.contacts .form-input {
  height: 56px;
}
.contacts .form-textarea {
  resize: none;
}
.contacts .form-input:focus,
.contacts .form-textarea:focus {
  border-color: #38bdf8;
}
.contacts .form-input::-webkit-input-placeholder, .contacts .form-textarea::-webkit-input-placeholder {
  color: rgba(8, 54, 47, 0.6980392157);
}
.contacts .form-input::-moz-placeholder, .contacts .form-textarea::-moz-placeholder {
  color: rgba(8, 54, 47, 0.6980392157);
}
.contacts .form-input:-ms-input-placeholder, .contacts .form-textarea:-ms-input-placeholder {
  color: rgba(8, 54, 47, 0.6980392157);
}
.contacts .form-input::-ms-input-placeholder, .contacts .form-textarea::-ms-input-placeholder {
  color: rgba(8, 54, 47, 0.6980392157);
}
.contacts .form-input::placeholder,
.contacts .form-textarea::placeholder {
  color: rgba(8, 54, 47, 0.6980392157);
}
.contacts .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 8px 6px 24px;
  border-radius: 80px;
  border: 1px solid #08362f;
  background: #90db46;
  font-family: "Nunito", sans-serif;
  color: #08362f;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contacts .submit-btn:hover {
  background: #59a50d;
}
.contacts .submit-btn:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.modal-form {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #222221;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal-form.show {
  opacity: 1;
}

.hidden {
  display: none;
}

.popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.popup .content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 375px;
  width: 100%;
  background: #377036;
  border: 1px solid #FFFFFF;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1803921569);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1803921569);
  padding: 20px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
}
@media screen and (min-width: 1400px) {
  .popup .content {
    max-width: 1440px;
    padding: 20px 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 220px;
  }
}
.popup h3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.popup .button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 23px;
}
.popup button {
  background: #fff;
  color: #377036;
  border: none;
  border-radius: 8px;
  width: 145px;
  height: 34px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.popup a {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.footer {
  padding: 22px 20px 200px 20px;
  background-image: url("../../images/grass.webp");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: auto;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .footer {
    background-repeat: repeat;
    padding-top: 40px;
  }
}
.footer ::before {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#377036), to(#08362f));
  background: linear-gradient(180deg, #377036 0%, #08362f 100%);
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1400px) {
  .footer .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer .policies-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 1400px) {
  .footer .policies-list {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.footer .policies-list li a {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  display: block;
  color: #fff;
}
.footer h3 {
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  font-style: italic;
}
.footer .copyright {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.policies {
  padding: 136px 20px 40px 20px;
}
@media screen and (min-width: 1400px) {
  .policies {
    padding-top: 188px;
  }
}
.policies h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
  font-style: italic;
  text-transform: uppercase;
}
@media screen and (min-width: 1400px) {
  .policies h1 {
    font-weight: 900;
    font-size: 42px;
    line-height: 1;
  }
}
.policies h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.policies a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.policies ul {
  list-style: disc;
  padding-left: 20px;
}/*# sourceMappingURL=main.css.map */