@media (max-width: 576px) {}

@media (max-width: 767px) {}

@media (max-width: 992px) {}

@media (max-width: 1025px) {}

@media (max-width: 1290px) {}

@media (max-width: 1450px) {}

::-moz-selection {
    background-color: #db261e;
    color: #fff;
}

::selection {
    background-color: #db261e;
    color: #fff;
}

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

body {
    font-family: 'Fira Sans', 'Arial', sans-serif;
    font-weight: 300;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.5;
    color: #252323;
}
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
}

body.no-scroll,
body.open-menu {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

ul,
ol {
    padding-left: 28px;
}

h1 {
    font-family: 'Nunito Sans';
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -2.4px;
}

h2 {
    font-family: 'Nunito Sans';
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -2.4px;
}

h3 {
    font-family: 'Nunito Sans';
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

h4 {
    font-family: 'Nunito Sans';
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

h5 {
    font-family: 'Nunito Sans';
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h6 {
    font-family: 'Nunito Sans';
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 37px;
    }

    h3 {
        font-size: 30px;
    }
}

.btn {
    display: inline-flex;
    background-color: #db261e;
    border: 1px solid #db261e;
    color: #fff;
    text-decoration: none;
    min-height: 36px;
    padding: 4px 24px;
    align-items: center;
    transition: 0.3s ease;
    font-size: 14px;
    text-align: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .btn {
        min-height: 32px;
        padding: 4px 16px;
        font-size: 12px;
    }
}

.btn:hover {
    background-color: #fff;
    color: #db261e;
}

.btn--white {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #1c1d1b;
    font-weight: 600;
}
.btn--white:hover {
    background-color: #1c1d1b;
    border-color: #1c1d1b;
    color: #fff;
}

.btn--large {
    min-height: 52px;
}
@media (max-width: 767px) {
    .btn--large {
        min-height: 32px;
    }
}

.container {
    max-width: 1140px;
    width: calc(100% - 40px);
    margin: 0 auto;
    position: relative;
}
@media (max-width: 1290px) {
    .container {
        max-width: 970px;
    }
}
@media (max-width: 992px) {
    .container {
        max-width: 760px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #202020;
    border-top: 1px solid #fff;
    padding: 12px 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    z-index: 100;
    display: none;
}

.cookie-banner.active {
    display: flex;
}

.cookie-banner__left a {
    text-decoration: underline;
    transition: 0.3s ease;
}
.cookie-banner__left a:hover {
    color: #db261e;
}

.cookie-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
@media (max-width: 767px) {
    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.cookie-banner__right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-banner__close {
    height: 36px;
    width: 36px;
    outline: none;
    border: 1px solid #fff;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
    opacity: .7;
}
@media (max-width: 767px) {
    .cookie-banner__close {
        height: 32px;
        width: 32px;
    }
}
.cookie-banner__close:hover {
    background-color: #fff;
    opacity: 1;
}
.cookie-banner__close:hover:after,
.cookie-banner__close:hover:before {
    background-color: #db261e;
}

.cookie-banner__close:after,
.cookie-banner__close:before {
    content: '';
    height: 18px;
    width: 1px;
    top: 8px;
    left: 17px;
    transform: rotate(45deg);
    position: absolute;
    background-color: #fff;
    transition: 0.3s ease;
}
@media (max-width: 767px) {
    .cookie-banner__close:after,
    .cookie-banner__close:before {
        height: 14px;
        top: 8px;
        left: 15px;
    }
}
.cookie-banner__close:before {
    transform: rotate(-45deg);
}

.cookie-banner__open-settings {
    height: 36px;
    outline: none;
    border: 1px solid #fff;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
    color: #fff;
    opacity: .7;
    padding: 0 28px;
}
@media (max-width: 767px) {
    .cookie-banner__open-settings {
        height: 32px;
        padding: 0 16px;
    }
}
.cookie-banner__open-settings:hover {
    background-color: #fff;
    opacity: 1;
    color: #252323;
}

.cookie-banner__popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 102;
    transition: 0.3s ease;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 40px;
}
@media (max-width: 767px) {
    .cookie-banner__popup {
        padding: 20px;
    }
}

.cookie-banner__popup.active {
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner__popup.active .cookie-banner__popup-inner {
    transform: scale(1);
}

.cookie-banner__popup-overlay {
    position: fixed;
    top: 0;
    background: rgba(0,0,0,.9);
    left: 0;
    height: 100%;
    width: 100%;
}

.cookie-banner__popup-inner {
    background-color: #fff;
    max-width: 1170px;
    width: 100%;
    position: relative;
    margin: auto;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 0;
    min-height: 600px;
    transition: 0.3s ease;
    transform: scale(0.7);
}
@media (max-width: 1290px) {
    .cookie-banner__popup-inner {
        max-width: 970px;
        grid-template-columns: 1fr 2fr;
        min-height: 520px;
    }
}
@media (max-width: 1025px) {
    .cookie-banner__popup-inner {
        max-width: 800px;
        grid-template-columns: 2fr 3fr;
    }
}
@media (max-width: 767px) {
    .cookie-banner__popup-inner {
        border-radius: 4px;
        min-height: 0;
        grid-template-columns: 1fr;
    }
}

.cookie-banner__popup-close {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #db261e;
    border: 1px solid #db261e;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
}
@media (max-width: 767px) {
    .cookie-banner__popup-close {
        top: -14px;
        right: -14px;
        width: 28px;
        height: 28px;
    }
}

.cookie-banner__popup-close:hover {
    background-color: #fff;
}

.cookie-banner__popup-close:hover:after,
.cookie-banner__popup-close:hover:before {
    background-color: #db261e;
}

.cookie-banner__popup-close:after,
.cookie-banner__popup-close:before {
    content: '';
    height: 28px;
    width: 1px;
    top: 15px;
    left: 29px;
    transform: rotate(45deg);
    position: absolute;
    background-color: #fff;
    transition: 0.3s ease;
}
@media (max-width: 767px) {
    .cookie-banner__popup-close:after,
    .cookie-banner__popup-close:before {
        height: 14px;
        width: 1px;
        top: 7px;
        left: 13px;
    }
}
.cookie-banner__popup-close:before {
    transform: rotate(-45deg);
}

.cookie-banner__popup-inner__right {
    background-color: #f1f1f1;
    border-radius: 0 8px 8px 0;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1290px) {
    .cookie-banner__popup-inner__right {
        padding: 30px 20px;
    }
}
@media (max-width: 767px) {
    .cookie-banner__popup-inner__right {
        border-radius: 0 4px 4px 0;
        padding: 20px 16px;
    }
}

.cookie-banner__popup-btns {
    padding-top: 40px;
    border-top: 1px solid #c9c8c8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}
@media (max-width: 1290px) {
    .cookie-banner__popup-btns {
        padding-top: 30px;
    }
}
@media (max-width: 767px) {
    .cookie-banner__popup-btns {
        padding-top: 20px;
    }
}

.cookie-banner__popup-title {
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}
@media (max-width: 767px) {
    .cookie-banner__popup-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.cookie-banner__popup-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}
@media (max-width: 767px) {
    .cookie-banner__popup-text {
        font-size: 14px;
    }
}

.cookie-banner__popup-text a {
    text-decoration: underline;
    transition: 0.3s ease;
}
.cookie-banner__popup-text a:hover {
    color: #db261e;
}

.cookie-banner__popup-content {
    display: none;
    padding-bottom: 40px;
}
.cookie-banner__popup-content.active {
    display: block;
}

.cookie-banner__popup-inner__left {
    padding: 40px 60px;
}
@media (max-width: 1290px) {
    .cookie-banner__popup-inner__left {
        padding: 30px 20px;
    }
}
@media (max-width: 767px) {
    .cookie-banner__popup-inner__left {
        padding: 12px 16px 8px;
    }
}

.cookie-banner__popup-logo {
    max-width: 220px;
    margin-bottom: 30px;
}
@media (max-width: 1025px) {
    .cookie-banner__popup-logo {
        max-width: 160px;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .cookie-banner__popup-logo {
        max-width: 120px;
        margin-bottom: 8px;
    }
}

.cookie-banner__popup-tab {
    color: #da2926;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #f1f1f1;
    border: 1px solid #f1f1f1;
    line-height: 1.1;
    padding: 13px 20px;
    transition: 0.3s ease;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 16px;
}
@media (max-width: 767px) {
    .cookie-banner__popup-tab {
        font-size: 12px;
        padding: 8px 12px;
        border-radius: 4px;
        margin-bottom: 8px;
        display: inline-flex;
    }
}

.cookie-banner__popup-tab:hover,
.cookie-banner__popup-tab.active {
    color: #000;
    background-color: #fff;
}

.cookie-banner__popup-checkbox {
    margin-top: 28px;
    position: relative;
    display: inline-flex;
    cursor: pointer;
    padding-left: 60px;
}

.cookie-banner__popup-checkbox.disabled {
    pointer-events: none;
    filter: grayscale(1);
}

.cookie-banner__popup-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.cookie-banner__popup-checkbox input:checked ~ .cookie-banner__popup-checkbox__checkmark {
    background-color: #2e9935;
}
.cookie-banner__popup-checkbox input:checked ~ .cookie-banner__popup-checkbox__checkmark:before {
    left: 22px;
}
.cookie-banner__popup-checkbox input:checked ~ .cookie-banner__popup-checkbox__active {
    display: block;
}
.cookie-banner__popup-checkbox input:checked ~ .cookie-banner__popup-checkbox__disabled {
    display: none;
}

.cookie-banner__popup-checkbox__checkmark {
    height: 30px;
    width: 50px;
    border-radius: 30px;
    background-color: #db261e;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s ease;
}

.cookie-banner__popup-checkbox__checkmark:before {
    position: absolute;
    content: '';
    height: 26px;
    width: 26px;
    background-color: #fff;
    border-radius: 100%;
    top: 2px;
    left: 2px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,.25);
}

.cookie-banner__popup-checkbox__disabled {
    color: #db261e;
}
.cookie-banner__popup-checkbox__active {
    color: #2e9935;
    display: none;
}

.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #373737;
    color: #fff;
    z-index: 100;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    cursor: pointer;
    display: none;
}
.cookie-settings-btn.active {
    display: flex;
}

.cookie-settings-btn:hover .cookie-settings-btn__text {
    width: auto;
    padding: 0 16px 0 28px;
}

.cookie-settings-btn__icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cookie-settings-btn svg {
    height: 30px;
    width: auto;
}

.cookie-settings-btn__text {
    height: 40px;
    width: auto;
    position: absolute;
    left: 20px;
    top: 0;
    background-color: #373737;
    border-radius: 0 40px 40px 0;
    white-space: nowrap;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 0;
    padding: 0;
    overflow: hidden;
}

.to-top {
    z-index: 101;
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.3s ease
}
@media (max-width: 767px) {
    .to-top {
        bottom: 20px;
        right: 20px;
    }
}

.to-top:hover {
    bottom: 44px;
}
@media (max-width: 767px) {
    .to-top:hover {
        bottom: 20px;
    }
}

.top-bar {
    background-color: #db261e;
    height: 24px;
    width: 100%;
    color: #fff;
    font-size: 16px;
}
@media (max-width: 1025px) {
    .top-bar {
        display: none;
    }
}

.top-bar a {
    color: #fff;
    transition: 0.3s ease;
}

.top-bar a:hover {
    color: #000;
}

.top-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.top-bar__left,
.top-bar__right {
    display: flex;
    gap: 30px;
}

.top-bar__right {
    font-family: 'Nunito Sans';
    font-weight: 500;
    font-size: 15px;
}

.header {
    background-color: #fff;
    height: 118px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.header__content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-gap: 20px;
}
@media (max-width: 1025px) {
    .header__content {
        position: fixed;
        top: 0;
        left: 0;
        background-color: #fff;
        height: 100%;
        width: 280px;
        z-index: 103;
        overflow: auto;
        max-height: 100vh;
        padding: 20px;
        display: grid;
        grid-template-columns: 1fr;
        transition: 0.3s ease;
        transform: translateX(-100%);
    }

    body.open-menu .header__content {
        transform: translateX(0);
    }
}

.header-hamburger {
    display: none;
}
@media (max-width: 1025px) {
    .header-hamburger {
        display: block;
        height: 40px;
        width: 40px;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .header-hamburger span {
        display: block;
        width: 28px;
        height: 4px;
        background: #db261e;
        transition: 0.3s ease;
    }

    body.open-menu .header-hamburger span:nth-of-type(1) {
        transform: rotate(45deg) translateY(7px) translateX(7px);
    }

    body.open-menu .header-hamburger span:nth-of-type(3) {
        transform: rotate(-45deg) translateY(-7px) translateX(7px);
    }

    body.open-menu .header-hamburger span:nth-of-type(2) {
        transform: translateX(-8px);
        opacity: 0;
    }
}

.header__content-overlay {
    display: none;
}
@media (max-width: 1025px) {
    .header__content-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 102;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
    }

    body.open-menu .header__content-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}

.logo {
    width: 100%;
    max-width: 160px;
    display: block;
}
.logo--mobile {
    display: none;
}
@media (max-width: 1025px) {
    .logo {
        display: none;
    }
    .logo--mobile {
        display: block;
    }
}

.menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 24px;
    justify-content: flex-end;
}
@media (max-width: 1025px) {
    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }
}

.menu__link {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.menu__link:after {
    content: '';
    position: absolute;
    background-color: #db261e;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 3px;
    opacity: 0;
    transition: 0.3s ease;
}
@media (max-width: 1025px) {
    .menu__link:after {
        display: none;
    }
}

.menu__link.active:after,
.menu__link:hover:after {
    bottom: -4px;
    opacity: 1;
}

@media (max-width: 1025px) {
    .menu__link.active {
        color: #db261e;
    }
}

.header__right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.header__icons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__icon {
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__icon i {
    color: #131313;
    transition: 0.3s ease;
    font-size: 16px;
}

.header__icon:hover i {
    color: #db261e;
}

.header__search {
    height: 36px;
    width: 200px;
    display: flex;
    border: 1px solid #c5c5c5;
    position: relative;
}
@media (max-width: 1025px) {
    .header__search,
    .header__right {
        width: 100%;
        align-items: center;
        margin-top: auto;
    }
}

.header__search-input {
    height: 100%;
    width: calc(100% - 36px);
    outline: none;
    border: none;
    padding: 0 12px;
}

.header__search-submit {
    height: 100%;
    width: 36px;
    outline: none;
    border: none;
    background-color: #eaeaea;
    border-left: 1px solid #c5c5c5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.header__search-submit:hover {
    background-color: #dcdcdc;
}

.header__search-submit svg {
    width: 22px;
}

.footer {
    padding: 60px 0 0;
    position: relative;
    background-color: #030305;
    color: #fff;
}

.footer a {
    color: rgba(255,255,255,0.5);
    transition: 0.3s ease;
}
.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__bottom {
    position: relative;
    padding: 14px 0 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 576px) {
    .footer__bottom {
        font-size: 14px;
    }
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
    padding-bottom: 60px;
}
@media (max-width: 1025px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 28px;
    }
}
@media (max-width: 576px) {
    .footer__content {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

.footer__logo {
    max-width: 180px;
    width: 100%;
    display: block;
    margin-bottom: 16px;
}
@media (max-width: 1025px) {
    .footer__logo {
        margin: 0 auto;
        margin-bottom: 16px;
    }
}

.footer__soc-med {
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}
@media (max-width: 1025px) {
    .footer__soc-med {
        margin: 0 auto;
    }
}

.footer__soc-med__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.footer__soc-med__icon:hover,
.footer__link:hover {
    text-decoration: none !important;
}

.footer__column-title {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 18px;
}
@media (max-width: 576px) {
    .footer__column-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

.footer__column-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
@media (max-width: 576px) {
    .footer__column-list {
        gap: 4px;
    }
}

.footer__form {
    max-width: 255px;
}
@media (max-width: 1025px) {
    .footer__form {
        max-width: 100%;
    }
}

.footer__form-input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    text-align: center;
    outline: none;
    border: none;
    font-size: 16px;
}
.footer__form-submit {
    width: 100%;
    height: 44px;
    padding: 10px 22px 10px;
    text-align: center;
    outline: none;
    border: none;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #db261e;
    font-family: 'Fira Sans';
    cursor: pointer;
}

.main {
    flex: 1 0 auto;
}

.about-banner,
.red-banner {
    width: 100%;
    padding: 60px 0;
    background-color: #da2926;
    color: #fff;
}
@media (max-width: 767px) {
    .red-banner {
        padding: 40px 0;
    }
}

.red-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
@media (max-width: 767px) {
    .red-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.red-banner__title {
    font-family: 'Nunito Sans';
    font-size: 32px;
    letter-spacing: -0.4px;
    color: #ffffff;
    font-weight: 600;
}
@media (max-width: 576px) {
    .red-banner__title {
        font-size: 24px;
    }
}

.red-banner__title {
    font-family: 'Nunito Sans';
    font-size: 32px;
    letter-spacing: -0.4px;
    color: #ffffff;
    font-weight: 600;
}
@media (max-width: 576px) {
    .red-banner__title {
        font-size: 24px;
    }
}

.red-banner__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    opacity: 0.8;
    margin-top: 24px;
}
@media (max-width: 576px) {
    .red-banner__text {
        font-size: 14px;
        margin-top: 16px;
    }
}

.red-banner__btn {
    flex-shrink: 0;
}

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

.about-banner .container {
    max-width: 900px;
}

.big-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
    background-color: #da2926;
    color: #fff;
    text-align: center;
}
@media (max-width: 1025px) {
    .big-banner {
        padding: 80px 0;
    }
}
@media (max-width: 576px) {
    .big-banner {
        padding: 60px 0;
    }
}

.big-banner__subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    font-family: 'Nunito Sans';
}
@media (max-width: 576px) {
    .big-banner__subtitle {
        font-size: 12px;
        margin-bottom: 24px;
    }
}

.big-banner__title {
    font-size: 60px;
    color: #ffffff;
    line-height: 1;
    text-align: center;
    font-weight: 600;
    font-family: 'Nunito Sans';
}
@media (max-width: 576px) {
    .big-banner__title {
        font-size: 36px;
    }
}

.big-banner__content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1290px) {
    .big-banner__content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .big-banner__content {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}
@media (max-width: 576px) {
    .big-banner__content {
        margin-top: 20px;
    }
}

.big-banner__item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transition: 0.3s ease;
    padding: 28px;
    text-align: center;
    font-size: 24px;
    line-height: 1.1;
    font-family: 'Nunito Sans';
    font-weight: 600;
}
@media (max-width: 576px) {
    .big-banner__item {
        padding: 16px;
        font-size: 20px;
    }
}
.big-banner__item:hover {
    background-color: #da2926;
}

.big-banner__item-icon img {
    width: 60px;
}
@media (max-width: 576px) {
    .big-banner__item-icon img {
        width: 40px;
    }
}

.portfolio, .contact {
    padding: 60px 0;
    text-align: center;
}
@media (max-width: 767px) {
    .portfolio {
        padding: 40px 0;
        text-align: center;
    }
}

.portfolio__subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(219, 38, 30, 0.7);
    margin-bottom: 32px;
    font-family: 'Nunito Sans';
}
@media (max-width: 576px) {
    .portfolio__subtitle {
        font-size: 12px;
        margin-bottom: 24px;
    }
}

.portfolio__title {
    font-size: 60px;
    line-height: 1;
    text-align: center;
    font-weight: 600;
    font-family: 'Nunito Sans';
}
@media (max-width: 576px) {
    .portfolio__title {
        font-size: 36px;
    }
}

.portfolio__slider {
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
}
@media (max-width: 767px) {
    .portfolio__slider {
        margin-top: 40px;
    }
}

.portfolio__slider .swiper {
    overflow: visible;
}

.portfolio__item {
    width: 100%;
    height: 300px;
    display: block;
    background-color: #da2926;
    color: #fff;
    position: relative;
    transition: 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 767px) {
    .portfolio__item {
        height: 0;
        padding-bottom: 45%;
    }
}

.portfolio__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s ease;
    background-color: rgba(28, 29, 27, 0.75);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    padding: 12px;
}
@media (max-width: 992px) {
    .portfolio__item-overlay {
        gap: 4px;
    }
}

.portfolio__item-subtitle {
    color: #db261e;
}

.portfolio__item-title {
    font-weight: 400;
    font-size: 24px;
    font-family: 'Nunito Sans';
}
@media (max-width: 992px) {
    .portfolio__item-title {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .portfolio__item-title {
        font-size: 18px;
    }
}

.portfolio__item-text {
    font-size: 14px;
}
@media (max-width: 767px) {
    .portfolio__item-text {
        font-size: 12px;
    }
}

.swiper-slide:hover .portfolio__item {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.11);
    transform: translateY(-12px);
}
.swiper-slide:hover .portfolio__item-overlay {
    opacity: 1;
}

.swiper-pagination {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none;
}

.portfolio__pagination {
    margin-top: 40px;
}

.portfolio__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    opacity: 0.1;
    background-color: #db261e;
}
@media (max-width: 767px) {
    .portfolio__pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px !important;
    }
}

