@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=VT323&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #f2f2f2;
}

h2 {
    color: #FFF;
}

h2.site_title {
    text-align: center;
    margin: 50px 0;
    font-weight: bold;
    color: #3E3E3E;
}

.text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
}

p.subt_slide {
    width: 570px;
    color: #FFF;
    font-size: 16px;
    margin: 25px 0 60px;
}

span.blue_text {
    color: #59BCC3;
    text-shadow: none;
}

.card_container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
}

.content_left h2 {
    line-height: 1.3;
}

.index_slider {
    width: 100%;
    height: 95vh;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #3E3E3E;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-slide img.swiper-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: -1;
    opacity: .5;
}

.content_over_slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content_index_image {
    width: 60%;
    height: auto;
    pointer-events: none;
}

.img_filter {
    filter: brightness(30%);
}

a.button_slide {
    font-weight: normal !important;
    margin-top: 20px;
}

/* a.button_slide {
    padding: 16px 32px;
    background: #13CA3C;
    color: #FFF;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
}

a.button_slide:hover {
    background: #45B854;
} */



.index_slider .swiper-button-next, .index_slider .swiper-button-prev {
    color: #59BCC3 !important; 
    margin: 50px;
    transition: .3s ease;
}

.index_slider .swiper-button-next:hover, .index_slider .swiper-button-prev:hover {
    color: white !important;
    transform: scale(1.5);
}


.index_slider .swiper-button-next::after, .index_slider .swiper-button-prev::after {
    font-size: 25px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background-color: #59BCC3 !important;
}

/* ESTILOS SECCIÓN CALCULA TU PLANTA */

.separator {
    margin: 130px 0 70px;
    background-color: #3E3E3E;
    padding: 40px 60px;
    display: flex;  
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 0px 60px rgba(0, 0, 0, .2);
}

.separator p {
    font-size: 26px;
    color: white;
    max-width: 580px;
    margin: 0;
}

.separator p span {
    color: #59BCC3;
    font-weight: bold;
}

.separator a, a.button_slide { 
    padding: 20px 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    background-color: #59BCC3;
    border: 1px solid #59BCC3;
    border-radius: 8px;
    transition: .2s ease;
}

.separator a:hover, a.button_slide:hover {
    color: #59BCC3;
    background-color: white;
}



/* Inicio de Responsive */

@media (max-width: 1200px) {

}

@media (max-width: 952px) {
    .separator {
        padding: 40px 25px;
    }

    .content_over_slide {
        flex-direction: column-reverse;
    }
    .content_over_slide .content_left {
        width: 100vw;
        text-align: center;
        padding: 0 2rem;
        margin-bottom: 30px;
    }
    .content_over_slide .content_left .subt_slide {
        width: 85%;
        text-align: center;
        margin: auto;
        margin-bottom: 50px;
        margin-top: 30px;
    }
    .content_over_slide .content_index_image {
        margin-top: 50px;
        width: 30% !important;
    }

}

@media (max-width: 858px) {
    .separator {
        flex-direction: column;
        text-align: center;
    }

    .separator a {
        margin-top: 10px;
        width: 100%;
    }

}

@media (max-width: 576px) {
    .content_over_slide .content_index_image {
        display: none;
    }
}