@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none !important;
    color: #03537e;
}

ul {
    padding-left: 0;
}

ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/*-------------------------------navbar----------------------------------*/

header {
    width: 100%;
    /* background-color: #ffffff; */
    position: fixed;
    transition: background-color 0.3s ease;
    z-index: 8;
    transition: all 2s ease;
}

header.scrolled {
    background-color: #ffffff;
    color: #03537e;
}
header nav{
    display: none;
}

header.active{
    background-color: #ffffff;
    color: #03537e;
}

header nav.active {
    width: 100%;
    transition: all 2s ease;
    display: inline;
}

.container-nav.active{
    width: 100%;
    height: 70vh;
    padding: 5rem 0 5rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.nav-mobil{
    width: 100%;
    height: 7vh;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1% 0;
}

.nav-mobil img{
        width: 4rem;
    }

.nav-mobil i{
        font-size: 2rem;
        color: #03537e;
        margin-right: 3%;
        transition: color 0.3s ease;
    }

header nav ul {
    width: 48%;
    /* height: 8vh; */
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 2s ease;
}

header nav ul li {
    color: #292929;
    font-size: 1.6rem;
    transition: border-bottom 0.3s ease;
}

header nav ul li:hover {
    padding-bottom: 0.2rem;
    border-bottom: 3px solid #87A53A;
}

.btn_cotizacion_nav{
    border: #87A53A 1px solid;
    padding: 1rem 2rem;
    border-radius: 1.7rem;
    font-size: 1.6rem;
    color: #87A53A;
}
#burger{
    color: #03537e;
}
/*---------------------------------Principal--------------------------------------------------------*/
.principal {
    position: relative;
    width: 100%;
    height: auto;
}

/* Reglas para las imágenes que no tienen la clase 'principal_slogan' */
.principal img:not(.principal_slogan) {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 1.5s ease-in-out;
}

.principal img.top {
    opacity: 1;
}

/* Otras imágenes que no son 'top' ni 'principal_slogan' tienen opacidad 0 */
.principal img:not(.top):not(.principal_slogan) {
    opacity: 0;
}

.principal_container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Reglas específicas para la imagen con clase 'principal_slogan' */
.principal_slogan {
    width: 70%;
    margin-top: 10%;
    position: static;
    opacity: 1 !important;
    z-index: 1;
}

.principal-text{
    opacity: 1;
    z-index: 1;
    margin-top: 1%;
    font-size: 1.2rem;
    color: #ffffff;
    font-family: 'Poppins';
}

.principal-text span{
        color: #87A53A;
    }

.principal_scores{
    width: 62%;
    display: flex;
    margin-top: 2%;
    padding-bottom: 4%;
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 1;
    z-index: 1;
    justify-content: space-around;
}

.principal_scores p{
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #87A53A;
    }

.principal_scores p span{
            color: #ffffff;
        }


/*-------------------------------------Servicios--------------------------------*/
.servicios{
    position: relative;
    background: white;
    width: 100%;
    height: 80vh;
}

.servicio--guante,
.servicio--cepillo{
    position: absolute;
    width: 10rem;
    display: none;
}

.servicio--cepillo{
    right: 1rem;
    width: 7rem;
}

.servico_tarjetas-container{
    width: 100%;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.servico_tarjetas-container .title-services{
    color: #2B7732;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.servico_tarjetas-container p{
    font-size: 1.4rem;
}

.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 8%;
}

.scroll-button {
    background-color: transparent;
    color: #87A53A;
    font-size: 4rem;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 3;
}

.prev {
    left: 4rem;
}

.next {
    right: 4rem;
}

.services-container-cards {
    width: 82%;
    display: flex;
    align-items: center;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    gap: 3rem;
}
.service_card{
    border-radius: 0.8rem;
    box-shadow: 1px 2px 2px 3px rgba(0, 0, 0, 0.152);
    padding: 0.5rem;
}

.service_card-img{
    width: 5rem;
    height: 5rem;
    background-color: #e9e9e9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.service_card-img img{
        width: 70%;
        height: 70%;
    }

.service_card-content h2{
    margin-top: 2rem;
    font-size: 1.6rem;
}

.service_card-content  p{
    margin-top: 0.5rem;
    font-size: 1.4rem;
}

.service_card-content p:nth-of-type(2){
    color: #87A53A;
    font-weight: 700;
}

.service--button{
    width: 100%;
    display: flex;
    justify-content: end;
    color: #87A53A;
    font-size: 3rem;
    font-weight: 500;
    margin-top: 3rem;
}