.portfolio__pagination .swiper-pagination-bullet:hover,
.portfolio__pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.product-showcase {
    padding: 40px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-showcase__content {
    display: flex;
    gap: 40px;
}
@media (max-width: 767px) {
    .product-showcase__content {
        flex-direction: column;
        gap: 0;
    }
}

.product-showcase__left {
    width: calc(100% - 380px);
}
@media (max-width: 992px) {
    .product-showcase__left {
        width: calc(100% - 220px);
    }
}
@media (max-width: 767px) {
    .product-showcase__left {
        width: 100%;
    }
}

.product-showcase__main-img {
    width: 100%;
    display: block;
    margin-top: 60px;
}
@media (max-width: 992px) {
    .product-showcase__main-img {
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .product-showcase__main-img {
        width: 75%;
    }
}
@media (max-width: 576px) {
    .product-showcase__main-img {
        width: 100%;
    }
}

.product-showcase__main-img img {
    width: 100%;
    transition: 0.5s ease;
}

.product-showcase__main-img:hover img {
    transform: scale(1.1);
}

.company-showcase__subtitle,
.product-showcase__subtitle,
.product-category__slider-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(219, 38, 30, 0.7);
    margin-bottom: 12px;
    font-family: 'Nunito Sans';
}
@media (max-width: 576px) {
    .company-showcase__subtitle,
    .product-showcase__subtitle,
    .product-category__slider-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }
}

