*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root{
    --rojo-logo: #e33231;
}

body{
    min-height: 100vh;
}

header{
    background-image: linear-gradient(rgba(0,31,115,0.7),rgba(0,31,115,0.7)),url(img/img-header.png);
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*Nosotros*/

.linea{
    border: 2px solid red;
    width: 200px;
    margin-bottom: 20px;
}

.title-nosotros{
    color: white;
    font-weight: 300;
}

.title-nosotros span{
    font-weight: bold;
}

.texto-nosotros{
    color: white;
}

.texto-nosotros{
    width: 60%;
    font-weight: 350;
}

.btn-contacto{
    background-color: #e33231;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    margin-left: 10px;
}

.col-md-auto{
    margin-top: 300px;
}

/*Navbar*/

.logo{
    width: 250px;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}

#icono-menu{
    width: 35px;
    display: none;
}

.navbar-links ul{
    display: flex;
    list-style: none;
    align-items: center;
    margin-top: 20px;
}

.navbar-links a{
    color: white;
    margin-left: 25px;
    font-weight: 300;
    text-decoration: none;
}

.navbar-links a:hover{
    color: #e33231;
    transition: all 1s ease;
}


.sticky{
    position: fixed;
    border-radius: 0px 0px 20px 20px;
    background-color: rgba(42, 69, 145, 0.8);
    backdrop-filter: blur(8px);
    width: 100%;
    transition: all 0.7s ease-in-out;
}

/*Servicios*/

.section-servicios{
    background-color: rgba(31,49,111);
}

.linea-titulo{
    margin: 0 auto;
    border: 2px solid #e33231;
    width: 70px;
    margin-bottom: 50px;
}

.title-servicios{
    padding-top: 50px;
    text-align: center;
    font-weight: 300;
    font-size: 50px;
    color: rgba(255, 255, 255);
    letter-spacing: 2px;
    margin-bottom: 0;
}

.subtitle-servicios{
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-top: 0;
    margin-bottom: 25px;
}

.subtitle-card{
    font-weight: 300;
    color: rgba(31,49,111);
}

.title-card{
    color: rgba(31,49,111);
}

.card-img{
    width: 85px;
    margin-bottom: 15px;
    padding: 5px;
}



/*Calidad*/

.section-calidad {
    background-image: linear-gradient(rgba(0,31,115,0.7),rgba(0,31,115,0.7)),url(img/acondicionado-text.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px;
}

.title-calidad{
    color: white;
    font-weight: 300;
}

.text-calidad{
    color: white;
    font-weight: 300;
}

/*Footer*/

footer{
    background-color: rgba(31,49,111);
    color: white;
    padding: 50px;
}

footer a{
    text-decoration: none;
    color: white;
}

footer a:hover{
    color: #e33231;
}

.text-footer{
    font-weight: 300;
    margin-top: 25px;
    width: 100%;
    color: rgba(255,255,255, 0.7);
}

.title-footer{
    font-weight: 300;
}

.text-footer-contacto{
    font-weight: 300;
}

.list-footer li{
    list-style: none;
    margin-top: 20px;
    font-size: medium;
    font-weight: 300;
    width: 100%;
}

.list-footer li img{
    width: 10%;
    margin-right: 10px;
}

.linea-footer{
    border: 2px solid #e33231;
    width: 200px;
    margin-bottom: 40px;
}

/*Modal Form*/

.modal{
    background-color: rgba(0,31,115,0.5);
}

.modal-header{
    border: 0;
}

.modal-content{
    border-radius: 0;
    color:  rgba(31,49,111);
}

.btn-enviar{
    background-color: rgba(31,49,111);
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
}

@media screen and (max-width: 800px){
    #icono-menu{
        display: block;
        z-index: 3;
    }

    .navbar{
        z-index: 2;
    }

    .navbar-links{
        display: none;
        top: 0;
        left: 0;
        position: absolute;
        background-color: rgba(31,49,111,0.9);
        backdrop-filter: blur(8px);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
    }

    .mobile-navbar{
        display: flex;
        transition: all 1s ease;
    }

    .navbar-links ul{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar-links ul li{
        margin: 25px;
        font-size: 20px;
        font-weight: 200;

    }

    .navbar-links a{
        margin-left: 0;
    }
}

@media screen and (max-width: 450px){
    footer iframe{
        width: 250px;
        height: 150px;
    }

    .list-footer li img{
        display: none;
    }

    .list-footer{
        text-align: center;
    }
}

