/* ===== VARIABLES ===== */
:root {
  --green-color: #AAB99A;
  --green-dark-color: #5C705E;
  --green-light-color: #D0DDD0;
  --yellow-color: #F0F0D7;
  --yellow-light-color: #FAFAEB;
  --orange-color: #FF6500;
  --orange-dark-color: #DF6800;
  --text-color: #272727;
  --black-color: #252525;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-medium-color: #DADADA;

  --primary-font: 'Open Sans';

  --transition: all .3s ease-in-out;

  --grid-width: 1160px;
  --grid-gutter: 15px;
}

/* ===== GRID ===== */
.xrmdl2 {
  max-width: calc(var(--grid-width) + var(--grid-gutter) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

.eat2na {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--grid-gutter) * -1);
}

.g660kz {
  flex-direction: column-reverse;
}

.q1x72h {
  width: fit-content;
  padding: 0 var(--grid-gutter);
}

.u3xj1c {
  width: 100%;
}

.kykq1a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.xw1lh1 {
  flex: 1;
}

.tglmay {
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .cx9vk0 {
    width: 33.3333%;
  }

  .v9n6j7 {
    width: 66.6666%;
  }

  .kznv6c {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .sqi15d {
    width: 50%;
  }
}

/* ===== FONTS ===== */
@import url('https://fonts.fh9xsw.i6cqv7/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body, html {
  height: 100%;
  min-height: 100%;
}

html {
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  line-height: 1;
  background-color: var(--white-color);
  color: var(--text-color);
  font-family: var(--primary-font), sans-serif;
  font-size: 18px;
  font-weight: 400;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-family: var(--primary-font), sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 42px;
  line-height: 52px;
  margin: 60px 0 24px;
}

h2 {
  font-size: 34px;
  line-height: 44px;
  margin: 48px 0 20px;
}

h3 {
  font-size: 28px;
  line-height: 36px;
  margin: 40px 0 16px;
}

h4 {
  font-size: 22px;
  line-height: 30px;
  margin: 32px 0 12px;
}

h5 {
  font-size: 18px;
  line-height: 26px;
  margin: 24px 0 10px;
}

h6 {
  font-size: 16px;
  line-height: 24px;
  margin: 20px 0 8px;
}

ul {
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
}

ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
}

ul li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--black-color);
}

ol {
  margin: 20px 0 20px 22px;
}

ol li {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
}

p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--text-color);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

a {
  color: var(--orange-color);
  line-height: 1;
  outline: none;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}

/* ===== FORMS ===== */
input,
select,
textarea {
  width: 100%;
  position: relative;
  display: block;
  padding: 11px 14px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 24px;
  font-family: var(--primary-font), sans-serif;
  font-weight: 400;
  background-color: var(--white-color);
  outline: none;
  border: 1px solid var(--grey-medium-color);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

select {
  padding-right: 50px;
  background: url(../images/select-arrow.svg) no-repeat calc(100% - 15px) var(--white-color);
}

::-webkit-input-placeholder { color: var(--grey-color); opacity: 1; }
::-moz-placeholder          { color: var(--grey-color); opacity: 1; }
:-ms-input-placeholder      { color: var(--grey-color); opacity: 1; }
:-moz-placeholder           { color: var(--grey-color); opacity: 1; }

input:active,
input:focus,
textarea:active,
textarea:focus {
  border: 1px solid var(--green-dark-color);
}

/* ===== BUTTON ===== */
.s20djw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--orange-color);
  color: var(--white-color);
  outline: none;
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
}

.s20djw:hover,
.s20djw:active {
  background-color: var(--orange-dark-color);
  text-decoration: none;
}

/* ===== HEADER ===== */
.h4xqyi {
  position: relative;
  padding: 18px 0;
  background-color: var(--yellow-light-color);
  box-shadow: 0 1px 4px 0 rgba(170, 185, 154, 0.25)
}

.v4awqd {
  max-width: 232px;
  width: 100%;
  transition: var(--transition);
  border: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
}

.v4awqd:hover {
  opacity: .9;
}

.ub0sfl {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  transition: var(--transition);
}

.gds4zj {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, .7);
}

.ub0sfl.l4y4cx {
  transform: translateX(0);
}

.gds4zj.l4y4cx {
  opacity: 1;
  z-index: 9;
}

.ngfuf5 {
  width: 100%;
  margin-right: 30px;
}

.ngfuf5 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.ngfuf5 ul li {
  margin: 0 40px 0 0;
  padding: 0;
}

.ngfuf5 ul li::before {
  display: none;
}

.ngfuf5 ul li:last-child {
  margin-right: 0;
}