.company-showcase__title,
.product-showcase__title,
.product-category__slider-title {
    font-size: 35px;
    font-weight: 700;
    color: #1c1d1b;
    margin-bottom: 12px;
    font-family: 'Nunito Sans';
    letter-spacing: -2.4px;
    line-height: 1.1;
}
@media (max-width: 576px) {
    .company-showcase__title,
    .product-showcase__title,
    .product-category__slider-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
}

.product-showcase__text {
    font-weight: 400;
}

.product-showcase__slider {
    margin-top: 68px;
    width: 100%;
}
@media (max-width: 992px) {
    .product-showcase__slider {
        margin-top: 40px;
    }
}

.product-showcase__slider .swiper {
    padding: 0 28px;
}

.product-list__item,
.product-showcase__slide {
    position: relative;
}

.product-list__item-img,
.product-showcase__slide-img {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 992px) {
    .product-list__item-img,
    .product-showcase__slide-img {
        height: 120px;
    }
}

.product-list__item-text,
.product-showcase__slide-text {
    text-transform: uppercase;
    font-family: 'Nunito Sans';
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    transition: 0.3s ease;
    border-top: 1px solid #db261e;
    padding-top: 4px;
    margin-top: 20px;
}
@media (max-width: 992px) {
    .product-list__item-text,
    .product-showcase__slide-text {
        font-size: 11px;
    }
}

