h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 200;
  line-height: 44px;
}

.body {
  color: #fff;
  background-image: linear-gradient(270deg, #8a4900, #e87b01 50%, #8a4900);
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  display: flex;
}

.div-block {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  text-align: center;
  flex-flow: column;
  margin-top: 10rem;
  display: flex;
}

.div-block-2 {
  text-align: center;
  width: 75%;
}

.div-block-3 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.link {
  color: #fff;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.button {
  color: #333;
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 500;
  transition: transform .15s;
}

.button:hover {
  transform: scale(.95);
}

.button.rounded {
  opacity: 1;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
}

.text-span {
  opacity: .75;
  font-size: 1rem;
}

.text-block {
  line-height: 125%;
}

.div-block-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.image {
  width: 20rem;
}

.heading {
  font-weight: 200;
}

.heading-2 {
  width: 75%;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 100%;
}

.link-block {
  border: 1px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.image-2 {
  max-width: 40%;
}

@media screen and (max-width: 991px) {
  .body {
    background-image: linear-gradient(0deg, #8a4900, #e87b01 100%, #8a4900);
  }

  .heading-2 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .body {
    justify-content: center;
    align-items: flex-start;
    padding-top: 4rem;
  }

  .div-block {
    flex-flow: column;
  }

  .div-block-2 {
    width: 95%;
  }

  .div-block-4 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .image {
    width: 15rem;
  }

  .heading-2 {
    font-size: 2rem;
  }
}


