:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #9c2c30;
    --accent-color-2: #ffc38f;
    --accent-background-color: #f7f2e8;
    --accent-background-color-2: #eee3cd;
    --page-max-width: 1920px;
    --container-padding: 123px;
    --container-margin-bottom: 80px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --font-family-1: 'Roboto', sans-serif;
    --font-family-2: 'Oswald', sans-serif;
    --font-family-3: 'Merriweather', serif;
    --font-family-4: 'Kalam', cursive;
    --input-error-background-color: #ffa2a2;
    --input-error-border-color: #f88585bd;
    --tooltip-background-color: #fff;
    --hs-menu-line-color: #9c2c30;
}

@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: 'Roboto', sans-serif;
}

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

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

.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|| */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 120px;
    background-color: #fff;
}
.navbar-wrapper {
    max-width: 1920px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
.navbar__logo {
    display: inline-flex;
}
@media (max-width: 1100px) {
    .navbar__logo {
        max-width: 250px;
    }
}
.navbar__top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.navbar__top > a {
    color: var(--accent-color);
}
.navbar__top > p:first-of-type {
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #4f4f4f;
}
.navbar__top > p:last-of-type {
    font-weight: 300;
    font-size: 16px;
    font-family: var(--font-family-4);
    color: var(--accent-color);
}
@media (max-width: 800px) {
    .navbar__top > p {
        display: none;
    }
}
.navbar__bottom {
    display: flex;
}
.navbar__bottom-link {
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: 22px;
    line-height: 33px;
    text-transform: uppercase;
    color: #000000;
    padding: 5px 30px;
    background-image: linear-gradient(to right, var(--accent-color), var(--accent-color) 50%, #000 50%);
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
.navbar__bottom-link:before {
    content: '';
    background: var(--accent-color);
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}
.navbar__bottom-link:hover {
    background-position: 0;
}
.navbar__bottom-link:hover::before {
    width: 100%;
}
.navbar__bottom-link.navbar__bottom-link--active {
    background-position: 0;
}
@media (max-width: 1400px) {
    .navbar__bottom-link {
        font-size: 18px;
        line-height: 27px;
        padding: 5px 20px;
    }
}
@media (max-width: 1100px) {
    .navbar__bottom-link {
        font-size: 16px;
        line-height: 24px;
        padding: 5px 10px;
    }
}
@media (max-width: 800px) {
    .navbar__bottom-link {
        display: none;
    }
}
@media (max-width: 800px) {
    .navbar__bottom__mobile-trigger {
        position: relative;
        width: 30px;
        height: 30px;
        margin-left: auto;
    }
    .navbar__bottom__mobile-trigger > .hc-nav-trigger {
        right: 0;
    }
}
@media (max-width: 800px) {
    .navbar {
        height: 100px;
    }
}

/* || HEADER end || */
/* || HOME SLIDER start || */
.hero-section {
    height: auto;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1170px) {
    .hero-section {
        min-height: auto;
    }
}
.hero-section__top {
    display: flex;
}
.hero-section__top .swiper-pagination {
    margin-top: 50px;
    position: initial;
    text-align: left;
}

.home-slider {
    width: 100%;
    min-height: 550px;
    overflow: hidden;
    position: relative;
    background-color: #333;
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-theme-color: var(--accent-color-2);
}
@media (max-width: 1170px) {
    .home-slider {
        min-height: auto;
    }
}
.home-slider > .swiper-wrapper {
    height: 100%;
}
.home-slider .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.home-slider .swiper-slide__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}
.home-slider .swiper-slide__content {
    width: 100%;
    position: relative;
    color: #fff;
    z-index: 2;
    padding: 5% 10% 300px 10%;
}
@media (max-width: 1170px) {
    .home-slider .swiper-slide__content {
        padding: 15vw 5% 20vw 5%;
    }
}
.home-slider .swiper-slide__content__title {
    font-weight: 700;
    font-size: clamp(30px, 4vw, 57px);
    font-family: var(--font-family-3);
    margin-bottom: 35px;
    color: #ffffff;
}
.home-slider .swiper-slide__content__text {
    font-weight: 400;
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 35px;
    color: #ffffff;
    max-width: 616px;
}
.home-slider .swiper-slide__content__link {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    color: var(--accent-background-color-2);
    margin-top: 35px;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}
.home-slider .swiper-slide__content__link svg {
    transition: 0.3s ease-in-out;
}
.home-slider .swiper-slide__content__link:hover {
    color: var(--accent-color-2);
}
.home-slider .swiper-slide__content__link:hover > svg {
    transform: translateX(5px);
}
.home-slider .swiper-slide__content > ul {
    list-style: none;
    padding-left: 30px;
    font-size: clamp(18px, 2vw, 26px);
}
.home-slider .swiper-slide__content > ul > li:not(:last-of-type) {
    margin-bottom: 10px;
}
.home-slider .swiper-button-next {
    width: 42px;
    height: 66px;
    right: 10vw;
    color: #333;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-next {
        right: 3%;
    }
}
.home-slider .swiper-button-prev {
    width: 42px;
    height: 66px;
    left: 10vw;
    color: #333;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-prev {
        left: 3%;
    }
}
.home-slider .swiper-pagination-bullets {
    bottom: 60px;
}
.home-slider .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.5);
}
.home-slider .swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: #fff;
}