.product-list__item:hover .product-list__item-text,
.product-showcase__slide:hover .product-showcase__slide-text {
    color: #db261e;
}

.swiper-button-prev,
.swiper-button-next {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none;
}

.hero-slider-arrows .swiper-button-prev,
.hero-slider-arrows .swiper-button-next,
.product-category__slider-arrows .swiper-button-prev,
.product-category__slider-arrows .swiper-button-next,
.product-showcase__slider-arrows .swiper-button-prev,
.product-showcase__slider-arrows .swiper-button-next {
    color: #000;
}

.hero-slider-arrows .swiper-button-prev:after,
.hero-slider-arrows .swiper-button-next:after,
.product-category__slider-arrows .swiper-button-prev:after,
.product-category__slider-arrows .swiper-button-next:after,
.product-showcase__slider-arrows .swiper-button-prev:after,
.product-showcase__slider-arrows .swiper-button-next:after {
    display: none;
}

.hero-slider-arrows .swiper-button-prev,
.product-category__slider-arrows .swiper-button-prev,
.product-showcase__slider-arrows .swiper-button-prev {
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto !important;
    transform: rotate(180deg) !important;
}
.hero-slider-arrows .swiper-button-next,
.product-category__slider-arrows .swiper-button-next,
.product-showcase__slider-arrows .swiper-button-next {
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto !important;
}

.product-list__item-tag,
.product-showcase__tag {
    color: #fff;
    position: absolute;
    background: #db261e;
    padding: 2px 10px;
    font-size: 13px;
    z-index: 10;
}

.product-showcase--secondary {
    padding: 80px 0 60px;
}
@media (max-width: 992px) {
    .product-showcase--secondary {
        padding: 60px 0 40px;
    }
}
@media (max-width: 767px) {
    .product-showcase--secondary {
        padding: 40px 0;
    }
}

.product-showcase--secondary .product-showcase__content {
    justify-content: flex-end;
}

.product-showcase--secondary .product-showcase__title {
    color: #db261e;
}

.product-showcase--secondary .product-showcase__subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.product-showcase--secondary .product-showcase__text,
.product-showcase--secondary .product-showcase__slider-arrows .swiper-button-prev,
.product-showcase--secondary .product-showcase__slider-arrows .swiper-button-next {
    color: #fff;
}

.company-showcase {
    padding: 60px 0;
}

.company-showcase__content {
    display: flex;
    gap: 60px;
}
@media (max-width: 992px) {
    .company-showcase__content {
        display: block;
        gap: 0;
    }
}

.company-showcase__left {
    width: 45%;
}
@media (max-width: 992px) {
    .company-showcase__left {
        width: 75%;
    }
}
@media (max-width: 767px) {
    .company-showcase__left {
        width: 100%;
    }
}

.company-showcase__right {
    width: 55%;
}
@media (max-width: 992px) {
    .company-showcase__right {
        width: 100%;
    }
}

.company-showcase__text-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-gap: 20px;
    margin-bottom: 28px;
    color: rgba(27,27,27,0.8);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}
@media (max-width: 767px) {
    .company-showcase__text-item {
        grid-gap: 12px;
        margin-bottom: 16px;
        font-size: 14px;
    }
}

.company-showcase__slider-arrows .swiper-button-prev:after,
.company-showcase__slider-arrows .swiper-button-next:after {
    display: none;
}

.company-showcase__slider-title {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(219, 38, 30, 0.7);
    font-family: 'Nunito Sans';
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 32px;
}

.company-showcase__slider-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.company-showcase__slider-arrows .swiper-button-prev,
.company-showcase__slider-arrows .swiper-button-next {
    position: relative !important;
    color: rgba(219, 38, 30, 0.7);
    height: 30px !important;
    transition: 0.3s ease;
    width: 30px !important;
    margin: 0 !important;
}

.company-showcase__slider-arrows .swiper-button-prev {
    transform: rotate(180deg);
}

.company-showcase__slider-arrows .swiper-button-prev:hover,
.company-showcase__slider-arrows .swiper-button-next:hover {
    background-color: #000;
}

.company-showcase__slider {
    margin-top: 40px;
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 20px;
}

.company-showcase__slide {
    display: block;
}

.company-showcase__slide:hover .company-showcase__slide-text {
    color: #db261e;
}

.company-showcase__slide-img {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.company-showcase__slide-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
}

