:root{
    --textcolor:#E7E5E4;
    --background:#263142;
    --backgroundcontact:#1E293B;
    --bodybg:#0F172A;
}

body{
    margin: 0;
    padding: 0;
    font-family: Oswald, sans-serif;
    font-size: 1em;
    color: var(--textcolor);
    background-color: var(--bodybg);
}

header{
    width: 100%;
    max-width: 100%;
    background-color: var(--background);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
}

a{
    text-decoration: none;
    color: var(--textcolor);
    font-size: 1em;
}

h2{
    margin: 20px 0;
}

section{
    width: 100%;
    height: 100vh;
    overflow: auto;
}

iframe{
    width: 100%;
    max-width: 100%;
}

.container{
    max-width: auto;
}

.content{
    width: 80%;
    max-width: 1200px;
    margin: auto;
}

.logo-container{
    width: 100%;
}

.logo-container img{
    display: block;
    margin: auto;
    width: 200px;
}

.header-content{
    padding: 15px;
    margin: auto;
    width: 80%;
    max-width: 1660px;
}

.nav-container nav > ul{
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    font-size: 0.8em;
    padding: 0;
    margin-bottom: 0;
}

.full-width-container{
    width: auto;
    height: 100%;
    background-image: url('./img/realistic_side.png');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.gradient{
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.30015756302521013) 16%, rgba(15, 23, 42, 0.6) 67%);
}
.content-address{
    width: auto;
    height: 100%;
    background-color: var(--background);
}

.title-container{
    position: relative;
    top: 25%;
    bottom: -25%;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1em;
    font-weight: 800;
    padding: 15px;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    text-shadow: 0px 0px 3px black;
}

.title-content{
    color: var(--textcolor);
    font-size: 1.5em;
    text-align: center;
    padding: 10px;
    background: var(--bodybg);
}

.service-content{
    background-color: var(--background);
    padding: 15px;
}

.img-module-content{
    width: auto;
    height: 250px;
}

.img-module-content img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.text-container{
    color: var(--textcolor);
}

#fabricacion{
    margin-bottom: 30px;
}

.contact-content{
    background-color: var(--backgroundcontact);
    height:100%;
    padding:30px 15px;
}

.flex-contact{
    display: flex;
    gap: 15px;
}

.data-map-container{
    padding: 30px 0; 
}

.data-map-container h3{
    font-size: 1.5em;
}

.data-flex-contact {
    display: flex;
    gap: 10px;
}

.data-icon{
    width: 25px;
    height: 25px;
}

.data-icon img{
    width: 100%;
    height: auto;
}

.data-mail{
    margin-bottom: 15px;
}

.address-flex{
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.address-flex img{
    width: 30px;
    height: 30px;
}

.sell-content, .administration-content, .principal-content {
        background: #263142;
        padding: 30px;
        margin: 10px;
        border-radius: 5px;
    }
/*extra*/
.none-mobile{
    display: none;
}

.hsection{
    height: auto;
}

/*responsive*/
@media(min-width:700px){
    .flex-data-ct {
        display: grid;
        grid-template-columns: 50% 50%;
        padding: 30px;
        gap: 30px;
        background: #1e293b;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .content-data-ct{
        padding: 30px;
        background: #1e293b;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .grid-contact{
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 30px
    }
    .sell-content, .administration-content, .principal-content {
        background: #263142;
        padding: 30px;
        border-radius: 5px;
        margin: 0;
    }
    .img-module-content {
        height: 400px;
        padding: 50px 0;
    }
    #fabricacion{
        margin-bottom: 50px;
    }
    .service-content{
        padding: 30px;
    }
    .text-container{
        padding: 30px;
    }
    .content-w-min{
        width: 80%;
        max-width: 1200px;
        margin: auto;
        padding: 30px 0;
    }
    .none-mobile{
        display: block;
    }
    .none-desktop{
        display: none;
    }
    .title-container{
        font-size: 1.3em;
    }
    .title-content{
        font-size: 3em;
        padding: 30px 0;
    }
    .nav-container nav > ul > li a{
        font-size: 1.5em;
    }
    .header-content{
        display: flex;
        align-items: center;
        width: 90%;
    }

    .logo-container{
        width: 40%;
    }

    .nav-container{
        width: 100%;
    }

    .flex-service {
        display: grid;
        grid-template-columns: 50% 50%;
    }

}

@media(min-width:700px) and (max-width: 900px){
    .img-module-content {
        height: 300px;
    }
}