/* || HOME SLIDER end || */
.home-points-section__text > div {
    max-width: 1300px;
    margin: 0 auto;
    line-height: 150%;
}
.home-points-section__text > div a {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
}
.home-points-section__layout {
    display: grid;
    grid-template-columns: 500px 1fr;
    padding: 80px 0;
}
.home-points-section__layout-titles {
    border-right: 1px solid #000;
    margin-right: 50px;
}
.home-points-section__layout-titles > h6 {
    font-family: var(--font-family-2);
    font-weight: 400;
    background-color: var(--accent-color);
    color: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 19.68px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.105em;
    text-transform: uppercase;
    padding: 5px;
}
.home-points-section__layout-titles > h5 {
    font-family: var(--font-family-2);
    font-weight: 300;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 50px;
}
.home-points-section__layout-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
@media (max-width: 500px) {
    .home-points-section__layout-list {
        grid-template-columns: 100%;
    }
}
.home-points-section__layout-list > li {
    display: flex;
    align-items: center;
    -moz-column-gap: 24px;
    column-gap: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}
.home-points-section__layout-list > li::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(/img/icons/mg_checkmark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media (max-width: 1250px) {
    .home-points-section__layout {
        grid-template-columns: 100%;
        row-gap: 30px;
        padding: 50px 0;
    }
    .home-points-section__layout-titles {
        border-right: none;
        margin-right: 0;
    }
}

.home_blocks-section {
    display: grid;
    grid-template-columns: 50% 50%;
}
.home_blocks-section__text {
    color: #fff;
    line-height: 150%;
    margin-bottom: 90px;
}
.home_blocks-section__sect-1 {
    padding: 70px 90px 70px var(--container-padding);
    background-image: url(/img/backgrounds/mg_homeblock-bg-1.jpg);
    background-color: rgba(0, 0, 0, 0.338);
    background-blend-mode: darken;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.home_blocks-section__sect-1 .title {
    color: #fff;
}
.home_blocks-section__sect-1__link {
    display: block;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: var(--accent-color);
    padding: 5px 10px;
    color: #fff;
    text-transform: uppercase;
    line-height: 150%;
    max-width: 400px;
}
.home_blocks-section__sect-1__link > svg {
    display: inline;
}
.home_blocks-section__sect-2 {
    background-color: var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home_blocks-section__sect-2__top {
    padding: 70px var(--container-padding) 0 90px;
}
.home_blocks-section__sect-2__bottom {
    background-color: var(--accent-color-2);
    padding: 14px;
    position: relative;
}
.home_blocks-section__sect-2__stamp {
    position: absolute;
    top: 50%;
    left: 53px;
    transform: translateY(-50%);
    width: 223px;
    height: 223px;
    background-image: url(/img/misc/mg_stamp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.home_blocks-section__sect-2__text {
    padding-left: 300px;
}
.home_blocks-section__sect-2__text > a {
    display: block;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #000;
    text-transform: uppercase;
    line-height: 150%;
    max-width: 350px;
}
.home_blocks-section__sect-2__text > a > svg {
    display: inline;
}
.home_blocks-section__sect-2 .title {
    color: #fff;
}
.home_blocks-section__sect-3 {
    padding: 70px 90px 70px var(--container-padding);
    background-color: var(--accent-background-color-2);
}
.home_blocks-section__sect-3__text-1 {
    font-family: var(--font-family-2);
    font-weight: 300;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #000000;
}
.home_blocks-section__sect-3__text-2 {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 300;
    font-size: 22px;
    line-height: 150%;
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-bottom: 65px;
}
.home_blocks-section__sect-3__text-2 > span {
    display: block;
    font-weight: 400;
    letter-spacing: 1.5px;
}
.home_blocks-section__sect-3__link {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
}
.home_blocks-section__sect-4 {
    padding: 70px 130px;
    background-image: url(/img/backgrounds/mg_homeblock-bg-2.jpg);
    background-color: rgba(0, 0, 0, 0.338);
    background-blend-mode: darken;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 1350px) {
    .home_blocks-section {
        grid-template-columns: 100%;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-template-areas: 'sect-1' 'sect-2' 'sect-3' 'sect-4';
    }
    .home_blocks-section__sect-1 {
        grid-area: sect-1;
    }
    .home_blocks-section__sect-2 {
        grid-area: sect-2;
    }
    .home_blocks-section__sect-3 {
        grid-area: sect-3;
    }
    .home_blocks-section__sect-4 {
        grid-area: sect-4;
    }
    .home_blocks-section__sect-1 {
        padding: 70px var(--container-padding) 70px var(--container-padding);
    }
    .home_blocks-section__sect-2__top {
        padding: 70px var(--container-padding) 0 var(--container-padding);
    }
    .home_blocks-section__sect-3 {
        padding: 100px var(--container-padding) 70px var(--container-padding);
    }
}
@media (max-width: 768px) {
    .home_blocks-section {
        grid-template-rows: 1fr 1fr 1fr;
    }
    .home_blocks-section__sect-1__link {
        display: initial;
    }
    .home_blocks-section__sect-2__stamp {
        display: none;
    }
    .home_blocks-section__sect-2__text {
        padding-left: 0;
    }
    .home_blocks-section__sect-2__text > a {
        display: initial;
    }
    .home_blocks-section__sect-4 {
        display: none;
    }
}

.program-how {
    padding: 100px 0;
    background-color: var(--accent-background-color-2);
    min-height: 300px;
    position: relative;
}
.program-how__background {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.program-how__background > div:nth-child(2) {
    background-image: url(/img/misc/mg_program-how-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.program-how__content {
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.program-how__content-inner {
    width: 100%;
    padding: 65px var(--container-padding);
    background-color: var(--accent-color);
    max-width: 1300px;
    color: #fff;
    box-shadow: 6px 4px 25px rgba(0, 0, 0, 0.25);
}
.program-how__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-top: 30px;
}
@media (max-width: 800px) {
    .program-how__grid {
        grid-template-columns: 100%;
    }
}
.program-how__grid-item {
    position: relative;
    padding-left: 70px;
}
.program-how__grid-item > h5 {
    font-family: var(--font-family-3);
    font-weight: 400;
    font-size: clamp(22px, 2vw, 32px);
}
.program-how__grid-item > p {
    font-family: var(--font-family-3);
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
}
.program-how__grid-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-image: url(/img/icons/mg_checkmark.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.program-banner {
    background-color: var(--accent-color-2);
}
.program-banner .title {
    margin: 0;
}
@media (max-width: 800px) {
    .program-banner .title {
        text-align: center;
    }
}
.program-banner__layout {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
@media (max-width: 800px) {
    .program-banner__layout {
        flex-direction: column;
        row-gap: 30px;
    }
}
.program-banner__link {
    font-weight: 300;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    font-family: var(--font-family-2);
    color: #000000;
    padding-left: 50px;
    border-left: 1px solid #000000;
}
.program-banner__link > strong {
    font-family: var(--font-family-2);
}
@media (max-width: 800px) {
    .program-banner__link {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
}

.program-delivery {
    background-image: url(/img/backgrounds/mg_delivery.jpg);
    background-color: #00000061;
    background-blend-mode: darken;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}
.program-delivery__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 225px;
    padding-bottom: 130px;
}
.program-delivery__content-text-1 {
    font-family: var(--font-family-2);
    font-weight: 300;
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.program-delivery__content-text-2 {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 100px;
    color: var(--accent-color-2);
}
.program-delivery__content-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--accent-color);
    padding: 5px 20px;
    transition: 0.3s ease;
}
.program-delivery__content-link:hover {
    background-color: var(--accent-color-2);
    color: #000;
}

.products-layout {
    display: grid;
    grid-template-columns: 550px 1fr;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
.products-layout__side {
    background-color: var(--accent-background-color-2);
}
.products-layout__side__accent-block {
    width: calc(100% + 25px);
    background-color: var(--accent-color);
    color: #fff;
    margin: 65px 0;
    padding: 40px 90px;
}
.products-layout__side__accent-block__text {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 150%;
}
@media (max-width: 1600px) {
    .products-layout__side__accent-block {
        padding: 40px 5%;
    }
}
.products-layout__side__blocks {
    padding: 0 90px 40px 90px;
}
.products-layout__side__blocks-item {
    margin-bottom: 70px;
}
.products-layout__side__blocks-item > img {
    display: inline-block;
    margin-bottom: 25px;
}
.products-layout__side__blocks-item > h6 {
    font-family: var(--font-family-2);
    font-weight: 300;
    font-size: 24px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 25px;
}
.products-layout__side__blocks-item > div {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 150%;
}
@media (max-width: 1600px) {
    .products-layout__side__blocks {
        padding: 0 5% 40px 5%;
    }
}
.products-layout__main {
    padding: 40px var(--container-padding);
}
.products-layout__main > .title {
    color: #fff;
    padding: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
}
.products-layout__main-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    padding: 30px 0;
}
.products-layout__main-filters__item {
    font-family: var(--font-family-2);
    color: #000;
    padding: 10px 20px;
    border: 1px solid #000;
    font-size: 22px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}
.products-layout__main-filters__item:hover {
    background-color: #000;
    color: #fff;
}
.products-layout__main-filters__item.products-layout__main-filters__item--active {
    background-color: #000;
    color: #fff;
}
.products-layout__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 20px;
    padding: 0 20px;
    grid-auto-flow: dense;
}
.products-layout__grid-item {
    background-color: #fff;
    padding: 15px 15px 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid #bdbdbd;
    position: relative;
    transition: 0.3s ease-in-out;
}
.products-layout__grid-item:hover {
    background-color: var(--accent-background-color-2);
    border-color: rgba(0, 0, 0, 0.36);
}
.products-layout__grid-item:hover .products-layout__grid-item__image > img {
    transform: scale(1.1);
}
.products-layout__grid-item__image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}
.products-layout__grid-item__image > img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: 0.3s ease-in-out;
}
.products-layout__grid-item__title {
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: clamp(18px, 1.5vw, 22px);
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 25px;
}
.products-layout__grid-item__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    max-height: 75px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 15px;
}
.products-layout__grid-item__button {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #000;
    padding: 7px 15px;
    background-color: var(--accent-color-2);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
@media (max-width: 1200px) {
    .products-layout__grid {
        padding: 0;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
@media (max-width: 800px) {
    .products-layout__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 475px) {
    .products-layout__grid {
        grid-template-columns: 100%;
    }
}
@media (max-width: 1600px) {
    .products-layout {
        grid-template-columns: 350px 1fr;
    }
}
@media (max-width: 1200px) {
    .products-layout {
        grid-template-columns: 100%;
    }
    .products-layout__side {
        grid-row: 2;
    }
    .products-layout__side__accent-block {
        width: 100%;
        margin: 0;
        padding: 40px 5%;
    }
}

.product-view {
    background-color: var(--accent-background-color);
}
.product-view__back {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    transition: 0.3s ease;
    margin-bottom: 30px;
}
.product-view__back:hover {
    color: var(--accent-color);
    letter-spacing: 0.22em;
}
.product-view__info-line {
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    color: #000000;
}
.product-view__info-line span {
    font-family: var(--font-family-2);
    color: var(--accent-color);
}
.product-view__description {
    padding-top: 40px;
    line-height: 150%;
}
.product-view__grid {
    display: grid;
    grid-template-columns: 50% 50%;
}
.product-view__grid-content {
    padding-left: 50px;
}
@media (max-width: 1100px) {
    .product-view__grid {
        grid-template-columns: 100%;
        row-gap: 50px;
    }
    .product-view__grid-content {
        padding-left: 0;
    }
}
.product-view__tabs {
    padding-top: 40px;
}
.product-view__tabs__actions {
    display: flex;
    align-items: center;
    padding-bottom: 40px;
}
.product-view__tabs__action {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: clamp(16px, 1.5vw, 22px);
    text-transform: uppercase;
    color: #000000;
    background-color: transparent;
    padding: 5px 15px;
    border: 1px solid #000;
    cursor: pointer;
    transition: 0.3s ease;
}
.product-view__tabs__action.product-view__tabs__action--active {
    color: #fff;
    background-color: #000;
}
.product-view__tabs__action:hover {
    color: var(--accent-color);
}

.pr-slider {
    color: #fff;
    overflow: hidden;
}

.pr-slider .swiper-container {
    width: 100%;
    height: 100%;
}

.slider__flex {
    display: flex;
    align-items: flex-start;
}

.slider__col {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    margin-right: 10px;
}

.slider__thumbs {
    height: 610px;
}

.slider__thumbs .slider__image {
    max-width: 146px;
    height: 140px;
    transition: 0.25s;
    border: 2px solid transparent;
    filter: grayscale(20%);
    opacity: 0.9;
}

.slider__thumbs .slider__image:hover {
    opacity: 1;
}

.slider__thumbs .swiper-slide-thumb-active .slider__image {
    filter: grayscale(0%);
    border-color: var(--accent-color);
    opacity: 1;
}

.slider__images {
    height: 600px;
}

.slider__images .slider__image img {
    transition: 3s;
}

.slider__images .slider__image:hover img {
    transform: scale(1.1);
}

.slider__image {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

@media (max-width: 1098px) {
    .slider__flex {
        flex-direction: column-reverse;
    }

    .slider__col {
        flex-direction: row;
        align-items: center;
        margin-right: 0;
        margin-top: 10px;
        padding: 2px;
        width: 100%;
    }

    .slider__thumbs .swiper-slide-thumb-active .slider__image {
        margin: 0;
    }

    .slider__images {
        width: 100%;
    }

    .slider__thumbs {
        height: 150px;
        width: 100%;
    }

    .slider__thumbs .swiper-slide {
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
    }
}
@media (max-width: 700px) {
    .slider__images {
        height: auto;
    }
}
.product-ideas__grid {
    display: grid;
    grid-template-columns: 50% 50%;
}
@media (max-width: 1100px) {
    .product-ideas__grid {
        grid-template-columns: 100%;
    }
}
.product-ideas__content {
    padding: 50px var(--container-padding) 50px 50px;
}
.product-ideas__content-text {
    line-height: 150%;
}
.product-ideas__slider {
    background-color: var(--accent-color);
    color: #fff;
    padding: 50px 50px 50px var(--container-padding);
}
.product-ideas__slider-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-ideas__slider-box .swiper-button-next,
.product-ideas__slider-box .swiper-rtl .swiper-button-prev {
    right: -40px;
    left: auto;
    color: #fff;
}
.product-ideas__slider-box .swiper-button-prev,
.product-ideas__slider-box .swiper-rtl .swiper-button-next {
    left: -40px;
    right: auto;
    color: #fff;
}
@media (max-width: 800px) {
    .product-ideas__slider {
        padding: 50px;
    }
}
.product-ideas__item {
    background-color: #fff;
    padding: 10px 10px 30px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid #bdbdbd;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.product-ideas__item:hover {
    background-color: var(--accent-background-color-2);
    border-color: rgba(0, 0, 0, 0.36);
}
.product-ideas__item:hover .products-layout__grid-item__image > img {
    transform: scale(1.1);
}
.product-ideas__item__image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}
.product-ideas__item__image > img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: 0.3s ease-in-out;
}
.product-ideas__item__title {
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: clamp(18px, 1.5vw, 22px);
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 25px;
}
.product-ideas__item__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    max-height: 75px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 15px;
}
.product-ideas__item__button {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #000;
    padding: 7px 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: clamp(12px, 2vw, 16px);
}

.product-ideas__slider .swiper {
    width: 100%;
    height: 100%;
}
.product-ideas__slider .swiper-slide {
    background: #fff;
    display: flex;
    height: auto;
}
.product-idea-swiper {
    margin-top: 25px;
    width: 100%;
}
.product-idea-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.product-idea-swiper .swiper-button-next,
.product-idea-swiper .swiper-button-prev {
    --swiper-navigation-color: var(--accent-color);
}

.product-popup .title {
    font-weight: 300;
}
.product-popup__grid {
    width: 100%;
    display: grid;
    display: flex;
}

.product-popup__col-1 {
    width: calc(50% + 50px);
    padding-right: 50px;
}
.product-popup__col-2 {
    width: calc(50% - 50px);
}
@media (max-width: 850px) {
    .product-popup__grid {
        flex-direction: column;
        row-gap: 20px;
    }

    .product-popup__col-1 {
        width: 100%;
        padding-right: 0;
    }

    .product-popup__col-2 {
        width: 100%;
    }
}
.product-popup__col-title {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.product-popup__col-text {
    line-height: 150%;
}
.product-popup__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 20px;
}
.product-popup__actions-item {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-weight: 500;
    font-size: 15.253px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.product-popup .fancybox__content {
    padding: 50px;
    max-width: 1150px;
    width: 100%;
}
@media (max-width: 850px) {
    .product-popup .fancybox__content {
        padding: 50px 20px;
    }
}
.product-popup .carousel__button.is-close {
    -moz-column-gap: 10px;
    column-gap: 10px;
    right: 10px;
    top: 10px;
    color: #bdbdbd;
    width: auto;
    font-size: 22.8795px;
}
.product-popup .carousel__button.is-close > span {
    color: #000;
}
.product-popup .fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.product-popup .fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.product-popup .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    height: 100%;
}
.product-popup .video-wrapper {
    margin-top: 50px;
}

.more-btn {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin-top: 20px;
    background-color: transparent;
    border: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
}

.js-moreText {
    position: relative;
    max-height: 400px;
    overflow: hidden;
}
.js-moreText:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(rgba(255, 255, 255, 0.342), #fff);
}

.js-moreText.clamp::after {
    content: none;
}

.product-related {
    background-color: var(--accent-background-color);
}
.product-related__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 15px;
    margin-bottom: 30px;
}
.product-related__head > .title {
    margin: 0;
}
.product-related__head > .btn {
    text-transform: uppercase;
}
.product-related__body {
    position: relative;
}
.product-related__body .swiper-slide {
    display: flex;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.product-related__body .swiper-button-next,
.product-related__body .swiper-button-prev {
    color: #fff;
    background-color: #000;
}
.product-related__item {
    background-color: #fff;
    padding: 15px 15px 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid #bdbdbd;
    position: relative;
    transition: 0.3s ease-in-out;
    width: 100%;
    max-width: 350px;
}
.product-related__item:hover {
    background-color: var(--accent-background-color-2);
    border-color: rgba(0, 0, 0, 0.36);
}
.product-related__item:hover .products-layout__grid-item__image > img {
    transform: scale(1.1);
}
.product-related__item__image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}
.product-related__item__image > img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: 0.3s ease-in-out;
}
.product-related__item__title {
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: clamp(18px, 1.5vw, 22px);
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 25px;
}
.product-related__item__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    max-height: 75px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 15px;
}
.product-related__item__button {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #000;
    padding: 7px 15px;
    background-color: var(--accent-color-2);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.testimonials-block {
    background-color: var(--accent-background-color);
}
.testimonials-block__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 55px;
    column-gap: 55px;
    row-gap: 73px;
    padding-bottom: 200px;
}
@media (max-width: 1250px) {
    .testimonials-block__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}
@media (max-width: 800px) {
    .testimonials-block__grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}
.testimonials-block__item {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}
.testimonials-block__item-top {
    padding: 50px 50px 50px 85px;
    position: relative;
}
.testimonials-block__item-top::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 36px;
    height: 36px;
    background-image: url(/img/icons/mg_quotes.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
}
.testimonials-block__item-bottom {
    background-color: var(--accent-color);
    padding: 50px;
    text-align: center;
}
.testimonials-block__item-bottom > h6 {
    color: var(--accent-color-2);
    font-weight: 500;
    font-size: clamp(18px, 2vw, 22px);
    text-transform: uppercase;
    margin-bottom: 25px;
}
.testimonials-block__item-bottom > p {
    font-weight: 300;
    font-size: clamp(18px, 2vw, 22px);
    color: #fff;
}

.contact-block {
    background-color: var(--accent-background-color);
}
.contact-block__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 1000px) {
    .contact-block__layout {
        grid-template-columns: 100%;
    }
}
.contact-block__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-block__info-top {
    padding-left: var(--container-padding);
    padding-right: 50px;
    padding-bottom: 20px;
}
.contact-block__info-bottom {
    padding-left: var(--container-padding);
    padding-right: 50px;
    padding-top: 70px;
    padding-bottom: 90px;
    background-color: var(--accent-color-2);
}
.contact-block__info-bottom__1 {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    font-family: var(--font-family-2);
}
@media (max-width: 1350px) {
    .contact-block__info-bottom__1 {
        grid-template-columns: 100%;
        row-gap: 10px;
    }
}
.contact-block__info-bottom__1 > p {
    font-family: var(--font-family-2);
    font-weight: 300;
    font-size: 24px;
    text-transform: uppercase;
}
.contact-block__info-bottom__1 > ul {
    list-style: none;
    font-size: 24px;
}
.contact-block__info-bottom__1 > ul li {
    font-family: var(--font-family-2);
    padding-left: 40px;
    position: relative;
}
.contact-block__info-bottom__1 > ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 25px;
    height: 25px;
    background-image: url(/img/icons/mg_arrow-small.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.contact-block__info-bottom__2 {
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 30px;
}
.contact-block__info-bottom__3 {
    font-family: var(--font-family-2);
    font-weight: 300;
    font-size: 24px;
    text-transform: uppercase;
}
.contact-block__info-bottom__3 > strong {
    font-family: var(--font-family-2);
}
.contact-block__row {
    display: flex;
    -moz-column-gap: 25px;
    column-gap: 25px;
    margin-bottom: 30px;
}
.contact-block__row-icon {
    color: var(--accent-color);
}
.contact-block__row-content a,
.contact-block__row-content p {
    display: block;
    font-weight: 400;
    font-size: clamp(18px, 3vw, 24px);
    text-transform: uppercase;
    color: #000000;
    font-family: var(--font-family-2);
}
.contact-block__row-content a strong,
.contact-block__row-content p strong {
    font-family: var(--font-family-2);
}
.contact-block__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 30px;
    background-color: var(--accent-color);
    padding: 60px var(--container-padding) 60px 90px;
    color: #fff;
}
.contact-block__form-head {
    grid-column: 1/-1;
    margin-bottom: 40px;
}
.contact-block__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 18px;
    column-gap: 18px;
}
.contact-block__form > .btn.btn--light {
    grid-column: 1/-1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 20px 60px;
    text-transform: uppercase;
}
@media (max-width: 1200px) {
    .contact-block__form {
        row-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        padding: 60px var(--container-padding) 60px 30px;
    }
}
@media (max-width: 500px) {
    .contact-block__form {
        grid-template-columns: 100%;
        padding: 60px var(--container-padding) 60px var(--container-padding);
    }
    .contact-block__form > input:nth-child(1) {
        grid-row: 2;
    }
    .contact-block__form > input:nth-child(4) {
        grid-row: 3;
    }
}

.page-head {
    text-align: center;
    background-color: var(--accent-background-color);
}
.page-head__title {
    font-family: var(--font-family-2);
    font-weight: 500;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 100%;
    text-transform: uppercase;
    position: relative;
}
.page-head__text {
    margin: 0 auto;
    margin-top: 45px;
    max-width: 1300px;
    line-height: 150%;
}

/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
    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;
    padding: 50px var(--container-padding);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
    background-color: #fff;
}
.par__txt ul:not(.styled-list) {
    list-style: none;
    padding-left: 30px;
}
.par__txt ul:not(.styled-list) li {
    position: relative;
    font-style: italic;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
    color: #000000;
    padding-left: 35px;
    margin-bottom: 15px;
}
.par__txt ul:not(.styled-list) li::after {
    content: '';
    position: absolute;
    top: clamp(3px, 3vw, 6px);
    left: 0;
    width: 26px;
    height: 19px;
    background-image: url(/img/icons/mf_checkmark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media (max-width: 1250px) {
    .par__txt {
        padding: 5%;
    }
}
.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;
    max-width: calc(var(--page-max-width) / 2);
    position: relative;
}
.par__img img {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: -webkit-sticky;
    position: sticky;
    top: 230px;
}
.par__ttl {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.04em;
    text-transform: capitalize;
    color: #333;
    background-color: var(--accent-color);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 10px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.par__subttl {
    font-style: italic;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 100%;
    margin-bottom: 30px;
    line-height: 100%;
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #333333;
}
.par__subttl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent-color);
}
.par__subttl--center {
    text-align: center;
}
.par__subttl--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.par__text {
    font-family: var(--font-style-3);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 25px;
}
.par__text > img {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.par__text-link {
    margin-top: 35px;
    display: inline-block;
    border: 1px solid var(--accent-color);
    padding: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: var(--accent-color);
    transition: 0.3s ease-in-out;
}
.par__text-link:hover {
    background-color: var(--accent-color);
    color: var(--color-white);
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 100% !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
    }
    .par .par__img {
        display: block;
        margin: 0 auto;
    }
    .par .par__img img {
        display: block;
        margin: 0 auto;
    }
}

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