.company-showcase__slide-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    font-family: 'Nunito Sans';
    margin-top: 12px;
    transition: 0.3s ease
}

.company-showcase__img {
    margin-top: 60px;
}
.company-showcase__img img {
    width: 100%;
}
@media (max-width: 992px) {
    .company-showcase__img {
        margin-top: 0;
    }
}

.company-showcase__quote {
    margin: 0 auto;
    width: calc(100% - 100px);
    background-color: #db261e;
    color: #fff;
    padding: 40px;
    transform: translateY(-75%);
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Nunito Sans';
    letter-spacing: 0;
    position: relative;
}


.company-showcase__quote-icon svg {
    position: absolute;
    top: 14px;
    left: -30px;
}

.portfolio-module,
.text-module,
.pdf-list,
.case-study,
.product-list {
    padding: 40px 0 60px;
}

.article ul,
.text-module ul {
    list-style: none;
}

.article ul li,
.article ol li,
.text-module ul li,
.text-module ol li {
    position: relative;
}

.article ul li:before,
.text-module ul li:before {
    content: '';
    position: absolute;
    display: block;
    border-radius: 100%;
    width: 6px;
    height: 6px;
    background-color: #000;
    color: inherit;
    top: 8px;
    left: -16px;
}

.article * + *,
.text-module * + * {
    margin-top: 20px;
}

.article li + li,
.text-module li + li {
    margin-top: 2px;
}

.article a,
.text-module a {
    text-decoration: underline;
    transition: 0.3s ease;
}

.article a:hover,
.text-module a:hover {
    color: #db261e;
}


.product-category__title {
    max-width: 760px;
    margin: 0 auto;
}

.product-category__title,
.portfolio-module__title,
.pdf-list__title,
.case-study__title,
.contact__title {
    text-align: center;
    margin-bottom: 40px;
}

.pdf-list__content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 30px;
}
@media (max-width: 992px) {
    .pdf-list__content {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 767px) {
    .pdf-list__content {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }
}
@media (max-width: 576px) {
    .pdf-list__content {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
    }
}

.pdf-link {
    display: block;
}

.pdf-link img {
    transition: 0.3s ease;
}

.pdf-link:hover img {
    transform: translateY(-5%);
}

.article-module__content {
    display: grid;
    grid-template-columns: 1fr 275px;
    grid-gap: 40px;
    align-items: start;
}
@media (max-width: 992px) {
    .article-module__content {
        grid-template-columns: 1fr 240px;
        grid-gap: 20px;
    }
}
@media (max-width: 767px) {
    .article-module__content {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

.article img {
    width: 100%;
}

.article-module {
    padding: 0 0 60px;
}

.article__soc-med {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 40px;
    flex-wrap: wrap;
}

.article__soc-med__icon {
    width: 36px;
    height: 36px;
    background: #ededed;
    color: #778084;
    line-height: 36px;
    font-size: 18px;
    text-align: center;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}
.article__soc-med__icon.facebook:hover {
    background-color: #627aad;
    color: #fff;
}
.article__soc-med__icon.twitter:hover {
    background-color: #4D9ED8;
    color: #fff;
}
.article__soc-med__icon.gplus:hover {
    background-color: #DB4437;
    color: #fff;
}
.article__soc-med__icon.linkedin:hover {
    background-color: #2F75AE;
    color: #fff;
}
.article__soc-med__icon.pinterest:hover {
    background-color: #BE1626;
    color: #fff;
}

.portfolios-item,
.other-article {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e6e6e6;
    font-weight: 700;
    line-height: 1.3;
    transition: 0.3s ease;
}
.portfolios-item:last-of-type,
.other-article:last-of-type {
    border-bottom: none;
}


.portfolios-item:hover,
.other-article:hover {
    color: #db261e;
}

.other-article__img {
    height: 76px;
    width: 76px;
    position: relative;
    flex-shrink: 0;
}

.portfolios-item__img {
    height: 68px;
    width: 68px;
    position: relative;
    flex-shrink: 0;
}

.portfolios-item__img img,
.other-article__img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
}

.other-articles__title {
    font-family: 'Nunito Sans';
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px;
}

.article-module__right {
    position: sticky;
    top: 20px;
}

.portfolios {
    padding-top: 32px;
    margin-top: 44px;
    border-top: 3px solid #1c1d1b;
}

.portfolios-item__title {
    font-size: 12px;
    font-family: 'Nunito Sans';
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
}

.portfolios-item__text {
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 300;
}

.portfolio-module__tabs {
    margin-bottom: 40px;
    border-bottom: 1px solid #e4e4e4;
    display: flex;
}
@media (max-width: 992px) {
    .portfolio-module__tabs {
        border-bottom: none;
    }
}
@media (max-width: 576px) {
    .portfolio-module__tabs {
        flex-direction: column;
        text-align: center;
    }
}

.portfolio-module__tab {
    position: relative;
    padding: 15px 30px 11px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
}
@media (max-width: 992px) {
    .portfolio-module__tab {
        padding: 12px 8px 8px;
        font-size: 14px;
    }
}

.portfolio-module__tab.active {
    border-bottom: 4px solid #000;
}
@media (max-width: 992px) {
    .portfolio-module__tab.active {
        border-bottom: 3px solid #000;
    }
}

.portfolio-module__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 28px;
}
@media (max-width: 992px) {
    .portfolio-module__items {
        grid-gap: 16px;
    }
}
@media (max-width: 767px) {
    .portfolio-module__items {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .portfolio-module__items {
        grid-template-columns: 1fr;
    }
}

.portfolio-module__item {
    width: 100%;
    padding-top: 77.14%;
    height: 0;
    display: flex;
    position: relative;
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.portfolio-module__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s ease;
    background-color: rgba(28, 29, 27, 0.75);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 16px;
    transition: 0.3s ease;
    padding: 16px;
    opacity: 0;
}

.portfolio-module__item-title {
    font-family: 'Nunito Sans';
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.4px;
    transition: 0.5s ease;
    transform: translateY(-20%);
}

.portfolio-module__item-btn {
    transition: 0.5s ease;
    transform: translateY(20%);
}

.portfolio-module__item:hover .portfolio-module__item-overlay {
    opacity: 1;
}

.portfolio-module__item:hover .portfolio-module__item-title,
.portfolio-module__item:hover .portfolio-module__item-btn {
    transform: translateY(0);
}

.breadcrumbs__content {
    padding-bottom: 12px;
    margin-bottom: 68px;
    border-bottom: 1px solid #e5e8ec;
    color: #888;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 767px) {
    .breadcrumbs__content {
        margin-bottom: 40px;
    }
}

.breadcrumbs__item {
    display: block;
    position: relative;
}
.breadcrumbs__item:hover {
    text-decoration: underline;
}

.breadcrumbs__item:before {
    content: '>';
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.breadcrumbs__item:first-of-type:before {
    display: none;
}
.breadcrumbs__item:last-of-type {
    pointer-events: none;
}

.main-article-link {
    display: block;
    margin-bottom: 40px;
}

.main-article-link__img {
    width: 100%;
    position: relative;
    padding-top: 66.59%;
    margin-bottom: 20px;
}

.main-article-link__img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
}

.main-article-link__title {
    opacity: 0.7;
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 12px;
    transition: 0.3s ease;
}
@media (max-width: 767px) {
    .main-article-link__title {
        opacity: 1;
        font-size: 28px;
    }
}

.main-article-link:hover .main-article-link__title {
    opacity: 1;
    color: #db261e;
}

.case-study__intro {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    align-items: center;
    margin-top: 40px;
}
@media (max-width: 767px) {
    .case-study__intro {
        grid-template-columns: 1fr;
    }
}

.case-study__gallery {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 16px;
}
@media (max-width: 1025px) {
    .case-study__gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .case-study__gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 8px;
    }
}

.case-study__image {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}
.case-study__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
}

