body {
    --main-color: #2c9a9c;
    --text-accent-color: #258183;
    --text-accent-color-dark: #22787a;
    --max-section-width: 1000px;

    --color-1: #2C9A9C;
    --color-2: #1FC2A7;
    --color-3: #1FB884;
    --color-4: #17CC87;
    --color-5: #1FD5C2;
    --color-6: #00AD54;
    --color-7: #66CC7E;
    --color-8: #81DB28;
    --color-9: #FED62A;
    --color-10: #FFBFD1;

    --color-light-background: #e8f3f1;
    /* Fonts: Hurme Geometric Sans Semibold and Segoe Script */

    /* background: linear-gradient(120deg, rgba(108, 203, 237, 1) 0%, rgba(153, 228, 255, 1) 50%, rgba(117, 203, 240, 1) 50%, rgba(24, 102, 161, 1) 100%); */
}

a {
    color: var(--text-accent-color-dark);
    font-weight: bold;
}

footer {
    /* Make accent color darker in footer to get top score on contrast */
    --text-accent-color: var(--text-accent-color-dark);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-accent-color);
    font-weight: 600;
}

h1 {
    /* text-align: center; */
}

header {
    height: 120px;
    width: 100%;
    background: #fff;
    border-bottom: 3px solid var(--main-color);
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-links {
    display: flex;
}

.header-links a {
    color: var(--text-accent-color);
    font-weight: 600;
    margin-right: 20px;
    font-size: 18px;
}

.header-links a:hover {
    color: #000;
    text-decoration: none;
}

.base-contents {
    /* Prevent page from not filling the whole vertical screen, subtract height of header and footer */
    min-height: calc(100vh - 300px);
}

.center-contents {
    display: grid;
    grid-template-rows: auto;
    justify-items: center;
    align-items: center;
}

.card {
    background: #fff;
    z-index: 1;
    width: 100%;
    max-width: 650px;
    margin: 30px 0 30px;
    padding: 40px;
    border-radius: 3px;
    opacity: 0.93;
}

footer {
    /* color: #222; */
    background-color: var(--color-light-background);

    padding: 50px 20px 20px;
    /* border-top: 5px solid var(--main-color); */
}

.footer-flex {
    display: flex;
    justify-content: space-between;
}

.header-logo {
    width: 100%;
    max-width: 295px;
    padding-right: 50px;
}

.footer-logo {
    width: 100%;
    max-width: 180px;
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .footer-flex {
        flex-direction: column;
    }
}

.centered-max-width {
    margin: 0 auto;
    width: 100%;
    max-width: var(--max-section-width);
}

.footer-col {
    margin: 0 60px 0 0;
}

footer a {
    color: #000;
    font-weight: normal;
    /* text-decoration: underline; */
    /* font-weight: 500; */
    /* color: var(--text-accent-color); */
}

footer section {
    margin-bottom: 26px;
    line-height: 2.0;
}

footer h3 {
    margin: 0;
}

.wide-article-padding {
    padding: 0 20px;

}

.wide-article-background {
    background: #fff;
}

.no-hero-spacer {
    margin-top: 20px;
}

.wide-article {
    width: 100%;
    min-height: 600px;
    margin: 0;
    padding: 10px 0 120px;
}

.wide-article-hero {
    background-color: #f6f6f6;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 120px;
    max-height: 230px;

    aspect-ratio: 1000 / 300;
}

.wide-article-contents {
    width: 100%;
    max-width: 750px;

    overflow-wrap: break-word;
    word-wrap: break-word;
}


.arrow-right {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;

    border-left: 7px solid var(--text-accent-color);
    display: inline-block;
}

.mobile-menu {
    /* display: none; */
    /* visibility: hidden; */
    transform: translate(-150%, 0);
    transition: transform 0.2s;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.mobile-menu.open {
    /* display: block; */
    /* visibility: visible; */
    transform: translate(0, 0);
}

.mobile-links {
    line-height: 2.2;
    font-weight: 600;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.4) 0 0 65px, rgba(0, 0, 0, 0.17) 0px 0 13px;
    border-right: 4px solid var(--color-1);
    position: absolute;
    top: 0;
    right: 80px;
    bottom: 0;
    left: 0;
    padding: 20px;
}

.mobile-links a {
    color: var(--text-accent-color);
    font-size: 26px;
}

.menu-clickzone {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    cursor: pointer;
}

.menu-button {
    display: none;
}

@media screen and (max-width: 900px) {
    .header-links {
        display: none;
    }

    .menu-button {
        display: block;
        width: 48px;
        height: 48px;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
    }

    .menu-button-elements {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        grid-row-gap: 7px;
    }

    .menu-button-line {
        width: 100%;
        height: 3px;
        padding: 0px;
        background-color: #386663;
    }
}

.service-image {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.services {
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-columns: 1fr;
    display: grid;
    max-width: var(--max-section-width);
}

@media screen and (max-width: 900px) {
    .services {
        grid-template-columns: 1fr 1fr;
    }
}


@media screen and (max-width: 600px) {
    .services {
        grid-template-columns: 1fr;
    }
}

.services-card .header-link:hover {
    color: var(--text-accent-color);
}

.services-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 250px;
    margin: 0 auto;
}

.link-button {
    cursor: pointer;
    display: table;
    background: var(--main-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
}

a.link-button:hover {
    color: #fff !important;
    text-decoration: none;
}

a.link-button:hover {
    background: #11c2b6;
}



.contact-us-box,
.jobs-cta {
    background: var(--color-light-background);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    column-gap: 20px;
    font-size: 24px;
}

a.jobs-cta-link {
    padding: 20px 30px 24px 30px;
    font-size: 22px;
    display: table;
    margin: 80px auto 0;
    background: var(--color-light-background);
    border-radius: 20px;
}

a.jobs-cta-link:hover {
    background: var(--color-1);
    color: #fff;
    text-decoration: none;
}

.contact-us-box a,
.jobs-cta a {
    color: var(--text-accent-color-dark);
    display: flex;
    align-items: center;
    margin: 0 auto;
    font-weight: normal;
}

.contact-us-box svg {
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
}

@media (max-width: 700px) {
    .contact-us-box {
        flex-direction: column;
    }
}

@media (max-width: 450px) {
    .contact-us-box {
        font-size: 20px;
        padding: 15px;
    }
}

@media (max-width: 380px) {
    .contact-us-box {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .contact-us-box {
        padding: 12px;
        font-size: 16px;
    }
}

.cookies {}
