h1, .h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 20px;
}
h2, .h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 20px;
}
h3, .h3 {}
h4, .h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 24px;
}
h5, .h5 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1;
    margin: 0;
}
h6, .h6 {
    font-size: inherit;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}
@media screen and (min-width: 768px) {
    h1, .h1 {
        font-size: 40px;
    }
    h2, .h2 {
        font-size: 32px;
        font-weight: bold;
    }
}


.text-nowrap {
    white-space: nowrap;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-center {
    text-align: center !important;
}

.font-light {
    font-weight: 300 !important;
}
.font-medium {
    font-weight: 500 !important;
}
.font-semibold {
    font-weight: 600 !important;
}

.section {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}
.section__title {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.17;
    margin: 0 0 24px;
}
.section__text {
    color: var(--color-grey-semibold);
}
.section__img {
    margin-left: auto;
    margin-right: auto;
}
.section_overflow {
    overflow: hidden;
}
.section_mt {
    margin-top: 24px;
}
@media screen and (min-width: 576px) {}
@media screen and (min-width: 768px) {
    .section__title {
        font-size: 28px;
    }
    
}
@media screen and (min-width: 992px) {
    .section__title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}
@media screen and (min-width: 1280px) {
    .section__title {
        font-size: 48px;
    }
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    height: 48px;
    padding: 0 15px;
    border: 1px solid transparent;
    background: none;
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    white-space: nowrap;
    transition: background var(--animate), color var(--animate), border-color var(--animate);
    position: relative;
}
.btn_primary {
    color: var(--color-white);
    border-color: var(--color-primary);
    background: var(--color-primary);
}
.btn_primary:hover {
    color: var(--color-white);
    border-color: var(--color-primary-hover);
    background: var(--color-primary-hover);
}
.btn_empty_default {
    background: transparent;
    border-color: var(--color-black);
    color: var(--color-black);
}
.btn_empty_default:hover {
    background: var(--color-black);
    color: var(--color-white);
}
.btn_empty_primary {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-dark);
}
.btn_empty_primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
.btn_block {
    width: 100%;
}
.btn_md {
    height: 42px;
    font-weight: normal;
}
.btn[disabled] {
    cursor: not-allowed;
    filter: grayscale(100);
    opacity: 0.7;
    pointer-events: none;
}
@media screen and (min-width: 768px) {
    .btn {
        height: 63px;
        padding: 0 30px;
    }
    .btn_md {
        height: 56px;
        padding: 0 15px;
    }
}


.btn-link {
    position: relative;
    color: var(--color-dark);
}
.btn-link:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: var(--radius);
    background: var(--color-primary);
    transform: scale(0,1);
    transform-origin: 0 0;
    transition: transform var(--animate);
}
.btn-link:hover {
    color: var(--color-primary);
}
.btn-link:hover:after {
    transform: scale(1,1);
}

.popover-block {
    display: inline-flex;
    position: relative;
}
.popover-block:before {
    content: "\e907";
    font-family: var(--icons);
    font-size: 24px;
    line-height: 1;
    color: var(--color-grey-light);
    transition: color var(--animate);
}
.popover-block:after {
    content: attr(data-popover);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.14;
    background: var(--color-light);
    padding: 15px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translate(-50%,0);
    width: 300px;
    max-width: calc(100vw - 20px);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--animate), visibility var(--animate);
    box-shadow: var(--shadow);
    pointer-events: none;
}
.popover-block:hover:before {
    color: var(--color-dark);
}
.popover-block:hover:after {
    opacity: 1;
    visibility: visible;
}


blockquote {
    margin: 1em 0;
    padding: 0 34px;
    position: relative;
}
blockquote:before,
blockquote:after {
    content: "\e90a";
    font-family: var(--icons);
    font-size: 18px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
    color: var(--color-primary);
    position: absolute;
}
blockquote:before {
    top: 0;
    left: 0;
}
blockquote:after {
    right: 0;
    bottom: 0;
    transform: scale(-1,-1);
}

.list-marker {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.list-marker > li {
    position: relative;
    padding-left: 35px;
    min-height: 18px;
}
.list-marker > li + li {
    margin-top: 0.5em;
}
.list-marker > li:before {
    content: "\e90c";
    font-family: var(--icons);
    font-size: 20px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    left: 0;
}
@media screen and (min-width: 768px) {
    .list-marker > li:before {
        top: 0.25em;
        transform: none;
    }
}

.content-styles {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.14;
}
.content-styles p {
    margin: 0;
}
.content-styles a:not([class]) {
    border-bottom: 1px solid var(--color-primary);
}
.content-styles a:not([class]):hover {
    border-color: transparent;
}

.content-styles * + p {
    margin-top: 1em;
}
.content-styles * + h2,
.content-styles * + .h2,
.content-styles * + h3,
.content-styles * + .h3,
.content-styles * + h4,
.content-styles * + .h4,
.content-styles * + h5,
.content-styles * + .h5,
.content-styles * + h6,
.content-styles * + .h6,
.content-styles > img:not([class]) + * {
    margin-top: 1em;
}
.content-styles * + ul,
.content-styles * + ol,
.content-styles p + p {
    margin-top: 1em;
}
.content-styles h2 + *,
.content-styles .h2 + *,
.content-styles h3 + *,
.content-styles .h3 + *,
.content-styles h4 + *,
.content-styles .h4 + *,
.content-styles h5 + *,
.content-styles .h5 + *,
.content-styles h6 + *,
.content-styles .h6 + * {
    margin-top: 1.5em !important;
}
@media screen and (min-width: 768px) {
    .content-styles {
        font-size: 20px;
        line-height: 1.5;
    }
}








._loading {
    position: relative;
    pointer-events: none;
    min-height: 100px;
}
._loading:before {
    content: "";
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: preloader-spin 1s infinite linear;
}
@keyframes preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}