.case-study__extra {
    background-color: #db261e;
    padding: 40px 0;
}

.case-study__extra-title {
    color: #fff;
    text-align: center;
}

.case-study__extra-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 28px;
    margin-top: 40px;
}
@media (max-width: 767px) {
    .case-study__extra-content {
        grid-template-columns: 1fr;
    }
}

.case-study__extra-item {
    background-color: #fff;
    border-left: 4px solid #000;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
}

.case-study__map {
    padding: 40px 0;
    text-align: center;
}

.case-study__map-iframe {
    margin-top: 40px;
    padding-top: 40.54%;
    width: 100%;
    position: relative;
}
@media (max-width: 767px) {
    .case-study__map-iframe {
        padding-top: 60%;
    }
}

.case-study__map-iframe iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.product-list__content {
    display: grid;
    grid-template-columns: 255px 1fr;
    grid-gap: 40px;
    align-items: start;
}
@media (max-width: 992px) {
    .product-list__content {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.product-list__title {
    font-weight: 600;
    font-family: 'Nunito Sans';
    font-size: 28px;
    border-bottom: 2px solid #eeeeee;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .product-list__title {
        display: none;
    }
}

.product-list__filter-title {
    font-size: 18px;
    font-family: 'Nunito Sans';
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -1px;
    margin-bottom: 8px;
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
}
@media (max-width: 992px) {
    .product-list__filter-title {
        color: #ccc;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0;
        padding: 12px;
        cursor: pointer;
    }
}
@media (max-width: 767px) {
    .product-list__filter-title {
        font-size: 15px;
        padding: 2px 4px;
    }
}

.product-list__filter-checkbox {
    display: flex;
    padding-left: 20px;
}
.product-list__filter-checkbox label {
    cursor: pointer;
    padding-left: 8px;
}

.product-list__filter {
    margin-bottom: 24px;
    transition: 0.3s ease;
    position: relative;
}
@media (max-width: 992px) {
    .product-list__filter {
        border: 2px solid #333;
        background-color: #333;
        padding: 2px;
        border-radius: 5px;
        width: 100%;
    }
    .product-list__filter.active {
        border-color: #ccc;
        background-color: #ccc;
    }
    .product-list__filter.active .product-list__filter-title {
        color: #000;
    }
}
@media (max-width: 576px) {
    .product-list__filter {
        margin-bottom: 12px;
    }
}

.product-list__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 60px 28px;
}
@media (max-width: 992px) {
    .product-list__items {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 60px 28px;
    }
}
@media (max-width: 767px) {
    .product-list__items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px 16px;
    }
}

.product-list__item-img {
    padding: 0 20px;
}

.product-list__pagination {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #cccccc;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-list__left {
    position: sticky;
    top: 20px;
}
@media (max-width: 992px) {
    .product-list__left {
        position: relative;
        top: 0;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        display: none;
    }
    .product-list__left.active {
        display: grid;
    }
}
@media (max-width: 576px) {
    .product-list__left {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.product-list__pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    font-family: "Nunito Sans";
    font-size: 16px;
    font-weight: 600;
    color: #222;
    background-color: #f0f0f1;
    transition: 0.3s ease;
}

.product-list__pagination-item:hover,
.product-list__pagination-item.active {
    color: #fff;
    background-color: #000;
}

.product-list__pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    margin-left: -4px;
}

.product-list__select {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}
@media (max-width: 992px) {
    .product-list__select {
        display: none;
    }
}

.product-list__select select {
    background-color: #fff;
    border: 1px solid #e5e7e8;
    font-size: 16px;
    color: #192227;
    box-shadow: none ;
    outline: none ;
    padding: 12px 13px;
    height: 44px;
    transition: none;
    border-radius: 0;
    width: 365px;
}

@media (max-width: 992px) {
    .product-list__filter-checkboxes {
        background-color: #fff;
        display: none;
        padding: 8px 0;
        position: absolute;
        top: 100%;
        left: -2px;
        width: calc(100% + 4px);
        z-index: 1;
        border: 2px solid #ccc;
        border-radius: 0 0 4px 4px;
    }
}

