body {
    font-size: 17px;
    line-height: 28px;
}

button,
a {
    transition-duration: .15s;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    letter-spacing: .5px;
    font-weight: 700;
    line-height: 1.15;
}


h1 {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 2.25rem;
}

h3 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

h4 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 1.75rem;
}

h5 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h6 {
    font-size: 17px;
    line-height: 28px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 26px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 16px;
    }

    body {
        font-size: 16px;
        line-height: 26px;
    }
}


/* BUTTON */

.button {
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.75rem;
    font-size: 15px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--background-color);
    font-weight: 500;
    letter-spacing: .5px;
    transition-duration: .15s;
    border-radius: var(--button-radius);
    background-color: transparent;
    overflow: hidden;
}

.button-spacing-top {
    margin-top: 1.75rem;
}

.button-spacing-lg-top {
    margin-top: 3rem;
}

.button svg {
    flex-shrink: 0;
    transition-duration: .15s;
}

.button-blue {
    color: var(--background-color);
}

.button-blue svg {
    fill: var(--background-color);
}

.button-shadow {
    filter: drop-shadow(0px 11px 9px rgba(0, 0, 0, 0.16));
}

.button:hover {
    text-decoration: none;
    transform: translateY(-.25rem);
}

.button-blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--highlight-color);
    z-index: 1;
}

.button-blue::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--highlight-color);
    filter: brightness(.9);
    transition-duration: .25s;
    z-index: 2;
}

.button-blue span,
.button-blue svg {
    position: relative;
    z-index: 3;
}

.button-blue:hover {
    color: var(--background-color);
}

.button-blue:hover::after {
    width: 100%;
}

.button-large {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.75rem;
    font-size: 17px;
    line-height: 1.25;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: .5px;
    transition-duration: .15s;
    border-radius: var(--button-radius);
    background-color: var(--background-color);
    border: 2px solid var(--primary-color);
}

.button-large svg {
    flex-shrink: 0;
    transition-duration: .15s;
}

.button-large-blue-bordered {
    border-color: var(--footer-color);
    color: var(--footer-color);
}

.button-large-blue-bordered svg {
    fill: var(--footer-color);
}

.button-large-blue-bordered:hover {
    background-color: var(--footer-color);
    color: var(--background-color);
}

.button-large-blue-bordered:hover svg {
    fill: var(--background-color);
}

@media (max-width: 768px) {

    .button-spacing-lg-top {
        margin-top: 2rem;
    }
}

/* HEADER */

.header {
    padding: 2rem 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 3rem;
}

.header-logo {
    flex-shrink: 0;
    max-width: 275px;
}

.header-logo img {
    max-height: 50px;
}

.header .navbar-nav {
    flex-wrap: wrap;
    margin-left: auto;
    justify-content: flex-end;
    padding-left: 2.5rem;
}

.header .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 800;
    color: var(--menu-color);
    padding: .4rem 1rem;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    letter-spacing: .5px;
}


.header .nav-link::before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 0.25rem;
    background: var(--highlight-color);
    transition: 0.3s width ease;
    left: 50%;
    transform: translateX(-50%);
}

.header .nav-link:hover,
.header .nav-item.active .nav-link {
    color: var(--highlight-color);
}

.header .nav-link:hover::before,
.header .nav-item.active .nav-link::before {
    width: calc(100% - 1.5rem);
}

