:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #1d5199;
    --accent-color-2: #ffbc2c;
    --accent-background-color: #f2f2f2;
    --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: #1a5898;
}

@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|| */
.hc-nav-trigger {
    position: relative;
    display: none;
    padding: 0;
    margin-left: auto;
    margin-right: 5%;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9;
    transition: 0.3s ease;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}
.header__layout {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 115px;
    padding: 0 calc(var(--container-padding) / 2);
}
@media (max-width: 1375px) {
    .header__layout {
        height: 80px;
    }
}
.header__logo {
    display: flex;
    align-items: center;
    margin-right: 5%;
    min-width: 200px;
}
.header__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    position: relative;
}
.header__menu > li {
    height: 100%;
    display: flex;
    align-items: stretch;
}
@media (max-width: 1100px) {
    .header__menu > li:not(.header__menu-mobile) {
        display: none;
    }
}
.can-tag {
    display: flex;
    min-width: 110px;
}
@media (max-width: 480px) {
    .can-tag {
        display: none;
    }
}

.header__menu-link {
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
    align-items: center;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    transition: 0.3s ease;
}
@media (max-width: 1670px) {
    .header__menu-link {
        padding: 15px 10px;
        font-size: 14px;
    }
}
@media (max-width: 1375px) {
    .header__menu-link {
        padding: 15px 10px;
        font-size: 12px;
    }
}
@media (max-width: 1375px) {
    .header__menu-link > span {
        display: none;
    }
}
.header__menu-link:hover {
    color: var(--accent-color);
}
.header__menu-link.header__menu-link--active {
    position: relative;
}
.header__menu-link.header__menu-link--active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent-color-2);
}
@media (max-width: 1000px) {
    .header__menu {
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
.header__quote-btn {
    position: absolute;
    top: 100%;
    right: 0;
    padding: 20px 30px;
    color: #333333;
    font-weight: 500;
    font-size: 20px;
    border: 0;
    background-color: var(--accent-color-2);
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
}
@media (max-width: 1125px) {
    .header__quote-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
}
.header__quote-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* || HEADER end || */
/* || HOME SLIDER start || */
.hero-section {
    --hero-height: 85vh;
    --bottom-height: 175px;
    background-image: url(/img/backgrounds/mt_hero-bg.png);
    background-color: #5d5d5d;
    mix-blend-mode: color-dodge;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 800px;
    height: auto;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1170px) {
    .hero-section {
        min-height: auto;
    }
}
.hero-section__top {
    display: flex;
}
.hero-section__bottom {
    flex: 1 1 var(--bottom-height);
    height: var(--bottom-height);
    display: flex;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 25px;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 0 var(--container-padding);
    padding-bottom: 40px;
}
@media (max-width: 650px) {
    .hero-section__bottom {
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
@media (max-width: 550px) {
    .hero-section__bottom {
        flex-direction: column;
        flex: initial;
        --bottom-height: auto;
    }
}
.hero-section__bottom-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 550px;
    color: #fff;
}
.hero-section__bottom-item:hover .hero-section__bottom-item__image {
    filter: brightness(1.2);
    transform: translateY(-5px);
    box-shadow: 0px 15px 8px -8px rgba(0, 0, 0, 0.372);
}
.hero-section__bottom-item:hover .hero-section__bottom-item__title {
    color: var(--accent-color-2);
}
.hero-section__bottom-item:hover .hero-section__bottom-item__fake {
    color: #fff;
}
.hero-section__bottom-item__image {
    border-top: 10px solid var(--accent-color-2);
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
    transition: 0.3s ease;
}
.hero-section__bottom-item__image > img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.hero-section__bottom-item__title {
    font-weight: 400;
    font-size: clamp(14px, 2vw, 26px);
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    transition: 0.3s ease;
}
.hero-section__bottom-item__fake {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    font-weight: 500;
    font-size: clamp(14px, 2vw, 16px);
    text-transform: uppercase;
    color: var(--accent-color-2);
    transition: 0.3s ease;
}

.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(180deg, rgba(0, 0, 0, 0.5) 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-style: italic;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 60px);
    margin-bottom: 35px;
    color: #ffffff;
}
.home-slider .swiper-slide__content__link {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: var(--accent-color-2);
    margin-top: 35px;
    font-size: 16px;
    text-transform: uppercase;
}
.home-slider .swiper-slide__content__text {
    font-size: clamp(18px, 2vw, 26px);
    max-width: 600px;
}
.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;
}
.home-slider .swiper-pagination-bullet-active {
    border: 2px solid #fff;
}

/* || HOME SLIDER end || */
/* || REVIEWS SLIDER start || */
.home-reviews-swiper__slide {
    padding-bottom: 50px;
}
.home-reviews-swiper__slide-content {
    padding-left: 40px;
    position: relative;
    color: #fff;
}
.home-reviews-swiper__slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-image: url(/img/icons/gtx_quotes.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.home-reviews-swiper__slide-text {
    font-style: italic;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 23.9679px);
    line-height: 150%;
    margin-bottom: 40px;
    max-height: 300px;
    overflow: auto;
}
.home-reviews-swiper__slide-name {
    font-weight: 800;
    font-size: 21.3048px;
}
.home-reviews-swiper__slide-rate {
    display: flex;
}
.home-reviews-swiper .swiper-pagination {
    text-align: left;
}
.home-reviews-swiper .swiper-pagination-bullets {
    bottom: 0;
}
.home-reviews-swiper .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #fff;
}
.home-reviews-swiper .swiper-pagination-bullet-active {
    border: 2px solid #fff;
}