.product-list__filter-title svg {
    transform: rotate(270deg);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
@media (max-width: 992px) {
    .product-list__filter-title svg {
        transform: rotate(90deg);
    }
}

.product-list__filter.active .product-list__filter-title svg {
    transform: rotate(90deg);
}
@media (max-width: 992px) {
    .product-list__filter.active .product-list__filter-title svg {
        transform: rotate(270deg);
    }
}

.product-list__open-filters {
    display: none;
}
@media (max-width: 992px) {
    .product-list__open-filters {
        display: flex;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
}

.product-list__open-filters__icon span {
    color: #2a2a2a;
    width: 26px;
    height: 26px;
    position: relative;
    display: inline-block;
}

.product-list__open-filters__icon span i,
.product-list__open-filters__icon span i:before,
.product-list__open-filters__icon span i:after {
    box-sizing: border-box!important;
    top: 18px;
    width: 17px;
    height: 2px;
    background: #ababab;
    display: block;
    transition: all .2s;
    content: '';
    position: absolute;
    left: 0;
}
.product-list__open-filters__icon span i {
    width: 100%;
    left: 0;
}
.product-list__open-filters__icon span i:before {
    width: 100%;
    left: 0;
    top: -9px;
}
.product-list__open-filters__icon span i:after {
    width: 100%;
    left: 0;
    top: 9px;
}

.product-list__open-filters__icon span b,
.product-list__open-filters__icon span s {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
}

.product-list__open-filters__icon span b {
    top: 14px;
    left: 2px;
}

.product-list__open-filters__icon span b,
.product-list__open-filters__icon span b:after,
.product-list__open-filters__icon span b:before {
    height: 10px;
    width: 10px;
    border: 2px solid #ababab;
    border-radius: 50%;
    background-color: #fff;
}

.product-list__open-filters__icon span b:before {
    height: 6px;
    width: 6px;
    border: 2px solid #ababab;
    border-radius: 50%;
    background-color: #fff;
    left: 10px;
    position: absolute;
    content: '';
    top: 7px;
    display: block;
    z-index: 100;
}

.product-list__open-filters__icon span b:after {
    height: 6px;
    width: 6px;
    border: 2px solid #ababab;
    border-radius: 50%;
    background-color: #fff;
    left: 10px;
    position: absolute;
    content: '';
    top: -11px;
    display: block;
    z-index: 100;
}
@media (max-width: 992px) {
    .product-list__right {
        margin-top: 20px;
    }
}

.product-list__open-filters.active i {
    background-color: transparent;
}

.product-list__open-filters.active i:before {
    transform: rotate(45deg);
    width: 17px;
    top: 0;
    left: 3px;
    background-color: #2a2a2a;
}

.product-list__open-filters.active i:after {
    transform: rotate(135deg);
    width: 17px;
    top: 0;
    left: 3px;
    background-color: #2a2a2a;
}

.product-list__open-filters.active b,
.product-list__open-filters.active s {
    display: none;
}

.product-category-hero {
    width: 100%;
    height: calc(100vh - 142px);
    background-color: #2a2a2a;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 40px;
}
@media (max-width: 992px) {
    .product-category-hero {
        height: calc(100vh - 118px);
    }
}

.product-banner {
    padding: 80px 0;
}
@media (max-width: 767px) {
    .product-banner {
        padding: 60px 0;
    }
}

.product-banner__content {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 40px;
    align-items: center;
}
@media (max-width: 992px) {
    .product-banner__content {
        grid-template-columns: 220px 1fr;
        grid-gap: 20px;
    }
}
@media (max-width: 767px) {
    .product-banner__content {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

.product-banner__img {
    display: block;
}

.product-banner__right .btn {
    width: 100%;
    margin-top: 12px;
}

.product-category__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 28px 20px;
    padding: 20px;
}
@media (max-width: 992px) {
    .product-category__content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .product-category__content {
        grid-template-columns: 1fr;
    }
}

.product-category__link {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
    border: 1px solid #d3d3d3;
    padding: 12px;
}

.product-category__link:hover .product-category__link-title {
    color: #db261e;
}

.product-category__link-img {
    width: 100%;
    padding-top: 72%;
    position: relative;
    margin-bottom: 12px;
}

.product-category__link-img img {
    width: 90%;
    height: 90%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: contain;
}

.product-category__link-title {
    margin-bottom: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    transition: 0.3s ease;
}

.product-category__link-text {
    margin-bottom: 25px;
    font-weight: 300;
}

.product-category__link-btn {
    width: 100%;
    margin-top: auto;
    margin-bottom: 12px;
}

.product-category__link-btn .btn {
    width: 100%;
}

.product-category__slider-wrap {
    padding: 80px 60px;
}

.product-category__slider {
    position: relative;
}

.product-category__slider-arrows .swiper-button-next {
    right: 12px !important;
}

.product-category__slider-arrows .swiper-button-prev {
    left: 12px !important;
}

.product-category__slider-subtitle {
    text-align: center;
}
.product-category__slider-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro {
    padding: 80px 0;
}
@media (max-width: 992px) {
    .about-intro {
        padding: 60px 0;
    }
}
@media (max-width: 576px) {
    .about-intro {
        padding: 20px 0 60px;
    }
}

.about-intro__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    align-items: center;
}
@media (max-width: 992px) {
    .about-intro__content {
        grid-template-columns: 1fr;
    }
}

.about-intro__title {
    font-size: 34px;
    line-height: 1.2;
    text-align: left;
    font-family: 'Nunito Sans';
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -2.4px;
}

.about-intro__video {
    margin-right: 40px;
    position: relative;
}
@media (max-width: 576px) {
    .about-intro__video {
        margin-right: 0;
    }
}

.about-intro__video:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    left: 20px;
    top: 20px;
    background-color: #cececf;
}
@media (max-width: 576px) {
    .about-intro__video:before {
        display: none;
    }
}

.about-intro__video-iframe {
    padding-top: 104.65%;
    width: 100%;
    position: relative;
}
@media (max-width: 992px) {
    .about-intro__video-iframe {
        padding-top: 75%;
    }
}

.about-intro__video-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    cursor: pointer;
    opacity: 1;
    transition: opacity 1s ease 1s, background-size 0s linear;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro__video-img:hover .play-button {
    opacity: 0.8;
}

.about-intro__video-img.hidden {
    opacity: 0;
    background-size: 0;
    pointer-events: none;
}

.about-intro__video-img.hidden .play-button {
    display: none;
}

.about-intro__video-img,
.about-intro__video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.play-button {
    width: 30%;
    opacity: 0.5;
    transition: 0.3s ease;
}
@media (max-width: 992px) {
    .play-button {
        width: 20%;
    }
}

.about-more {
    background-color: #1c1d1b;
    padding: 40px 0 60px;
    position: relative;
    color: #ffffff;
    margin-top: 80px;
}
@media (max-width: 992px) {
    .about-more {
        padding: 40px 0 0;
        margin-top: 0;
    }
}

.about-more__title {
    font-size: 26px;
    line-height: 1.3;
    font-family: 'Nunito Sans';
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: -0.4px;
}

.about-more__content {
    width: 40%;
}
@media (max-width: 992px) {
    .about-more__content {
        width: 100%;
    }
}

.about-more__img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 992px) {
    .about-more__img {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 50%;
        margin-top: 60px;
    }
}

.about-accordions {
    padding: 60px 0;
}

