:root {
    --blue1: #0083c1;
    --blue2: #1abeff;
    --blue-dark: #2764bb;
    --blue-soft: #0188f3;
    --black1: #080808;
    --black2: #363636;
    --white: #f7f7f7;
    --white2: rgb(226, 226, 226);
    --footer-Blue: #00345d;

    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

/* GENERAL */
a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    padding: 4em 1em 4em 1em;
    margin: 0 auto;
    text-align: center;
}

.title-section {
    display: inline-block;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--black2);
    text-align: center;
    padding-bottom: 0.1em;
    border-bottom: 0.15em solid var(--blue1);
    margin-bottom: 1em;
    text-transform: uppercase;
}

/* HEADER */

/* header {
    min-height: 30em;
} */

/* HERO */

.hero {
    padding-top: 3.75em;
    height: 100%;
    /*    background-image: url(../img/bg-hero1.jpg);
    background-size: cover;
    background-position: center; */
}

.hero .hero-container {
    position: relative;
}

.hero .hero-container .logo-container {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    padding: 1em 2.5em;
    display: flex;
    justify-content: start;
    align-items: center;
    position: absolute;
    z-index: 5;
    width: 100%;
}

.hero .hero-description {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: right;
    opacity: 1;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0) 90%);
}

.hero .hero-description p {
    width: 50%;
    float: right;
    color: white;
    margin: 2em 4em;
    /*  padding-bottom: 1em; */
    font-size: 1.5em;
    font-weight: 900;
    text-shadow: 2px 2px 1px black;
    line-height: 1.2em;
    /* border-bottom: 0.30em solid var(--blue1); */
}




/* FOOTER */

footer {
    background: var(--footer-Blue);
    padding-bottom: 1em;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
    padding: 2em 0 1em 0;
}

.footer__logo {}

.footer__logo img {
    height: 7em;
}

.footer__social-media {}

.footer__social-media a {
    color: var(--white);
    font-size: 5em;
    padding-left: .25em;
}

.footer__social-media a:hover {
    color: var(--blue2);
    text-shadow: 2px 2px 0 var(--white);
}

.footer__line {
    width: 100%;
    height: .1em;
    background-color: var(--white);
    margin-top: 1.2em;
}

.footer__credits {
    color: var(--white);
    font-size: 0.8em;
    font-weight: 300;
    text-align: center;
}

.footer__credits a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.footer__credits a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 760px) {
    body {
        font-size: 14px;
    }

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

}

@media screen and (max-width: 350px) {
    body {
        font-size: 12px;
    }
}

@media screen and (max-width: 250px) {
    body {
        font-size: 10px;
    }
}

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

    .hero {
        padding-top: 0;
        height: 100%;
    }

    .hero .hero-container .logo-container {
        background: rgba(255, 255, 255, 0.5);
        justify-content: center;
        padding-left: 5em;
        padding-right: 10em;
        width: 100%;
    }

    .hero .hero-container .logo-container .hero__logo {
        width: 22vw;
    }

    .hero .hero-container .logo-container .hero__logo-text {
        width: 50vw;
    }
}

@media screen and (max-width: 450px) {
    .hero .hero-container .logo-container {
        background-color: rgba(255, 255, 255, 0.8);
        padding: 0 0 0 1em;
        justify-content: start;
    }

    .hero .hero-container .logo-container .hero__logo-text {
        padding-left: 1em;
    }
}

@media screen and (max-width: 350px) {
    header {
        position: relative;
        top: 0px;
    }

    .hero .hero-container .logo-container {
        position: relative;
        height: 6em;
        top: 0px;
        padding: 50px 10px;
    }
}