/* squares wrapper */

.squares-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.squares-wrapper > .squares {
    width : 1000px;
}

.squares-wrapper > .squares > .square {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: -4px;
}

.square > .img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.square > .square-text-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 42px;
}

.square > .square-text-wrapper h1 {
    color: #cea135;
}

.square > .square-text-wrapper a {
    color: #000;
}

.square > .square-text-wrapper h1::after {
    font-family: "Font Awesome 5 free";
    content: " \f0c1";
    font-weight: 900;
}

/* end squares wrapper */