/* || REVIEWS SLIDER end || */
: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(16px, 2vw, 22px);
    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;
}

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

.about-services {
    background-color: var(--accent-color);
    color: #fff;
}
.about-services__main-head {
    position: relative;
    padding-right: 30px;
    margin-right: 30px;
}
.about-services__main-head__title {
    font-style: italic;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 100%;
    margin-bottom: 40px;
    line-height: 100%;
    letter-spacing: -0.04em;
    position: relative;
    color: #fff;
    text-align: center;
}
.about-services__main-head__text {
    font-size: 16px;
    line-height: 150%;
}
.about-services__main-body {
    display: flex;
    align-items: center;
}
.about-services__main-body > ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    width: 100%;
}
@media (max-width: 850px) {
    .about-services__main-body > ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
.about-services__main-body > ul > li {
    padding-left: 30px;
    position: relative;
    font-size: clamp(14px, 1.2vw, 24px);
}
.about-services__main-body > ul > li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 19px;
    background-image: url(/img/icons/fa_checkmark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media (max-width: 1350px) {
    .about-services__main {
        grid-template-columns: 100%;
        row-gap: 20px;
    }
    .about-services__main-head {
        padding: 0;
        margin: 0;
    }
    .about-services__main-head::after {
        display: none;
    }
}

.home-reviews {
    background-color: var(--accent-background-color);
}
.home-reviews__layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    -moz-column-gap: 60px;
    column-gap: 60px;
}
.home-reviews__layout-head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.home-reviews__layout-head > h2 {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 31.8033px;
    color: #333333;
}
.home-reviews__layout-head > a {
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #333333;
}
.home-reviews__layout-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}
@media (max-width: 800px) {
    .home-reviews__layout-body {
        flex-direction: column;
        flex-wrap: nowrap;
    }
}
.home-reviews__layout-item {
    padding-left: 30px;
    position: relative;
    flex: 1 0 30%;
}
.home-reviews__layout-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/mt_quotes.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.home-reviews__layout-item__text {
    font-style: italic;
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 150%;
    margin-bottom: 30px;
}
.home-reviews__layout-item__user {
    display: block;
    margin-bottom: 5px;
}
.home-reviews__layout-item__rate {
    display: flex;
    align-items: center;
}
@media (max-width: 1400px) {
    .home-reviews__layout {
        grid-template-columns: 100%;
        row-gap: 40px;
    }
    .home-reviews__layout-head {
        align-items: flex-start;
        row-gap: 15px;
    }
}

.home-gallery__title {
    font-style: italic;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 100%;
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: -0.04em;
    position: relative;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}
.home-gallery__text {
    line-height: 150%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.home-gallery__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.home-gallery__layout img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 1000px) {
    .home-gallery__layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* [_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-color: transparent;
    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] */
.banner {
    background-color: var(--accent-color);
    background-image: url(/img/backgrounds/mt_banner-bg.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    position: relative;
}
.banner__overlay {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, var(--accent-color) 50%, rgba(0, 0, 0, 0) 100%);
}
.banner .container {
    padding: 60px 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 50px;
    column-gap: 50px;
    position: relative;
    z-index: 2;
}
@media (max-width: 1125px) {
    .banner .container {
        flex-direction: column;
        padding: 60px 5%;
        background-position: left;
        background-size: cover;
    }
}
.banner__text h3 {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(30px, 4vw, 40px);
    color: #ffffff;
}
.banner__text h3 > span {
    font-weight: 700;
    text-decoration: underline;
}
@media (max-width: 1125px) {
    .banner__text {
        text-align: center;
        margin-bottom: 35px;
    }
}
.banner__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 20px 20px;
    font-weight: 700;
    font-size: 21.4126px;
    line-height: 26px;
    text-transform: uppercase;
    color: #000;
    background-color: var(--accent-color-2);
    white-space: nowrap;
    transition: 0.3s ease-in-out;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.banner__link:hover {
    color: #fff;
    background-color: var(--accent-color);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.page-head {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
}
.page-head__title {
    padding: 20px 35px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.608) 50%, rgba(0, 0, 0, 0) 100%);
    border-left: 5px solid var(--accent-color-2);
    color: #fff;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 60px);
}

