body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    --taxi-orange: #ff7300;
    --adjusted-black: #1A1A1A;
    color: var(--adjusted-black);
}

.hero {
    color: white;
}



@media screen and (min-width:640px) and (max-width:1250px){
    #hero .container, .service-group, #footer {
        padding-left: 50px;
        padding-right: 50px;
    }
}

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

    .header-container {
        display: flex;
        max-width: 1200px;
        justify-content: space-between;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    #hero .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100vh;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 3em;
    }

    .hero > h1 {
        font-size: 3em;
    }

    .hero > p {
        font-size: 1.5em;
    }

    .hero > .buttons {
        display: flex;
        gap: 2.5em;
    }

    .hero-img {
        transform: scaleX(-1);
    } 

    .services {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
        padding: 5em 0;
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
    }
    
    .service-group {
        display: flex;
        gap: 1em;
        justify-items: flex-start;
        align-items: flex-start;
    }
    
    .service-item {
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        text-align: center;
    }

    .footer {
        display: flex;
        justify-content: space-between;
        align-items: end;
        padding-bottom: 1em;
        padding-top: 1em;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

    .header-container {
        display: flex;
        justify-content: center;
        margin-top: 3em;
    }

    .hero-img {
        display: none;
    }

    #hero .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100vh;
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 3em;
    }

    .hero > .buttons {
        display: flex;
        flex-direction: column;
        gap: 1.5em;
        margin-right: auto;
        margin-left: auto;
    }

    .hero a {
        margin-top: auto;
        margin-bottom: auto;
        font-size: 0.8em;
    }

    .services {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
        padding: 5em 1em;
        margin-right: auto;
        margin-left: auto;
    }

    .service-group {
        display: flex;
        flex-direction: column;
        gap: 3em;
    }
    
    .service-item {
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        text-align: center;
    }

    .footer {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 1em;
        padding-top: 1em;
        padding-bottom: 1em;
    }

    .footer .contact {
        text-align: center;
    }
}


#hero {
    background: linear-gradient(to top, var(--adjusted-black), var(--taxi-orange));
    height: 100vh;
    background-size: cover;
}

.hero .button {
    min-width: 180px;
    max-width: 180px;
}

.services > h2 {
    text-transform: uppercase;
}

.service-item > object {
    height: 64px;
    width: 64px;
    margin-bottom: 1em;
}

.service-item > h3 {
    text-transform: capitalize;
    margin-bottom: 0.5em;
}

.button {
    background: var(--taxi-orange);
    padding: 6px 12px;
    border: none;
    outline: none;
    border-radius: 4px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 600;
}

.button a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white;
}

.button img {
    width: 16px;
}

.button-green {
    background: #25D366;
}

#footer {
    background: var(--taxi-orange);
}

.footer img {
    width: 24px;
}

.footer .contact {
    display: flex;
    flex-direction: column;
    font-size: 0.8em;
}

.footer .social {
    display: flex;
    gap: 0.5em;
}

.company-name {
    font-weight: 500;
    font-size: 1.25em;
}

.address, .phone {
    text-decoration: none;
    color: var(--adjusted-black);
}

.header {
    position: absolute;
    width: 100%;
}

#logo { 
    margin-top: 1em;
    width: 50px;
}