/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

.section .content h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section .content h3 {
    font-weight: 500;
    line-height: 32px;
    font-size: 24px;
}


.section .content p:last-child {
    margin-bottom: 0;
}

.container-margin-10 {
    margin-right: 10%;
    margin-left: 10%;
}

.rounded-image img {
    border-radius: 50%;
}

.rounded-image img:hover {
    transform: translateX(0) translateY(0) scaleX(0.9) scaleY(0.9) rotate(0deg) skewX(0deg) skewY(0deg);
    transition: all 0.4s ease-in-out 0s, visibility 0s;
}

.button-hover {
    padding: 10px;
    border-radius: 200px;
    background: #171557;
    color: white;
    display: inline-block;
    border: none;
    padding: 1rem 2rem;
    margin: 0;
    text-decoration: none;
}

.button-hover:hover {
    background: #FFFFFF;
    border: 1px solid #171557;
    transition: all 0.4s ease-in-out 0s, visibility 0s;
    color: #171557;
}

/*--------------------------------------------------------------
# Media queries
--------------------------------------------------------------*/


@media (max-width: 768px) {
    .section .content h2 {
        font-size: 20px;
    }

    .section .content p {
        font-size: 15px;
    }


    .title-invisible {
        display: none;
    }


}

@media (max-width: 1200px) {
    .button-hover {
        font-size: 13px;
    }

}