.home-services {
    background-color: var(--accent-color);
    color: #fff;
}
.home-services__main {
    display: grid;
    grid-template-columns: 480px 1fr;
}
.home-services__main-head {
    position: relative;
    padding-right: 30px;
    margin-right: 30px;
}
.home-services__main-head::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 100%;
    background-color: #316bba;
}
.home-services__main-head__title {
    font-style: italic;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 100%;
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: -0.04em;
    position: relative;
    margin-bottom: 30px;
    color: #fff;
}
.home-services__main-head__text {
    font-size: 16px;
    line-height: 150%;
}
.home-services__main-body {
    display: flex;
    align-items: center;
}
.home-services__main-body > ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    width: 100%;
}
@media (max-width: 850px) {
    .home-services__main-body > ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
.home-services__main-body > ul > li {
    padding-left: 30px;
    position: relative;
    font-size: clamp(14px, 1.2vw, 24px);
}
.home-services__main-body > ul > li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 19px;
    background-image: url(/img/icons/fa_checkmark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media (max-width: 1350px) {
    .home-services__main {
        grid-template-columns: 100%;
        row-gap: 20px;
    }
    .home-services__main-head {
        padding: 0;
        margin: 0;
    }
    .home-services__main-head::after {
        display: none;
    }
}

.about-welcome__text {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    font-size: 16px;
    line-height: 150%;
}
@media (max-width: 768px) {
    .about-welcome__text {
        -moz-column-count: 1;
        column-count: 1;
    }
}

.about-facility {
    padding-left: var(--container-padding);
}
@media (max-width: 1200px) {
    .about-facility {
        padding-left: 0;
    }
}
.about-facility__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
    .about-facility__layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-facility__layout {
        grid-template-columns: 100%;
    }
}
.about-facility__layout-item__text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 25px;
}
.about-facility__layout-item__text > p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 25px;
}
.about-facility__layout-item__text > a {
    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;
}
.about-facility__layout-item__text > a:hover {
    background-color: var(--accent-color);
    color: var(--color-white);
}
.about-facility__layout-item > img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-section__container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.gallery-section__container p {
    grid-column: 1/-1;
    text-align: center;
    padding-bottom: 50px;
}
@media (max-width: 1400px) {
    .gallery-section__container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 900px) {
    .gallery-section__container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .gallery-section__container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .gallery-section__container {
        grid-template-columns: 1fr;
    }
}
.gallery-section__item {
    position: relative;
    aspect-ratio: 1/1;
}
.gallery-section__item::after {
    content: '';
    width: 35px;
    height: 35px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(/img/icons/mt_zoom.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transition: 0.3s ease;
}
.gallery-section__item:hover::after {
    opacity: 0.8;
}
.gallery-section__link {
    display: block;
    width: 100%;
    height: 100%;
}
.gallery-section__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.page-nav__title {
    font-style: italic;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 100%;
    margin-bottom: 30px;
    line-height: 100%;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #333333;
    text-align: center;
}
.page-nav__slogan {
    max-width: 1000px;
    margin: 0 auto 50px auto;
    text-align: center;
}
.page-nav__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
}
.page-nav__list-link {
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid var(--accent-color);
    color: #000;
    transition: 0.3s all ease-in-out;
}
.page-nav__list-link:hover {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
    color: #fff;
}
.page-nav__list-link.page-nav__list-link--active {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
    color: #fff;
}
@media (max-width: 650px) {
    .page-nav__list {
        flex-direction: column;
        row-gap: 5px;
    }
    .page-nav__list-item {
        width: 100%;
        text-align: center;
    }
    .page-nav__list-link {
        width: 100%;
    }
}

.footer {
    background: url(/img/backgrounds/mt_footer-bg.jpg) repeat-y;
    background-size: contain;
    padding: 30px 15px;
    font-size: 9pt;
    color: #444;
}
@media (max-width: 930px) {
    .footer__layout {
        display: flex;
        flex-direction: column;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 30px;
    }
}

.footer A:link,
.footer A:visited {
    color: #444;
    font-size: 9pt;
}

.socials img {
    width: 25px;
}

.socials a:link,
.socials a:visited {
    display: inline-block !important;
}

.ft-block,
.ft-inner {
    float: left;
}

.ft-lbl {
    display: block;
    padding: 15px 0 20px;
    text-transform: uppercase;
    font-size: 9pt;
    color: #444;
    font-weight: 700;
}

.ft-sitemap {
    padding-right: 50px;
}

.ft-contacts {
    padding-left: 50px;
}

.ft-sitemap,
.ft-sitemap div.ft-inner,
.ft-contacts div.ft-inner {
    padding-right: 50px;
}