.ngfuf5 ul li * {
  display: inline-flex;
  color: var(--text-color);
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.ngfuf5 ul li a:hover {
  color: var(--orange-color);
  border-color: var(--orange-color);
}

.yyejwz {
  flex-shrink: 0;
}

.yyejwz .s20djw {
  padding-left: 45px;
  padding-right: 45px;
}

/* ===== S-TOP ===== */
.lx9cd8 {
  position: relative;
  background-color: var(--green-color);
  padding: 60px 0 47px;
}

.da4zdz p {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
}

.sti2y5 {
  margin: 30px 0;
  font-size: 42px;
  line-height: 57px;
  font-weight: 600;
  color: var(--black-color);
}

.arjs83 {
  width: 100%;
  max-width: 415px;
  background-color: var(--white-color);
  text-align: center;
  margin-left: auto;
}

.qwskvw {
  padding: 30px 20px;
  width: 100%;
  margin: 0 auto;
}

.arjs83 select {
  margin-bottom: 15px;
}

.uunk05 {
  padding: 12px 24px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--green-light-color);
}

.fxwwxw {
  margin: 20px auto 0;
}

.behxo3 {
  font-size: 11px;
  line-height: 15px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 335px;
  text-align: center;
  font-weight: 300;
  color: var(--text-color);
}

.behxo3 a {
  font-weight: 400;
  color: var(--text-color);
}

/* ===== S-INTRO ===== */
.b1yfar {
  padding: 60px 0 65px;
  background-color: var(--yellow-color);
}

.bndoo1 {
  margin: 0 0 30px;
  font-size: 40px;
  color: var(--black-color);
  line-height: 54px;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.jycbkk {
  padding-top: 60px;
  background-color: var(--green-dark-color);
}

.knmbio {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.n8v5we {
  margin: 0 15px;
}

.ju4uue {
  max-width: 254px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white-color);
  text-decoration: none;
  white-space: nowrap;
}

.ju4uue:hover {
  opacity: .9;
}

.s9h8m6 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 12px 0 20px 0;
}

.s9h8m6 li {
  margin: 0 20px 0 0;
  padding: 0;
}

.s9h8m6 li:last-child {
  margin-right: 0;
}

.s9h8m6 li::before {
  display: none;
}

.s9h8m6 li a {
  width: 36px;
  height: 36px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black-color);
  border-radius: 6px;
  border: 0;
}

.s9h8m6 li a:hover {
  background-color: var(--green-light-color);
}

.jpe4af {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--white-color);
}

.upyeyc {
  margin: 0;
}

.upyeyc.sgbz7f {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.upyeyc.sgbz7f li {
  width: calc(50% - 5px);
}

.upyeyc li {
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 20px;
}

.upyeyc li::before {
  display: none;
}

.upyeyc li a {
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: var(--white-color);
}

.p9xtbg {
  margin-top: 35px;
}

.x96kjh {
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  text-align: justify;
}

.x96kjh p {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 6px;
  padding-left: 16px;
  color: var(--white-color);
}

.si8xna {
  display: inline;
  margin: 0;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-align: left;
  color: var(--white-color);
}

.v92vyi {
  text-align: center;
  padding-top: 24px;
}

.v92vyi p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 16px;
  color: var(--white-color);
}

/* ===== HAMBURGER ===== */
.b0hs5h {
  position: relative;
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  z-index: 100;
  overflow: visible;
}

.b0hs5h:hover {
  opacity: 0.7;
}

.b0hs5h.l4y4cx:hover {
  opacity: 0.7;
}

.b0hs5h.l4y4cx .cot5j4,
.b0hs5h.l4y4cx .cot5j4::before,
.b0hs5h.l4y4cx .cot5j4::after {
  background-color: var(--green-dark-color);
}

