html {
  box-sizing: border-box;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
  
body {
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #000;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
  
p {
  margin: 0;
  padding: 0;
}

a {
  color: #bdbdbd;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all ease-in-out 1s;
}

a:hover {
  color: #4f4f4f;
  border-color: #4f4f4f;
}

.page-info-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 102px;
}

.main-content {
  width: 92%;
  margin: 0 auto;
  padding-top: 71px;
}

.main-content h1 {
  font-family: 'PT Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -1px;
  margin: 0px 0 38px;
}

.main-content h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  margin: 0;
}

.main-content p {
  font-size: 14px;
  line-height: 21px;
  margin-top: 10px;
}

.images-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 40%);
  justify-content: space-between;
}

.image-wrapper {
  margin: 0;
  position: relative;
}

.image-wrapper:first-child {
  margin-top: -50px;
}

.image-wrapper:nth-child(4),
.image-wrapper:nth-child(6) {
  margin-top: 50px;
}

.image-wrapper img {
  width: 100%;
}

figcaption {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.small {
  font-family: 'PT Serif', serif;
  font-size: 10px;
  line-height: 13px;
  text-transform: uppercase;
  transform: rotate(90deg);
  position: absolute;
}

.small.img1 {
  right: -52px;
  top: 36px;
}

.small.img2 {
  right: -44px;
  top: 30px;
}

.small.img3 {
  right: -36px;
  top: 22px;
}

.small.img4 {
  right: -41px;
  top: 27px;
}

.small.img5 {
  right: -37px;
  top: 23px;
}

.small.img6 {
  right: -41px;
  top: 26px;
}

.page-footer {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  line-height: 17px;
  color: #bdbdbd;
  text-align: center;
  margin-top: 110px;
  padding-bottom: 24px;
}
  
.page-footer p {
  font-weight: 500;
}
  
.page-footer span {
  font-weight: 600;
}

@media (min-width: 680px) {

  .images-wrapper {
      grid-template-columns: repeat(3, 25%);
  }

  .image-wrapper:nth-child(2) {
    margin-top: 50px;
  }

  .image-wrapper:nth-child(3) {
    margin-top: -50px;
  }

  .image-wrapper:nth-child(4) {
    margin-top: 20px;
  }

  .image-wrapper:nth-child(5) {
    margin-top: 120px;
  }

  .image-wrapper:nth-child(6) {
    margin-top: 20px;
  }
}

@media (min-width: 960px) {

  .page-info-wrapper {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 146px;
  }

  .page-info {
    width: 47%;
  }

  .main-content {
    width: 64%;
    margin: 0 auto;
    padding-top: 71px;
  }

  .main-content p {
    font-size: 18px;
    line-height: 27px;
  }

  figcaption {
    font-size: 18px;
    line-height: 27px;
  }

  .small {
    font-size: 12px;
    line-height: 16px;
  }

  .small.img1 {
    right: -60px;
    top: 42px;
  }
  
  .small.img2 {
    right: -52px;
    top: 34px;
  }
  
  .small.img3 {
    right: -44px;
    top: 27px;
  }
  
  .small.img4 {
    right: -50px;
    top: 32px;
  }
  
  .small.img5 {
    right: -45px;
    top: 27px;
  }
  
  .small.img6 {
    right: -50px;
    top: 30px;
  }
}