.ft-contacts div.ft-inner div {
    padding-bottom: 5px;
}

.ft-address {
    color: #2565bd;
}

.ft-inner div {
    clear: left;
    float: left;
}

.ft-block A:link,
.ft-block A:visited {
    display: block;
    padding: 3px 5px;
    text-decoration: none;
}

.ft-block A:hover {
    background-color: #40518a;
    color: #fff;
}

.ft-copyright {
    float: right;
}

.ft-copyright div.ft-inner {
    padding: 41px 0 0 50px;
}

.ft-copyright div.ft-inner div {
    padding-top: 8px;
}

.footer-m {
    display: none;
    width: 100%;
    background: url(../images/bg.jpg) repeat-y;
    background-size: 100%;
    padding: 10px 0 5px;
    color: #444;
    text-transform: uppercase;
    font-size: 8pt;
}

.footer-m-inner {
    padding-top: 7px;
}

.footer-item {
    padding: 0 0 5px 10px;
}

.footer-item A:link,
.footer-item A:visited {
    color: #444;
    text-transform: uppercase;
    font-size: 7pt;
}

.clear {
    clear: both;
}

@media (max-width: 930px) {
    .ft-block,
    .ft-contacts,
    .ft-copyright div.ft-inner {
        float: none;
        padding-left: 0;
    }

    .ft-copyright {
        display: flex;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
.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;
}

.contact-section.contact-section--accent {
    background-color: var(--accent-color);
}
.contact-section__layout-top {
    display: grid;
    grid-template-columns: 550px 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
@media (max-width: 1600px) {
    .contact-section__layout-top {
        grid-template-columns: 450px 1fr;
    }
}
@media (max-width: 930px) {
    .contact-section__layout-top {
        grid-template-columns: 100%;
    }
}
.contact-section__info {
    padding: 65px 0;
    padding-left: var(--container-padding);
}
.contact-section__info-subtitle {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 27px;
    text-transform: uppercase;
}
.contact-section__info-item {
    padding-left: 50px;
    position: relative;
    margin-bottom: 50px;
}
.contact-section__info-item.contact-section__info-item--location::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/img/icons/mt_pin-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(21%) sepia(65%) saturate(1561%) hue-rotate(199deg) brightness(101%) contrast(98%);
}
.contact-section__info-item.contact-section__info-item--phones > a {
    display: block;
    margin-bottom: 5px;
    color: #000;
}
.contact-section__info-item.contact-section__info-item--phones::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/img/icons/mt_phone-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(21%) sepia(65%) saturate(1561%) hue-rotate(199deg) brightness(101%) contrast(98%);
}
.contact-section__info-item.contact-section__info-item--hours p:nth-child(1) {
    color: var(--accent-color);
    margin-bottom: 5px;
}
.contact-section__info-item.contact-section__info-item--hours::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/img/icons/mt_time-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0.1) saturate(100%) invert(21%) sepia(65%) saturate(1561%) hue-rotate(199deg) brightness(101%) contrast(98%);
}
.contact-section__map {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-image: url(/img/misc/mt_map.jpg);
    background-size: cover;
    background-position: 72%;
    background-repeat: no-repeat;
}
.contact-section__layout-bottom > p {
    text-align: center;
    color: #fff;
    line-height: 150%;
    max-width: 780px;
    margin: 0 auto 50px auto;
}
.contact-section__layout-bottom > form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
}
@media (max-width: 600px) {
    .contact-section__layout-bottom > form {
        grid-template-columns: 100%;
        row-gap: 15px;
    }
}
.contact-section__layout-bottom > form > div {
    grid-column: 1/-1;
}
.contact-section__layout-bottom > form .jfilestyle {
    width: auto;
}
.contact-section__layout-bottom > form > .btn {
    grid-column: 1/-1;
    margin: 0 auto;
    color: #000;
}
.contact-section__layout-bottom > form > .btn:hover {
    box-shadow: 0 0 0 2px #fff;
}

/* [MAIN CSS START] */
.main-container--margin {
    margin-top: 115px;
}
@media (max-width: 1375px) {
    .main-container--margin {
        margin-top: 80px;
    }
}

.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,
textarea.error,
select.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;
}

textarea {
    resize: none;
}

.title {
    font-weight: 500;
    font-style: italic;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 100%;
    margin-bottom: 45px;
    padding-left: 20px;
    line-height: 100%;
    position: relative;
    border-left: 5px solid var(--accent-color);
}
.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-accent-2 {
    color: var(--accent-color-2);
}

.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: #fff;
    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 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;
    user-select: 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%;
    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%;
}

.page-err {
    min-height: 40vh;
    padding: 50px 10px;
    text-align: center;
    max-width: 850px;
}

.page-err * {
    padding-bottom: 10px;
}

.page-err h1 {
    color: #ff0000;
    font-size: 55pt;
}
