@media only screen and (max-width: 850px) {
  .section {
    flex-direction: column;
  }
}

@media only screen and (max-width: 750px) {
  .image {
    width: 100% !important;
  }
}

.section {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;

  &.secondary {
    background-color: #f2f2f2;
  }

  h4 {
    border-bottom: 1px solid #fcd35d;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fcd35d;
  }

  h5 {
    margin: 0;
    font-size: 30px;
    text-transform: uppercase;
  }

  p {
    width: 300px;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
  }
}

.section-images {
  display: flex;
  flex-direction: column;

  > img:not(:first-child) {
    margin-top: 30px;
  }
}

.image {
  width: 400px;
}

.section-text {
  margin-left: 30px;
}

.section-button {
  border: none;
  padding: 9px 15px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #fcd35d;
  color: white;
  cursor: pointer;

  &:hover {
    background-color: #f8c226;
  }
}