.par.par--right {
    grid-template-columns: 1fr 1fr;
    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.par--center .par__txt {
    padding: 5% 0;
}

.par__txt.par__txt--center {
    justify-content: center;
}

/* [_paragraph end] */
.quote-popup {
    padding: 8px;
    background-color: #fff;
    padding: 5px;
    max-width: 1250px;
    width: 100%;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
}
.quote-popup > form {
    width: 100%;
    background-image: url(/img/backgrounds/my_qpopup-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@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-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--accent-color);
    padding: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.quote-popup__form-block__subtitle {
    grid-column: 1/-1;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 100%;
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: -0.04em;
    position: relative;
    text-align: center;
    color: var(--accent-color-2);
}
.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: #fff;
    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;
}

.footer {
    background-color: var(--accent-color);
}
.footer__layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
    .footer__layout {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 15px;
    }
    .footer__layout-block:nth-child(1) {
        grid-column: 1/4;
    }
}
@media screen and (max-width: 750px) {
    .footer__layout {
        grid-template-columns: 1fr 1fr;
        row-gap: 15px;
    }
    .footer__layout-block:nth-child(1) {
        grid-column: 1/3;
    }
}
@media screen and (max-width: 550px) {
    .footer__layout {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    .footer__layout-block:nth-child(1) {
        grid-column: 1/2;
    }
}
.footer__title {
    font-family: var(--font-family-2);
    color: var(--accent-color-2);
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.footer__link-list {
    list-style: none;
    -moz-column-count: 2;
    column-count: 2;
}
.footer__link-list__item {
    font-family: var(--font-family-2);
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.footer__partners {
    display: flex;
    -moz-column-gap: 40px;
    column-gap: 40px;
}
.footer__contact-list {
    list-style: none;
    color: #fff;
}
.footer__contact-list > li {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-bottom: 15px;
}
.footer__contact-list a {
    align-items: center;
    color: #fff;
}
.footer__bottom {
    font-size: 14px;
    border-top: 1px solid #eee3cd;
    display: flex;
    -moz-column-gap: 50px;
    column-gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
    color: var(--accent-background-color-2);
}
.footer__bottom p,
.footer__bottom a {
    font-size: 14px;
    color: var(--accent-background-color-2);
}

/* [MAIN CSS START] */
/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 0;
    border: none;
}

.main-container--margin {
    margin-top: 120px;
}
@media (max-width: 800px) {
    .main-container--margin {
        margin-top: 100px;
    }
}

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

.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);
}

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

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

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

.title {
    font-family: var(--font-family-2);
    font-weight: 500;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 100%;
    margin-bottom: 45px;
    text-transform: uppercase;
    position: relative;
}
.title--center {
    text-align: center;
}
.title--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.title--large {
    font-size: clamp(40px, 2vw, 52px);
}
.title--small {
    font-size: clamp(20px, 2vw, 26px);
    color: var(--accent-color-2);
    margin-bottom: 5px;
}

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

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

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

.subtitle {
    font-size: clamp(20px, 2vw, 26px);
    color: var(--accent-color-2);
    margin-bottom: 5px;
}

.nowrap {
    white-space: nowrap;
}

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

.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;
    padding: 10px 20px;
    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--light {
    border: 1px solid var(--accent-color-2);
    color: #000;
    background: var(--accent-color-2);
    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);
    color: var(--color-white);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 8px -2px #292929;
}

.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: var(--accent-dark-color);
}

@-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;
}

/* [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 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
