/* Grid Section */

@font-face {
    font-family: 'Futura';
    src: url('../fonts/futura/Futura-Bold_font.ttf') format('truetype');
}

body {
    --blue: #0069A4;
    --green: #009464;
    --purple: #9F2379;
    --grey: #f3f2ef;
}

/* Media Content */

.grey-bg {
    background-color: var(--grey);
}

.media-content h2 {
    color: var(--blue);
    text-transform: uppercase;
}

.media-content .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.media-content .image {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-self: flex-end;
}

.media-content .image img {
    transition: all 0.3s ease;
    margin: 0 auto;
}

@media screen and (min-width: 1200px) {
    .media-content .image img {
        max-width: 75%;
    }
}

@media screen and (max-width: 767px) {
    .media-content .content {
        padding-bottom: 0;
    }
    .media-content .image img {
        max-width: 300px;
        display: flex;
        margin: 0 auto;
    }
}

/* List Content */

.list-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.list-content h2 {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blue);
}

.list-content .content h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.list-content .content ol li::marker {
    font-size: 40px;
    font-weight: 700;
    color: var(--blue);
    margin-top: 20px;
}