.ntw0hr {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.cot5j4 {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.cot5j4,
.cot5j4::before,
.cot5j4::after {
  width: 40px;
  height: 3px;
  background-color: var(--green-dark-color);
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.cot5j4::before,
.cot5j4::after {
  content: "";
  display: block;
}

.cot5j4::before {
  top: -10px;
}

.cot5j4::after {
  bottom: -10px;
}

.o0x2jx .cot5j4 {
  top: 2px;
}

.o0x2jx .cot5j4::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.o0x2jx .cot5j4::after {
  top: 20px;
}

.o0x2jx.l4y4cx .cot5j4 {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.o0x2jx.l4y4cx .cot5j4::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.o0x2jx.l4y4cx .cot5j4::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/* ===== UTILITIES ===== */
.jibd0h {
  display: flex;
}

.icsf0z {
  align-items: center;
}

.uli14d {
  justify-content: space-between;
}

.xfza44 {
  justify-content: center;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1025px) {
  .ngfuf5 ul li {
    margin-right: 25px;
  }

  .b0hs5h {
    display: inline-flex;
  }

  .v4awqd,
  .ju4uue {
    max-width: 157px;
  }

  .ub0sfl {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 90px 30px 30px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 330px;
    z-index: 99;
    background-color: var(--white-color);
    transform: translateX(100%);
  }

  .ngfuf5 {
    margin-right: 0;
    text-align: right;
    width: 100%;
  }

  .ngfuf5 ul {
    display: block;
  }

  .ngfuf5 ul li {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .ngfuf5 ul li * {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }

  .yyejwz {
    margin-top: 15px;
  }

  .s20djw {
    font-size: 20px;
    padding: 10px 20px;
  }
}

@media (max-width: 992px) {
  .jycbkk {
    padding-top: 60px;
  }

  .knmbio {
    margin-bottom: 30px;
  }

  .ju4uue {
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .arjs83 {
    margin-left: auto;
    margin-right: auto;
  }

  .sti2y5,
  .da4zdz {
    text-align: center;
  }

  .h4xqyi {
    padding: 10px 0;
  }

  .b1yfar {
    padding: 70px 0 40px;
  }
}

@media (max-width: 767px) {
  p,
  ul li,
  ol li,
  input,
  select,
  textarea {
    font-size: 15px;
    line-height: 25px;
  }

  ul li {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  ol li {
    margin-bottom: 15px;
  }

  ul li::before {
    top: 10px;
    left: 9px;
    width: 3px;
    height: 3px;
  }

  h1 {
    font-size: 32px;
    line-height: 40px;
    margin: 48px 0 20px;
  }

  h2 {
    font-size: 26px;
    line-height: 34px;
    margin: 40px 0 16px;
  }

  h3 {
    font-size: 22px;
    line-height: 30px;
    margin: 32px 0 14px;
  }

  h4 {
    font-size: 18px;
    line-height: 26px;
    margin: 28px 0 12px;
  }

  h5 {
    font-size: 16px;
    line-height: 24px;
    margin: 22px 0 10px;
  }

  h6 {
    font-size: 14px;
    line-height: 22px;
    margin: 18px 0 8px;
  }

  input,
  select,
  textarea {
    padding: 9px 12px;
  }

  select {
    padding-right: 35px;
    background-size: 13px;
    background-position-x: calc(100% - 12px);
  }

  .s20djw {
    font-size: 18px;
    line-height: 24px;
    padding: 11px 20px;
  }

  .h4xqyi {
    padding: 6px 0;
  }

  .v4awqd,
  .ju4uue {
    max-width: 146px;
  }

  .ub0sfl {
    padding-top: 75px;
  }

  .lx9cd8 {
    padding: 45px 0 25px;
  }

  .sti2y5 {
    font-size: 32px;
    line-height: 43px;
    margin-bottom: 20px;
  }

  .da4zdz p {
    font-size: 15px;
    line-height: 25px;
  }

  .arjs83 {
    max-width: 335px;
  }

  .uunk05 {
    font-size: 24px;
    line-height: 32px;
    padding: 10px 25px;
  }

  .qwskvw {
    padding: 25px;
  }

  .fxwwxw {
    margin-top: 20px;
  }

  .behxo3 {
    font-size: 10px;
    line-height: 13px;
  }

  .arjs83 .s20djw {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }

  .arjs83 select {
    padding: 9px 15px;
  }

  .b1yfar {
    padding: 40px 0 45px;
  }

  .bndoo1 {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 40px;
  }

  .jycbkk {
    padding-top: 47px;
  }

  .knmbio {
    margin-bottom: 22px;
    flex-wrap: wrap;
  }

  .n8v5we {
    margin: 0;
  }

  .s9h8m6 {
    margin-top: 5px;
    margin-bottom: 0;
  }

  .s9h8m6 li a {
    width: 32px;
    height: 32px;
  }

  .s9h8m6 li a img {
    max-height: 80%;
  }

  .toqd82 {
    margin-bottom: 20px;
  }

  .jpe4af {
    font-size: 16px;
    line-height: 21px;
  }

  .upyeyc {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }

  .upyeyc li {
    line-height: 18px;
    width: calc(50% - 5px);
  }

  .upyeyc li a {
    font-size: 15px;
    line-height: 20px;
  }

  .p9xtbg {
    margin-top: 15px;
  }

  .x96kjh {
    margin-bottom: 30px;
    text-align: left;
  }

  .x96kjh p {
    font-size: 12px;
    line-height: 16px;
  }

  .v92vyi {
    padding-top: 0;
    margin-bottom: 40px;
  }

  .v92vyi p {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 575px) {
  .arjs83 {
    max-width: 335px;
  }
}

/* ===== S-ARTICLE ===== */
.r18x5h {
  padding: 60px 0 65px;
  background-color: var(--yellow-color);
}

.malc3g h1:first-child {
  margin-top: 0;
}

/* ===== S-CITIES ===== */
.l0me7k {
  padding: 2rem 0 3rem;
}

.vtoctq {
  margin-bottom: 1.25rem;
}

.wh87ys {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .wh87ys {
    grid-template-columns: 1fr;
  }
}

.uz3qx7 {
  border: 1px solid var(--grey-medium-color);
  border-radius: 6px;
}

.pm60p7 {
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pm60p7::after {
  content: "▸";
  margin-left: auto;
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.uz3qx7[open] .pm60p7::after {
  transform: rotate(90deg);
}

.gzpi48 {
  padding: 0.25rem 0 0.5rem;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--grey-medium-color);
}

.gzpi48 li a {
  display: block;
  padding: 0.15rem 1rem;
  font-size: 0.9rem;
  color: var(--green-dark-color);
  text-decoration: none;
  transition: background 0.15s;
}

.gzpi48 li a:hover {
  background: #f5f5f5;
}
