:root {
  --white: white;
  --black: black;
}

.section {
  background-image: url('../images/Mask-Group-14.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .7fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  display: grid;
}

.link-block-2 {
  margin-left: 26px;
}

.div-block-2 {
  margin-top: 30px;
}

.text-block {
  color: #432e18;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.heading {
  color: #644e42;
  font-family: Playfair Display, sans-serif;
  font-style: italic;
  font-weight: 400;
}

.text-span-5, .text-span-6 {
  font-weight: 700;
}

.text-span-7, .text-span-8, .text-span-9, .text-span-10 {
  font-style: italic;
  font-weight: 600;
}

.div-block-5 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .section {
    justify-content: center;
  }

  .div-block {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: .75fr;
    justify-content: center;
    margin-top: 100px;
  }

  .div-block-2 {
    text-align: center;
    margin-top: 220px;
  }

  .text-block, .heading {
    text-align: center;
  }

  .image {
    width: 73%;
  }

  .div-block-5 {
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .div-block {
    grid-row-gap: 20px;
    grid-template-columns: .9fr;
    margin-top: 120px;
  }

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

  .heading {
    font-size: 35px;
    line-height: 40px;
  }

  .image {
    width: 50%;
  }
}

@media screen and (max-width: 479px) {
  .section {
    align-items: center;
  }

  .div-block {
    grid-row-gap: 12px;
    grid-template-columns: 1.15fr;
  }

  .div-block-2 {
    margin-top: 140px;
  }

  .heading {
    font-size: 32px;
    line-height: 40px;
  }

  .image {
    width: 62%;
  }
}


