:root {
  --dust: #f7f6f5;
  --onyx: #2b2b27;
  --slate: #cdcdcb;
  --white: white;
  --black: black;
}

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

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

.section {
  width: 70vw;
  height: auto;
  min-height: 100vh;
  background-color: var(--dust);
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 6%;
  display: flex;
}

.image {
  height: auto;
  max-width: 45%;
  object-fit: cover;
  align-self: stretch;
}

.heading {
  color: var(--onyx);
  font-family: ivypresto-display, sans-serif;
  font-size: 5em;
  font-weight: 100;
  line-height: 1.2em;
}

.paragraph {
  width: 90%;
  color: var(--onyx);
  margin-top: 6%;
  margin-bottom: 75px;
  font-family: area-inktrap, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.9em;
}

.link {
  width: 100%;
  max-width: 100%;
  border-top: 1px solid var(--slate);
  border-bottom: 1px solid var(--slate);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 50px 35px;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.link:hover {
  border-top-color: var(--onyx);
  border-bottom-color: var(--onyx);
}

.image-2 {
  flex: 0 auto;
  order: -1;
  align-self: auto;
}

.image-3 {
  flex: 0 auto;
  order: 1;
}

.container-2 {
  width: 100%;
  max-width: none;
  border-top: 1px solid var(--slate);
  border-bottom: 1px none var(--slate);
}

.flex-block {
  height: auto;
  min-height: 100vh;
}

.body {
  height: 100%;
  background-color: var(--dust);
}

@media screen and (min-width: 1440px) {
  .section {
    width: 50vw;
  }

  .image {
    max-width: 50%;
  }

  .heading {
    max-width: 750px;
    font-size: 6em;
  }

  .paragraph {
    max-width: 700px;
    font-size: 1.3em;
  }

  .link {
    margin-top: -1px;
  }

  .container-3 {
    width: 100%;
    max-width: none;
    align-self: flex-start;
  }
}

@media screen and (max-width: 991px) {
  .section {
    width: 100vw;
    height: auto;
    min-height: auto;
    padding: 8%;
  }

  .image {
    width: 100%;
    height: 35vh;
    max-width: 100%;
  }

  .paragraph {
    margin-bottom: 100px;
  }

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

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

@media screen and (max-width: 767px) {
  .heading {
    font-size: 4.4em;
  }

  .paragraph {
    width: 100%;
    margin-bottom: 75px;
  }
}

@media screen and (max-width: 479px) {
  .heading {
    font-size: 3.4em;
  }

  .paragraph {
    margin-top: 13%;
    font-size: 1.1em;
    line-height: 1.8em;
  }

  .link {
    padding-left: 25px;
    padding-right: 25px;
  }

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