.galelery-item-1,
.galelery-item-7 {
    display: none !important;
}

.galelery-item-2,
.galelery-item-6 {
    display: none !important;
}

.galelery-item-3,
.galelery-item-5 {
    display: none !important;
}

.galelery-item-8 {
    display: none !important;
}

.galelery-item-4 {
    width: 22rem;
    height: 26rem;
}
.service_card-content{
    height: 12rem;
}

.service-hoja1,
.service-hoja2{
    position: absolute;
    width: 5rem;
    bottom: 1rem;
}

.service-hoja2{
    right: 0;
}
/*-----------------------------información-----------------*/
.section-menu {
    display: flex;
}

.menu-info {
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
}

.menu-info .item {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 30px;
        text-align: center;
    }

.section-info {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/img/back2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-info div.active {
    color: #87A53A !important;
    font-weight: 600;
}

#mision,
#vision,
#nosotros {
    border-right: #87A53A 2px solid;
    cursor: pointer;
    color: #ffffff;
}

#servicio {
    cursor: pointer;
    color: #ffffff;
    margin-top: 0.5rem;
}

.container-info {
    width: 100%;
    height: auto;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
}

.text-info {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-info h2 {
        color: #80AF35;
        margin-top: 5rem;
        font-size: 5rem;
        font-weight: 300;
        text-align: start;
        width: 90%;
        line-height: 1.2;
    }
.text-info p {
        padding: 2rem 0;
        width: 90%;
        text-align: justify;
        font-size: 1.6rem;
        color: #ffffff;
    }

.video-info {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-info video {
        width: 100%;
    }

.color-info {
    color: #80AF35;
    font-weight: 600;
}

/*------------mapa-------------*/
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    height: 90vh;
}

.image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.content {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.content h2 {
    font-size: 2.4rem;
    color: #2B7732;
    font-family: 'Poppins';
}

.content h3 {
    font-size: 2.5rem;
    color: white;
    -webkit-text-stroke: 0.14rem #2B7732;
    font-family: 'Poppins';
}

.content p {
    font-size: 1.6rem;
    line-height: 1.5;
}

.content p span {
    color: #2B7732;
    font-weight: bold;
}

/* Media Queries para Responsividad */
.container {
    text-align: center;
}
.image,
.content {
    max-width: 100%;
    flex: none;
}


.section-clients {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/img/clientes.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.container-clients {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.clients-carousel {
    width: 70%;
    box-shadow: 10px 14px 10px rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.card-client {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.info-client-wrap {
    font-size: 1.6rem;
}

.text-client {
    margin-bottom: 2rem;
}

.avatar-client img{
        width: 8rem;
        height: 8rem;
        border-radius: 50%;
}

.logo-client {
    width: 6rem;
    height: auto;
}

.text-second-client{
    display: flex;
    justify-content: space-between;
    width: 90%;
}

.arrow-client {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 3rem;
    color: #e9e9e9;
}

.clients-carousel.slide-left {
    transform: translateX(-80%);
    opacity: 0;
}

.clients-carousel.slide-right {
    transform: translateX(80%);
    opacity: 0;
}

.clients-carousel.active {
    transform: translateX(0);
    opacity: 1;
}

/*------------------------------- Contacto ------------------------------*/

.section-contact {
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.contacto-container-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}

.contact-info .info-container-text{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
.contact-info h3 {
        font-size: 2rem;
        color: #2C7733;
        font-weight: 500;
        margin-bottom: 2rem;
    }
.contact-info p {
        font-size: 2rem;
        margin-bottom: 3rem;
        font-weight: 400;
        width: 80%;
    }

.contact-boton-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.button-cotizar-second,
.button-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24rem;
    height: 5rem;
    border-radius: 1rem;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
}

.button-contact{
    border: 3px solid #2C7733;
}

.button-cotizar-second{
    border: 3px solid #28373c;
    background: none;
}
.button-cotizar-second:hover,
.button-contact:hover{
    color: white;
    translate: 10px;
    transition: all 1s ease;
    z-index: 7;
}

.button-cotizar-second:hover{
    background-color: #28373c;
}
.button-contact:hover{
    background-color: #2C7733;
}

.cubeta{
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
/*------------------------------- Modal de contacto ------------------------------*/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 7;
}

.modal-content {
    background-color: white;
    width: 90%;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.close-modal-btn {
    width: 20%;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: end;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-content h2{
    font-size: 2.5rem;
    margin-bottom: 5%;
    font-weight: 500;
    display: flex;
    align-items: center;
    letter-spacing: .1em;
    gap: 1rem;
    font-family: 'Poppins', sans-serif;
}

.modal-content h2 i{
        font-size: 2.5rem;
        color: #87A53A;
        margin-top: 1%;
    }

.modal-info {
    flex: 1;
}

.modal-info h3 {
    margin-bottom: 0.5rem;
    color: #87A53A;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.7rem;
}

.modal-info p {
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    font-family: 'Poppins', sans-serif;
}

.modal-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-form input,
.modal-form textarea {
    width: 90%;
    padding: 0.8rem;
    font-size: 1.4rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.modal-form textarea {
    resize: none;
    height: 10vh;
}

.submit-btn {
    width: 30%;
    padding: 1rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

/*------------------------------- Footer ------------------------------*/

.footer-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #28373c;
    color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-items{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.footer-logo img {
    width: 7rem;
    margin-bottom: 2rem;
}

.footer-contacts .contacts-titles {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.footer-contacts p{
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
}

.footer-info {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.footer-info p {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

.fa-facebook-f,
.fa-x-twitter {
    font-size: 2.5rem;
    color: white;
    margin-right: 1rem;
    cursor: pointer;
    font-weight: 300;
}

.fa-linkedin-in,
.fa-instagram {
    font-size: 3rem;
    color: white;
    margin-right: 1rem;
    cursor: pointer;
    font-weight: 100;
}

.footer_contacts-logo{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.footer_info-redes{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media all and (min-width:768px) {
    /*------Navbar----*/
    .nav-mobil img{
            width: 5rem;
    }
    /*----Pincipal----*/
    .principal_slogan {
        width: 60%;
    }
    .principal-text {
        font-size: 1.8rem;
    }
    .principal_scores{
        font-size: 2rem;
    }
    .servicio--guante,
    .servicio--cepillo{
        display: inline;
    }
    /*----servicios-----*/
    .carousel-wrapper {
        margin-top: 5%;
    }
    .servico_tarjetas-container .title-services{
        font-size: 4rem;
    }
    .servico_tarjetas-container .subtitle-services{
        font-size: 1.6rem;
    }
    .galelery-item-2,
    .galelery-item-6 {
        display: inline !important;
        width: 18rem;
        height: 24rem;
    }
    
    .galelery-item-2 .service_card-img,
    .galelery-item-6 .service_card-img{
            width: 4rem;
            height: 4rem;
        }
    
    .galelery-item-2 h2,
    .galelery-item-6 h2{
            font-size: 1.4rem;
        }
    
    .galelery-item-2 p,
    .galelery-item-6 p{
            font-size: 1.2rem;
        }
    

    .galelery-item-4 {
        width: 20rem;
        height: 26rem;
    }
    .service_card-content{
        height: 11rem;
    }

    .service_card-content p:nth-of-type(2) {
        margin-top: 1.5rem;
    }

    /*informacion*/
    .menu-info{
        margin-top: 2rem;
    }
    #mision,
    #vision,
    #nosotros {
        height: 100%;
    }

    #servicio{
        height: 20px;
        margin-top: 0;
    }
    .container-info,
    .menu-info {
        width: 80%;
    }

    .text-info p{
            font-size: 1.8rem;
            margin-bottom: 5%;
    }

    .video-info {
        width: 100%;
    }
    
    .video-info video {
            width: 90%;
        }

    .image,
    .content{
        flex: 1;
    }
    .container{
        flex-direction: row-reverse;
        height: 60vh;
    }

    .content h2,
    .content h3{
        font-size: 3rem;
        text-align: end;
    }

    .content p {
        font-size: 1.8rem;
        text-align: end;
        margin-left: 30%;
        margin-bottom: 5rem;
    }
    /*-----------------------------------Modal-------------------------------*/
    .modal-body{
        flex-direction: row;
    }
    /*------------------------------------Footer-------------------------------*/
    .footer-items{ 
        width: 90%;
        flex-direction: row;
    }

    .footer-info {
        margin-bottom: 0rem;
        margin-left: 0rem;
    }
    .footer_contacts-logo{
        width: 40%;
    }    
    .footer_info-redes {
        width: 50%
    }
}

@media all and (min-width:1024px) {
    /*navbar*/
    header{
        /*position: relative;*/
        padding-top: 0.5rem;
        display: flex;
        justify-content: center;
        background-color: #ffffff;
        height: 10vh;
        color: #03537e;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }      
    header nav {
        width: 90%;
        display: flex;
        height: 8vh;
        align-items: center;
    }
    
    header nav img{
            width: 5rem;
        }
        
    header nav ul{
        flex-direction: row;
    }
    .nav-mobil{
        display: none;
    }
    

    /*Principal*/
    .principal-text {
        font-size: 2.4rem;
    }
    .principal_scores {
        margin-top: 4%;
    }

    .principal_scores p{
        font-size: 2.5rem;
    }
    
    .principal_scores p span{
            font-size: 2rem;
        }

    /*----------------servicios------------*/
    .servicios{
        height: 90vh;
      }

    .servicio--guante{
        width: 15rem;
    }

    .servicio--cepillo{
        right: 5rem;
        width: 10rem;
    }

    .services-container-cards {
        width: 75%;
        height: 27rem;
        gap: 6rem;
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
      -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
    }

    .service-hoja1,
    .service-hoja2{
        width: 6rem;
    }

    .servico_tarjetas-container .title-services{
        margin-bottom: 3rem;
    }
    /*informacion*/
    .container-info{
        height: 70vh;
        flex-direction: row;
    }
    .menu-info{
        font-size: 2rem;
    }
    
    .text-info h2 {
            width: 81%;
            margin-right: 9%
        }
    .text-info p {
            font-size: 1.8rem;
            margin-bottom: 15%;
        }
    
    .video-info video {
            width: 100%;
    }

    /*cobertura*/
    .cobertura{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .container{
        width: 85%;
    }
    .content h2,
    .content h3{
        font-size: 3.5rem;
        text-align: end;
        font-weight: 600;
    }
    .content h3{
        margin-bottom: 2rem;
    }
    .content p {
        margin-bottom: 5rem;
        margin-left: 45%;
    }

     /*-----------------------------------clientes-----------------------------*/

     .section-clients {
        height: 40vh;
    }
    .clients-carousel {
        width: 60%;
        height: 20vh;
    }
    .card-client{
        flex-direction: row;
    }

    .avatar-client img{
        margin-left: 5rem;
        margin-right: 5rem;
    }
    .logo-client {
        position: relative;
    }
    
    /*-----------------------------------Contacto-----------------------------*/
    .section-contact{
        flex-direction: row;
        justify-content: space-around;
        overflow: hidden;
    }

    .contacto-container-wrap{
        flex-direction: row;
    }

    .contact-info {
       width: 40%;
    }
    
    .contact-info .info-container-text{
        align-items: start;
        }
    
    .contact-info p {
            width: 100%;
        }
        

    .panalessuperiores {
        width: 50%;
        left: 53.5%;
        top: -10px;
    }
    .panalesinferiores {
        width: 50%;
        right: 54%;
        bottom: -10px;
    }
    /*modal*/
    .modal-content{
        width: 800px;
    }
}

@media all and (min-width:1200px) {
    /*Principal*/
    .principal-text {
        font-size: 2.7rem;
    }
    .principal_scores {
        margin-top: 7%;
        font-size: 2.5rem;
    }

    .principal_scores p{
        font-size: 3rem;
    }
    
    .principal_scores p span{
            font-size: 2.5rem;
        }
        /*servicios*/
    .servico_tarjetas-container{
        /*height: 84%;*/
    }
    .servicio--guante{
        width: 17rem;
    }

    .servicio--cepillo{
        width: 12rem;
    }

    .services-container-cards {
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
      -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
    }
    /*informacion*/
    .text-info {
        width: 65%;
    }
    
    .text-info p {
            font-size: 2rem;
        }
        
    .video-info video{
            width: 87%;
    }
    /*cobertura*/
    
    .container{
        width: 80%;
        height: 80vh;
    }
    .content h2,
    .content h3{
        font-size: 3.5rem;
    }
    .content p{
        font-size: 2rem;
        margin-left: 42%;
        margin-bottom: 7rem;
    }
    /*------------------------clientes-------------------------------*/
    .clients-carousel {
        width: 50%;
    }
    /*------------------------contacto-------------------------------*/
    
    .section-contact{
        flex-direction: row;
        justify-content: center;
    }
    
    .info-container-text p{
            width: 73%;
    }

    .contact-boton-container{
        width: 30%;
    }
}

@media all and (min-width:1300px) {
    /*Principal*/
    .principal-text {
        font-size: 3rem;
    }
    /*---servicos---*/
    .servico_tarjetas-container{
        height: 100%;
    }
    .services-container-cards {
        width: 90%;
        gap: 6rem;
        height: 33rem;
    }
    .galelery-item-1,
    .galelery-item-7{
        width: 20rem;
        height: 24rem;
        display: inline !important;
    }
    
    .galelery-item-1 .service_card-img,
    .galelery-item-7 .service_card-img{
            width: 3.8rem;
            height: 3.8rem;
        }
    
    .galelery-item-1 h2,
    .galelery-item-7 h2{
            font-size: 1.4rem;
        }
    
    .galelery-item-1 p,
    .galelery-item-7 p{
            font-size: 1.2rem;
        }
    
    

    .galelery-item-2,
    .galelery-item-6{
        width: 22rem;
        height: 25rem;
    }
    
    .galelery-item-2 h2,
    .galelery-item-6 h2{
            font-size: 1.6rem;
        }
    
    .galelery-item-2 p,
    .galelery-item-6 p{
            font-size: 1.4rem;
        }
    
    .galelery-item-4 {
        width: 25rem;
        height: 28rem;
    }
    
    .galelery-item-4 h2{
            font-size: 1.8rem;
        }
        
    .galelery-item-4  p{
            font-size: 1.6rem;
        }
    .galelery-item-4 .service_card-content{
            height: 14rem;
        }
        
    .service--button{
        font-size: 3rem;
    }
    /*----------info---------------*/
    .text-info h2{
            width: 70%;
            margin-right: 20%;
    }
    /*----------contacto---------------*/
    .info-container-text h3,
    .info-container-text p{
            font-size: 2.3rem;
    }
}

@media all and (min-width: 1400px) {
     /*Principal*/
    .principal-text {
        font-size: 3.3rem;
    }
    /*servicios*/
    .servicios {
        height: 98vh;
    }
    .servico_tarjetas-container .title-services{
        font-size: 5rem;
        font-weight: 600;
    }
    .servico_tarjetas-container .subtitle-services{
        font-size: 2rem;
    }
    .service-hoja1,
    .service-hoja2{
        width: 7rem;
    }
    /*-------info-video---------- */
    .container-info, .menu-info {
        width: 80%;
    }
    .text-info {
        width: 60%;
    }
    
    .text-info  h2{
            width: 60%;
            margin-right: 30%;
            font-size: 6rem;
        }
        
    .text-info p{
            font-size: 2rem;
            width: 70%;
            margin-right: 20%;
        }
        
    .video-info {
        width: 60%;
    }
    .video-info video {
            width: 90%;
        }
    /*cobertura*/
    .content h2,
    .content h3{
        font-size: 4.5rem;
    }
    .content p{
        margin-bottom: 11rem;
        font-size: 2.5rem;
    }
    /*-------------contacto-------------*/
    .info-container-text p{
            width: 70%;
    }
    /*footer*/

    .footer-items {
        width: 100%;
        justify-content: center;
    }
    .footer_contacts-logo{
        width: 35%;
    }  
    
}

@media all and (min-width: 1500px) {
    /*Principal*/
    .principal-text {
        font-size: 3.5rem;
    }

    /*informacion*/
    .section-info{
        height: 85vh;
        background-position: center top;
    }
    .menu-info{
        margin-top: 0;
    }
}

@media all and (min-width: 1600px) {
    /*Principal*/
    .principal-text {
        font-size: 3.7rem;
    }
    /*servicios*/
    .servicio--guante{
        width: 20rem;
    }

    .servicio--cepillo{
        width: 15rem;
    }

    .carousel-wrapper {
        margin-top: 2%;
    }

    .services-container-cards {
        width: 70%;
    }
    /*-----------info----------*/
    #mision,
    #vision,
    #nosotros,
    #servicio {
        height: 33px;
    }
    .text-info h2{
            width: 40%;
            margin-right: 50%;
    }
    .video-info video{
            width: 100%;
    }
    /*-------------Contacto------------*/
    .contacto-container-wrap {
        width: 80%;
        margin-left: 10%;
    }
    .info-container-text h3,
    .info-container-text p{
            font-size: 2.5rem;
    }
}

@media all and (min-width: 1800px){
    /*Principal*/
    .principal-text {
        font-size: 4.2rem;
    }
    /*cobertura*/
    .content p{
        margin-bottom: 17rem;
        font-size: 3rem;
    }
}

/* .section-contact{
    background-image: url('../assets/img/cubeta-r.png');
  background-repeat: no-repeat;
  background-position: top right;
} */


