body {
    font-family: 'Poppins', sans-serif;
}

h2,
.h2 {
    color: var(--bbx-locales-primary-color);
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 37px;
    margin-bottom: 25px;
}

h3,
.h3 {
    color: var(--bbx-locales-primary-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

h4,
.h4 {
    color: var(--bbx-locales-grey-text);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 25px;
}

.post-content h2:not(:first-child),
.post-content .h2:not(:first-child) {
    margin-top: 50px;
}

p {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

input {
    outline: 0;
}

a {
    color: var(--bbx-locales-primary-color);
    outline: 0;
    transition: color .3s ease;
}

a:hover {
    color: var(--bbx-locales-secondary-color);
}

a.white {
    color: #FFFFFF;
}

a.no-underline {
    text-decoration: none;
}

a.arrow-link {
    text-decoration: none;
}

a.arrow-link::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: relative;
    left: 0;
    transition: left .3s ease;
    content: "\f061";
    margin-right: 10px;
}

a.arrow-link:hover::before {
    left: 5px;
}

.hidden {
    display: none !important;
}

.bold {
    font-weight: 700;
}

.container-lg {
    padding: 0 25px;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.sub-container {
    margin: 0 auto;
    margin-bottom: 50px;
}

.sub-container.local {
    max-width: 800px;
}

@media screen and (min-width: 768px) {
    h2,
    .h2 {
        /*font-size: 40px;*/
        font-size: 32px;
        line-height: normal;
    }

    h3,
    .h3 {
        font-size: 25px;
    }

    h4,
    .h4 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    .sub-container {
        margin-bottom: 100px;
    }
}

@media screen and (min-width: 992px) {
    .main {
        /*padding: 0 50px;*/
    }

    .sub-container {
        max-width: 80%;
    }
}