:root {
    --yellow: #ffe70c;
    --gold: #ffc000;
    --black: #000;
    --dark: #222;
    --footer: #1f1f1f;
    --text: #333;
    --muted: #666;
    --line: #e5e5e5;
    --container: 1920px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Open-Sans";
    src: url("../fonts/Open-Sans.ttf");
}

@font-face {
    font-family: "Oswald-Regular";
    src: url("../fonts/Oswald-Regular.ttf");
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.woff2") format("woff2"), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: "Roboto-Regular", "Oswald-Regular", Arial, sans-serif;
    color: var(--text);
    background: #000;
    line-height: 1.6;
    min-width: 320px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 120px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    left: 0;
    background: rgba(0, 0, 0, .8);
    box-shadow: none;
    border-bottom: 1px solid rgba(102, 102, 102, .75);
    width: 100%;
}

.header-inner {
    min-height: 90px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 1600px;
    padding-left: 40px;
    padding-right: 40px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 16.6667%;
    min-height: 90px;
}

.logo img {
    width: 178px;
    height: auto;
}

.main-nav {
    flex: 1 1 auto;
    padding-top: 26px;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav>ul {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    white-space: nowrap;
}

.main-nav>ul>li>a {
    padding: 0 30px;
    font-size: 16px;
    line-height: 46px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    transition: color .2s ease;
}

.main-nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    min-width: 235px;
    padding: 10px 0;
    background: #222;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .22);
}

.main-nav li ul ul {
    top: -5px;
    left: 100%;
    background: #1b1b1b;
}

.main-nav li li a {
    padding: 0 40px 0 30px;
    color: #fff;
    font-size: 16px;
    line-height: 38px;
    font-weight: 400;
    border-bottom: 0;
}

.main-nav .has-menu>a::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    display: block;
    margin-left: 0;
    border: 4px solid transparent;
    border-top-color: currentColor;
    transform: translateY(-50%) rotate(-90deg);
}

.main-nav>ul>.has-menu>a {
    position: static;
}

.header-search {
    position: relative;
    width: 180px;
    flex: 0 0 auto;
    margin-top: 34px;
}

.header-search input {
    width: 100%;
    height: 30px;
    padding: 0 34px 0 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: 0;
    color: #fff;
    background: transparent;
}

.header-search input::placeholder {
    color: #666;
}

.header-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-search button::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    width: 11px;
    height: 11px;
    border: 2px solid #999;
    border-radius: 50%;
}

.header-search button::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 19px;
    width: 8px;
    height: 2px;
    background: #999;
    transform: rotate(45deg);
}

.lang {
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    margin-top: 42px;
    margin-left: 10px;
}

