@import url("../css/reset.css");
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
}

ul li {
  list-style-type: none;
}

b {
  font-weight: 700;
}

hr {
  margin: 0;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12.5px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

.text-green {
  color: #729932;
}

.text-green-hover:hover {
  color: #729932;
}

.text-lite-green-hover:hover {
  color: #358c86;
}

.text-orange {
  color: #f18872;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.d-grid {
  display: grid;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.gap-2 {
  gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-48 {
  gap: 48px;
}

.gap-54 {
  gap: 54px;
}

.gap-72 {
  gap: 72px;
}

.gap-96 {
  gap: 96px;
}

.gap-144 {
  gap: 144px;
}

.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

.fs-12 {
  font-size: 12px;
  line-height: 18px;
}

.fs-14 {
  font-size: 14px;
  line-height: 20px;
}

.fs-16 {
  font-size: 16px;
  line-height: 23px;
}

.fs-20 {
  font-size: 20px;
  line-height: 28px;
}

.fs-24 {
  font-size: 24px;
  line-height: 32px;
}

.fs-32 {
  font-size: 32px;
  line-height: normal;
}

.fs-36 {
  font-size: 36px;
}

.fs-40 {
  font-size: 40px;
  line-height: 48px;
}

.fs-48 {
  font-size: 48px;
  line-height: 56px;
}

.fs-64 {
  font-size: 64px;
  line-height: normal;
}

.lh-normal {
  line-height: normal;
}

.lh-125 {
  line-height: 125%;
}

.lh-150 {
  line-height: 150%;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.w-100 {
  width: 100%;
}

.w-112 {
  width: 112px;
}

.h-100 {
  height: 100%;
}

.min-h-100 {
  min-height: 100%;
}

.h-stretch {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-self-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.centered-el {
  place-content: center;
  place-items: center;
}

.p-4 {
  padding: 4px;
}

.p-8 {
  padding: 8px;
}

.p-12 {
  padding: 12px;
}

.p-16 {
  padding: 16px;
}

.p-24 {
  padding: 24px;
}

.p-48 {
  padding: 48px;
}

.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-144 {
  padding-top: 144px;
  padding-bottom: 144px;
}

.pb-48 {
  padding-bottom: 48px;
}

.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.px-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.ml-auto {
  margin-left: auto;
}

.mt-auto {
  margin-top: auto;
}

.mt-2 {
  margin-top: 2px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-72 {
  margin-top: 72px;
}

.mt-96 {
  margin-top: 96px;
}

.mt-116 {
  margin-top: 116px;
}

.mt-144 {
  margin-top: 144px;
}

.mt-168 {
  margin-top: 132px;
}

.mb-8 {
  margin-bottom: 8px;
}

.transition-03 {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.radius-4 {
  border-radius: 4px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-16 {
  border-radius: 16px;
}

.radius-24 {
  border-radius: 24px;
}

.radius-full {
  border-radius: 50%;
}

.border {
  border: 1px solid transparent;
}

.border-green-20 {
  border-color: rgba(114, 153, 50, 0.2);
}

.bg-opacity-05 {
  --bg-opacity: 0.05;
}

.bg-opacity-10 {
  --bg-opacity: 0.1;
}

.bg-opacity-100 {
  --bg-opacity: 1;
}

.bg-opacity-hover-100:hover {
  --bg-opacity: 1;
}

.bg-white {
  background: rgba(255, 255, 255, var(--bg-opacity, 1));
}

.bg-white-hover:hover {
  background: #fff;
}

.bg-brown-light {
  background: rgba(48, 42, 33, 0.1);
}

.bg-brown-light-hover:hover {
  background: rgba(48, 42, 33, 0.2);
}

.text-white {
  color: #fff;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-80 {
  opacity: 0.8;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.size-24 {
  width: 24px;
  height: 24px;
}

.text-nowrap {
  white-space: nowrap;
}

.img-cover {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(42, 47, 54, 0.05);
  padding: 16.5px 4px;
  border-radius: 12px;
  width: 40px;
  gap: 3px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.burger span {
  background: #2A2F36;
  width: 16.5px;
  height: 1px;
}
.burger:hover {
  background: rgba(42, 47, 54, 0.1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 27px 0;
}
.header.active .burger {
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
.header.active .burger span:nth-of-type(1) {
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotatez(45deg) translate(3px, 3px);
      -ms-transform: rotate(45deg) translate(3px, 3px);
          transform: rotatez(45deg) translate(3px, 3px);
}
.header.active .burger span:nth-of-type(2) {
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transform: rotatez(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotatez(-45deg);
}
.header.active .burger span:nth-of-type(3) {
  opacity: 0;
}

.sidebar a:after {
  content: "/";
  margin-left: 8px;
}

@media (max-width: 1270px) {
  .xl\:fs-16 {
    font-size: 16px;
  }
  .xl\:fs-32 {
    font-size: 32px;
  }
  .xl\:fs-40 {
    font-size: 40px;
  }
  .xl\:fs-48 {
    font-size: 48px;
  }
  .xl\:p-24 {
    padding: 24px;
  }
  .xl\:mt-48 {
    margin-top: 48px;
  }
  .xl\:mt-96 {
    margin-top: 96px;
  }
  .xl\:gap-48 {
    gap: 48px;
  }
  .xl\:cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .xl\:cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .xl\:cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .xl\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .xl\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .xl\:d-none {
    display: none;
  }
  .xl\:justify-content-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 992px) {
  .lg\:py-96 {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .lg\:p-24 {
    padding: 24px;
  }
  .lg\:fs-16 {
    font-size: 16px;
    line-height: 150%;
  }
  .lg\:fs-20 {
    font-size: 20px;
    line-height: 150%;
  }
  .lg\:fs-24 {
    font-size: 24px;
    line-height: normal;
  }
  .lg\:fs-32 {
    font-size: 32px;
  }
  .lg\:gap-4 {
    gap: 4px;
  }
  .lg\:gap-48 {
    gap: 48px;
  }
  .lg\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lg\:centered-el {
    place-content: center;
    place-items: center;
  }
  .lg\:mt-0 {
    margin-top: 0;
  }
  .lg\:mt-120 {
    margin-top: 120px;
  }
  .lg\:mt-72 {
    margin-top: 72px;
  }
  .lg\:mt-24 {
    margin-top: 24px;
  }
  .lg\:mt-68 {
    margin-top: 68px;
  }
  .lg\:mt-96 {
    margin-top: 96px;
  }
  .lg\:fs-36 {
    font-size: 36px;
  }
  .lg\:d-none {
    display: none;
  }
  .lg\:d-grid {
    display: grid;
  }
  .lg\:cols-1 {
    grid-template-columns: 1fr;
  }
  .lg\:cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lg\:cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lg\:order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .lg\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .lg\:basis-50 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .lg\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .lg\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .container {
    padding: 0 24px;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 768px) {
  .md\:d-none {
    display: none;
  }
  .md\:d-block {
    display: block;
  }
  .md\:d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .md\:centered-el {
    place-content: center;
    place-items: center;
  }
  .md\:fs-16 {
    font-size: 16px;
  }
  .md\:gap-12 {
    gap: 12px;
  }
  .md\:gap-16 {
    gap: 16px;
  }
  .md\:gap-24 {
    gap: 24px;
  }
  .md\:gap-48 {
    gap: 48px;
  }
  .md\:cols-1 {
    grid-template-columns: 1fr;
  }
  .md\:cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .md\:order-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .md\:order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .md\:order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .md\:p-24 {
    padding: 24px;
  }
  .md\:py-24 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .md\:py-48 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:mt-24 {
    margin-top: 24px;
  }
  .md\:mt-48 {
    margin-top: 48px;
  }
  .md\:w-100 {
    width: 100%;
  }
  .md\:justify-content-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .md\:justify-content-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .md\:align-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .md\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .md\:flex-nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .md\:scroll-box {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .md\:basis-100 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .md\:ml-0 {
    margin-left: 0;
  }
}
@media (max-width: 580px) {
  .sm\:d-none {
    display: none;
  }
  .sm\:d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sm\:d-block {
    display: block;
  }
  .sm\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sm\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sm\:cols-1 {
    grid-template-columns: 1fr;
  }
  .sm\:gap-24 {
    gap: 24px;
  }
  .sm\:w-100 {
    width: 100%;
  }
  .sm\:fs-14 {
    font-size: 14px;
  }
  .sm\:fs-16 {
    font-size: 16px;
  }
  .sm\:fs-20 {
    font-size: 20px;
  }
  .sm\:fs-24 {
    font-size: 24px;
  }
  .sm\:order-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .sm\:order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .sm\:order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sm\:mt-12 {
    margin-top: 12px;
  }
  .sm\:mt-24 {
    margin-top: 24px;
  }
  .sm\:mt-48 {
    margin-top: 48px;
  }
  .sm\:p-24 {
    padding: 24px;
  }
  .sm\:px-12 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .sm\:py-12 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .sm\:py-24 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .sm\:gap-2 {
    gap: 2px;
  }
  .sm\:align-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sm\:justify-content-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sm\:ml-0 {
    margin-left: 0;
  }
  .sm\:pb-0 {
    padding-bottom: 0;
  }
  .sm\:scroll-box {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .sm\:scroll-box > div {
    min-width: 320px;
    max-width: 320px;
  }
  .container {
    padding: 0 24px;
  }
  .header {
    padding: 12px 0;
  }
}
@media (max-width: 480px) {
  .m\:d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .m\:scroll-box {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .m\:fs-32 {
    font-size: 32px;
  }
  .m\:fs-24 {
    font-size: 24px;
  }
  .m\:d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}