:root {
    --font-primary: "Roboto Condensed";
    --font-secondary: "Oswald";
    --icons: "vb-icons";
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.47;
}
h1, .h1 {
    font-size: 36px;
    margin: 0 0 30px;
}
h2, .h2 {
    font-size: 32px;
    margin: 0 0 24px;
}
h3, .h3 {
    font-size: 28px;
    margin: 0 0 20px;
}
h4, .h4 {
    font-size: 24px;
    margin: 0 0 16px;
}
h5, .h5 {
    font-size: 20px;
    margin: 0 0 12px;
}
h6, .h6 {
    font-size: 18px;
    margin: 0 0 12px;
}

.text-bold {
    font-weight: 500;
}
.text-red {
    color: var(--color-red) !important;
}

.btn {
    border: none;
    text-decoration: none !important;
    padding: 0 20px;
    height: 48px;
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background: none;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    box-shadow: none;
    border-radius: var(--radius);
    gap: 8px;

    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: var(--color-black);
}
.btn_primary {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn_primary:hover {
    background: var(--color-primary-hover);
    color: var(--color-white);
}
.btn_secondary {
    background: var(--color-grey-light);
    color: var(--color-black);
}
.btn_secondary:hover {
    background: var(--color-grey);
    color: var(--color-black);
}
.btn_white {
    background: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.btn_white:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn_md {
    height: 44px;
}
.btn_sm {
    height: 32px;
}
.btn_square {
    padding: 0 8px;
    width: 48px;
}
.btn_square.btn_md {
    padding: 0 6px;
    width: 44px;
}
.btn_square.btn_sm {
    padding: 0 4px;
    width: 32px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    white-space: nowrap;
    background: none;
    border: none;
    font-size: 16px;
    line-height: 1.2;
    font-weight: normal;
    padding: 0;
    outline: none;
}
.btn-link__inner {
    border-bottom: 1px solid var(--color-primary-half);
    transition: border-color var(--animate);
}
.btn-link_dashed .btn-link__inner {
    border-bottom-style: dashed;
}
.btn-link_secondary {
    color: var(--color-black);
}
.btn-link_secondary .btn-link__inner {
    border-bottom-color: var(--color-black-half);
}
.btn-link_secondary.btn-link_dashed:hover .btn-link__inner {
    border-bottom-color: var(--color-primary-half);
}
.btn-link:not(.btn-link_dashed):hover .btn-link__inner {
    border-color: transparent;
}




.section {
    position: relative;
    z-index: 1;
}
.section__bg,
.section__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.section__bg-img {
    object-position: center center;
    object-fit: cover;
}
.section__content {
    position: relative;
    z-index: 3;
}
.section__title {
    margin-bottom: 16px;
}



hr {
    display: block;
    border: none;
    border-top: 1px solid var(--color-grey);
    margin: 2.5em 0;
}

blockquote {
    display: block;
    background: var(--color-grey-light);
    padding: 2em;
    border-radius: var(--radius);
    margin: 2em;
    position: relative;
}
blockquote:before,
blockquote:after {
    position: absolute;
    line-height: 1;
    font-size: 72px;
    color: var(--color-primary);
    font-family: var(--font-secondary);
    pointer-events: none;
}
blockquote:before {
    content: "\201C";
    top: -0.15em;
    left: 0.15em;
}
blockquote:after {
    content: "\201D";
    bottom: -0.65em;
    right: 0.15em;
}

table:not([class]) {
    width: 100%;
    border-collapse: collapse;
}
table:not([class]) th {
    text-align: left;
    font-weight: 500;
    background: var(--color-grey-thin);
    padding: 0.75em 1em;
}
table:not([class]) td {
    padding: 0.75em 1em;
    border-bottom: 1px solid var(--color-grey-light);
}

.content-styles {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5;
}
.content-styles p {
    margin: 0;
}
.content-styles ol:not([class]),
.content-styles ul:not([class]) {
    margin: 0;
    padding: 0 0 0 1.5em;
}
.content-styles ul:not([class]) {
    list-style-type: disc;
}
.content-styles ol:not([class]) li,
.content-styles ul:not([class]) li {
    margin: 0 0 0.25em;
}
.content-styles ol:not([class]) li ul:not([class]),
.content-styles ol:not([class]) li ol:not([class]),
.content-styles ul:not([class]) li ul:not([class]),
.content-styles ul:not([class]) li ol:not([class]) {
    margin: 0.5em 0;
}
.content-styles *:not(hr) + *:not(hr),
.content-styles *:not(hr) + p,
.content-styles *:not(hr) + ul:not([class]),
.content-styles *:not(hr) + ol:not([class]) {
    margin-top: 1em;
}



