@charset "utf-8";

.page-title {
    margin: 0 0 32px;
}

h1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    margin: 0;
}
h2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 20px;
}
h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 20px;
}
h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}
h5 {}
h6 {}
@media screen and (min-width: 768px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
}

a {
    text-decoration: none !important;
    color: var(--color-black);
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
a:hover {
    color: var(--color-primary);
}
a:not([class]) {
    
}
a:not([class]):hover {
    
}
.link-primary {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary-half);
}
.link-primary:hover {
    border-color: transparent;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}
.img-rounded {
    border-radius: 24px;
}
.img-full {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .img-rounded {
        border-radius: 40px;
    }
}

/* helpers */
.text-primary {
    color: var(--color-primary) !important;
}
.text-black {
    color: var(--color-black) !important;
}
.text-black.text-underline {
    border-bottom: 1px solid var(--color-black-half);
}
.text-nowrap {
    white-space: nowrap !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.text-bold {
    font-weight: bold;
}
.cursor-pointer {
    cursor: pointer;
}

.align-items-center {
    align-items: center;
}
.align-items-end {
    align-items: flex-end;
}
.align-self-center {
    align-self: center;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-content-center {
    justify-content: center;
}
.shrink-none {
    flex-shrink: 0;
}
.mt0 {
    margin-top: 0 !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.mr1 {
    margin-right: 0.5rem;
}
.pt0 {
    padding-top: 0 !important;
}
.hidden {
    display: none !important;
}
@media screen and (max-width: 991px) {
    .visible_lg {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .hidden_mobile {
        display: none !important;
    }
}
@media screen and (min-width: 768px) {
    .visible_mobile {
        display: none !important;
    }
}


.section {
    position: relative;
}
.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__bg_right .section__bg-img {
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    object-position: right center;
    object-fit: auto;
}
.section__content {
    position: relative;
    z-index: 3;
}
.section__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section__title_sm {
    font-size: 18px;
    font-weight: 500;
}
.section__title_line {
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.section__title_line:before,
.section__title_line:after {
    content: "";
    display: block;
    height: 1px;
    background: var(--color-grey);
    flex: 1 1 auto;
}
.section__title_line:before {
    margin-right: 16px;
}
.section__title_line:after {
    margin-left: 16px;
}
.section__title a:not([class]) {
    color: var(--color-blue-active);
    border-bottom: 1px solid var(--color-blue-active-half);
}
.section__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}
.section__text_sm {
    font-size: 16px;
    font-weight: 400;
}
.section__helper {
    color: var(--color-black-half);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.37;
}
.section__text + .section__helper {
    margin-top: 16px;
}
.section__btn {
    margin-top: 56px;
}
.section__btn_mt_md {
    margin-top: 48px;
}
.section__btn_mb_md {
    margin-bottom: 48px;
}
.section_overflow {
    overflow: hidden;
}
.section_mt,
.section_mt_md {
    margin-top: 40px;
}
.section_py {
    padding-top: 40px;
    padding-bottom: 40px;
}
.section_grey {
    background: var(--color-grey-light);
}
.section_rounded {
    margin-left: -20px;
    margin-right: -20px;
    padding: 30px 20px;
}
.section_dark {
    background: var(--color-black);
    color: var(--color-white);
}
@media screen and (max-width: 767px) {
    .section_buyers {
        padding-bottom: 350px;
    }
}
@media screen and (min-width: 768px) {
    .section__title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    .section__title_md {
        font-size: 24px;
    }
    .section__title_sm {
        font-size: 18px;
        font-weight: 500;
    }
    .section__title_line {
        margin-bottom: 40px;
    }
    .section__title_line:before {
        margin-right: 50px;
    }
    .section__title_line:after {
        margin-left: 50px;
    }
    .section_mt {
        margin-top: 80px;
    }
    .section_mt_md {
        margin-top: 40px;
    }
    .section_py {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section_rounded {
        margin-left: 0;
        margin-right: 0;
        border-radius: 40px;
        padding: 56px;
    }
    
}
@media screen and (min-width: 992px) {}

.btn {
    border: none;
    text-decoration: none !important;
    padding: 0 24px;
    line-height: 1.2;
    height: 60px;
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background: none;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    z-index: 1;
    box-shadow: none;
    border-radius: 16px;
    
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
}
.btn:hover {
    box-shadow: 0px 84px 34px rgba(0, 0, 0, 0.01), 0px 48px 29px rgba(0, 0, 0, 0.05), 0px 21px 21px rgba(0, 0, 0, 0.09), 0px 5px 12px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
}
.btn_primary {
    font-weight: bold;
    background: var(--color-primary);
    color: var(--color-white);
}
.btn_primary:hover {
    background: var(--color-primary);
    color: #fff;
}
.btn_primary:active {
    background: var(--color-primary-active);
    color: #fff;
}
.btn_secondary {
    background: var(--color-secondary);
    color: var(--color-white);
}
.btn_secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}
.btn_secondary:active {
    background: var(--color-secondary-active);
    color: var(--color-white);
}
.btn_default,
.btn_default:hover {
    background: var(--color-grey-light);
    color: var(--color-black);
}
.btn_default:active {
    background: var(--color-grey-light-active);
}
.btn_block {
    display: flex;
    width: 100%;
}
.btn_md {
    height: 56px;
}

.btn_icon_wa:before {
    font-family: "olg-icons";
    font-size: 20px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
    margin-right: 16px;
}
.btn_icon_wa:before {
    content: "\e907";
}
@media screen and (min-width: 768px) {}

.btn-icon {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-icon_active {
    color: var(--color-blue-active);
}


.content-styles {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.content-styles p {
    margin: 0;
}
.content-styles * + p {
    margin-top: 16px;
}
.content-styles * + h2,
.content-styles * + h3,
.content-styles * + h4,
.content-styles * + h5 {
    margin-top: 40px;
}
.content-styles ol:not([class]),
.content-styles ul:not([class]) {
    margin: 0;
    padding: 0 0 0 20px;
}
.content-styles ol:not([class]) li:not(:last-child),
.content-styles ul:not([class]) li:not(:last-child) {
    margin-top: 16px;
}
.content-styles * + ol:not([class]),
.content-styles * + ul:not([class]) {
    margin-top: 16px;
}
.content-styles ol:not([class]),
.content-styles ul:not([class]) {}
.content-styles_mb {
    margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
    
}
@media screen and (min-width: 992px) {
    
}

