:root {
  --light-green: #a4c66d;
  --dark-blue: #0f5662;
  --black: #1e1e1e;

  --font-family: "Montserrat", sans-serif;

  --radius-sm: 12px;
  --radius-md: 17px;
  --radius-lg: 20px;

  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.2);
}

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

body {
  margin: 0;
  color: #333;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

h2 {
  margin-bottom: 10px;
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.text-span {
  color: var(--light-green);
}

.text-span-2 {
  color: var(--dark-blue);
}

.w-layout-hflex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.w-layout-vflex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.flex-column {
  display: flex;
  flex-direction: column;
}

.nav-sect {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  padding: 23px 50px;
}

.nav-wrapper {
  position: static;
  top: auto;
  display: flex;
  justify-content: space-between;
  grid-auto-columns: 1fr;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  background-color: rgba(229, 173, 173, 0);
}

.logo {
  margin-left: 34px;
}

.nav-button-wrapper {
  display: flex;
  margin: 0px;
  padding: 12px 23px;
  flex-flow: row;
  align-self: center;
  order: 0;
  flex: 0 1 auto;
  gap: 30px;
  border-radius: 200px;
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  background-clip: padding-box;
  -webkit-text-fill-color: inherit;
}

.nav-link {
  color: #2c1e1e;
  font-size: 18px;
}

.nav-link-current {
  color: var(--light-green);
}

.footer-sect {
  background-color: var(--light-green);
  flex-flow: column;
  display: block;
}

.footer-block-wrapper {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  text-align: left;
  background-color: #a4c66d00;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 31px;
  padding-bottom: 40px;
  display: flex;
}

.footer-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 21px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  display: block;
}

.footer-block-h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: block;
}

.link {
  display: inline;
}

.footer-block-contact {
  flex-flow: column;
}

.footer-block-txt {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.footer-block-txt-btm {
  color: #fff;
  margin-top: 0;
  padding-left: 0;
  font-size: 16px;
  text-decoration: none;
}

.footer-block-btm {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 21px;
  margin-left: 0;
  padding-left: 0;
  display: block;
}

.div-block {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  margin-left: 0;
  display: flex;
}

.footer-block-btm-txt-wrapper {
  grid-column-gap: 115px;
  grid-row-gap: 115px;
  flex-flow: row;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  position: static;
}

.btn-primary {
  background: linear-gradient(
    180deg,
    #65b33e,
    var(--light-green)
  );
  border-radius: 12px;
  padding: 12px 25px;
  color: white;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .footer-block-btm-txt-wrapper {
    padding-left: 66px;
    padding-right: 66px;
  }
}

@media screen and (max-width: 479px) {
    .footer-block-contact {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .footer-block-txt-btm {
        text-align: center;
    }
    .footer-block-btm-txt-wrapper {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        padding-left: 27px;
        padding-right: 27px;
    }
    }
