/* Estilos para el banner */

.banner_button {
    position: absolute!important;
    right: 10%;
    bottom: 30%;
}

.banner_button div a{
    border-radius: 12px!important;
    font-size: 18px!important;
    padding: 5px 20px!important;
    color: #EC1C24!important;
}

/* Estilos para la sección welcome */

.Welcome__content {
    background-image: url("../images/background_1.png");
    background-color: #ffffff;
    background-size: 100%;
    background-repeat: no-repeat;
    height: 100%;
}

.Welcome__content_image, .Welcome__content_text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
}

.Welcome__content_image img {
    max-height: 550px;
    margin-top: -10%;
}

.Welcome__content_text {
    padding: 50px 70px 100px 0px;
}

.Welcome__content_text h2{
    color: #666666;
    margin: 40px 0px;
    font-size: 65px;
}

.Welcome__content_text p {
    color: #666666;
    text-align: center;
    max-width: 700px;
}

.Welcome2__content_text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.Welcome2__content_title {
    color: #ffffff;
    font-family: 'MonserratMedium';
    margin: 0;
    padding: 0;
}

.Welcome2__content_subtitle {
    color: #ffffff;
    font-family: 'MonserratBlack';
    margin: 0;
    padding: 0;
    line-height: 0.5;
}

.Welcome2__content_arrow {
    position: absolute;
    bottom: 20px;
}

/* Estilos para la sección services */

.Services__content {
    background-image: url("../images/background_3.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
}

.Services__content_cards {
    margin: 70px 35px 35px 25px;
}

.Services__content_card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.Services__card_title {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c2181e;
    color: #ffffff;
    border-radius: 15px;
    height: 55px;
    width: 100%;
    max-width: 180px;
}

.Services__card_text {
    text-align: center;
    font-size: 12px;
    color: #666666;
    width: 100%;
    max-width: 180px;
}

.Services__card_title_big {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    background-color: #c2181e;
    color: #ffffff;
    border-radius: 15px;
    height: 55px;
    width: 100%;
    max-width: 500px;
}

.button_more {
    background-color: transparent;
    border-radius: 10px;
    font-family: 'MonserratRegular';
    font-size: 10px;
    width: 70px;
    height: 25px;
    border: 1px solid #ec1c24;
}

.button_more:hover {
    background-color: #ec1c24;
}

.button_more:hover a{
    color: #ffffff;
}

/* Media Queries */

@media (max-width: 780px) {
    .banner_button {
        max-width: 100px;
        right: 5%;
        bottom: 20%;
    }
    .banner_button div a{
        font-size: 12px!important;
    }
    .Welcome__content, .Services__content {
        background-size: cover;
    }
    .Welcome__content_image {
        display: none;
    }
    .Welcome__content_text h2 {
        font-size: 24px;
    }
    .Welcome__content_text {
        padding: 10px 0px;
    }
    .Services__content {
        background-size: cover;
    }
    .Services__content_card {
        margin: 0px 0px 50px 0px;
    }
    .Services__card_title_big {
        font-size: 22px;
    }
}