.content {
    font-family: "Cairo", sans-serif;
}
.content p,li{
    font-size: 20px;
    color: #5A5A5A;
}

.content img {
    width: 100px;
    height: auto;
}

.content ul {
    list-style-position: outside;
}

.content li::marker {
    content: "◆";
    padding-right: 15px;
    color: black;
}

.content li {
    padding-left: 15px;
    margin-bottom: 20px;
}


/*--------------------------------------------------------------
# MEDIA QUERIES
--------------------------------------------------------------*/

/* Small devices (portrait phones, less than 576px) */
@media only screen and (max-width: 576px) {
    .content {
        margin-top: -480px;
    }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media only screen and (min-width: 576px) {
    .content {
        margin-top: -350px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .content {
        margin-top: -270px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .content {
        margin-top: -60px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .content {
        margin-top: 0;
    }

}
