:root {
  --black: black;
  --primary-blue: #123652;
  --light-brow: #a8977a;
  --secondary-blue: #1b2934;
}

.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;
  }
}

body {
  color: var(--black);
  letter-spacing: .48px;
  background-color: #f4f4f4;
  font-family: Quicksand, sans-serif;
  font-size: 16px;
  line-height: 1.87;
}

h1 {
  color: var(--primary-blue);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--primary-blue);
  letter-spacing: 1.4px;
  text-underline-offset: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
  text-decoration: underline;
}

a:hover {
  color: var(--light-brow);
}

.nav-container {
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 58.5px;
  display: flex;
}

.navbar {
  background-color: #0000;
}

.tag-line {
  color: #a8977a;
}

.tag-line.text-center {
  text-align: center;
  letter-spacing: 2.8px;
  margin-top: 8px;
  font-weight: 500;
  line-height: 2.14;
}

.hero {
  grid-column-gap: 68px;
  grid-row-gap: 68px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 130px;
  margin-bottom: 65px;
  display: flex;
}

.center {
  text-align: center;
}

.center.footer-text {
  color: var(--secondary-blue);
  letter-spacing: .42px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.78;
}

.center.footer-text.mobile {
  display: none;
}

.center.padding-bottom {
  padding-bottom: 35px;
}

.footer-link {
  color: var(--secondary-blue);
  letter-spacing: .42px;
  text-decoration: none;
}

.footer-link.disabled {
  opacity: .5;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}

.image-2 {
  margin-bottom: 14px;
}

.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

@media screen and (max-width: 991px) {
  .hero {
    grid-column-gap: 34px;
    grid-row-gap: 34px;
    flex-flow: column;
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .nav-container {
    padding-top: 46.5px;
  }

  .hero {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 45px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }

  h1 {
    font-size: 30px;
  }

  a {
    letter-spacing: 1.2px;
    line-height: 1.87;
  }

  .tag-line.text-center {
    letter-spacing: 2.1px;
    margin-top: 6px;
    font-size: 10.5px;
  }

  .center.footer-text {
    font-size: 12px;
    line-height: 2.08;
    display: none;
  }

  .center.footer-text.mobile {
    display: block;
  }

  .footer-link {
    font-size: 12px;
    line-height: 2.08;
  }

  .image {
    max-width: 210px;
  }

  .image-2 {
    max-width: 123px;
  }
}


