@media only screen and (min-width: 501px) {

    .mobile {
        display: none;
    }

    * {
        margin: 0;
        padding: 0;
        --background-color: #FBFBFB;
        --green-theme: #85B536;
        --light-gray: #343434;
        font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    }
    
    body {
        height: 100vh;
        width: 100vw;
        display: flex;
        background-color: var(--background-color);
    }
    
    .desktop {
        height: 100%;
        width: 100%;
        display: flex;
    }
    
    .background {
        height: 100%;
        width: 100%;
        position: absolute;
        background-image: url('/assets/img/desktop/background-full.webp');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
        z-index: -1;
        top: 0;
        right: 0;
    }
    
    .container {
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 3% 0% 4% 2%;
    }
    
    .fake {
        height: auto;
        width: 40%;
    }
    
    .header {
        height: 30%;
    }
    
    .logo {
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .logo-img {
        height: 70%;
    }
    
    .content {
        height: 25%;
        display: flex;
        padding-top: 2%;
    }
    
    .message {
        height: 100%;
        width: auto;
        display: flex;
        align-items: center;
        padding-left: 3%;
        font-size: 3rem;
        font-weight: 700;
        border-left: 0.5rem solid var(--green-theme);
    }
    
    .footer {
        height: 20%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: absolute;
        bottom: 12%;
    }
    
    .contact {
        color: var(--light-gray);
    }
    
    .contact-title {
        color: var(--light-gray);
        font-size: 2rem;
        font-weight: 600;
        line-height: 2em;
    }
    
    .contact-message {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        font-weight: 700;
    }
    
    .email {
        font-size: 1.5em;
        color: var(--light-gray);
        text-decoration: none;
    }

    .phone {
        font-size: 1.5em;
        color: var(--light-gray);
        text-decoration: none;
    }
    
    .email:hover, .phone:hover{
        color: var(--green-theme);
        transition: 0.3s;
        cursor: pointer;
    }
    
    .icon-email {
        height: 1rem;
        padding-right: 5%;
    }
    
    @media only screen and (min-width: 1367px) and (max-width: 1920px) {
    
        .logo-img {
            height: 65%;
        }
    
        .message {
            font-size: 4rem;
            border-left: 0.7rem solid var(--green-theme);
        }
    
    }
    
    @media only screen and (min-width: 673px) and (max-width: 1300px) {
        .background {
            height: 100%;
            width: 50%;
            background-image: url('/assets/img/desktop/background.webp');
            background-size: contain;
        }
    }

    @media only screen and (min-width: 600px) and (max-width: 672px) {
        .background {
            display: none;
        }
    }

}