.header .header-rightbox {
    display: flex;
    flex-direction: row;
    column-gap: 35px;
    row-gap: 15px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.header .header-rightbox-mobile {
    display: none;
}

@media (min-width: 1200px) {
    .container-xl-left {
        margin-right: 0;
        max-width: 100%;
        width: auto;
    }

    .header .navbar-collapse>.container {
        padding: 0;
        max-width: unset;
    }
}

@media (max-width: 1399px) {
    .header .header-rightbox {
        column-gap: 15px;
    }

    .header-wrapper {
        padding-right: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .header .header-rightbox {
        display: none;
    }

    .header .header-rightbox-mobile {
        display: block;
    }

    .header {
        padding: 1.5rem 0;
    }


    .header .navbar-nav {
        padding-left: 0;
    }

    .header .header-wrapper {
        padding: 0;
        gap: 2.5rem;
    }

    .header .header-logo {
        flex-shrink: 1;
        width: fit-content;
        max-width: unset;
        height: 50px;
        display: flex;
        align-items: center;
    }

    .header .header-logo img {
        margin-right: 0;
        max-height: 50px;
        object-fit: scale-down;
        width: fit-content;
    }

    .header .navbar-collapse {
        background-color: var(--background-color);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 5;
        padding-bottom: 1.25rem;
        max-height: 75dvh;
        overflow-y: auto;
    }

    .header .header-rightbox {
        margin-top: .5rem;
    }

    .header .navbar-nav .nav-link {
        padding: .675rem 0;
    }

    .header .navbar-nav .nav-item:not(:first-of-type) {
        border-top: 1px solid var(--highlight-color);
    }

    .header .nav-link::before {
        display: none;
    }

    .header .header-rightbox {
        margin-left: 0;
        width: fit-content;
    }
}

.header .header-rightbox .languages .header-rightbox-lang {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    text-align: center;
    border: 2px solid var(--highlight-color);
    border-radius: 10px;
    background-color: var(--background-color);
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 575px) {
    .header .header-rightbox .languages .header-rightbox-lang {
        padding: 0.4rem 1.25rem;
        min-height: unset;
    }

    .header .header-wrapper {
        padding: 0 .5rem;
    }
}

.header .header-rightbox .languages .header-rightbox-lang::after {
    color: var(--highlight-color);
}

.header .header-rightbox .languages .header-rightbox-lang svg {
    transition-duration: 0.1s;
    transform: rotate(90deg);
}

.header .header-rightbox .languages .show svg {
    transform: rotate(270deg);
}

.header .header-rightbox .languages .dropdown-toggle::after {
    display: none;
}

.header .header-rightbox .languages .dropdown-menu {
    border: 2px solid var(--highlight-color);
    border-radius: 10px;
    min-width: 100%;
}

.header .header-rightbox .languages .dropdown-menu .dropdown-item {
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}

.header .header-rightbox .languages .dropdown-menu .dropdown-item:active {
    background-color: var(--highlight-color);
}

/* HEADER HAMBURGER */

.header .navbar-toggler {
    padding: 0;
    margin-top: -.25rem;
}

.header .animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    transform: rotate(0deg);
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.header .animated-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    background: var(--highlight-color);
}

.header .animated-icon span:nth-child(1) {
    top: 0px;
}

.header .animated-icon span:nth-child(2) {
    top: 10px;
}

.header .animated-icon span:nth-child(3) {
    top: 20px;
}

.header .animated-icon.open span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}

.header .animated-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.header .animated-icon.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}

/* HOMEPAGE BANNER */

.banner {
    width: 100%;
    height: auto;
    padding-left: 4rem;
}

.banner .banner-slider {
    border-bottom-left-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.banner .banner-item {
    position: relative;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(40, 45, 117, 1) 0%, rgba(40, 45, 117, 1) 10%, rgba(40, 45, 117, .9) 20%, rgba(40, 45, 117, 0.075) 100%);
    z-index: 4;
}


.banner .banner-item-image {
    aspect-ratio: 2.2/1;
    object-fit: cover;
}

.banner .banner-item-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 610px;
    left: 7.5rem;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 2rem;
    z-index: 5;
    text-align: left;
}


.banner .banner-item-text-title {
    color: var(--secondary-color);
    font-size: 62px;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 0;
}

.banner .banner-item-text-subtitle {
    color: var(--secondary-color);
    font-size: 34px;
    letter-spacing: -1px;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 0;
}

.banner-item-text .banner-item-text-content p {
    font-size: 20px;
    line-height: 1.25;
    color: var(--secondary-color);
    font-weight: 300;
}

.banner .banner-item .button {
    margin-top: .5rem;
}

.banner .owl-carousel .owl-nav {
    position: absolute;
    bottom: 6.25rem;
    left: 15rem;
    margin-top: 0;
    display: flex;
    gap: .5rem;
    transform: translateY(50%);
    padding-left: 1.5rem;
}

.banner .owl-carousel .owl-nav button.owl-next,
.banner .owl-carousel .owl-nav button.owl-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #54599b;
    background-color: transparent;
    transition: all .15s;
}

.banner .owl-carousel .owl-nav button.owl-prev svg {
    transform: rotate(180deg);
}

.banner .owl-carousel .owl-nav button svg {
    fill: var(--background-color);
}

.banner .owl-carousel .owl-nav button.owl-next:hover,
.banner .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
}

.banner .owl-carousel .owl-dots {
    position: absolute;
    bottom: 6.25rem;
    left: 7.5rem;
    display: flex;
    gap: .5rem;
    transform: translateY(50%);
}

.banner .owl-carousel .owl-dots button span {
    margin: 0;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #54599b;
    transition: all .15s;
}

.banner .owl-carousel .owl-dots button:hover span,
.banner .owl-carousel .owl-dots button.active span {
    background-color: var(--highlight-color);
}

