:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #da2127;
    --accent-color-2: #004892;
    --accent-background-color: #f0f1f7;
    --accent-background-color-2: #b6cbed;
    --page-max-width: 1920px;
    --container-padding: 123px;
    --container-margin-bottom: 80px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --input-error-background-color: #fce7e7;
    --input-error-border-color: #faababbd;
    --tooltip-background-color: #fff;
    --hs-menu-line-color: #da2127;
    --font-family: 'Roboto', sans-serif;
    --font-family-accent: 'Roboto Condensed', sans-serif;
}

@media (max-width: 1600px) {
    :root {
        --container-padding: 5%;
    }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

body {
    margin: 0;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    line-height: 150%;
}

.site-container {
    min-height: 400px;
}

.is-hidden {
    display: none !important;
}

.btn-reset {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* || HEADER start|| */
.hc-nav-trigger {
    position: relative;
    display: none;
    padding: 0;
    margin-left: auto;
    margin-right: 5%;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 11;
    transition: 0.3s ease;
    background-image: url(/img/backgrounds/cm_header-bg.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.header.header--scrolled {
    top: -60px;
    background-color: #fff;
}
.header.header--scrolled .header-logo {
    max-height: 70px;
    max-width: 250px;
    padding-bottom: 15px;
}
.header.header--scrolled .header-logo img {
    max-height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
}
.header__layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    height: 120px;
}
.header__layout-top {
    position: relative;
    z-index: 5;
    width: 100%;
}
.header__layout-top__inner {
    width: 100%;
    height: 55px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #000;
    padding: 0 var(--container-padding);
}
.header__layout-top__inner > div {
    display: flex;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.header__layout-top__inner > div > a {
    color: #000;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.header__layout-top__inner > div > a:hover {
    text-decoration: underline;
}
.header__layout-top__inner svg {
    color: var(--accent-color-2);
}
@media (max-width: 1000px) {
    .header__layout-top__inner > a span {
        display: none;
    }
}
@media (max-width: 1350px) {
    .header__layout-top__inner > div > a {
        /* .header__layout-top__inner > div > a:not(:first-of-type) { */
        display: none;
    }
}
@media (max-width: 500px) {
    .header__layout-top__inner > div > a span {
        display: none;
    }
}

.header__layout-top__inner-mailer {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

@media (max-width: 1350px) {
    .header__layout-top__inner-mailer {
        margin-right: 0;
    }
}

@media (max-width: 1050px) {
    .header__layout-top__inner-mailer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.header__layout-top__inner-mailer form {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.header__layout-top__inner-mailer form input {
    padding: 5px;
    border: 1px solid #979696;
}

.header__layout-top__inner-mailer form button {
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding: 5px 10px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width: 1050px) {
    .header__layout-top__inner-mailer p {
        font-size: 12px;
    }
    .header__layout-top__inner-mailer form input {
        padding: 3px;
        font-size: 12px;
    }

    .header__layout-top__inner-mailer form button {
        padding: 3px 5px;
        font-size: 11px;
    }
}

.header__layout-top__inner-mailer form button svg {
    color: currentColor;
}

.header__layout-bottom {
    height: 60px;
    display: flex;
    justify-content: stretch;
    align-items: flex-end;
}
.header__layout-bottom__inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 50px;
    column-gap: 50px;
    padding: 0px var(--container-padding);
}
.header__top-link {
    color: #000;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.header__top-link:hover {
    text-decoration: underline;
}
.header-logo {
    padding: 10px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 490px;
    z-index: 6;
}
.header-logo img {
    display: flex;
    max-width: 100%;
    max-height: 100%;
}
@media (max-width: 835px) {
    .header-logo {
        max-width: 350px;
        padding-bottom: 15px;
    }
}
@media (max-width: 500px) {
    .header-logo img {
        min-width: 200px;
    }
}
.header-menu {
    list-style: none;
    display: flex;
    align-items: stretch;
    align-self: flex-end;
    justify-content: flex-end;
    height: 50px;
    padding-bottom: 10px;
}
.header-menu > li {
    display: flex;
    align-items: stretch;
    height: auto;
}
.header-menu > li:hover .header-submenu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}
.header-menu > li:hover .header-submenu-wide {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}
.header-menu > li:hover > a {
    color: #000;
}
.header-menu__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    height: auto;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    padding: 0 20px;
    white-space: nowrap;
    transition: 0.3s ease;
}
@media (max-width: 1700px) {
    .header-menu__link {
        font-size: 14px;
        padding: 0 15px;
    }
}
.header-menu__link.header-menu__link--active {
    background-color: var(--accent-color);
    color: #fff;
}
@media (max-width: 1350px) {
    .header-menu {
        background-color: transparent;
        flex: none;
    }
    .header-menu > *:not(.header__menu-mobile) {
        display: none;
    }
}
.header-menu-partner {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 500px) {
    .header-menu {
        padding-left: 0;
    }
}
.header-submenu {
    list-style: none;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(50px);
    background-color: var(--accent-color);
    color: #fff;
    min-width: 200px;
    max-width: 820px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: 0.2s ease;
}
.header-submenu > li {
    border-bottom: 1px solid #668edc33;
}
.header-submenu > li a {
    display: flex;
    align-items: center;
    color: #ffc2c2;
    padding: 15px 20px 15px 20px;
    transition: 0.2s ease;
    position: relative;
}
.header-submenu > li a:hover {
    background-color: var(--accent-color);
    color: #fff;
}
.header-submenu-wide {
    list-style: none;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    width: 100vw;
    top: calc(100% - 10px);
    left: 0;
    transform: translateY(50px);
    background-color: var(--accent-color);
    color: #fff;
    min-width: 200px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: 0.2s ease;
}
.header-submenu-wide ul {
    list-style: none;
    display: flex;
    justify-content: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding: 40px;
    max-width: 1700px;
    margin: 0 auto;
}
.header-submenu-wide ul > li {
    flex: 1;
    display: flex;
}
.header-submenu-wide ul > li .header-submenu-wide__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 260px;
    color: #fff;
    font-family: var(--font-family-accent);
    font-size: clamp(14px, 1vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.header-submenu-wide ul > li .header-submenu-wide__item:hover {
    background-color: var(--accent-color);
    color: #fff;
}
.header-submenu-wide ul > li .header-submenu-wide__item-title {
    margin-bottom: 10px;
}
.header-submenu-wide ul > li .header-submenu-wide__item-image {
    display: flex;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.header-submenu-wide ul > li .header-submenu-wide__item-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.5s ease;
}
.header__partner {
    overflow: hidden;
}
.header__menu-mobile {
    display: flex;
    align-items: center;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* || HEADER end || */
/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: 'par__img par__txt';
    grid-gap: 5%;
    padding-block: 20px;
    max-width: var(--page-max-width);
    margin: auto;
}
.par.par--bg-accent .par__txt {
    background-color: var(--accent-color);
    color: #fff;
}
.par.par--bg-accent .par__txt ul li {
    color: #fff;
}
.par.par--bg-accent .par__txt p {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__txt-footer a {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link {
    color: #fff;
    border-color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link:hover {
    background-color: #fff;
    color: var(--accent-color);
}
.par.par--bg-accent .par__txt .par__subttl {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__subttl::after {
    background-color: var(--accent-color-2);
}
.par.par--bg-accent .par__txt ul li::after {
    background-color: #fff;
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
}
.par__txt ul:not(.styled-list) {
    padding: 30px 0 30px 30px;
}
.par__txt-footer {
    border-top: 1px solid #bdbdbd;
    margin-bottom: 25px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 20px;
}
.par__txt-footer__item {
    text-transform: uppercase;
    font-size: clamp(12px, 1vw, 18px);
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.par__txt-footer__item a {
    color: #000;
}
.par__txt-footer__item svg {
    color: var(--accent-color-2);
}
.par__img {
    grid-area: par__img;
    position: relative;
    display: flex;
    align-items: flex-start;
}
.par__img img {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    position: -webkit-sticky;
    position: sticky;
    top: 230px;
}
.par__ttl {
    font-size: clamp(25px, 4vw, 30px);
    line-height: 110%;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}
.par__subttl {
    font-size: 13px;
    font-family: var(--font-family-accent);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.65px;
    background-color: var(--accent-color);
    line-height: 1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 3px 10px;
    margin-bottom: 10px;
}
.par__subttl--center {
    text-align: center;
}
.par__subttl--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.par__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    padding-bottom: 25px;
}
.par__text > img {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.par__text-link {
    margin-top: 35px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #333;
    font-family: var(--font-family-accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    padding: 10px 15px;
    border: 1px solid #333;
    transition: 0.2s ease;
}
.par__text-link:hover {
    background-color: #333;
    color: var(--color-white);
}
@media (max-width: 768px) {
    .par__text {
        margin-top: 0px;
    }
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 100% !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
        row-gap: unset;
    }
    .par .par__txt {
        padding-top: 5%;
    }
    .par .par__img {
        display: block;
        margin: 0 auto;
    }
    .par .par__img img {
        display: block;
        margin: 0 auto;
    }
}

.par.par--left {
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: 'par__img par__txt';
}

.par.par--right {
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas: 'par__txt par__img';
}

.par.par--center {
    grid-template-columns: 100%;
    grid-template-areas: 'par__img' 'par__txt ';
}
.par.par--center .par__img {
    display: block;
    margin: 0 auto;
}
.par.par--center .par__img img {
    display: block;
    margin: 0 auto;
}
.par__txt.par__txt--center {
    justify-content: center;
}

/* [_paragraph end] */
.two-col-par {
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 40px;
    column-gap: 40px;
    -moz-column-fill: balance;
    column-fill: balance;
}

.two-col-par > * {
    -moz-column-break-after: avoid;
    break-after: avoid;
}

@media (max-width: 768px) {
    .two-col-par {
        -moz-columns: 1;
        columns: 1;
    }
}
.footer {
    background-color: #fff;
}
.footer__middle {
    position: relative;
    padding: 50px 0 26px 0;
}
@media (max-width: 1350px) {
    .footer__middle {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }
}
@media (max-width: 850px) {
    .footer__middle {
        grid-template-columns: 100%;
        row-gap: 35px;
    }
}
.footer__bottom {
    background-color: #dddddd;
}
.footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
    padding: 25px 0 25px 0;
    font-size: 14px;
    color: #696767;
}
.footer__bottom a {
    color: #696767;
    text-decoration: none;
}
.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
    width: 100%;
    max-width: 400px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.footer__label {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 2px;
}
.footer__title {
    font-family: var(--font-family-accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
}
.footer__nav-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
}
.footer__nav-wrapper ul {
    list-style: none;
}
.footer__nav-wrapper ul li {
    margin-bottom: 3px;
}
.footer__nav-wrapper ul a {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    transition: 0.3s ease;
}
.footer__nav-wrapper ul a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}
@media (max-width: 1350px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        row-gap: 35px;
    }
    .footer__nav-wrapper > :nth-child(1) {
        grid-column: 1/-1;
    }
}
@media (max-width: 950px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }
    .footer__nav-wrapper > :nth-child(1) {
        grid-column: 1/-1;
    }
}
@media (max-width: 650px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }
    .footer__nav-wrapper > :nth-child(1) {
        grid-column: 1/-1;
    }
    .footer__nav-wrapper > :last-child {
        grid-column: 1/-1;
    }
}
.footer__contacts-layout {
    display: grid;
    grid-template-columns: 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
}
@media (max-width: 1100px) {
    .footer__contacts-layout {
        grid-template-columns: 1fr;
    }
}
.footer__contacts-item {
    padding-left: 40px;
    min-height: 30px;
    color: #000;
}
.footer__contacts-item a {
    color: #000;
    text-decoration: none;
}
.footer__contacts-item.phone {
    background: url('/img/svg/cm_phone.svg') no-repeat 0 0;
}
.footer__contacts-item.phone a {
    white-space: nowrap;
}
.footer__contacts-item.phone p {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.footer__contacts-item.pin {
    background: url('/img/svg/cm_pin.svg') no-repeat 0 0;
}

:root {
    --bg-table-stripe: var(--accent-color-3);
    --b-table: #e3e3e2;
    --caption: #242423;
}

table {
    background-color: transparent;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
}

th {
    text-align: left;
}

.dcf-txt-center {
    text-align: center !important;
}

.dcf-txt-left {
    text-align: left !important;
}

.dcf-txt-right {
    text-align: right !important;
}

.dcf-table caption {
    color: var(--caption);
    font-size: 1.13em;
    font-weight: 700;
    padding-bottom: 0.56rem;
}

.dcf-table thead {
    font-size: 0.84em;
}

.dcf-table tbody {
    border-bottom: 1px solid var(--b-table);
    border-top: 1px solid var(--b-table);
    font-size: 0.84em;
}

.dcf-table tfoot {
    font-size: 0.84em;
}

.dcf-table td,
.dcf-table th {
    padding-right: 1.78em;
}

.dcf-table-bordered,
.dcf-table-bordered td,
.dcf-table-bordered th {
    border: 1px solid var(--b-table);
}

.dcf-table-bordered td,
.dcf-table-bordered th,
.dcf-table-striped td,
.dcf-table-striped th {
    padding-left: 1em;
    padding-right: 1em;
}

.dcf-table-bordered tr:not(:last-child),
.dcf-table-striped tr:not(:last-child) {
    border-bottom: 1px solid var(--b-table);
}

.dcf-table-striped tbody tr:nth-of-type(2n) {
    background-color: var(--bg-table-stripe);
}

.dcf-table thead td,
.dcf-table thead th {
    padding-top: 21px;
    padding-bottom: 11px;
    vertical-align: bottom;
    background-color: var(--accent-color-2);
    color: #fff;
    font-weight: 400;
    font-size: clamp(13px, 2vw, 16px);
    line-height: 120%;
    /* identical to box height, or 136% */
    text-transform: uppercase;
    /* White */
    color: #ffffff;
}

.dcf-table tbody td,
.dcf-table tbody th,
.dcf-table tfoot td,
.dcf-table tfoot th {
    padding-top: 0.75em;
    vertical-align: middle;
    background-color: var(--accent-color-3);
    border-color: #fff;
}

.dcf-table tbody td,
.dcf-table tbody th {
    padding-bottom: 0.75em;
}

.dcf-table-bordered thead th {
    padding-top: 1.33em;
}

.dcf-wrapper-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: 1em;
    position: relative;
    right: 50%;
    width: 100vw;
}

@media only screen and (max-width: 800px) {
    .dcf-table-responsive thead {
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
        clip-path: inset(50%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        width: 1px;
        white-space: nowrap;
    }

    .dcf-table-responsive tr {
        display: block;
    }

    .dcf-table-responsive td {
        -moz-column-gap: 3.16vw;
        column-gap: 3.16vw;
        display: grid;
        grid-template-columns: 1fr 2fr;
        text-align: left !important;
    }

    .dcf-table-responsive.dcf-table-bordered,
    .dcf-table-responsive.dcf-table-bordered thead th {
        border-width: 0;
    }

    .dcf-table-responsive.dcf-table-bordered tbody td {
        border-top-width: 0;
    }

    .dcf-table-responsive:not(.dcf-table-bordered) tbody tr {
        padding-bottom: 0.75em;
    }

    .dcf-table-responsive:not(.dcf-table-bordered) tbody td {
        padding-bottom: 0;
    }

    .dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped) tbody td {
        padding-right: 0;
    }

    .dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child {
        border-bottom-width: 0;
    }

    .dcf-table-responsive tbody td:before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        padding-right: 1.78em;
    }
}
.dcf-overflow-x-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

.dcf-w-100\% {
    width: 100% !important;
}

.quote-popup {
    padding: 0;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
}
.quote-popup > form {
    width: 100%;
}
@media (max-width: 700px) {
    .quote-popup > form {
        grid-template-columns: 100%;
    }
}
.quote-popup__form-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    justify-content: flex-start;
    grid-gap: 40px 35px;
    padding: 50px 50px 50px 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.quote-popup__form-block * {
    font-family: var(--font-style-3);
}
.quote-popup__form-block__head {
    grid-column: 1/-1;
}
.quote-popup__form-block__title {
    font-family: var(--font-family-accent);
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    padding: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.quote-popup__form-block__subtitle {
    font-family: var(--font-family-accent);
    grid-column: 1/-1;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 100%;
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: -0.04em;
    position: relative;
    text-transform: uppercase;
    text-align: center;
}
.quote-popup__form-block__slogan {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
}
.quote-popup__form-block__slogan a {
    font-weight: 600;
    color: #333333;
}
.quote-popup__form-block > input,
.quote-popup__form-block .jfilestyle input,
.quote-popup__form-block > textarea {
    background-color: #eee;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 17px;
}
.quote-popup__form-block .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.quote-popup__form-block__checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.quote-popup__form-block__checkboxes-wrapper {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
@media (max-width: 1550px) {
    .quote-popup__form-block__checkboxes-wrapper {
        flex-direction: column;
        row-gap: 10px;
    }
}
@media (max-width: 1000px) {
    .quote-popup__form-block {
        padding: 45px;
    }
}
@media (max-width: 700px) {
    .quote-popup__form-block {
        grid-template-columns: 100%;
    }
}
@media (max-width: 550px) {
    .quote-popup__form-block {
        padding: 50px 5%;
    }
}
.quote-popup__image-block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 700px) {
    .quote-popup__image-block {
        display: none;
    }
}
.quote-popup.fancybox__content {
    --carousel-button-svg-width: 14px;
    --carousel-button-svg-height: 14px;
}
.quote-popup.fancybox__content > .carousel__button.is-close {
    top: 10px;
    right: 10px;
    border: 3px solid #fff;
}

.home-hero {
    --swiper-navigation-color: #fff;
}
.home-hero .swiper-slide {
    min-height: 570px;
    display: flex;
}
.home-hero .swiper-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.home-hero .swiper-slide__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.home-hero .swiper-slide__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.home-hero__content {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000;
    padding: 60px var(--container-padding);
}
.home-hero__content-title {
    color: #fff;
    font-size: clamp(36px, 3vw, 65px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.home-hero__content-subtitle {
    color: #fff;
    font-size: clamp(20px, 1.5vw, 30px);
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}
.home-hero__content-subtitle span {
    font-weight: 700;
}
.home-hero__content-link {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 25px;
    margin-top: 40px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    border: 1px solid #fff;
    transition: 0.2s ease;
}
.home-hero__content-link:hover {
    background-color: var(--accent-color-2);
    color: #fff;
}
@media screen and (max-width: 700px) {
    .home-hero__content-link {
        padding: 10px 15px;
        margin-top: 30px;
    }
}
.home-hero__media {
    margin-left: auto;
}
@media screen and (max-width: 1024px) {
    .home-hero__media {
        display: none;
    }
}

.home-auctions {
    position: relative;
}
.home-auctions__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: -1;
    background-color: var(--accent-color-2);
}
.home-auctions__body {
    margin-top: 20px;
}
.home-auctions .tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f0f1f7;
}
.home-auctions .tabs-container .tabs {
    display: flex;
    overflow: hidden;
    width: 100%;
}
.home-auctions .tabs-container .tabs .tab {
    width: 40%;
    padding: 15px 70px;
    cursor: pointer;
    font-family: var(--font-family-accent);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    background-color: #0c3c6d;
    color: #677fbc;
    position: relative;
    z-index: 1;
    transform: skewX(35deg);
    transition: 0.2s ease;
}
.home-auctions .tabs-container .tabs .tab > span {
    display: block;
    transform: skewX(-35deg);
}
.home-auctions .tabs-container .tabs .tab.active {
    background-color: #f0f1f7;
    color: #0c3c6d;
}
.home-auctions .tabs-container .tabs .tab:hover {
    background-color: #e3e3e3;
    color: #0c3c6d;
}
@media (max-width: 768px) {
    .home-auctions .tabs-container .tabs .tab {
        width: 50%;
        font-size: 18px;
        padding: 15px 30px;
    }
}
.home-auctions .tabs-container .tabs > :nth-child(1) {
    margin-left: -22px;
}
.home-auctions .tab-content {
    background-color: #f5f5f5;
    padding: 50px 100px;
    display: none;
}
.home-auctions .tab-content.active {
    display: block;
}
@media (max-width: 1450px) {
    .home-auctions .tab-content {
        padding: 50px 20px;
    }
}
.home-auctions-swiper {
    padding: 20px 0 50px 0;
    --swiper-pagination-bullet-size: 17px;
    --swiper-pagination-bullet-border-radius: 0;
    --swiper-pagination-color: var(--accent-color);
    --swiper-pagination-bottom: 0;
}
.home-auctions-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.auction-item {
    width: 100%;
    background-color: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    row-gap: 30px;
}
.auction-item__title {
    color: #000;
    text-align: center;
    font-family: var(--font-family-accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
@media (max-width: 500px) {
    .auction-item__title {
        font-size: 14px;
    }
}
.auction-item__layout {
    display: flex;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 20px;
}
@media (max-width: 500px) {
    .auction-item__layout {
        flex-direction: column;
    }
}
.auction-item__media {
    flex: 1;
    display: flex;
    position: relative;
    /* padding-bottom: 30%; */
    /* padding bottom min 200px max 30% */
    padding-bottom: min(200px, 30%);
    height: 0;
    overflow: hidden;
}

@media (max-width: 500px) {
    .auction-item__media {
        padding-bottom: 200px;
    }
}

.auction-item__media img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;

    position: absolute;
    top: 0;
    left: 0;
}
.auction-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.auction-item__content .auction-item__content-link {
    margin-top: auto;
}
.auction-item__content-item {
    display: flex;
    margin-bottom: 20px;
}
.auction-item__content-item > div:nth-child(1) {
    width: 80px;
}
@media (max-width: 1450px) {
    .auction-item__content-item {
        flex-direction: column;
        row-gap: 5px;
    }
}
.auction-item__content-link {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #333;
    font-family: var(--font-family-accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    padding: 10px 15px;
    border: 1px solid #333;
    transition: 0.2s ease;
}
.auction-item__content-link:hover {
    background-color: #333;
    color: #fff;
}

.home-services__layout {
    display: grid;
    grid-template-columns: 500px 1fr;
}
.home-services__layout-side {
    position: relative;
    background-color: var(--accent-color);
}
@media screen and (max-width: 1200px) {
    .home-services__layout {
        grid-template-columns: 350px 1fr;
    }
}
@media screen and (max-width: 768px) {
    .home-services__layout {
        grid-template-columns: 1fr;
    }
}
.home-services__form {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    color: #fff;
    padding: 50px 70px 50px var(--container-padding);
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}
.home-services__form .title {
    color: #fff;
}
.home-services__form .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 768px) {
    .home-services__form {
        position: static;
        padding: 50px var(--container-padding);
    }
}
.home-services__services {
    padding: 50px var(--container-padding) 50px 70px;
}
.home-services__services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
    margin-top: 45px;
}
@media screen and (max-width: 1200px) {
    .home-services__services-grid {
        grid-template-columns: 1fr;
    }
}
.home-services__services-item {
    padding-left: 40px;
}
.home-services__services-item__title {
    display: flex;
    color: #000;
    font-family: var(--font-family-accent);
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    transition: 0.2s ease;
}
.home-services__services-item__title svg {
    color: var(--accent-color);
    position: absolute;
    left: -35px;
    top: 5px;
    transition: 0.2s ease;
}
.home-services__services-item__title:hover {
    color: var(--accent-color);
}
.home-services__services-item__title:hover svg {
    color: #000;
    left: -30px;
}
.home-services__services-item__text {
    max-height: 95px;
    overflow: hidden;
}
.home-services__services-item__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 15px;
    color: var(--accent-color);
    font-family: var(--font-family-accent);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.home-services__services-item__link:hover {
    color: var(--accent-color-2);
}
@media screen and (max-width: 768px) {
    .home-services__services {
        padding: 50px var(--container-padding);
    }
}

.professional-types .pa-block {
    padding-top: 0;
}
.professional-types__layout {
    max-width: 100%;
    display: flex;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
@media (max-width: 768px) {
    .professional-types__layout {
        flex-direction: column;
        row-gap: 40px;
    }
}
.professional-types__item {
    flex: 1 1 50%;
}
.professional-types__item .title {
    margin-bottom: 30px;
}
.professional-types__item ul {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding-left: 30px;
}
.professional-types__item ul li {
    flex: 1 1 calc(50% - 40px);
    margin-bottom: 10px;
}
@media (max-width: 950px) {
    .professional-types__item ul {
        flex-direction: column;
    }
}

.other-services__layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 70px;
    column-gap: 70px;
    row-gap: 40px;
    margin-top: 40px;
}
@media screen and (max-width: 1550px) {
    .other-services__layout {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}
@media screen and (max-width: 1200px) {
    .other-services__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .other-services__layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
.other-services__item {
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.other-services__item-title {
    margin-bottom: 10px;
    color: #000;
    font-family: var(--font-family-accent);
    font-size: clamp(14px, 2vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.other-services__item-image {
    display: flex;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.other-services__item-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.5s ease;
}
.other-services__item-text {
    height: 100%;
    max-height: 100px;
    overflow: hidden;
}
.other-services__item-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 15px;
    color: var(--accent-color);
    font-family: var(--font-family-accent);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.other-services__item-link:hover {
    color: var(--accent-color-2);
}
.other-services__item:hover .other-services__item-image img {
    transform: scale(1.1);
}

.auctions__layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1500px;
    margin: 0 auto;
}
@media (max-width: 1350px) {
    .auctions__layout {
        gap: 20px;
    }
}
@media (max-width: 1050px) {
    .auctions__layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.auctions__layout .auction-item {
    border: 1px solid var(--Gray5, #ddd);
}

.auction-product__back {
    display: flex;
    align-items: center;
    column-gap: 5px;
    width: fit-content;
    color: #000;
    font-family: var(--font-family-accent);
    font-size: 17.143px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.343px;
    text-transform: uppercase;
    margin-bottom: 30px;
    transition: 0.3s ease;
}

.auction-product__back:hover {
    color: var(--accent-color);
}

.auction-product__date {
    color: var(--accent-color-2);
    margin-top: 10px;
}

.auction-product__head {
    max-width: 1100px;
    display: flex;
    column-gap: 20px;
}

.auction-product__head-prev,
.auction-product__head-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
    width: 40px;
    height: 40px;
    padding: 5px;

    cursor: pointer;
    transition: 0.3s ease;
}

.auction-product__head-prev svg,
.auction-product__head-next svg {
    width: 20px;
    height: 20px;
}

.auction-product__head-prev svg {
    transform: rotate(180deg);
}

.auction-product__head-next {
}

.auction-product__head-prev:hover,
.auction-product__head-next:hover {
    color: #fff;
    background-color: var(--accent-color);
}

.auction-product .tab {
    margin-top: 20px;
}
.auction-product .tabs__buttons {
    border-bottom: 3px solid var(--accent-color-2);
    display: flex;
}
.auction-product .tabs__buttons .tab {
    color: #000;
    background-color: transparent;
    font-family: var(--font-family-accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding: 10px 15px;
    border: none;
    transition: 0.2s ease;
}
.auction-product .tabs__buttons .tab:hover {
    cursor: pointer;
    color: #fff;
    background-color: #00499266;
}
.auction-product .tabs__buttons .tab.active {
    color: #fff;
    background-color: var(--accent-color-2);
}
.auction-product .tabs__contents {
    padding: 35px 0;
}
.auction-product__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.auction-product__details-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    column-gap: 30px;
}
@media (max-width: 500px) {
    .auction-product__details-info {
        grid-template-columns: 1fr;
    }
}
.auction-product__details-info__item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.auction-product__details-info__item-title {
    color: var(--accent-color-2);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    height: fit-content;
    /* 150% */
    letter-spacing: 2px;
    text-transform: uppercase;
}
.auction-product__details-media__action {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    background-color: var(--accent-color);
    padding: 20px 25px;
    margin-bottom: 10px;
    border: 0;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
}
.auction-product__details-media__action:hover {
    background-color: var(--accent-color-2);
}

.auction-product__details-media__image iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}
@media (max-width: 768px) {
    .auction-product__details {
        grid-template-columns: 1fr;
    }
    .auction-product__details-info__item {
        margin-bottom: 20px;
    }
    .auction-product__details-media__action {
        width: 100%;
    }
}

.auction-product__featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 30px;
}

.auction-product__featured-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-auto-rows: min-content;
    gap: 20px;
}

@media (max-width: 1250px) {
    .auction-product__featured-item {
        grid-template-columns: 1fr;
    }
}

.auction-product__featured-gallery {
}

.auction-product__featured-gallery-main {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    overflow: hidden;
    height: 0;
    padding-top: 65.25%;
}
.auction-product__featured-gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.auction-product__featured-gallery-main svg {
    position: absolute;
    bottom: 20px;
    right: 20px;

    width: 40px;
    height: 40px;

    transition: 0.3s ease;
}

.auction-product__featured-gallery-main:hover svg {
    width: 60px;
    height: 60px;
}

.auction-product__featured-gallery-thumbs {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.auction-product__featured-gallery-thumbs-other {
    display: none;
}

.auction-product__featured-gallery-thumbs a:not(.glightbox_video) {
    position: relative;
    color: #fff;
    overflow: hidden;
    height: 0;
    padding-top: 65.25%;
}
.auction-product__featured-gallery-thumbs a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.auction-product__featured-gallery-thumbs a span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* opacity: 0; */
    transition: 0.3s ease;
}

.video__thmb {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 65.25%;
}
.glightbox_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
}

.outer_circle {
    stroke-width: 3;
    stroke-dasharray: 410;
    stroke-dashoffset: 0;
    stroke-linecap: square;
    transition: all 0.4s ease-out;
}
.glightbox_video .inner-circle {
    fill: var(--accent-color);
    transition: fill 0.4s ease-out;
}

.video__thmb-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video__thmb-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.glightbox_video:hover ~ .video__thmb-image {
    filter: brightness(0.7);
}

.glightbox_video:hover .outer_circle {
    stroke-dashoffset: 410;
    transition: stroke 0.7s 0.4s ease-out, stroke-dashoffset 0.4s ease-out;
}

.glightbox_video:hover .inner-circle {
    fill: #fff;
    transition: fill 0.4s 0.3s ease-out;
}

.glightbox_video:hover .play {
    fill: var(--accent-color);
    transition: fill 0.4s 0.3s ease-out;
}

/* .auction-product__featured-gallery-thumbs a:hover span {
    opacity: 1;
} */

.auction-product__featured-info {
}
.auction-product__featured-info__title {
    color: var(--accent-color-2);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    height: fit-content;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.auction-product__featured-info__video {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 15px;
    color: var(--accent-color);
    font-family: var(--font-family-accent);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.auction-product__files {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.auction-product__files a {
    display: flex;
    align-items: center;
    color: #000;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 18px;
}
.auction-product__files a > svg {
    flex: 0 0 25px;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.assets-grid__item {
    display: flex;
    flex-direction: column;
    row-gap: 22px;
    color: #000;
}
.assets-grid__item-image {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 70%;
}

.assets-grid__item-image.sold::before {
    content: 'Sold!';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.075);
    color: #f00;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.assets-grid__item-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.5s ease;
}
.assets-grid__item-title {
    color: #000;
    font-family: var(--font-family-accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.assets-grid__item-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--accent-color);
    font-family: var(--font-family-accent);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.assets-grid__item-link:hover {
    color: var(--accent-color-2);
}
@media (max-width: 768px) {
    .assets-grid {
        grid-template-columns: 1fr;
    }
}

.asset-item__layout {
    display: grid;
    grid-template-columns: 40% 60%;
    margin-top: 30px;
}
.asset-item__layout > div:nth-child(1) {
    padding-right: 50px;
}
@media (max-width: 1300px) {
    .asset-item__layout {
        grid-template-columns: 100%;
        margin-top: 20px;
    }
    .asset-item__layout > div:nth-child(1) {
        padding-right: 0;
    }
}

#productContainer {
    --product-view-height: 500px;
    display: grid;
    grid-template-columns: 1fr 106px;
}
@media (max-width: 500px) {
    #productContainer {
        --product-view-height: 400px;
    }
}

#productContainer .f-thumbs.is-classic.is-vertical {
    max-height: var(--product-view-height, 100%);
}

/*
  Thumbnails
*/
.f-thumbs.is-classic {
    --f-thumb-width: 110px;
    --f-thumb-height: 110px;
    --f-thumb-gap: 0.5rem;
    --f-thumb-opacity: 1;
    --f-thumb-selected-opacity: 0.2;
    --f-button-color: #0d0c22;
    --f-button-hover-color: #ff3520;
    --f-button-bg: #fff;
    --f-button-hover-bg: #fff;
    --f-button-active-bg: #fff;
}

#productContainer .f-thumbs__slide,
#productContainer .f-thumbs__slide__button {
    width: 100%;
}

#productContainer .f-thumbs__slide svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
}

#productContainer .f-thumbs__slide .inner-circle {
    fill: var(--accent-color);
    transition: fill 0.4s ease-out;
}

#productContainer .f-thumbs__slide .outer_circle {
    stroke-width: 3;
    stroke-dasharray: 410;
    stroke-dashoffset: 0;
    stroke-linecap: square;
    transition: all 0.4s ease-out;
}

#productContainer .f-thumbs__slide:hover svg {
    color: var(--accent-color);
}

#productContainer .f-thumbs__slide:hover .outer_circle {
    stroke-dashoffset: 410;
    transition: stroke 0.7s 0.4s ease-out, stroke-dashoffset 0.4s ease-out;
}

#productContainer .f-thumbs__slide:hover .inner-circle {
    fill: #fff;
    transition: fill 0.4s 0.3s ease-out;
}

