header {
    position: relative;
}


/************************************************/
/*                CONTACT PAGE                  */
/************************************************/

/* Intro */
#raecon-contact {
    width: 100%;
    background-color: white;
}

.raecon-contact__wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
}

.raecon-contact__intro {
    width: 100%;
    background-color: #d6e4f1;
    padding-top: 60px;
    padding-bottom: 60px;
}

.raecon-contact__intro__wrapper {
    width: 70%
}

.raecon-contact__intro__wrapper h1 {
    font-size: 2.8rem;
    color: #092155;
    line-height: 1.2;
    font-weight: 600;
}

.raecon-contact__intro__wrapper .highlight {
    color: #387ce3;
}

.raecon-contact__intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    letter-spacing: 0.02rem;
    color: #444444;
}

/* Body */
.raecon-contact__body {
    width: 100%;
    position: relative;
    margin-bottom: 72px;
}

.raecon-contact__body__filler {
    width: 100%;
    position: absolute;
    height: 74px;
    background-color: #d6e4f1;
    top: 0px;
}

.raecon-contact__items {
    width: 70%;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
    justify-content: center;
}

.raecon-contact__item {
    min-width: 35%;
    max-width: fit-content;
    background-color: white;
    border-radius: 5px;
    padding: 24px 48px;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.raecon-contact__item h6 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #387CE3;
    font-weight: 600;
    text-align: center;
}

.raecon-contact__item .raecon-link,
.raecon-contact__item p {
    font-weight: 500;
    margin-bottom: 12px;
    font-size: medium;
}

.raecon-contact__item .raecon-link svg,
.raecon-contact__item p svg {
    margin-right: 6px;
}

.newline {
    margin-left: 28px;
}

.contact-map-card {
    height: 450px;
}

/************************************************/
/*                  RESPONSIVE                  */
/************************************************/

/* Tablet */
@media screen and (max-width: 1024px) {
    .raecon-contact__intro__wrapper {
        width: 80%
    }
    .raecon-contact__items {
        width: 80%;
        flex-grow: 1;
    }
    .raecon-contact__intro {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .raecon-contact__body {
        margin-bottom: 36px;
    }
}

/* Mobile (large) */
@media screen and (max-width: 767px) {
    .raecon-contact__intro__wrapper {
        width: 85%;
    }
    .raecon-contact__items {
        width: 85%;
        flex-grow: 0;
    }
    .raecon-contact__item {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    .raecon-contact__intro p {
        text-align: center;
    }
}

/* Mobile (small) */
@media screen and (max-width: 480px) {
    .raecon-contact__intro__wrapper {
        width: 95%
    }
    .raecon-contact__items {
        width: 95%
    }
}