@media (max-width: 1475px) {
    .banner {
        padding-left: 1rem;
    }


    .banner .banner-item-text {
        max-width: 650px;
    }

    .banner .banner-item-text-subtitle {
        font-size: 28px;
    }

    .banner .banner-item-text {
        gap: 1.25rem;
        margin-top: -2.5rem;
    }

    .banner .owl-carousel .owl-nav,
    .banner .owl-carousel .owl-dots {
        bottom: 4rem;
    }
}

@media (max-width: 1200px) {

    .banner .banner-item-text {
        gap: 1rem;
    }

    .banner-item-text .banner-item-text-title {
        font-size: 50px;
    }

    .banner .banner-item-text-subtitle {
        font-size: 24px;
        letter-spacing: .5px;
    }
}

@media (max-width: 993px) {
    .banner .banner-item-image {
        aspect-ratio: 1.5/1;
    }

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

    .banner .banner-item-text {
        left: 1.75rem;
        right: 1.75rem;
        align-items: center;
    }

    .banner .owl-carousel .owl-nav {
        display: none;
    }

    .banner .owl-carousel .owl-dots {
        left: 0;
        right: 0;
        justify-content: center;
        bottom: 2.5rem;
    }

    .banner .banner-item-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .banner {
        padding-left: 0;
    }

    .banner .banner-slider {
        border-radius: 0;
    }

    .banner .banner-item-image {
        aspect-ratio: 1/1.25;
    }

    .banner .banner-item-text {
        gap: 1.5rem;
        margin-top: 0;
    }

    .banner-item-text .banner-item-text-title {
        font-size: 42px;
    }

    .banner .banner-item-text-subtitle {
        font-size: 20px;
    }

    .banner .banner-item::after {
        background: linear-gradient(90deg, rgba(40, 45, 117, 1) 0%, rgba(40, 45, 117, 1) 0%, rgba(40, 45, 117, 0.5) 100%);
    }

}


@media (max-width: 375px) {


    .banner-item-text .banner-item-text-title {
        font-size: 36px;
    }

    .banner .banner-item .button {
        padding: .75rem 1.5rem;
    }

    .banner .banner-item .button svg {
        width: 1.25rem;
    }
}

/* SECTIONS */

.section {
    padding: 7.25rem 0;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header-small {
    margin-bottom: 3rem;
}

.section-header-minititle {
    display: block;
    font-size: 14px;
    letter-spacing: 6px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

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

.section-header-description {
    margin-top: 1.25rem;
}

.section-header h2,
.section-header h3 {
    margin-bottom: 0;
}

.section-header h2 span,
.section-header h3 span {
    color: var(--highlight-color);
}

.section-footer {
    margin-top: 5rem;
}

.section-footer-small {
    margin-top: 3rem;
}

.section-blue {
    background-color: var(--footer-color);
}

.section-footer-right {
    margin-left: auto;
    width: fit-content;
}

.section-blue .section-header-minititle {
    color: var(--background-color);
}

.section-blue .section-header h2,
.section-blue .section-header h3 {
    color: var(--background-color);
}

.section-gray {
    background-color: var(--background-secondary-color);
}

.subpage .section {
    padding: 0;
}


@media (max-width: 768px) {

    .section {
        padding: 4.5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-footer {
        margin-top: 3rem;
    }

    .section-header-small {
        margin-bottom: 2.25rem;
    }

    .section-footer-small {
        margin-top: 2.25rem;
    }

    .section-footer-right {
        margin-right: auto;
    }
}


/* ABOUT */

.about .about-image-main {
    aspect-ratio: 1.45/1;
    height: auto;
    width: 100%;
    border-top-left-radius: var(--border-radius);
    object-fit: cover;
    transform: translateX(15px);
}

.about .about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
}

.about .about-counters {
    margin-top: 3rem;
    display: flex;
    align-items: stretch;
    gap: 3rem;
}

.about .about-counters-item {
    width: 100%;
    position: relative;
}

.about .about-counters-item span {
    display: block;
    text-align: center;
}

.about .about-counters-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1.5rem;
    display: block;
    height: 100%;
    width: 1px;
    background-color: var(--border-color);
}

.about .about-text {
    max-width: 710px;
}

.about .about-counters {
    max-width: 590px;
}

@media (min-width: 1475px) {
    .about .container {
        max-width: 1685px;
    }
}

@media (max-width: 1200px) {
    .about .about-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .about .about-image-main {
        transform: none;
    }


    .about .about-counters {
        margin-top: 0;
        margin: 0 auto;
    }

    .about .about-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about .about-counters {
        flex-direction: column;
    }

    .about .about-counters-item:not(:last-child)::after {
        content: none;
    }

    .about .about-counters {
        max-width: 250px;
        gap: 1.5rem;
    }

    .about .about-wrapper {
        gap: 3rem;
    }
}

/* FIELDS */
.fields .fields-text {
    max-width: 490px;
}

.fields .fields-inner {
    display: flex;
    align-items: flex-start;
    gap: 7.5rem;
}

.fields .fields-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}