.about-accordions__content {
    display: grid;
    grid-template-columns: 1fr 350px;
    grid-gap: 40px;
    align-items: start;
}
@media (max-width: 992px) {
    .about-accordions__content {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.accordions {
    margin-top: 40px;
}

@media (max-width: 992px) {
    .accordion {
        margin-bottom: 4px;
    }
}

.accordion-title {
    background-color: #1c1d1b;
    border: 1px solid #1c1d1b;
    padding-right: 60px;
    font-size: 14px;
    text-transform: uppercase;
    padding: 14px 20px;
    color: #bbbbbb;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.accordion-title svg {
    flex-shrink: 0;
    transform: rotate(90deg);
}

.accordion.active .accordion-title svg {
    transform: rotate(270deg);
}

.accordion.active .accordion-title {
    background-color: #db261e;
    color: #fff;
}

.accordion-content {
    padding: 20px 0;
    display: none;
}

.about-icons__title,
.about-accordions__title {
    font-size: 26px;
    line-height: 1.3;
    font-family: 'Nunito Sans';
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: -0.4px;
}

.about-accordions__banner {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    justify-content: center;
    font-weight: 400;
    min-height: 800px;
}
@media (max-width: 992px) {
    .about-accordions__banner {
        width: 100%;
        padding: 80px 40px;
        min-height: 0;
    }
}

.about-accordions__left {
    padding: 60px 0;
}
@media (max-width: 992px) {
    .about-accordions__left {
        padding: 0 0 40px;
    }
}

.about-accordions__banner-icon {
    width: 100px;
}

.about-accordions__banner-title {
    font-size: 26px;
    color: #ffffff;
    line-height: 1.2;
}

.about-icons {
    padding: 60px 0 0;
}

.about-icons__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}
@media (max-width: 992px) {
    .about-icons__content {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
}

.about-icons__img {
    margin-top: 40px;
}
@media (max-width: 992px) {
    .about-icons__img {
        text-align: center;
    }
}

.about-icon {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-gap: 40px;
    margin-bottom: 40px;
}

.about-icon img {
    width: 100%;
}
@media (max-width: 767px) {
    .about-icon {
        grid-gap: 20px;
        grid-template-columns: 32px 1fr;
        margin-bottom: 20px;
    }
}

.related-products {
    padding: 60px 0;
} 

.related-products__title {
    font-family: 'Nunito Sans';
    margin-bottom: 30px;
    font-size: 26px;
    line-height: 29px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -2.4px;
}

.related-products__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 4px;
} 
@media (max-width: 767px) {
    .related-products__items {
        grid-template-columns: repeat(2, 1fr);
    } 
}
@media (max-width: 576px) {
    .related-products__items {
        grid-template-columns: 1fr;
    } 
}

.related-products__item {
    border: 1px solid #cccccc;
} 

.related-products__item .product-list__item-text {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 16px;
} 

.related-products__item .product-list__item-img {
    height: 180px;
    padding-top: 40px;
} 

.related-products__item .product-list__item-tag {
    left: 8px;
    top: 8px;
} 

.product-info {
    padding: 20px 0;
}

.product-info__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}
@media (max-width: 992px) {
    .product-info__content {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
}

.product-info__left {
    
}

.product-info__img {
    position: relative;
    border: 1px solid #cccccc;
    margin: auto;
    width: 100%;
    padding-bottom: 70%;
    display: block;
}

.product-info__img > img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.product-info__img-icon {
    width: 26px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.product-info__title {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 28px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Nunito Sans';
}

.product-info__tags {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 40px;
}

.product-info__tags-title {
    flex-shrink: 0;
}

.product-info__tags-list {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.product-info__tag {
    color: #fff;
    padding: 2px 8px;
    background-color: #db261e;
    transition: 0.3s ease;
}

.product-info__tag:hover {
    opacity: 0.5;
}

.product-info__pdfs {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.product-info__pdf {
    color: #fff;
    padding: 6px 20px 4px;
    background-color: #db261e;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.product-info__pdf:hover {
    opacity: 0.5;
}

.product-info__table {
    margin-top: 20px;
    text-align: left;
}

.product-info__table-container {
    border-top: 1px solid #d9d9d9;
    padding-top: 40px;
}

.product-info__table-table {
    font-size: 12px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-color: gray;
}

.product-info__table-container tr:first-child td,
.product-info__table-table th,
.table-cellHeader {
    color: #fff;
    background: #0a0a0a;
    padding: 2px 8px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-info__table-table td {
    padding: 8px 12px;
    font-size: 12px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 992px) {
    td, tr { display: block; }
    thead {
        display: none;
    }
    tr { border: 1px solid #ccc; }
    tr + tr { margin-top: 20px; }
    td {
      border: none;
      position: relative;
      padding-left: 50%;
      text-align: left;
      display: grid;
      grid-template-columns: 100px 1fr;
      grid-gap: 12px;

    }
    td:before {
      content: attr(data-attr);
      display: flex;
      line-height: 1.5;
      width: 100%;
      font-weight: 500;
    }
}

.hero {
    width: 100%;
    margin-bottom: 40px;
    background-color: #2a2a2a;
    position: relative;
}

.hero-slide {
    min-height: calc(100vh - 142px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    display: flex;
    align-items: center;
}
@media (max-width: 992px) {
    .hero-slide {
        padding: 80px 0;
        min-height: calc(100vh - 118px);
    }
}
@media (max-width: 767px) {
    .hero-slide {
        padding: 40px 0;
    }
}

.hero-slide.black {
    color: #000;
}

.hero__title,
.hero__text {
    width: 75%;
}
@media (max-width: 992px) {
    .hero__title,
    .hero__text {
        width: 100%;
    }
}

.hero__title {
    font-family: 'Nunito Sans';
    font-weight: 800;
    font-size: 62px;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -3px;
}
@media (max-width: 992px) {
    .hero__title {
        font-weight: 600;
        font-size: 52px;
    }
}
@media (max-width: 767px) {
    .hero__title {
        font-size: 40px;
    }
}
@media (max-width: 576px) {
    .hero__title {
        font-size: 28px;
    }
}

.hero__text {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.2;
}
@media (max-width: 992px) {
    .hero__text {
        font-weight: 300;
        font-size: 18px;
        line-height: 1.4;
    }
}
@media (max-width: 767px) {
    .hero__text {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .hero__text {
        font-size: 13px;
    }
}

.hero__btn {
    margin-top: 40px;
}
@media (max-width: 767px) {
    .hero__btn {
        margin-top: 20px;
    }
}

.hero__btn .btn {
    font-family: "Nunito Sans";
    font-size: 18px;
    font-weight: 600;
}

.hero__pagination {
    position: absolute !important;
    bottom: 4px !important;
}

.hero__pagination .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background-color: lightgrey;
    opacity: 1;
    border: 1px solid #fff;
    border-radius: 0;
}
.hero__pagination .swiper-pagination-bullet:hover,
.hero__pagination .swiper-pagination-bullet-active {
    background-color: #000;
}

.hero-slider-arrows .swiper-button-prev {
    left: 20px !important;
    height: 32px;
    width: 32px;
    background-color: #252323;
    color: #ccc;
}
.hero-slider-arrows .swiper-button-next {
    right: 20px !important;
    height: 32px;
    width: 32px;
    background-color: #252323;
    color: #ccc;
}
@media (max-width: 767px) {
    .hero-slider-arrows .swiper-button-prev {
        left: 20px !important;
        top: 20px !important;
        bottom: auto !important;
    }
    .hero-slider-arrows .swiper-button-next {
        right: 20px !important;
        top: 20px !important;
        bottom: auto !important;
    }
}

.header__search-dropdown {
    position: absolute;
    top: 100%;
    width: 440px;
    right: -1px;
    border: 4px solid #dedede;
    z-index: 100;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}
@media (max-width: 992px) {
    .header__search-dropdown {
        display: none;
    }
}

.header__search-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-gap: 12px;
    padding: 12px 16px;
    font-size: 12px;
    border-bottom: 1px solid #dedede;
    transition: 0.3s ease;
}

.header__search-item:last-of-type {
    border-bottom: none;
}

.header__search-item:hover {
    background-color: #dedede;
}

.header__search-item__title {
    color: #0073aa;
    font-size: 14px;
    font-weight: 400;
}

.header__search-more {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    border: none;
    border-top: 4px solid #dedede;
    padding: 4px;
    background-color: #fff;
    outline: none;
    cursor: pointer;
}
.header__search-more:hover {
    background-color: #dedede;
}

.header__search-items {
    max-height: 320px;
    overflow: auto;
}

.header__search-dropdown.active {
    opacity: 1;
    pointer-events: all;
}

.contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  text-align: left;
}
@media (max-width: 767px) {
  .contact-items {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.contact-item + .contact-item {
  margin-top: 20px;
}

.contact-item__img {
  width: 36px;
  flex-shrink: 0;
}

.contact-item__img img {
  width: 100%;
}

.contact-item strong {
  display: block;
  font-weight: 500;
}

.contact-item a {
  transition: 0.3s ease;
}

.contact-item a:hover {
  color: #db261e;
}

.gmaps {
  width: 100%;
  padding-bottom: 66%;
  position: relative;
  margin-top: 40px;
}

.gmaps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fancybox-content {
  background-color: white!important;
  border-radius: 6px!important;
}