.language-links {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.language-links .lang-cont,
.language-links .lang-a {
    display: inline-flex;
    align-items: center;
}

.language-links .lang-div-mid {
    display: inline-block;
    width: 4px;
}

.language-links .sprites {
    display: inline-block;
    width: 21px;
    height: 14px;
    background-image: url("../images/sprites.png");
    background-repeat: no-repeat;
}

.language-links .sprites-0 {
    background-position: -252px -116px;
}

.language-links .sprites-7 {
    background-position: -294px -96px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 38px;
    border: 0;
    background: none;
    padding: 9px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.mobile-menu-panel {
    display: none;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (min-width: 1025px) {
    .main-nav>ul>.has-menu>a::after {
        display: none;
    }
    .main-nav li li.has-menu>a {
        position: relative;
    }
}

.category-intro h2,
.section-title h2,
.custom-section h2,
.about-copy h2,
.contact-banner h2 {
    margin: 0;
    font-family: 'Oswald-Regular';
    font-size: 38px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0;
    color: #ffe70c;
    position: relative;
    margin-bottom: 15px;
}

.category-intro h2::after,
.section-title h2::after,
.custom-section h2::after,
.about-copy h2::after,
.contact-banner h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 5px;
    background-color: #ffe70c;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.contact-banner {
    padding: 10px 0 16px;
    color: #000;
    background: var(--yellow);
}

.contact-banner-inner {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 10fr 2fr;
    align-items: center;
    gap: 20px;
}

.contact-banner-copy {
    padding: 0;
}

.contact-banner h2 {
    color: #222;
    font-family: 'Oswald-Regular';
    font-size: 32px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
}

.contact-banner h2::after {
    display: none;
}

.contact-banner p {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 1.8;
}

.contact-banner-action {
    text-align: center;
}

.contact-banner a {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 0 50px;
    border-radius: 3px;
    color: var(--yellow);
    background: #000;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.site-footer {
    color: #d8d8d8;
    background: #1a1a1a;
}

.footer-container {
    width: min(1440px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 320px;
    gap: 20px;
    padding: 10px 0 28px;
    align-items: start;
}

.footer-left {
    display: contents;
}

.footer-links-group {
    display: contents;
}

.footer-links-group .footer-nav:first-child {
    grid-column: 1;
    grid-row: 1;
}

.footer-links-group .footer-nav:last-child {
    grid-column: 2;
    grid-row: 1;
}

.footer-nav,
.footer-contact {
    padding-top: 62px;
}

.footer-contact {
    grid-column: 3;
    grid-row: 1;
}

.site-footer h3 {
    margin: 0 0 20px;
    color: var(--yellow);
    font-family: 'Oswald-Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.footer-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    color: var(--yellow);
    background: transparent;
    font-family: 'Oswald-Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}

.footer-toggle .fa {
    display: none;
}

.footer-toggle-content {
    display: block;
}

.footer-nav a {
    display: block;
}

.site-footer a,
.site-footer p {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
    line-height: 1.55;
}

.footer-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-left: 23px;
}

.footer-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin: 0;
    color: #fff;
    font-size: 13px;
}

.footer-share .share-email {
    background: #1689d6;
}

.footer-share .share-whatsapp,
.footer-share .share-wechat {
    background: #22c733;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 9px;
}

.footer-contact p i {
    width: 15px;
    margin-top: 5px;
    color: #fff;
    font-size: 13px;
    text-align: center;
}

.footer-contact p span,
.footer-contact p a {
    color: #fff;
}

.footer-social-round {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.footer-social-round a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
}

.footer-form-column {
    grid-column: 4;
    grid-row: 1;
    background: var(--yellow);
    width: 320px;
    min-height: 328px;
    padding: 39px 19px 36px;
}

.footer-form-column h3 {
    margin-bottom: 14px;
    color: #000;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
}

.footer-form textarea {
    min-height: 90px;
    padding-top: 7px;
    line-height: 1.4;
    resize: vertical;
}

.footer-form button {
    width: 136px;
    height: 36px;
    margin-top: 0;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: #000;
    font-size: 14px;
    cursor: pointer;
}

.footer-form .fluentform {
    margin: 0;
}

.footer-form .fluentform .ff-el-group {
    margin: 0 0 10px;
}

.footer-form .fluentform .ff-el-input--content {
    margin: 0;
}

.footer-form .fluentform .ff-el-form-label,
.footer-form .fluentform .ff-el-input--label {
    display: none !important;
}

.footer-form .fluentform .ff-el-form-control {
    width: 100%;
    min-height: 0;
    margin-bottom: 0;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    box-sizing: border-box;
    background: #fff;
    color: #222;
    font-size: 14px;
    line-height: 30px;
    box-shadow: none;
}

.footer-form .fluentform input.ff-el-form-control {
    height: 30px;
}

.footer-form .fluentform textarea.ff-el-form-control {
    min-height: 90px;
    padding-top: 7px;
    line-height: 1.4;
    resize: vertical;
}

.footer-form .fluentform button.ff-btn-submit {
    width: 136px;
    height: 36px;
    margin-top: 0;
    border: 0;
    border-radius: 4px;
    background: #000 !important;
    color: #fff !important;
    font-size: 14px;
    box-shadow: none;
}

.copyright {
    grid-column: 1 / 4;
    grid-row: 2;
    padding: 16px 0 0;
    text-align: left;
    color: #bfbfbf;
    font-size: 14px;
    line-height: 1.6;
}

.copyright a {
    display: inline;
    color: #d8d8d8;
}

.back-top {
    position: fixed;
    right: 20px;
    bottom: 48px;
    z-index: 101;
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: #FFF;
    cursor: pointer;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.back-top i {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    font-size: 30px;
}

.back-top.show {
    display: block;
}

.floating-contact {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.floating-contact-item {
    position: relative;
}

.floating-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 47px;
    border: 0;
    color: #fff;
    background: #f2aa39;
    line-height: 1;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
}

.floating-contact-btn i {
    font-size: 24px;
}

.floating-popover {
    position: absolute;
    top: 50%;
    right: 58px;
    z-index: 2;
    display: none;
    transform: translateY(-50%);
}

.floating-popover-qr {
    width: 148px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

.floating-popover-qr img {
    width: 100%;
    height: auto;
}

.floating-popover-text {
    min-width: 178px;
    padding: 10px 14px;
    color: #333;
    background: #fff;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

.floating-qr-modal {
    position: fixed;
    inset: 0;
    z-index: 520;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.floating-qr-modal.is-open {
    display: flex;
}

.floating-qr-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .62);
}

.floating-qr-dialog {
    position: relative;
    z-index: 1;
    width: min(240px, calc(100vw - 64px));
    padding: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .35);
}

.floating-qr-dialog img {
    width: 100%;
    height: auto;
}

.floating-qr-close {
    position: absolute;
    top: -34px;
    right: 0;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.floating-qr-close::before,
.floating-qr-close::after {
    content: "";
    position: absolute;
    top: 13px;
    left: 4px;
    width: 22px;
    height: 2px;
    background: #fff;
}

.floating-qr-close::before {
    transform: rotate(45deg);
}

.floating-qr-close::after {
    transform: rotate(-45deg);
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .78);
}

.video-modal.show {
    display: flex;
}

.video-dialog {
    position: relative;
    width: min(900px, 100%);
    background: #111;
}

.video-dialog img {
    width: 100%;
}

.video-close {
    position: absolute;
    top: -42px;
    right: 0;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.video-close::before,
.video-close::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 5px;
    width: 24px;
    height: 2px;
    background: #fff;
}

.video-close::before {
    transform: rotate(45deg);
}

.video-close::after {
    transform: rotate(-45deg);
}

@keyframes ani_turn2 {
    0% {
        opacity: .5;
        transform: scale(.6);
        -webkit-transform: scale(.6);
        -moz-transform: scale(.6);
        -ms-transform: scale(.6);
        -o-transform: scale(.6);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}

@media (max-width: 1024px) {
    body {
        padding-bottom: 50px;
    }
    .container,
    .header-inner {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .header-inner {
        min-height: 64px;
        align-items: center;
        gap: 0;
        justify-content: space-between;
    }
    .logo {
        min-height: 64px;
        width: 110px;
        flex: none;
    }
    .logo img {
        width: 100%;
    }
    .nav-toggle {
        display: block;
        margin-left: auto;
    }
    .header-search,
    .lang {
        display: none;
    }
    .mobile-menu-panel.is-open {
        position: fixed;
        inset: 0;
        z-index: 500;
        display: block;
        overflow-y: auto;
        color: #fff;
        background: #000;
        z-index: 9999;
    }
    .mobile-menu-screen {
        display: none;
        min-height: 100vh;
        padding: 16px 20px 48px;
        background: #000;
    }
    .mobile-menu-screen.is-active {
        display: block;
    }
    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 28px;
    }
    .mobile-menu-logo {
        display: block;
        width: 110px;
    }
    .mobile-menu-logo img {
        width: 100%;
        height: auto;
    }
    .mobile-menu-close {
        position: relative;
        width: 28px;
        height: 28px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }
    .mobile-menu-close::before,
    .mobile-menu-close::after {
        content: "";
        position: absolute;
        top: 13px;
        left: 5px;
        width: 20px;
        height: 2px;
        background: #fff;
    }
    .mobile-menu-close::before {
        transform: rotate(45deg);
    }
    .mobile-menu-close::after {
        transform: rotate(-45deg);
    }
    .mobile-menu-search {
        display: flex;
        align-items: center;
        height: 56px;
        margin-top: 14px;
        border-bottom: 1px solid #2b2b2b;
    }
    .mobile-menu-search button {
        width: 38px;
        height: 56px;
        border: 0;
        color: #fff;
        background: transparent;
        text-align: left;
        cursor: pointer;
    }
    .mobile-menu-search button .fa {
        font-size: 18px;
    }
    .mobile-menu-search input {
        flex: 1 1 auto;
        min-width: 0;
        height: 56px;
        border: 0;
        outline: 0;
        color: #fff;
        background: transparent;
    font-size: 14px;
}

    .mobile-menu-search input::placeholder {
        color: #8d8d8d;
    }
    .mobile-menu-list {
        display: block;
    }
    .mobile-menu-item,
    .mobile-subitem,
    .mobile-submenu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 50px;
        border: 0;
        border-bottom: 1px solid #2b2b2b;
        color: #fff;
        background: transparent;
        font-size: 14px;
        line-height: 1.2;
        text-align: left;
        cursor: pointer;
    }
    .mobile-menu-item .fa,
    .mobile-subitem .fa {
        font-size: 16px;
        font-weight: normal;
    }
    .mobile-language-trigger span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
    }
    .mobile-language-trigger .fa-globe {
        font-size: 14px;
    }
    .mobile-submenu {
        display: none;
        border-bottom: 1px solid #2b2b2b;
    }
    .mobile-menu-item.has-sub.is-open+.mobile-submenu,
    .mobile-subitem.has-sub.is-open+.mobile-submenu {
        display: block;
    }
    .mobile-menu-item.has-sub.is-open .fa-angle-down,
    .mobile-subitem.has-sub.is-open .fa-angle-down {
        transform: rotate(180deg);
    }
    .mobile-submenu a,
    .mobile-subitem {
        min-height: 42px;
        padding-left: 18px;
        border-bottom: 0;
        color: #ccc;
        font-size: 13px;
    }
    .mobile-submenu-level3 a {
        min-height: 38px;
        padding-left: 36px;
        color: #aaa;
        font-size: 12px;
    }
    .mobile-menu-language {
        padding-top: 0;
    }
    .mobile-menu-back {
        display: flex;
        align-items: center;
        width: 100%;
        height: 43px;
        border: 0;
        border-bottom: 1px solid #2b2b2b;
        color: #fff;
        background: transparent;
        text-align: left;
        cursor: pointer;
    }
    .mobile-menu-back .fa {
        font-size: 24px;
        line-height: 1;
    }
    .mobile-language-list a {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 41px;
        border-bottom: 1px solid #2b2b2b;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }
    .mobile-menu-panel .sprites {
        display: inline-block;
        flex: 0 0 auto;
        width: 21px;
        height: 14px;
        background-image: url("../images/sprites.png");
        background-repeat: no-repeat;
    }
    .mobile-menu-panel .sprites-0 {
        background-position: -252px -116px;
    }
    .mobile-menu-panel .sprites-7 {
        background-position: -294px -96px;
    }
    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        display: none;
        padding-top: 0;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        background: #0c6fb3;
    }
    .main-nav.open {
        display: block;
    }
    .main-nav>ul {
        display: block;
    }
    .main-nav>ul>li>a,
    .main-nav li li a {
        padding: 13px 20px;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    .main-nav li ul,
    .main-nav li ul ul {
        position: static;
        display: none;
        min-width: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #107ac3;
    }
    .main-nav li.open>ul {
        display: block;
    }
    .main-nav li ul ul {
        background: #1487d6;
    }
    .main-nav .has-menu>a {
        position: relative;
    }
    .main-nav .has-menu>a::after {
        right: 20px;
        transform: translateY(-50%);
    }
    .main-nav,
    .main-nav.open {
        display: none;
    }
    .floating-contact {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        width: 100%;
        height: 50px;
        transform: none;
    }
    .floating-contact-item {
        min-width: 0;
    }
    .floating-contact-btn {
        width: 100%;
        height: 50px;
        border-right: 1px solid rgba(0, 0, 0, .28);
        border-radius: 0;
        font-size: 28px;
    }
    .floating-contact-item:last-child .floating-contact-btn {
        border-right: 0;
    }
    .back-top {
        bottom: 64px;
    }
    .about-layout .content,
    .equipment-layout,
    .split-layout,
    .contact-banner-inner {
        grid-template-columns: 1fr;
    }
    .contact-banner-inner,
    .footer-container {
        width: min(100% - 40px, 1220px);
        padding-left: 0;
        padding-right: 0;
    }
    .contact-banner-action {
        text-align: left;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 24px 0;
    }
    .footer-left,
    .footer-links-group {
        display: contents;
    }
    .footer-links-group .footer-nav:first-child,
    .footer-links-group .footer-nav:last-child,
    .footer-contact,
    .footer-form-column,
    .copyright {
        grid-column: 1;
        grid-row: auto;
    }
    .footer-links-group .footer-nav:first-child {
        order: 1;
    }
    .footer-links-group .footer-nav:last-child {
        order: 2;
    }
    .copyright {
        order: 3;
    }
    .footer-contact {
        order: 4;
    }
    .footer-form-column {
        order: 5;
    }
    .footer-nav,
    .footer-contact {
        padding-top: 0;
        padding-bottom: 18px;
    }
    .footer-toggle {
        justify-content: space-between;
        margin-bottom: 0;
        padding: 0 0 14px;
        cursor: pointer;
    }
    .footer-toggle .fa {
        display: inline-block;
        color: var(--yellow);
        font-size: 18px;
        transition: transform .2s ease;
    }
    .footer-nav.is-open .footer-toggle .fa {
        transform: rotate(180deg);
    }
    .footer-toggle-content {
        display: none;
        padding-bottom: 12px;
    }
    .footer-nav.is-open .footer-toggle-content {
        display: block;
    }
    .footer-form-column {
        width: 100%;
        min-height: 0;
        padding: 24px 18px;
        margin: 0 0 18px;
    }
    .footer-form input,
    .footer-form textarea {
        height: 34px;
        line-height: 34px;
    }
    .footer-form textarea {
        min-height: 96px;
        line-height: 1.45;
    }
    .footer-form .fluentform input.ff-el-form-control {
        height: 34px;
        line-height: 34px;
    }
    .footer-form .fluentform textarea.ff-el-form-control {
        min-height: 96px;
        line-height: 1.45;
    }
    .footer-form .fluentform button.ff-btn-submit {
        width: 120px;
    }
    .footer-left .copyright {
        display: none
    }
    .copyright {
        padding-top: 0;
        padding-bottom: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 32px, var(--container));
    }
    .category-intro h2,
    .section-title h2,
    .custom-section h2,
    .about-copy h2,
    .contact-banner h2 {
        font-size: 30px;
    }
    .contact-banner-inner,
    .footer-container {
        width: min(100% - 32px, 1220px);
    }
    .contact-banner h2 {
        font-size: 28px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--container));
    }
    .category-intro h2,
    .section-title h2,
    .custom-section h2,
    .about-copy h2,
    .contact-banner h2 {
        font-size: 28px;
    }
    .contact-banner-inner,
    .footer-container {
        width: min(100% - 24px, 1220px);
    }
    .contact-banner h2 {
        font-size: 28px;
    }
    .contact-banner a {
        padding: 0 32px;
    }
    .footer-main {
        padding: 20px 0;
    }
    .site-footer h3 {
        margin-bottom: 10px;
    }
    .footer-nav,
    .footer-contact {
        padding-bottom: 14px;
    }
    .footer-share {
        padding-left: 0;
        margin-top: 8px;
    }
    .footer-social-round {
        margin-top: 12px;
    }
    .footer-form-column {
        padding: 18px 14px;
    }
    .footer-form button {
        width: 120px;
    }
    .copyright a {
        font-size: 14px;
    }
}

@media (min-width: 1025px) {
    .main-nav>ul>li:hover>a {
        color: var(--yellow);
    }
    .main-nav li:hover>ul,
    .main-nav li:focus-within>ul,
    .main-nav li.open>ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .main-nav li li:hover>a {
        color: var(--yellow);
        background: #333;
    }
    .contact-banner a:hover {
        color: #222;
        background: #fff;
    }
    .site-footer a:hover {
        color: var(--yellow);
    }
    .footer-social-round a:hover {
        border-color: var(--yellow);
    }
    .footer-form button:hover {
        color: #000;
        background: #fff;
    }
    .back-top:hover {
        background-color: #aaa;
    }
    .floating-contact-btn:hover,
    .floating-contact-btn:focus {
        color: #fff;
        background: #e39924;
    }
    .floating-contact-item:hover .floating-popover,
    .floating-contact-item:focus-within .floating-popover {
        display: block;
    }
    @media (max-width: 1024px) {
        .floating-contact-item:hover .floating-popover,
        .floating-contact-item:focus-within .floating-popover {
            display: none;
        }
    }
}