.f-thumbs.is-classic .f-thumbs__slide__img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.f-thumbs.is-classic .f-carousel__nav .f-button[disabled] {
    display: none;
}

/*
  Main carousel
*/
#productCarousel {
    --f-carousel-spacing: 0;
    --f-button-width: 48px;
    --f-button-height: 48px;
    --f-button-border-radius: 0;
    --f-button-color: #0d0c22;
    --f-button-hover-color: #ff3520;
    --f-button-bg: #fff;
    --f-button-hover-bg: #fff;
    --f-button-active-bg: #fff;
    --f-button-svg-width: 28px;
    --f-button-svg-height: 28px;
    --f-button-svg-stroke-width: 1;
    --f-button-svg-filter: none;
    max-height: var(--product-view-height, 100%);
}

#productCarousel .f-carousel__slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#productCarousel .f-carousel__slide.sold::before {
    content: 'Sold!';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.075);
    color: #f00;
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}
#productCarousel .f-carousel__slide.sold.video::before {
    height: 75%;
    align-items: flex-end;
}
#productCarousel .f-carousel__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#productCarousel .f-carousel__nav {
    opacity: 0;
    transition: opacity 0.15s;
}

@media (hover: hover) {
    #productCarousel:hover .f-carousel__nav {
        opacity: 1;
    }
}
/*
  Fancybox
*/
.contact-section {
    background-color: var(--accent-color);
    color: #fff;
}
.contact-section .title {
    color: #fff;
}
.contact-section__form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
    max-width: 1280px;
    margin: 40px auto 0 auto;
}
.contact-section__form .btn {
    grid-column: 1/-1;
    margin: 0 auto;
}
.contact-section__form .file-wp {
    grid-column: 1/-1;
    overflow: hidden;
    position: relative;
}
.contact-section__form .file-wp > div {
    margin-left: auto;
    max-width: 400px;
}
@media (max-width: 1250px) {
    .contact-section__form {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .contact-section__form {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    .contact-section__form .btn {
        margin-top: 30px;
    }
    .contact-section__form .file-wp > div {
        margin-left: 0;
        max-width: 100%;
    }
}

.page-head {
    background-image: url(/img/backgrounds/cm_page-head-1.jpg);
    background-size: cover;
    background-position: center left 20%;
    background-repeat: no-repeat;
}
.page-head .container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}
.page-head .title {
    color: #fff;
    font-size: clamp(24px, 2vw, 45px);
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
}

.contact-us__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 100px;
    column-gap: 100px;
}
@media (max-width: 1400px) {
    .contact-us__layout {
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
}
@media (max-width: 768px) {
    .contact-us__layout {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}
.contact-us__info {
    padding-bottom: 100px;
}
.contact-us__info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
    margin-top: 40px;
}
@media (max-width: 1100px) {
    .contact-us__info-layout {
        grid-template-columns: 1fr;
        row-gap: 25px;
    }
}
.contact-us__info-item {
    padding-left: 45px;
}
.contact-us__info-item a {
    color: var(--color-black, #000);
}
.contact-us__info-item-title {
    color: var(--accent-color);
    font-family: var(--font-family-accent);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.contact-us__info-item.phone {
    background: url(/img/svg/cm_phone.svg);
    background-repeat: no-repeat;
    background-position: left top;
}
.contact-us__info-item.pin {
    background: url(/img/svg/cm_pin.svg);
    background-repeat: no-repeat;
    background-position: left top;
}
@media (max-width: 768px) {
    .contact-us__info {
        padding-bottom: 0;
    }
}
.contact-us__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 30px;
    background-color: var(--accent-color);
    padding: 60px;
    z-index: 1;
}
.contact-us__form-head {
    grid-column: 1/-1;
}
.contact-us__form-head-title {
    color: #fff;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}
.contact-us__form input,
.contact-us__form textarea,
.contact-us__form select {
    border: 1px solid #d1d1d1;
}
.contact-us__form .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
@media (max-width: 500px) {
    .contact-us__form {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
}
.contact-us-map {
    margin-top: -200px;
    display: flex;
    align-items: stretch;
    width: 100%;
    position: relative;
    z-index: 0;
    height: 100vh;
    max-height: 700px;
    min-height: 400px;
    overflow: hidden;
}
.contact-us-map img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 1100px) {
    .contact-us-map {
        margin-top: -100px;
        max-height: 500px;
    }
}
@media (max-width: 500px) {
    .contact-us-map {
        max-height: 300px;
    }
}

/* [MAIN CSS START] */
.main-container--margin {
    margin-top: 120px;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.text-block {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    line-height: 150%;
}

.container {
    margin: 0 auto;
    max-width: var(--page-max-width);
}
.container.container--block {
    display: block;
    margin: 0;
}
.container--mar-b-80 {
    margin-bottom: var(--container-margin-bottom);
}

.pa-inline {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.pa-block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pa-before-footer {
    padding-bottom: 200px;
}

.bg-accent {
    background-color: var(--accent-background-color);
}

.bg-accent-2 {
    background-color: var(--accent-background-color-2);
}

.bg-accent-3 {
    background-color: var(--accent-background-color-3);
}

.bg-accent-4 {
    background-color: #005ea610;
}

input.error {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}

input,
select,
textarea {
    border: none;
    padding: 15px;
    width: 100%;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #eee;
    border: 1px solid #bdbdbd;
    opacity: 0.8;
}

.title {
    color: #000;
    font-size: clamp(24px, 2vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}
.title > span {
    color: var(--accent-color);
}
.title--center {
    text-align: center;
}
.title--large {
    font-size: clamp(40px, 2vw, 52px);
}
.title--small {
    font-weight: 600;
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 5px;
}
.title--mar {
    margin-bottom: 40px;
}

.fc-accent {
    color: var(--accent-color);
}

.fc-white {
    color: var(--color-white);
}

.fc-black {
    color: var(--color-black);
}

.subtitle {
    color: var(--accent-color);
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.nowrap {
    white-space: nowrap;
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    color: #fff;
    background: var(--accent-color);
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn:hover {
    color: #fff;
    background: var(--accent-color-2);
    box-shadow: 0 0 5px -2px #464646;
}
.btn.btn--small {
    padding: 5px 5px !important;
    font-size: 14px;
    border: 2px solid var(--accent-color);
    text-transform: capitalize;
}

.btn.btn--flex {
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.btn.btn--transparent {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--transparent:hover {
    background: var(--accent-color);
    color: var(--color-white);
}

.btn.btn--color-black,
.btn.btn--transparent.btn--color-black {
    color: #000;
    border-color: #000;
}
.btn.btn--color-black:hover,
.btn.btn--transparent.btn--color-black:hover {
    background: var(--accent-dark-color);
    color: #fff;
}

.btn.btn--color-white,
.btn.btn--transparent.btn--color-white {
    color: #fff;
    border-color: #fff;
}
.btn.btn--color-white:hover,
.btn.btn--transparent.btn--color-white:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.btn.btn--light {
    border: 1px solid var(--accent-color);
    color: #fff;
    background: var(--accent-color);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light:hover {
    background: var(--accent-color-2);
    color: var(--color-white);
    border: 1px solid var(--accent-color-2);
    box-shadow: 0 0 5px -2px #464646;
}

.btn.btn--light2 {
    border: 1px solid var(--accent-color-3);
    color: #000;
    background: var(--accent-color-3);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light2:hover {
    background: var(--accent-color);
    color: var(--color-white);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 5px -2px #464646;
}

.btn.btn--disabled {
    background: #ccc;
    color: #fff;
    border: 1px solid #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.btn.btn--loading {
    position: relative;
    pointer-events: none;
}
.btn.btn--loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1em;
    height: 1em;
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
.btn.btn--loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: inherit;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@-webkit-keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.line-clamp {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
    height: 1.2em;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    height: 2.4em;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
    height: 3.6em;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
    height: 4.8em;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
    height: 6em;
}

/* End required CSS. */
/* [Pretty checkbox adjustments] */
.pretty {
    white-space: normal;
}
.pretty .state label {
    text-indent: 0;
    padding-left: 31px;
}
.pretty .state label:after,
.pretty .state label:before {
    top: 0;
    background-color: #fff;
    border-radius: 3px;
}
.pretty input:checked ~ .state.p-primary label:after {
    background-color: var(--accent-color) !important;
}
.pretty.p-default input:checked ~ .state label:after {
    background-color: var(--accent-color) !important;
}

.divider {
    border: none;
    border-bottom: 1px solid #bdbdbd;
}

.select2.select2-container .select2-choice {
    padding: 5px 10px;
}

.select2-container--default .select2-selection--single {
    border: none;
    height: 100%;
    padding: 15px;
}

.select2-container--default .select2-selection--single.select2--small {
    padding: 11px 15px;
}

.select2-container--default .select2-selection--single.select2--bordered {
    border: 1px solid #bdbdbd;
    border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    font-size: 14px;
    line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: linear-gradient(#e0e0e0, #e0e0e0);
    width: 28px;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(-135deg);
    transition: 0.3s ease;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    list-style: none;
}
.breadcrumbs.breadcrumbs--space-top {
    padding-top: 60px;
}
.breadcrumbs.breadcrumbs--space-bottom {
    padding-bottom: 15px;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    position: relative;
}
.breadcrumbs li:not(:last-child)::after {
    content: '/';
    font-size: 14px;
    color: #4f4f4f;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
}
.breadcrumbs li:last-child * {
    font-weight: 600;
}
.breadcrumbs a,
.breadcrumbs p {
    font-weight: 400;
    font-size: 14px;
    text-align: right;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #4f4f4f;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
    padding: 50px;
}
.pagination .pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: #828282;
    transition: 0.3s ease;
}
.pagination .pagination__item:hover {
    background-color: var(--accent-color-4);
    color: #fff;
}
.pagination .pagination__item.pagination__item--active {
    background-color: var(--accent-color-4);
    color: #fff;
}

.not-found-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.not-found-page__title {
    font-weight: 500;
    font-size: clamp(25px, 4vw, 38px);
    color: var(--accent-color-4);
    line-height: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
    line-height: 100%;
    position: relative;
}
.not-found-page__subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
}

/* [MAIN CSS END] */
/* [TOOLTIPS START] */
.tippy-box {
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.tippy-box__inner {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
}
.tippy-box__image {
    margin-bottom: 15px;
}
.tippy-box__text {
    text-align: center;
}

.tippy-arrow {
    color: #fff;
}

.tippy-box[data-placement^='left'] > .tippy-arrow:before {
    border-width: 14px 0 14px 14px;
    right: -13px;
    filter: drop-shadow(4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='right'] > .tippy-arrow:before {
    left: -13px;
    border-width: 14px 14px 14px 0;
    filter: drop-shadow(-4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='top'] > .tippy-arrow:before {
    border-width: 14px 14px 0;
    bottom: -13px;
    filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow:before {
    border-width: 0 14px 14px;
    top: -13px;
    filter: drop-shadow(0px -4px 5px rgba(0, 0, 0, 0.1));
}

/* [TOOLTIPS END] */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-wrapper.video-wrapper--sm {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 40%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.badge {
    display: inline-block;
    padding: 5px 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: var(--accent-color);
    margin-left: 10px;
}

.accordion {
    max-width: 1600px;
    margin: 0 auto;
}
.accordion .pa-block {
    padding-top: 0;
}
.accordion .ui-accordion .ui-accordion-header {
    background-color: transparent;
    border: 1px solid #979696;
    border-radius: 0;
    margin-top: 10px;
    padding: 15px;
    font-size: 20px;
    color: #000;
}
.accordion .ui-accordion .ui-accordion-header .ui-icon {
    margin-right: 10px;
}
.accordion .ui-accordion .ui-accordion-content {
    border: 0;
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
}
.accordion .ui-accordion .ui-accordion-content p {
    margin-bottom: 15px;
}
.accordion .ui-accordion .ui-accordion-content ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.accordion .ui-accordion .ui-accordion-content img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
}
@media (max-width: 700px) {
    .accordion .ui-accordion .ui-accordion-content {
        max-width: 100%;
        padding: 1em 5px;
    }
}

.menu-layout__layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    -moz-column-gap: 60px;
    column-gap: 60px;
}
.menu-layout__layout-aside .title {
    margin-bottom: 20px;
}
@media (max-width: 1350px) {
    .menu-layout__layout {
        grid-template-columns: 250px 1fr;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}
@media (max-width: 1050px) {
    .menu-layout__layout {
        grid-template-columns: 1fr;
        -moz-column-gap: 0;
        column-gap: 0;
    }
    .menu-layout__layout-aside {
        display: none;
    }
}

.accord-head {
    background-color: var(--accent-background-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}
.accord-head::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 2px;
    height: 15px;
    background-color: #000;
    transition: 0.2s ease;
}
.accord-head::after {
    pointer-events: none;
    content: '';
    position: absolute;
    top: 50%;
    right: 13.5px;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: #000;
    transition: 0.2s ease;
}
.accord-head.open::before {
    height: 0;
}
.accord-head__title {
    display: block;
    padding: 10px 35px 10px 10px;
    color: var(--accent-color);
    font-family: var(--font-family-accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.accord-body {
    display: none;
    list-style: none;
    padding: 10px 0 20px 0;
}
.accord-body > li {
    margin-bottom: 10px;
}
.accord-body > li a {
    display: flex;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 5px 0 5px 20px;
    transition: 0.2s ease;
    border-left: 6px solid #eee;
}
.accord-body.open {
    display: block;
}
.accord-body.open > li:hover a {
    border-left: 6px solid #da212745;
}
.accord-body.open > li.open a {
    border-left: 6px solid var(--accent-color);
    font-weight: 600;
}