.fields .fields-item {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.fields .fields-item-content {
    background: linear-gradient(0deg, rgba(40, 45, 117, .6) 0%, rgba(40, 45, 117, 0) 50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.fields .fields-item-title {
    font-size: 18px;
    line-height: 1.25;
    color: var(--background-color);
    text-transform: uppercase;
    font-weight: 500;
}

.fields .fields-item-image {
    aspect-ratio: 1/1.375;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition-duration: .25s;
}

.fields .fields-item:hover .fields-item-image {
    scale: 1.075;
}

@media (min-width: 1475px) {
    .fields .container {
        max-width: 1685px;
    }
}

@media (max-width: 1475px) {
    .fields .fields-inner {
        gap: 3.5rem;
    }

    .fields .fields-text {
        max-width: 390px;
    }
}

@media (max-width: 1200px) {
    .fields .fields-inner {
        flex-direction: column;
        gap: 0;
    }

    .fields .fields-text {
        max-width: 100%;
    }

    .fields .fields-wrapper {
        width: 100%;
    }
}

@media (max-width: 993px) {
    .fields .fields-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .fields .fields-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .fields .fields-item-title {
        font-size: 16px;
    }

    .fields .fields-item-content {
        padding: .75rem;
    }
}

@media (max-width: 375px) {
    .fields .fields-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .fields .fields-item-image {
        aspect-ratio: 1/1;
    }

    .fields .fields-item-title {
        font-size: 18px;
    }

    .fields .fields-item-content {
        padding: 1.25rem;
    }
}

/* CATEGORIES */

.categories .categories-header {
    max-width: 850px;
}

.categories .categories-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}

.categories .categories-item {
    background-color: var(--background-secondary-color);
    padding: 2rem 2rem 6rem;
    min-height: 500px;
    position: relative;
}

.categories .categories-item:nth-child(odd) {
    border-top-left-radius: var(--border-sm-radius);
}

.categories .categories-item:nth-child(even) {
    border-bottom-right-radius: var(--border-sm-radius);
}

.categories .categories-item-image {
    position: absolute;
    top: 2rem;
    right: 0;
    bottom: 2rem;
    object-fit: scale-down;
    max-width: 255px;
    z-index: -1;
}

.categories .categories-item-links {
    padding-top: 13.75rem;
}

.categories .categories-item-links-main {
    display: block;
    font-size: 30px;
    line-height: 1.25;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: .5rem;
}

.categories .categories-item-links-subcategories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories .categories-item-links-subcategories a {
    color: var(--primary-color);
}

.categories .categories-item-links-subcategories a:hover,
.categories .categories-item-links-main:hover {
    color: var(--highlight-color);
}

.categories .categories-item-button {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
}

@media (max-width: 1475px) {
    .categories .categories-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .categories .categories-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .categories .categories-item-links-main {
        font-size: 26px;
    }

    .categories .categories-item {
        min-height: unset;
        padding: 2rem 1.5rem 6rem;
    }
}

/* NEWS */

.news .news-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.news .news-item {
    background-color: var(--background-color);
    border-top-left-radius: var(--border-sm-radius);
    display: flex;
    flex-direction: column;
}

.news .news-item.news-item-gray {
    background-color: var(--background-secondary-color);
}

.news.news-gray .news-item {
    background-color: var(--background-secondary-color);
}

.news .news-item-date {
    display: block;
    padding: .75rem 2rem;
    font-size: 14px;
    line-height: 1.25;
    opacity: .75;
}

.news .news-item-gray .news-item-date {
    opacity: 1;
}

.news .news-item-header {
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
}

.news .news-item-image {
    width: 100%;
    aspect-ratio: 1.6/1;
    height: auto;
    object-fit: cover;
    transition-duration: .25s;
}

.news .news-item-header:hover .news-item-image {
    scale: 1.075;
}

.news .news-item-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    height: 100%;
}

.news .news-item-title {
    display: block;
    color: var(--paragraph-color);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 1rem;
}


.news .news-item-gray .news-item-title {
    color: var(--primary-color);
}

.news .news-item-title:hover {
    color: var(--highlight-color);
}

.news .news-item-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news .news-item-more,
.catalog-products-item-more {
    background-color: var(--highlight-color);
    color: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    border-radius: var(--button-radius);
    width: 38px;
    height: 38px;
    margin-left: auto;
}

.news .news-item-more svg,
.catalog-products-item-more svg {
    transition-duration: .25s;
}

.news .news-item-more:hover,
.catalog-products-item-more:hover {
    color: var(--background-color);
}

.news .news-item-more:hover svg,
.catalog-products-item-more:hover svg {
    rotate: 90deg;
}

@media (max-width: 1200px) {
    .news .news-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .news .news-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .news .news-item {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .news .news-item-date {
        width: 100%;
    }

    .news .news-item-header,
    .news .news-item-body {
        width: 50%;
    }

    .news .news-item-body {
        height: calc(100% - 41.5px);
    }
}

@media (max-width: 768px) {
    .news .news-wrapper {
        gap: 1rem;
    }

    .news .news-item-body {
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .news .news-item-date {
        padding: .75rem 1.5rem;
    }

    .news .news-item-title {
        font-size: 22px;
    }
}


/* FOOTER */

.footer {
    background-color: var(--footer-color);
}

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

.footer ul li:not(:last-child) {
    margin-bottom: .425rem;
}

.footer ul li {
    line-height: 1.25;
}

.footer p,
.footer a {
    color: var(--footer-color-text);
}

.footer a:hover {
    color: var(--background-color);
    text-decoration: underline;
}

.footer .footer-companies {
    padding: .75rem 0;
}

.footer .footer-companies-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr);
    gap: 2rem;
    position: relative;
}

.footer .footer-companies-main {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    transform: translateY(.25rem);
}

.footer .footer-companies-main:hover {
    text-decoration: none;
}

.footer .footer-companies-slider .owl-stage {
    display: flex;
}

.footer .footer-companies-slider-outer {
    position: relative;
}

.footer .footer-companies-slider-outer::before,
.footer .footer-companies-slider-outer::after {
    content: "";
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--footer-color);
    z-index: 2;
}

