/* NAV MODIFIER */
nav .nav-container .nav-logo {
    opacity: 1;
}

/* HEADER */

header {
    position: relative;
    height: 90vh;
    width: 100%;
    line-height: 0.5;
    background-color: var(--white);
}

/* HERO */

.hero {
    background-image: url(../img/bg-hero-communication.jpg);
    background-size: cover;
    background-position: center;
}

.hero-yachtsecurity {
    background-image: linear-gradient(to top, rgba(87, 87, 87, 0.2)0%, rgba(88, 88, 88, 0.2) 100%), url(../img/bg-security.jpg);
}

.cookies-header{
    height: 5rem;
}

.hero-electrics {
    background-image: linear-gradient(to top, rgba(87, 87, 87, 0.2)0%, rgba(88, 88, 88, 0.2) 100%), url(../img/bg-electrics.jpg);
}

.hero-navigation {
    background-image: linear-gradient(to top, rgba(87, 87, 87, 0.2)0%, rgba(88, 88, 88, 0.2) 100%), url(../img/bg-navigation.jpg);

}

.hero-audiovisual {
    background-image: linear-gradient(to top, rgba(87, 87, 87, 0.2)0%, rgba(88, 88, 88, 0.2) 100%), url(../img/bg-audiovisual.jpg);

}

.hero-projects {
    background-image: linear-gradient(to top, rgba(87, 87, 87, 0.2)0%, rgba(88, 88, 88, 0.2) 100%), url(../img/bg-projects.jpg);

}

.hero-container {
    height: 100%;
    /* background: linear-gradient(90deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.3) 80%); */
}

.hero .hero-container .logo-container {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 90%);
}

.hero .hero-container .logo-container .hero__logo {
    height: 9em;
    width: 9em;
    padding: 1em;
    border: .45em solid var(--blue1);
    border-radius: 50%;
    transform: rotate(0deg);
    transition: transform 1s, filter 1s;
    overflow: hidden;
}

.hero .hero-container .logo-container .hero__logo img {
    height: 100%;
    width: 100%;
}

.hero .hero-container .logo-container .hero__logo:hover {}

.hero .hero-container .logo-container .hero__logo-text {
    margin-left: 30px;
    font-size: 3.5em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: .01em;
    border-bottom: 0.15em solid var(--blue1);
    padding-bottom: 0.25em;
}



/* SECTION */

.section {
    overflow: hidden;

}

.section p {
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.5em;
    color: var(--black2);
    text-align: justify;
    padding: .5em;
}

.section-impair {
    background-color: var(--white);
}

.section-pair {
    background-color: var(--white2);
}

section .section-img {
    float: left;
    padding: 1em 5%;
    width: 50%;
    height: auto;
    
    
}


.section .section-pair-container .section-img {
    float: right;
    
}

.section .section-img img {
     height: auto;
     object-fit: contain;
     object-position: top;
     box-shadow: 4px 4px 2px rgb(107, 107, 107);
     border-radius: 5px;
     -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     -ms-border-radius: 5px;
     -o-border-radius: 5px;
     margin-bottom: 2em;
}

.section span {
    font-weight: 500;
    color: var(--blue1);
}

/* IMG PROJECTS */

.section-img-projects{
    float: none;
    padding: 1em 0;
    width: 100%;
    height: auto;
}
.section-img-projects img{
    width: 100%;
    box-shadow: 4px 4px 2px rgb(107, 107, 107);
    
    
}


@media screen and (max-width: 850px) {

    .hero .hero-container .logo-container .hero__logo {
        height: 8em;
        width: 8em;
    }

    .hero .hero-container .logo-container .hero__logo-text {
        font-size: 2.5em;
        width: auto;
    }

    .hero .hero-description p {
        width: 90%;
        margin: 1em;
    }

    section .section-img {
        padding: 1em 0 2em 0;
        width: 100%;
        height: auto;
    }

    section .section-img img {
        width: 90%;
    }
}

@media screen and (max-width: 750px) {
    .hero .hero-container .logo-container {
        padding-left: 2em;
        padding-right: 4em;
    }
}

@media screen and (max-width: 600px) {
    header {
        height: 60vh;
    }

    .hero .hero-container .logo-container .hero__logo {
        height: 6em;
        width: 6em;
    }

    .hero .hero-container .logo-container .hero__logo-text {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 450px) {
    .hero .hero-container .logo-container {
        padding: 1em 0em 1em 1.25em;
    }

    .hero .hero-container .logo-container .hero__logo {
        width: 4em;
        height: 4em;
        border-width: .2em;
        padding: 0.5em;
    }

    .hero .hero-container .logo-container .hero__logo-text {
        padding-left: 0;
        letter-spacing: .04em;
        margin-left: .5em;
    }
}

@media screen and (max-width: 350px) {
    header {
        height: auto;
    }

    .hero {
        height: auto;
    }

    .hero .hero-container .logo-container {
        background-color: var(--white);
        padding: 4em 1em;
    }

    .hero .hero-container .logo-container .hero__logo-text {
        margin-left: .5em;
        font-size: 1.25em;
    }

    .hero .hero-background {
        height: 50vh;
        background-image: url(../img/bg-hero-communication.jpg);
        background-size: cover;
        background-position: center;
    }
}