body {
  background: #1d2c41;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.container {
  padding: 1rem 3rem;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

a {
  color: #1d2c41;
  text-decoration: none;
}

.header,
.content,
.images,
.footer {
  width: 100%;
  position: relative;
}

.images {
  margin: 2rem 0;
}

/* Header */
.logo {
  max-width: 120px;
}

/* Content */
.content {
  color: #FFF;
}

.content__col-large,
.content__col-small {
  width: 100%;
}

.content__col-large {
  margin-bottom: 1rem;
}

.content__heading {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: .75rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

.content__light {
  color: #b2b7be;
}

/* Images */
.images__image-container {
  position: relative;
  overflow: hidden;
}

.images__image-container:hover .images__image {
  transform: scale(1.02);
}

.images__link:hover .images__icon {
  transform: translateX(.25rem);
}

.images__image-container:before {
  content: "";
  display: block;
  padding-top: 66%;
}

.images__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.images__content {
  background: #FFF;
  padding: 1rem;
  color: #1d2c41;
  fill: #1d2c41;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.images__logo {
  max-height: 30px;
}

.images__icon {
  width: .5rem;
  height: .5rem;
  transition: all .3s ease-in-out;
}

.images__link-container {
  font-size: 11px;
}

/* Footer */
.footer {
  color: #77808d;
  font-size: 14px;
  text-align: center;
}

.footer__icon {
  display: none;
}

.footer__content {
  display: flex;
  flex-direction: column;
}

@media all and (min-width: 500px) {
  .images__link-container {
    font-size: 14px;
  }
}

@media all and (min-width: 768px) {
  .container {
    padding: 1rem 5rem;
  }

  .images {
    margin: 3rem 0;
  }

  .flex-container {
    justify-content: space-between;
  }

  .content__col-large,
  .content__col-small {
    width: calc(50% - 1rem);
    overflow: hidden;
  }

  /* Content */
  .content__heading {
    margin-top: 1rem;
    max-width: 300px;
  }

  .content__col-large-width p {
    max-width: 300px;
  }

  /* Footer */
  .footer__icon {
    display: inline-block;
  }
  
  .footer__content {
    display: block;
  }
}

@media all and (min-width: 1280px) {
  .container {
    max-width: 1400px;
    padding: 1rem;
  }

  .header__content {
    padding: 0 5rem;
  }

  /* Content */
  .content {
    margin-top: 2rem;
  }

  .content__col-large {
    width: calc(60% - .5rem);
    margin-bottom: 0;
  }

  .content__col-small {
    width: calc(40% - .5rem);
  }

  .content__col-large-width {
    max-width: 410px;
    margin: auto;
  }

  .content__heading {
    font-size: 50px;
    max-width: unset;
  }

  .content__col-large-width p {
    max-width: unset;
  }

  /* Images */
  .images__image-container {
    height: calc(100% - 77px);
  }
  
  .images__image-container:before {
    content: "";
    display: block;
    padding-top: 43.78%;
  }

  .images__content {
    padding: 1rem 2rem 1rem;
  }

  .images__logo {
    max-height: 45px;
  }

  .images__icon {
    margin-left: .5rem;
    margin-bottom: -1px;
  }

  .images__link-container {
    font-size: 14px;
    font-weight: 500;
  }

  .images__icon {
    width: .75rem;
    height: .75rem;
  }

  /* Footer */
  .footer {
    margin-top: 2rem;
  }
}