:root {
    --darkblue: #202A44;
    --blue: #1B365D;
    --lightblue: #7089AC;
    --lightestblue: #CED9E5;

    --darkestgrey: #53565A;
    --darkgrey: #888B8D;
    --grey: #A7A8A9;
    --lightgrey: #C8C9C7;
    --lightestgrey: #E1DFDD;

    --black: #141414;
}

html {
    font-family: 'Roboto', sans-serif;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

p {
    font-size: 16px;
}

a {
    text-decoration: none;
    color: var(--black);
}

body {
    margin: 0;
    min-height: 100%;
    width: 100%;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    height: 64px;
    align-items: center;
    background-color: var(--black);
    color: white;
}

.header p {
    font-size: 20px;
}

.header > div > a {
    color: white;
    font-size: 20px;
}

.header > div :last-child {
    color: white;
    font-size: 18px;
}

.header > div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header > div > * {
    margin-left: 20px;
}

.main {
    height: 100%;
    background-color: white;
}

.main > div {
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    padding: 2.5vw;
}

h1, h2, h3, h4, h5 {
    font-weight: 500;
}

h1 {
    font-size: 48px;
}

@media (max-width: 800px) {
    .info {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: var(--darkblue);
        color: var(--lightestblue);
        margin-bottom: 2.5vh;
        margin-right: 0!important;
        margin-left: 0!important;
        padding: 0 !important;
    }

    .info img {
        width: 100%;
    }

    .info > div {
        display: flex;
        flex-direction: column;
        width: 90%;
        padding-left: 2.5vw;
    }

    .service {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: var(--black);
        margin-bottom: 2.5vh;
    }

    .service > div {
        padding: 0 2.5vw 2.5vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /*background-color: var(--lightestgrey);*/
        width: 100%;
    }

    .service img {
        width: 100%;
        max-height: 600px;
    }

    .service h1 {
        color: var(--darkgrey);
        margin-top: 0;
    }

    .parts > h1 {
        text-align: center;
    }

    .parts-subheader {
        text-align: center;
        margin-bottom: 3vh;
    }

    .parts-type-containers {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: white;
    }

    .parts-type-containers > div > img {
        width: 100%;
        height: 400px;
    }

    .parts-type-containers > div {
        display: flex;
        flex-direction: column;
        width: 100vw;
        background-color: #fafafa;
        color: var(--darkestgrey);
    }

    .parts-type-containers > div > h2 {
        color: var(--black);
        margin: 1vh auto 0;
    }

    .parts-type-containers > div > p {
        margin-left: 1vw;
    }

    .footer {
        /*margin-top: 5vh;*/
        margin-left: 0!important;
        margin-right: 0!important;
        padding-bottom: 1vh!important;
        padding-top: 1vh!important;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        bottom: 0;
        height: 64px;
        color: var(--black);
        background-color: #ececec;
    }

    .contact {
        background-color: var(--lightestblue);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: var(--darkblue);
        font-size: 18px;
        margin-left: 0!important;
        margin-right: 0!important;
    }

    .contact h1 {
        margin-top: 0;
        color: var(--lightblue);
    }

    .contact h3 {
        margin-bottom: 0;
    }

    .contact > div {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .contact > div > div > * {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .contact > div > div {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
    }

    .service-types {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: white;
    }

    .service-types > div {
        margin-left: 5px;
        margin-right: 5px;
        display: flex;
        flex-direction: column;
        background-color: #fafafa;
        color: var(--darkestgrey);
        padding: 1.25vw;
    }
}

@media (min-width: 800px) {
    .info {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        background-color: var(--darkblue);
        color: var(--lightestblue);
        margin-bottom: 2.5vh;
        margin-right: 0!important;
        margin-left: 0!important;
        padding-left: 0!important;
        padding-top: 0!important;
        padding-bottom: 0!important;
    }

    .info img {
        width: 60%;
    }

    .info > div {
        display: flex;
        flex-direction: column;
        width: 45%;
        padding-left: 2.5vw;
    }

    .service {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        color: var(--black);
        margin-bottom: 2.5vh;
    }

    .service > div {
        padding: 0 2.5vw 2.5vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /*background-color: var(--lightestgrey);*/
        width: 45%;
    }

    .service img {
        width: 45%;
        max-height: 600px;
    }

    .service h1 {
        color: var(--darkgrey);
        margin-top: 0;
    }

    .parts > h1 {
        text-align: center;
    }

    .parts-subheader {
        text-align: center;
        margin-bottom: 3vh;
    }

    .parts-type-containers {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        background-color: white;
    }

    .parts-type-containers > div > img {
        width: 100%;
        height: 400px;
    }

    .parts-type-containers > div {
        display: flex;
        flex-direction: column;
        width: 35vw;
        background-color: #fafafa;
        color: var(--darkestgrey);
    }

    .parts-type-containers > div > h2 {
        color: var(--black);
        margin: 1vh auto 0;
    }

    .parts-type-containers > div > p {
        margin-left: 1vw;
    }

    .service-types {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        background-color: white;
    }

    .service-types > div {
        margin-left: 5px;
        margin-right: 5px;
        display: flex;
        flex-direction: column;
        background-color: #fafafa;
        color: var(--darkestgrey);
        padding: 1.25vw;
    }

    .footer {
        /*margin-top: 5vh;*/
        margin-left: 0!important;
        margin-right: 0!important;
        padding-bottom: 1vh!important;
        padding-top: 1vh!important;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        bottom: 0;
        height: 32px;
        color: var(--black);
        background-color: #ececec;
    }

    .contact {
        background-color: var(--lightestblue);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        color: var(--darkblue);
        font-size: 18px;
        margin-left: 0!important;
        margin-right: 0!important;
    }

    .contact h1 {
        margin-top: 0;
        color: var(--lightblue);
    }

    .contact h3 {
        margin-bottom: 0;
    }

    .contact > div {
        display: flex;
        flex-direction: column;
        width: 45%;
    }

    .contact > div > div > * {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .contact > div > div {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
    }
}

.info h1 {
    color: var(--lightblue);
}


.map {
    position: relative;
    width: 50vw;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
