@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
}

/* HEADER */
#banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 150px;
    z-index: 100;
}

#banner__img {
    max-width: 400px;
    height: 100%;
    user-select: none;
}

#banner__language {
    font-size: 1.3rem;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border: 3px solid rgb(48, 48, 48);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 10px;
    user-select: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color .35s ease-in-out, color .35s ease-in-out;
}

#banner__language:hover {
    background-color: rgb(218, 218, 218);
    color: rgb(0, 0, 0);
}
/* HEADER END */

/* HOME */
#home {
    position: relative;
    width: 100%;
    height: 100svh;
    background-image: url("../img/background2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#home__filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

#home__container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin-bottom: 25px;
    padding: 0 10px;
}

#home__container__cs {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#cs__title {
    color: rgb(255, 255, 255);
    font-size: 3.6rem;
    text-transform: uppercase;
    font-weight: 300;
    font-style: italic;
    border-bottom: 2px solid rgb(204, 204, 204);
    margin-bottom: 7px;
}

#home__container__cs span {
    font-weight: 800;
}

#cs__element {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 3px;
}

#home__container__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.home__container__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 100px;
    max-height: 100px;
    width: 100px;
    max-width: 100px;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: 3px solid rgb(48, 48, 48);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color .35s ease-in-out, color .35s ease-in-out;
}

.home__container__logo:hover {
    background-color: rgb(218, 218, 218);
    color: rgb(0, 0, 0);
}

.home__container__logo:hover .home__container__logo__icon {
    transform: translateY(0);
}

.home__container__logo:hover .home__container__logo__text {
    opacity: 1;
}

.home__container__logo__icon {
    font-size: 2.4rem;
    transform: translateY(10px);
    transition: transform .35s ease-in-out;
}

.home__container__logo__text {
    opacity: 0;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 6px;
    transition: opacity .35s ease-in-out;
}
/* HOME END */

/* RESPONSIVE */
@media (max-width: 768px) {
    /* HEADER */
    #banner {
        height: clamp(100px, 50vw, 150px);
        padding: 10px 20px;
    }
    /* HEADER END */
    /* HOME */
    #cs__title {
        font-size: clamp(1rem, 10vw, 3.6rem);
        border-bottom: clamp(1px, 1vw, 2px) solid rgb(204, 204, 204);
    }

    #cs__element {
        font-size: clamp(.2rem, 3vw, 1.2rem);
    }

    .home__container__logo {
        width: 20vw;
        height: 20vw;
    }

    .home__container__logo__icon {
        font-size: clamp(1rem, 8vw, 2.4rem);
        transform: translateY(clamp(5px, 2vw, 10px));
    }

    .home__container__logo__text {
        font-size: clamp(.2rem, 3vw, 1rem);
        margin-top: clamp(1px, 1vw, 6px);
    }
    /* HOME END */
}
/* RESPONSIVE END */
