* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
}

.header {
    background: url(../img/Carrusel-mision.jpg) no-repeat center center;
    background-size: cover;
    background-position: center 16%;
}

.general-content {
    width: 100%;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.circle-img {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    background-color: #5aa07a;
    margin-top: 50px;
}

.text-purple {
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #77225F;
}

.list li {
    margin-top: 10px;
}


/* Small devices such as large phones (640px and up) */
@media only screen and (max-width: 640px) {
}

/* Medium devices such as tablets (768px and up) */
@media only screen and (max-width: 768px) {
    
}

/* Large devices such as laptops (1024px and up) */
@media only screen and (max-width: 1024px) {
    .content{
        width: 90%;
    }
}

/* Largest devices such as desktops (1280px and up) */
@media only screen and (max-width: 1280px) {
}