/*--------------------------------------------------------------
# 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;
}


/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/

.js .slider-single>div:nth-child(1n+2) {
    display: none
}

.js .slider-single.slick-initialized>div:nth-child(1n+2) {
    display: block
}

.slick-slide {
    cursor: pointer;
}

.slider-single img {
    max-height: 500px;
    padding-left: 40px;
    padding-right: 50px;
}

.about-us p {
    font-size: 17px;
}

.slick-arrow:before {
    color: black;
    font-size: 20px;
}

.slick-prev {
    left: -30px;
}

.slick-next {
    right: -30px;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}


/*--------------------------------------------------------------
# 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;
    }

}