@media screen and (max-width: 1400px) { 
    #all {
        margin: 0;
    }

    .menu {
        margin-left: 30px;
    }
    
    header, main, #home-banner {
        padding-left: 30px;
        padding-right: 30px;
    }

    #home-banner {
        margin-left: -30px;
        margin-right: -30px;
        background-size: cover;
        background-position: -100px center;
    }

    #home-banner-content {
        padding-top: 70px;
    }
}

@media screen and (max-width: 800px) {
    header {
        text-align: left;
    }

    .menu {
        margin-left: 10px;
    }

    #logo {
        display: inline-block;
        float: none;
    }

    #home-banner {
        background-image: url('./images/banner_globe_800.webp');
        background-position: right center;
        min-height: 284px;
    }

    #home-banner-content {
        padding-top: 40px;
        max-width: 70%;
    }

    #home-banner-content p {
        font-size: 0.9em;
    }

    .bullets {
        gap: 30px;
    }
}

@media screen and (max-width: 600px) {
    header, main, footer, #home-banner {
        padding-left: 20px;
        padding-right: 20px;
    }

    #home-banner {
        margin-left: -20px;
        margin-right: -20px;
    }

    .button {
        filter: drop-shadow(0 0 12px var(--special-color));
    }

    .button-white {
        filter: drop-shadow(0 0 12px #70bfff);
    }

    .button:hover {
        text-decoration: none;
        filter: drop-shadow(0 0 20px var(--special-color));
    }

    .button-white:hover {
        filter: drop-shadow(0 0 20px #70bfff);
    }

    .icon-bullet {
        filter: drop-shadow(0 0 10px var(--special-color));
    }

    #menu {
        margin-top: 20px;
        line-height: 40px;
    }

    .menu { 
        margin-left: 0;
        margin-right: 20px;
    }

    #menu .button {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #home-banner {
        background-position: right -80px center;
    }

    #home-banner-content {
        max-width: 70%;
    }

    #home-banner-content h1 {
        font-size: 1.2em;
    }

    #home-banner-content p {
        font-size: 0.85em;
    }

    #home-banner-content .button-white {
        font-size: 0.9em;
    }

    .bullets {
        display: block;
    }

    .bullet {
        margin: 40px 0;
    }

    .bullet-texts {
        margin-left: 60px;
    }

    .icon-bullet {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 400px) {
    #home-banner {
        background-position: right -100px center;
    }

    #home-banner-content {
        max-width: 80%;
    }

    #home-banner-content h1 {
        font-size: 1.2em;
    }

    #home-banner-content p {
        font-size: 0.85em;
    }

    #home-banner-content .button-white {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 300px) {
    #home-banner {
        background-size: auto;
        background-position: left -50px center;
    }

    #home-banner-content {
        max-width: 100%;
    }
}