:root {
  --company-color: #8a9a5b;
  --cream: #f5f3e6;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.image {
  width: 225px;
}

.brand {
  margin-top: 8px;
  margin-bottom: 8px;
}

.container {
  grid-column-gap: 59px;
  grid-row-gap: 59px;
  justify-content: space-between;
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
}

.navbar {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff0;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.nav-link {
  font-size: 16px;
  font-weight: 700;
}

.heading {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

.container-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin-top: 12px;
  display: flex;
}

.features-cards {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  display: flex;
}

.feature-card {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
}

.body {
  background-color: #f5f3e6;
}

.cta {
  background-color: var(--company-color);
  color: #000;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.footer {
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.section-hero {
  padding-top: 20px;
  padding-bottom: 20px;
}

.image-2 {
  width: 125px;
}

.feature-icon {
  margin-bottom: 7px;
  padding: 15px;
}

.feature-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.feature-description {
  text-align: center;
  font-weight: 400;
}

.paragraph {
  margin-top: 8px;
  margin-bottom: 23px;
  font-size: 24px;
  font-weight: 700;
}

.features-div {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.mount-image {
  padding: 10px;
}

.mount-image-div {
  justify-content: space-around;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.body-2 {
  background-color: var(--cream);
}

.container-mounts {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .image {
    width: 175px;
  }

  .heading {
    margin-bottom: 17px;
    font-size: 34px;
    line-height: 40px;
  }

  .container-2 {
    max-width: 650px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .feature-card {
    width: 125px;
  }

  .container-3 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 30px;
    line-height: 35px;
  }

  .features-cards {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .feature-card {
    width: 175px;
  }

  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .feature-icon {
    margin-bottom: 0;
  }

  .feature-title {
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 479px) {
  .image {
    width: 100px;
  }

  .container-3 {
    max-width: none;
  }
}
