html {
    scroll-behavior: smooth;
}

.logo {
    width: 98px;
    height: 44px;
}
.companyName {
    margin-left: 0.67em;
    font-weight: 600;
    font-size: 18.45px;
}

em {
    font-size: 16px;
    font-weight: 400;
    line-height: 24.7px;
}
.twoColumns .imageContainer {
    max-width: 50%;
}
.imageContainer img {
    max-width: 100%;
    height: auto;
}
body {
    margin: 0px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
nav {
    background-color: #004D81;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 10rem;
}
.languageSelector {
    display: flex;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}
.languageSelector > * {
    margin-block: 0;
    margin: 0rem 0.25rem;
}
section {
    padding: 5rem 10rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

h3 {
    font-size: 28.7px;
    font-weight: 600;
    margin-block: 0rem;
}
.odd {
    background-color: #fff;
}
.odd h3 {
    color: rgb(17, 24, 31);
}
.even {
    background-color: #004D81;
}
.even {
    color: #fff;
}
.column {
    display: inline-flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 50%;
}
.paragraphs {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
}
.twoColumns {
    display: flex;
    gap: 6rem;
    justify-content: space-between;
}
.gallery {
    display: flex;
    gap: 3rem;
}
.gallery img {
    width: 279px;
    object-fit: cover;
    aspect-ratio: 1;
}
.galleryLink {
    padding-top: 1rem;
}
.galleryLink a {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
nav a {
    color: #fff;
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
}
nav .logoAndName {
    display: flex; 
    align-items: center;
}
strong a {
    color: rgb(17, 24, 31);
    text-decoration: underline;
}
h1 {
    margin: 0; 
}
.contactInfoColumn {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
.contactInfo p {
    margin-block: 0.5rem 0rem;
}

footer {
    display: flex;
    flex-direction: row-reverse;
    padding: 1.5rem 10rem;
}

footer p {
    font-size: 17px;
    font-weight: 400;
}


/* About */

h2 {
    font-size: 61px;
    font-weight: 600; 
    margin-block: 0rem;
}

.singleColumn {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    gap: 2rem;
    justify-content: space-between;
    align-self: center;
}

.sloganContainer {
    display: flex;
    justify-content: center;
}
.sloganContainer p {
    font-weight: 600;
    color: #fff;
    font-size: 30px;
}

/* Services */

.subtitle {
    font-size: 25px;
    font-weight: 400;
    line-height: 40px;
    margin-block: 0rem;
}

.column ul {
    margin-block: 0rem;
}

.column li {
    font-style: italic;
    line-height: 27px;
    font-size: 17px;
    font-weight: 400;
}

.twoColumns .imageContainer {
    max-width: 400px;
}

.horizontalRule {
    height: 1px;
    background-color: rgba(71, 71, 71, 0.1);
    margin-block-end: 1rem;
}

.custom-button {
    background-color: transparent;
    border: 2px solid #004D81;
    color: #004D81;
    padding: 14px 22px;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
    border-radius: 0.25rem;
    text-decoration: none;
}

.custom-button:hover {
    background-color: #004D81;
    border-color: white;
    color: white;
}

/* Contact Us */
.mapContainer img {
    max-width: 800px;
}

.menu-toggle {
    cursor: pointer;
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}

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

    .menu-toggle {
        display: block;
    }

    #navLinks {
        display: none;
    }

    #navLinks.active {
        display: flex;
        flex-direction: column;
        /* background-color: #333; */
        padding: 1rem 0;
        width: 100%;
    }

    nav {
        padding: 0.5rem 1rem;
        flex-direction: column;
        align-items: start;
    }

    nav a {
        align-self: center;
    }

    .companyName {
        display: none;
    }

    #navLinks {
        flex-direction: column;
    }

    section {
        padding: 5rem 1rem;
    }

    .twoColumns {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .column {
        max-width: 100%;
        gap: 1rem;
    }
}