.footer .footer-companies-slider-outer::before {
    left: 0;
}

.footer .footer-companies-slider-outer::after {
    right: 0;
}

.footer .footer-companies-slider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--background-color);
    padding: 0 1.5rem;
    border-left: 1px solid #3e4283;
    height: 100%;
    min-height: 100px;
}

.footer .footer-companies-slider-item:hover {
    color: var(--highlight-color);
    text-decoration: none;
}

.footer .footer-companies-slider .owl-nav {
    margin-top: 0;
}

.footer .footer-companies-slider .owl-nav .owl-next,
.footer .footer-companies-slider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    transition-duration: .25s;
}

.footer .footer-companies-slider .owl-nav .owl-next:hover,
.footer .footer-companies-slider .owl-nav .owl-prev:hover {
    background: none;
}

.footer .footer-companies-slider .owl-nav .owl-prev {
    left: -1rem;
}

.footer .footer-companies-slider .owl-nav .owl-next {
    right: -1rem;
}

.footer .footer-companies-slider .owl-nav .owl-prev svg {
    rotate: 180deg;
}

.footer .footer-companies-slider .owl-nav button svg {
    fill: var(--highlight-color);
}

.footer .footer-main {
    border-top: 1px solid #3e4283;
    border-bottom: 1px solid #3e4283;
    padding: 5rem 0;
}

.footer .footer-wrapper {
    display: grid;
    grid-template-columns: 1.75fr 1.75fr 1fr 1fr;
    gap: 2rem;
}

.footer .footer-item-title {
    display: block;
    color: var(--background-color);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: 17px;
}

.footer .footer-item-contact-main {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.footer .footer-item-contact-phone {
    display: block;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--background-color);
    letter-spacing: -1.5px;
}

.footer .footer-item-contact-address p {
    margin-bottom: 0;
}

.footer .footer-item-contact-email {
    display: block;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 500;
    color: var(--highlight-color);
}

.footer .footer-item-about-logo {
    display: block;
    margin-bottom: 2rem;
    max-height: 50px;
}

.footer .footer-item-about-logo img {
    filter: brightness(0) invert(1);
}

.footer .footer-item-about-text {
    max-width: 325px;
}

