/* -------------------PRESETS------------------- */
:root {
    --inner-wrapper-width: 1400px;
    --orange-color: #ff6f3c;
    --global-font-family: 'Montserrat';
    --paragraph-font-family: 'Open Sans';
    --dark-background-color: #1a3e5c;
}

* {
    box-sizing: border-box;
}

.container {
    padding: 0 20px;
    max-width: 78%;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin-top: 0;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
}

p.h1sub {
    font-size: 34px;
}

h2 {
    font-size: 38px;
    font-weight: 700;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

p {
    font-size: 16px;
    font-family: var(--paragraph-font-family);
    color: #4a4a4a;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
}

.global {
    font-size: 28px;
}

.orange_button span {
    font-size: 16px;
}

.hero-section .container .heading-container .description p {
    font-size: 16px;
}

/* -------------------RESPONSIVE PRESETS------------------- */

@media only screen and (max-width: 1536px) {
    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 23px;
    }

    h4 {
        font-size: 19px;
    }

    p {
        font-size: 16px;
        font-family: var(--paragraph-font-family);
        color: #4a4a4a;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: 0%;
    }
}

@media only screen and (max-width: 1024px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    p {
        font-size: 16px;
        font-family: var(--paragraph-font-family);
        color: #4a4a4a;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: 0%;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        /* nothing yet */
    }

    h4 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    .container {
        max-width: 95%;
        width: 95%;
    }
}

.breadcrumbs {
    margin-bottom: 32px;
}

.breadcrumbs .breadcrumbs-container {
    width: 100%;
}

.breadcrumbs .breadcrumbs-container .custom-breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumbs .breadcrumbs-container .custom-breadcrumbs a {
    text-decoration: none;
    color: initial;
    opacity: 0.7;
}

.breadcrumbs .breadcrumbs-container .custom-breadcrumbs span {
    font-weight: 500;
}

@media only screen and (max-width: 520px) {
    .breadcrumbs .breadcrumbs-container .custom-breadcrumbs .home {
        display: none;
    }

    .breadcrumbs .breadcrumbs-container .custom-breadcrumbs .separator-one {
        display: none;
    }
}