/************************************************/
/*                SERVICES PAGE                 */
/************************************************/

header {
    position: relative;
}


/************************************************/
/*                  ABOUT RAECON                */
/************************************************/
#raecon-about {
    width: 100%;
    background-color: white;
    padding: 60px 0;
    box-sizing: border-box;
}

.raecon-about__wrapper {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.raecon-about__wrapper h2.services-title{
    font-size: 2.8rem;
    color: #092155;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 600;
}


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


.raecon-about__wrapper h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #387CE3;
    font-weight: 600;
}

.raecon-about__wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    max-width: 900px;
    margin: 0 auto;
}

/************************************************/
/*                    USP                      */
/************************************************/
#raecon-usp {
    width: 100%;
    background-color: #d6e4f1;
    padding: 60px 0;
    box-sizing: border-box;
}

.raecon-usp__wrapper {
    width: 70%;
    margin: 0 auto;
}

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

.raecon-usp__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
    justify-content: center;
}

.raecon-usp__item {
    background-color: white;
    border-radius: 5px;
    padding: 24px 24px;
    flex: 1 1 calc(33.33% - 30px);
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.raecon-usp__item svg {
    font-size: 24px;
    color: #387CE3;
    margin-right: 12px;
}

.raecon-usp__item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #387CE3;
}

.raecon-usp__body h3 svg {
    display: none;
}

.raecon-usp__item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444444;
}

.raecon-usp__item--last {
    flex-grow: 0;
}


/************************************************/
/*                  RESPONSIVE                  */
/************************************************/
/* Tablet */
@media screen and (max-width: 1024px) {

    /* HERO */
    .raecon-hero__wrapper__image {
        display: none;
    }

    .raecon-hero__wrapper__introduction {
        width: 50%;
    }

    /* ABOUT */
    .raecon-about__wrapper {
        width: 80%;
    }

    .raecon-about__wrapper h2 {
        font-size: 1.5rem;
    }

    .raecon-about__wrapper p {
        font-size: 0.95rem;
    }

    /* USP */
    .raecon-usp__wrapper {
        width: 80%;
    }

    .raecon-usp__items {
        gap: 10px;
    }

    .raecon-usp__item svg {
        font-size: 30px;
    }

    .raecon-usp__item {
        flex-basis: calc(50% - 30px);
    }
}

/* Mobile (large) */
@media screen and (max-width: 767px) {

    /* ABOUT */
    .raecon-about__wrapper {
        width: 85%;
    }

    .raecon-about__wrapper h2 {
        font-size: 1.7rem;
    }

    /* USP */
    .raecon-usp__wrapper {
        width: 85%;
    }

    .raecon-usp__item {
        flex-basis: 100%;
    }

    .raecon-usp__icon {
        display: none;
    }

    .raecon-usp__body h3 svg {
        display: inline-block;
        margin-right: 6px;
        font-size: 20px;
    }
}


/* Mobile (small) */
@media screen and (max-width: 480px) {

    /* ABOUT */
    .raecon-about__wrapper {
        width: 95%;
    }

    /* USP */
    .raecon-usp__wrapper {
        width: 95%;
    }
}