/* =========================================================
   TOUR OVERVIEW
   ========================================================= */

#overview {
    width: 100%;
}


/* =========================================================
   OVERVIEW TITLE
   ========================================================= */

#overview h2 {
    margin: 0 0 16px;

    color: var(--color-text);
    font-family: var(--font-family);

    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;

    letter-spacing: -0.3px;
}


/* =========================================================
   OVERVIEW PARAGRAPH
   ========================================================= */

#overview p {
    margin: 0;

    color: var(--color-text-muted);
    font-family: var(--font-family);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   PARAGRAPH SPACING
   ========================================================= */

#overview p + p {
    margin-top: 14px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    #overview h2 {
        margin-bottom: 14px;
        font-size: 22px;
    }

    #overview p {
        font-size: 15px;
        line-height: 1.7;
    }

    #overview p + p {
        margin-top: 13px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    #overview h2 {
        margin-bottom: 13px;

        font-size: 21px;
        line-height: 1.25;
    }

    #overview p {
        font-size: 15px;
        line-height: 1.7;
    }

    #overview p + p {
        margin-top: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    #overview h2 {
        margin-bottom: 12px;
        font-size: 20px;
    }

    #overview p {
        font-size: 15px;
        line-height: 1.7;
    }

    #overview p + p {
        margin-top: 11px;
    }

}