section#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    /* filter: brightness(0.5); */
}

section#home {
    margin-top: 14.5vw;
}

section#home .logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

section#home .logo img {
    width: 25%;
    height: auto;
}

section#home .catchphrase {
    margin-top: 7%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

section#home .catchphrase h3 {
    color: #fff;
    font-weight: 600;
    font-size: 1.5em;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInUp 1s ease forwards;
    text-transform: uppercase;
}

section#home .catchphrase h3:nth-child(1) {
    animation-delay: 1s;
}

section#home .catchphrase h3:nth-child(2) {
    animation-delay: 2s;
}

section#home .catchphrase h3:nth-child(3) {
    animation-delay: 2.5s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateX(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@media (max-width: 1200px){

    section#home {
        margin-top: 16vw;
    }

    section#home .logo img {
        width: 30%;
    }

    section#home .catchphrase h3 {
        font-size: 2vw;
    }
}

@media (max-width: 1024px){

    section#home {
        margin-top: 21vw;
    }

    section#home .logo img {
        width: 40%;
    }
}

@media (max-width: 800px){

    section#home {
        margin-top: 25vw;
    }

    section#home .catchphrase h3 {
        font-size: 2.5vw;
    }
}

@media (max-width: 650px){

    section#home {
        margin-top: 30%;
    }

    section#home .logo img {
        width: 50%;
    }

    section#home .catchphrase h3 {
        font-size: 3.5vw;
    }
}

@media (max-width: 450px){

    section#home {
        margin-top: 55%;
    }

    section#home .logo img {
        width: 85%;
    }

    section#home .catchphrase h3 {
        font-size: 3.5vw;
    }
}


