.header-video {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header-video__content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.videos {
  padding: 10rem;
  background-color: #EFEAE3;
}

.videos__section {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 10rem;
  grid-row-gap: 5rem;
  justify-content: center;
  padding-top: 4rem;
}

.videos__box {
    position: relative;
}

.videos__box img {
    width: 100%;
}

.videos__section h2 {
  margin-top: 1em;
}

/* PLAY BUTTON CSS, NEEDS FIXING */
.videos__section .play-button {
}

.videos__box .play-button {
    position: absolute;
    width: 20%;
    height: auto;
    top: 30px;
    left: 30px;
}

@media only screen and (max-width: 1200px) {
    .videos__box .play-button {
        top: 15px;
        left: 15px;
    }
}

@media only screen and (max-width: 760px) {
    .header-video {
        background-position: 75% 80%;
        background-size: auto;
    }

    .header-video__content {
        transform: translate(-50%, -30%);
    }

    .header-video__content .play-button {
        margin-bottom: 4rem;
        width: 100px;
        height: 100px;
    }

    .header-video__content h1 {
        line-height: 6.5rem;
    }

    .header-video__content p {
        font-size: 3.6rem;
        line-height: 4rem;
    }

    .videos__section {
        grid-template-columns: 1fr;
    }

    .videos__box .play-button {
        top: 30px;
        left: 30px;
        width: 60px;
        height: 60px;
    }

    .videos {
        padding: 4rem;
    }

    .videos__header {
        font-size: 2.6rem;
        line-height: 3.4rem;
    }

    .videos__box h2 {
        font-size: 4rem;
    }

    .videos__box p {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 500px) {
    .play-button {
        height: 60px;
        width: 60px;
    }
}

@media only screen and (max-width: 360px) {
    .header-video__content h1 {
        font-size: 6rem;
        line-height: 5.5rem;
    }

    .header-video__content p {
        font-size: 3em;
        line-height: 3.5rem;
    }

    .videos__header {
        font-size: 2.4rem;
        line-height: 3rem;
    }

    .videos__box h2 {
        font-size: 3.4rem;
    }

    .videos__box p {
        font-size: 1.8rem;
    }
}
