.content{
    padding: 0 10%;
    margin-top: 100px;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.text-box{
    padding: 10%;
}

.text-box h2{
    margin: 0;
    margin-bottom: 30px;
}

.text-box p{
    padding: 0;
}

.short-line{
    height: 5px;
    width: 50px;
    margin-bottom: 30px;
    background: white;
}

.gallery{
    padding: 0 15%;
    color: white;
}

.gallery-row{
    height: 350px;
}

.double{
    height: 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#img03{
    background-image: url('../img/gallery/formation3.jpg');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* TABLET */
@media (max-width: 980px) {
    .content{
        grid-template-columns: 1fr;
    }
}

/* PHONE*/
@media (max-width: 630px) {
    .content{
        padding: 0 10%;
        margin-bottom: 0;
    }
}