.footer .footer-item-about-socials {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer .footer-item-about-socials>span {
    text-transform: uppercase;
    color: var(--background-color);
}

.footer .footer-item-about-socials-wrapper {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.footer .footer-item-about-socials a svg {
    fill: var(--highlight-color);
    transition-duration: .15s;
}

.footer .footer-item-about-socials a:hover svg {
    fill: var(--background-color);
    scale: 1.1;
}


.footer .footer-copyright {
    padding: 2rem 0;
}

.footer .footer-copyright p {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

.footer .footer-copyright p span:not(:last-child)::after {
    content: "|";
    padding: 0 .75rem;
}

@media (max-width: 1200px) {
    .footer .footer-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5rem 2rem;
    }
}

@media (max-width: 993px) {
    .footer .footer-copyright p {
        flex-direction: column;
        align-items: center;
    }

    .footer .footer-copyright p span:not(:last-child)::after {
        content: none;
    }

    .footer .footer-companies-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .footer .footer-companies-main {
        align-items: center;
    }

    .footer .footer-companies {
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    .footer .footer-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .footer .footer-main {
        padding: 3rem 0;
        text-align: center;
    }

    .footer .footer-item-about-logo {
        margin: 0 auto 2rem;
        width: fit-content;
    }

    .footer .footer-item-about-socials {
        flex-direction: column;
    }

    .footer .footer-item-about-text {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-companies-slider-outer {
        margin: 0 1.5rem;
    }

    .footer .footer-companies-slider-item {
        padding: 0 1.25rem;
        min-height: 80px;
    }
}

/* SUBPAGE HEADING */

.heading {
    background-color: var(--footer-color);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 4rem;
    border-bottom-left-radius: var(--border-radius);
}

.heading .heading-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 1rem;
    min-height: 250px;
    padding: 2rem 0;
}

.heading .heading-title h1 {
    color: var(--background-color);
    margin-bottom: 0;
}

.heading .heading-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.heading .heading-breadcrumb li {
    display: flex;
}

.heading .heading-breadcrumb svg {
    flex-shrink: 0;
    display: block;
    width: .875rem;
    margin: 0 1rem;
    fill: var(--highlight-color)
}

.heading .heading-breadcrumb a {
    color: var(--footer-color-text);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .5px;
}

.heading .heading-breadcrumb li:last-child a {
    color: var(--background-color);
    font-weight: 600;
}

.heading .heading-breadcrumb li:not(:last-child) a:hover {
    color: var(--background-color);
}

@media (max-width: 1475px) {
    .heading {
        margin: 0 -1rem 0 1rem;
    }
}

@media (max-width: 768px) {
    .heading {
        margin: 0;
        border-radius: 0;
    }

    .heading .heading-breadcrumb {
        display: none;
    }

    .heading .heading-inner {
        min-height: 220px;
    }
}

/* PAGINATION */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 0;
}

.pagination li a {
    color: var(--paragraph-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.pagination li a:hover {
    color: var(--highlight-color);
}

.pagination li a svg {
    fill: var(--highlight-color);
}

.pagination li.active a {
    background-color: transparent;
    color: var(--primary-color);
    background-color: var(--background-secondary-color);
    padding: .5rem;
    font-size: 16px;
    border-radius: var(--button-radius);
    width: 38px;
    height: 38px;
}

.pagination li.pagination-arrow:first-child a svg {
    rotate: 180deg;
}

.pagination li:not(.disabled) a {
    cursor: pointer;
}

/* CATALOG CATEGORIES */

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

.catalogCategories .catalogCategories-title {
    display: block;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.catalogCategories .catalogCategories-list-item {
    display: flex;
    gap: .75rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: .5rem .75rem;
    color: var(--primary-color);

}

.catalogCategories .catalogCategories-list-item-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.75rem;
    object-fit: scale-down;
    fill: var(--highlight-color);
    transition-duration: .15s;
}

.catalogCategories .catalogCategories-list-item.active,
.catalogCategories .catalogCategories-list-item:hover {
    background-color: var(--highlight-color);
    color: var(--background-color);
    border-radius: var(--button-radius);
}

.catalogCategories .catalogCategories-list-item.active img,
.catalogCategories .catalogCategories-list-item:hover img {
    filter: brightness(0) invert(1);
}

.catalogCategories .catalogCategories-list-dropdown {
    margin: .5rem 0 1.5rem;
}

.catalogCategories .catalogCategories-list-dropdown-item {
    color: var(--paragraph-color);
    padding-left: 3rem;
}


.catalogCategories .catalogCategories-list-dropdown-item.active,
.catalogCategories .catalogCategories-list-dropdown-item:hover {
    color: var(--highlight-color);
}

.catalogCategories .catalogCategories-list-dropdown-item.active {
    font-weight: 600;
}

/* CATALOG SUBCATEGORIES */

.catalogSubcategories .catalogSubcategories-wrapper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.catalogSubcategories .catalogSubcategories-item {
    background-color: var(--background-secondary-color);
    border-radius: var(--button-radius);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: .75rem;
    padding: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .5px;
}

.catalogSubcategories .catalogSubcategories-item:hover {
    color: var(--highlight-color);
}

.catalogSubcategories .catalogSubcategories-item-image {
    flex-shrink: 0;
    width: 100%;
    height: 110px;
    object-fit: scale-down;
}

.catalogSubcategories .catalogSubcategories-item-name {
    display: flex;
    text-align: center;
    height: 100%;
    align-items: center;
}

@media (max-width: 1475px) {
    .catalogSubcategories .catalogSubcategories-wrapper {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .catalogSubcategories .catalogSubcategories-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .catalogSubcategories .catalogSubcategories-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .catalogSubcategories .catalogSubcategories-item {
        padding: .75rem;
    }

    .catalogSubcategories .catalogSubcategories-item-image {
        height: 100px;
    }
}

/* CATALOG FILTERS */

.catalogFilters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.catalogFilters .catalogFilters-info {
    font-size: 21px;
    line-height: 28px;
    color: var(--paragraph-color);
}

.catalogFilters .catalogFilters-item {}

/* OTHER STYLES */

.product-top-image .catalog-products-item-more {
    position: absolute;
    padding: .375rem;
    bottom: 2rem;
    right: 2rem;
}

.product-top-wrapper-right .product-top-title {
    border-bottom: 0 !important;
    margin-bottom: 3rem !important;
    padding-bottom: 0 !important;
}

.product-top-wrapper-right .product-top-title h2 {
    color: var(--footer-color);
    font-size: 24px;
    line-height: 30px;
}

.product-top-wrapper-right .product-top-description {
    font-size: 20px;
    line-height: 28px;
}

.product-top-wrapper-right .product-top-description p:not(:last-child) {
    margin-bottom: 1.5rem;
}

.product-description {
    margin-top: 5rem;
}

.product-description .product-description-wrapper {
    background-color: var(--background-secondary-color);
    border-radius: var(--button-radius);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-description .product-description-item {
    padding: 3rem 2.5rem;
    position: relative;
}

.product-description .product-description-item:first-child {
    margin-right: 7.5rem;
}

.product-description .product-description-item-header {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .875rem 1.25rem;
    font-size: 17px;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    transition-duration: .15s;
    border-radius: var(--button-radius);
    background-color: var(--highlight-color);
    color: var(--background-color);
}

.product-description .product-description-item-header svg {
    flex-shrink: 0;
    fill: var(--background-color);
}

.product-section {
    margin-top: 5rem;
}

.product-section .product-section-item:first-child {
    margin-right: 7.5rem;
}

.product-section .product-section-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-section .product-section-labels-item {
    display: block;
    width: fit-content;
    border: 1px solid var(--footer-color);
    color: var(--footer-color);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
    padding: .375rem 1rem;
}

.product-section .product-section-labels-item:not(:last-child) {
    margin-bottom: .5rem;
}

.product-section .section-block-dropdowns:first-child {
    border-top: 1px solid var(--border-color);
}

.product-section .section-block-dropdowns-header {
    padding: .375rem 0;
}

.product-section .product-section-item-header {
    margin-bottom: 2.5rem;
}

.product-section .section-block-dropdowns-header h4 {
    text-transform: uppercase;
    font-size: 18px;
}

.product-section .section-block-dropdowns-body-content {
    padding: 0 0 1rem;
}

.product-section .section-block-download-name p {
    font-weight: 400;
}

.product-section .section-block-dropdowns-header-icon svg {
    width: 1.5rem;
}

@media (max-width: 1200px) {
    .product-description .product-description-item:first-child {
        margin-right: 0;
    }

    .product-section .product-section-item:first-child {
        margin-right: 2.5rem;
    }
}

@media (max-width: 993px) {

    .product-description .product-description-wrapper,
    .product-section .product-section-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 4rem;
    }

    .product-description .product-description-wrapper {
        background-color: transparent;
    }

    .product-section .product-section-item:first-child {
        margin-right: 0;
    }

    .product-description-item {
        background-color: var(--background-secondary-color);
        border-radius: var(--button-radius);
    }

    .product-top .product-top-wrapper {
        gap: 5rem;
    }

    .product-top-wrapper-left {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .product-section .product-section-item-header {
        margin-bottom: 1.5rem;
    }

    .product-description .product-description-wrapper,
    .product-section .product-section-wrapper {
        gap: 3rem;
    }

    .product-section {
        margin-top: 3.5rem;
    }

    .product-description {
        margin-top: 4.5rem;
    }

    .product-top-wrapper-right .product-top-title {
        margin-bottom: 1.5rem !important;
    }

    .product-top .product-top-wrapper {
        gap: 3rem;
    }

    .product-description .product-description-item {
        padding: 3rem 1.75rem 2rem;
    }

    .product-top-wrapper-right .product-top-description {
        font-size: 16px;
        line-height: 26px;
    }

    .product-top-wrapper-right .product-top-description p:not(:last-child) {
        margin-bottom: 1rem;
    }

    .section-block-dropdowns-header {
        padding: .375rem 0;
    }

    .product-section-item-header {
        margin-bottom: 2.5rem;
    }

    .section-block-dropdowns-header h4 {
        text-transform: uppercase;
        font-size: 18px;
    }

    .section-block-dropdowns-body-content {
        padding: 0 0 1rem;
    }

    .section-block-dropdowns-header-icon svg {
        width: 1.5rem;
    }
}

/* SUCCESS */

.success {
    background-color: var(--background-secondary-color);
    border-top-left-radius: var(--border-radius);
    padding: 4rem 3rem;
}

.success .success-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: center;
}

.success .success-image img {
    max-height: 400px;
    object-fit: scale-down;
}

.success .success-text {
    padding-left: 5rem;
}

@media (max-width: 1200px) {

    .success .success-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 5rem;
    }

    .success .success-text {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .success .success-wrapper {
        gap: 2.5rem;
    }

    .success {
        padding: 2.5rem 1.75rem;
    }

    .success .success-text {
        order: -1;
    }
}

/* STORES */

.stores .stores-dropdowns {
    border-top: 1px solid var(--border-color);
}

.stores .section-block-dropdowns-header {
    padding: 1.25rem 0;
}

.stores .section-block-dropdowns-header h4 {
    display: block;
    font-size: 17px;
    letter-spacing: 5px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
}

.stores .footer-icons-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stores .footer-icons-content.weight-normal p {
    font-weight: 400;
}

.stores .section-block-dropdowns-body-content {
    padding: 2rem 0 3.5rem;
}

.stores .footer-icons-content a {
    display: block;
}

.stores .footer-icons-image:empty {
    background-color: transparent;
    border-color: transparent;
}

.stores .section-block-map iframe {
    height: 450px;
}

@media (max-width: 768px) {
    .stores .footer-icons-image:empty {
        display: none;
    }

    .stores .section-block-dropdowns-body-content {
        padding: .75rem 0 2.5rem;
    }

    .stores .section-block-map iframe {
        height: 300px;
    }
}

/* CONTACTS */

.contacts .contacts-inner {
    background-color: var(--background-secondary-color);
    border-radius: var(--button-radius);
    padding: 4.25rem;
}

.contacts .contacts-content-box-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.contacts .contacts-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 2rem;
    margin-bottom: 3rem;
}

.contacts .contacts-content-box-title {
    display: block;
    font-size: 17px;
    letter-spacing: 5px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--highlight-color);
    font-weight: 700;
    margin-bottom: 2rem;
}

.contacts .contacts-content-box-item {
    background-color: var(--background-color);
    padding: 3rem 3.5rem;
}

.contacts .contacts-content-box-item-section:not(:last-child) {
    margin-bottom: 2rem;
}

.contacts .contacts-content-box-item-section p,
.contacts .contacts-content-box-item-section ul {
    margin-bottom: 0;
}

.contacts .contacts-content-box-item-section a {
    color: var(--highlight-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    text-decoration: none;
    word-break: break-all;
}

.contacts .contacts-content-box-item-section b>a {
    color: var(--primary-color);
}

.contacts .contacts-content-box-item-section b>a:hover {
    color: var(--highlight-color);
}

.contacts .contacts-content-box-item-section a:hover {
    text-decoration: underline;
}

.contacts .contacts-filters select {
    min-width: 350px;
    color: var(--paragraph-color);
    font-size: 17px;
    padding: 0.675rem 1.25rem;
}

@media (max-width: 1400px) {
    .contacts .contacts-content-box-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 993px) {
    .contacts .contacts-content-box-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .contacts .contacts-filters {
        flex-direction: column;
    }

    .contacts .contacts-filters select {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .contacts .contacts-inner {
        padding: 1.75rem;
    }

    .contacts .contacts-content-box-wrapper {
        gap: 1.75rem;
    }

    .contacts .contacts-content-box-item {
        padding: 1.75rem 1.5rem;
    }

    .contacts .contacts-content-box-item-section:not(:last-child) {
        margin-bottom: 1.25rem;
    }
}