/*
1.Posicionamiento
2.Modelo de caja
3.Tipografia
4.Estilos visuales
5.Miscelanea u otros
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;800&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}

.contact-title{
    font-weight: bold;
    text-decoration: underline;
    color: lightslategray;
}

.contact{
    color: lightslategray;
}

body{
    display: flex;
    flex-direction: column;
}

header{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    padding: 3% 5% 1%;
}

main{
    display: flex;
    flex-direction: column;
    padding: 1% 3% 1%;
}

.footer-title{
    font-weight: bold;
}

footer{
    display: flex;
    flex-direction: column;
    padding: 1% 3% 1%;
}
.footer-container{
 
    font-size: 3vh;
    display: flex;
    flex-direction: column;
    padding: 10% 10%;
    background-color: lightslategray;
    width: 100%;
    height: 40vh;
    color: white;
 
}

.copy{
    font-size: 2vh;
}

header .logo{
    cursor: pointer;
    margin-right: auto;
}

header .logo img{
    height: 5vh;
    width: auto;
    transition: all 0.3s;
}

header .logo img:hover{
    transform: scale(1.2);
}

header .nav-right-section{
    list-style: none;
}

header .nav-right-section li{
    display: inline-block;
    padding: 0 20px;    
}

header .nav-right-section li:hover,.overlay a:hover{
    transform: scale(1.1);
}

header .nav-right-section a{
    font-size: .9em;
    color: black; 
}

header .nav-right-section a:hover{
    color: #1978de
}

.menu {
    display:none;
}

header .btn button,header .menu button{
    margin-left: 20px;
    font-weight: 700;
    color: white;
    padding: 9px 25px;
    background: gray;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

header .btn button:hover,header .menu button:hover{
    background-color:#0C38E8;
    color: whitesmoke;
    transform: scale(1.1);
}

header a{
    text-decoration: none;  
}

header .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: lightskyblue;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

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

header .overlay a{
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    color: #eceff1;
}

header .overlay a:hover, header .overlay a:focus{
    color: lightskyblue;
}

header .overlay .close{
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 65px;
}

.our-company-section-title{
    display: flex;
    height: 100%;
    width: 100%;
    padding: 1% 10% 1% 10%;
    align-content: center;
    text-align: justify;
}

.our-company-section{
    display: flex;
    height: 100%;
    padding: 3% 10% 3% 10%;
    align-content: center;
    text-align: justify;
}

.slider{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 40vh;
    color: white;
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.8)
    ),
    url("../assets/banner/bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all .1s ease-in-out;
    animation: slider 28s infinite linear;
}

#our-products {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    padding: 2% 0%;
}

.products-container{
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    padding: 2% 0%;
}

.products{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    padding-top: 10vh;
    transition: all 0.3s;
    
}

.products:hover{
    transform: scale(1.2);
}

.img-product{
    width: 200px;
    height: 150px;
    
}

.products .img-product img{
    width: 100%;
    display: flex;
    border-radius: 50%; 
}

.product{
    margin-bottom: 3vh;
}

h2{
    font-size: 5vh;
    color:#0C38E8;
}

h1{
    font-size: 2vh;
    color: lightslategray;
}



#our-services {
    text-align: center;
    padding: 2% 5%;
    background-color: rgb(229, 225, 225);
    color: lightslategray;
    font-size: 5vh;
}


#our-services .services-container .services li{
    list-style: none;
}














   
/*Slider*/

@keyframes slider {

    0%{
        background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("../assets/banner/bg.svg");
    }
    25%{
        background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("../assets/banner/bg.svg");
    }
    26%{
        background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("../assets/banner/bg1.svg");
    }
    50%{
        background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("../assets/banner/bg1.svg");
    }
    51%{
        background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("../assets/banner/bg2.webp");
    }
    75%{
        background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("../assets/banner/bg2.webp");
    }
    76%{
        background-image: linear-gradient(
            0deg,
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.5)
        ),
        url("../assets/banner/bg3.jpg");
    }
    100%{
        background-image: linear-gradient(
            0deg,
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.5)
        ),
        url("../assets/banner/bg3.jpg");
    }
}

/*Fin Slider*/

/*mMedia queries*/

/*@media screen and (max-height:450px) {
    header .overlay a{
        font-size: 20px;
    }
    header .overlay .close{
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

@media screen and (max-width: 800px){
    .nav-right-section, .btn {
        display: none;
    }
    .menu {
        display: inherit;
    }
}*/

@media screen and (max-width: 600px){
    /*#our-products .container .products{
        display: flex;
        align-items: center;
        flex-direction: row;
        padding: 2% 2%;
    }*/

}

@media screen and (min-width: 768px){

    .products-container{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        padding: 2% 0%;
        justify-content: center;
    }
    
    .products{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: center;
        padding-top: 5vh;
    }
    
    .img-product{
        width: 200px;
        height: 150px;
        
    }
    
    .products .img-product img{
        width: 100%;
        display: flex;
        border-radius: 50%; 
    }
    
    .product{
        margin-bottom: 3vh;
    }

    #our-services {
        padding: 10% 5%;
        background-color: rgb(244, 239, 239);
    }

    .footer-container{
 
        font-size: 3vh;
        display: flex;
        flex-direction: column;
        padding: 10% 10%;
        background-color: lightslategray;
        width: 100%;
        height: 40vh;
        color: white;
     
    }
    
   

}





/*Fin media queries*/