:root {
    --container-width: 1400px;
    --primary: #CA1F3C;
    --gray: #2F2F2F;
}

* {
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

body {
    font-size: 16px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wow {
    visibility: hidden;
}

.menu-wrapper, .toggle-menu, .mobile-header, .mobile-bar {
    display: none;
}

@media (min-width: 1399px) {
    .container {
        max-width: 1400px;
    }
}

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: 300ms;
    background-color: #fff;
}

.main-header .header-bar {
    background: #000;
    transition: 300ms;
}

.main-header .bar-container {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    align-items: center;
    height: 30px;
}

.main-header .bar-container .contacts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
}

.main-header .bar-container .contacts a {
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    font-size: 12px;
    transition: 300ms;
    color: #fff;
}

.main-header .bar-container .contacts .socials {
    display: flex;
    column-gap: 10px;
}

.main-header .bar-container .contacts a:Hover {
    color: var(--gray);
}

.main-header .languages {
    position: relative;
}

.main-header .languages > .active {
    display: flex;
    color: #fff;
    align-items: center;
    column-gap: 10px;
    transition: 300ms;
    cursor: pointer;
    padding: 10px 0;
}

.main-header .languages > .active:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
}

.main-header .languages .list {
    background: var(--primary);
    position: absolute;
    right: 0;
    top: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transition: 300ms;
    z-index: 11;
}

.main-header .languages .list a {
    color: #fff;
    padding: 5px 10px;
    display: flex;
    column-gap: 10px;
    transition: 300ms;
    font-size: 14px;
}

.main-header .languages .list a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
}

.main-header .languages .list a:Hover {
    background: var(--gray);
}

.main-header .languages:Hover .list {
    opacity: 1;
    visibility: visible;
}

.main-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 300ms;
    padding: 10px 0;
}

.main-header .header-container .logo {
    width: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
}

.main-header .header-container .logo img {
    transition: 300ms;
    width: 100%;
}

.main-header .header-container .menu {
    width: calc(100% - 200px);
}

.main-header .header-container .menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
}

.main-header .header-container .menu > ul > li {
    position: relative;
}

.main-header .header-container .menu > ul > li > a {
    display: block;
    padding: 5px;
    border-radius: 3px;
    transition: 300ms;
    color: #000;
    text-transform: uppercase;
    position: relative;
    font-size: 14px;
}

.main-header .header-container .menu > ul > li:Hover > a {
    background-color: var(--primary);
    color: #fff;
}

.fixed-bar .main-header .header-bar {
    margin-top: -30px;
}

.fixed-bar .main-header {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, .3);
}

.fixed-bar .main-header .header-container .logo {
    width: 75px;
}

.large-container {
    padding: 0 100px;
}

.main-sliders {
    margin-top: 110px;
    position: relative;
}

.main-sliders img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    max-height: calc(100vh - 235px);
}

.main-sliders .owl-nav {
    position: absolute;
    left: 0;
    top: calc(50% - 50px);
    width: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 25px;
}

.main-sliders .owl-nav i {
    display: flex;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    border-radius: 100%;
}

.main-sliders .owl-nav i:Hover {
    background: var(--primary);
    color: #fff;
}

.main-about {
    margin: 60px 0;
}

.main-about .main-about-wrapper {
    text-align: center;
}


.home-section-header-text {
    font-size: 45px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    text-align: center;
}

.main-about .main-about-wrapper .logo-area {
    position: relative;
    width: 300px;
    max-width: 100%;
    margin: 15px auto;
}

.main-about .main-about-wrapper .logo-area img {
    background: #fff;
    width: 90px;
    padding: 0 20px;
    z-index: 1;
    position: relative;
}

.main-about .main-about-wrapper .logo-area:after {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    width: 100%;
    height: 2px;
    background: #000;
}

.main-about .main-about-wrapper .content {
    max-width: 60%;
    margin: 15px auto 30px auto;
}

.site-btn {
    background: var(--primary);
    color: #fff;
    display: inline-block;
    transition: 300ms;
    padding: 8px 30px;
    font-size: 14px;
    border-radius: 5px;
}

.site-btn:Hover {
    background: var(--gray);
    color: #fff;
}

.main-features {
    padding: 120px 0;
    background-image: url('images/about.webp');
    background-size: cover;
    background-position: center center;
    color: #fff;
}

.main-features .home-section-header-text {
    color: #fff;
    margin-bottom: 60px;
    text-align: center;
}

.main-features .features-container {
    display: flex;
    flex-wrap: wrap;
}

.main-features .features-container .feature-card {
    width: calc(33.3% - 30px);
    margin: 15px;
    display: flex;
    align-items: flex-start;
}


.main-features .features-container .feature-card .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px;
}

.main-features .features-container .feature-card .icon img {
    width: 25px;
    object-fit: contain;
    aspect-ratio: 1;
}

.main-features .features-container .feature-card .text {
    width: calc(100% - 60px);
    padding-left: 20px;
}

.main-features .features-container .feature-card .text .title {
    font-weight: 700;
    margin-bottom: 4px;
}

.main-features .features-container .feature-card .text .description {
    margin: 0;
    font-size: 13px;
}

.main-products .main-products-cover {
    text-align: center;
    margin-bottom: 80px;
}

.main-products .products {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.main-products .product-category {
    margin: 10px 0;
}

.main-products .shadow-big-title {
    font-size: 25px;
}

.main-featured-products {
    margin: 80px 0;
}

@media (min-width: 992px) {
    .main-products .shadow-big-title {
        font-size: 55px;
        margin-bottom: -30px;
        z-index: -1;
        position: relative;
        text-transform: uppercase;
    }
}

.shadow-big-title {
    font-size: 45px;
    text-align: center;
    font-weight: 800;
    opacity: .2;
    margin-bottom: -10px;
}

.main-featured-products .section-header .home-section-header-text {
    margin-bottom: 40px;
}

.main-featured-products .image {
    overflow: hidden;
}

.articles-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.articles-container .article {
    width: calc(33% - 30px);
    margin: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.articles-container .article .image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.articles-container .article .image {
    margin-bottom: 30px;
}

.articles-container .article .date {
    font-size: 14px;
    opacity: .6;
}

.articles-container .article .title {
    display: block;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    transition: 300ms;
    transition: 300ms;
}

.articles-container .article .summary {
    font-size: 14px;
    opacity: .6;
}

.articles-container .article:hover .title {
    color: var(--primary);
}

.main-articles .section-header-title {
    margin-bottom: 20px;
    font-size: 45px;
    font-weight: 700;
}

.main-footer {
    margin-top: 100px;
}

.main-footer .request {
    display: flex;
    justify-content: space-between;
    background: var(--gray);
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    margin-bottom: -120px;
    border-radius: 15px;
}

.main-footer .request > div {
    width: 50%;
    padding: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: Center;
}

.main-footer .request .info .title {
    font-size: 35px;
    line-height: 1.2;
}

.main-footer .request .form:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    transform: skewX(-20deg) translateX(-20px);
}

.main-footer .request .form .form-title {
    font-size: 25px;
    font-weight: 500;
}

.main-footer .request form {
    display: flex;
    justify-content: space-between;
}

.main-footer .request form .inputs {
    width: calc(100% - 200px);
}

.main-footer .request form .button {
    width: 200px;
    padding-left: 10px;
}

.main-footer .request form .button button {
    width: 100%;
    height: 100%;
    background: #de3800;
    transition: 300ms;
    border: 0;
    color: #fff;
    text-transform: uppercase;
}

.main-footer .request form .inputs input {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    border: 0;
    background: #de3800;
    color: #fff;
}

.main-footer .request form .inputs input:last-child {
    margin-top: 10px;
}

.main-footer .request form .inputs input::placeholder {
    color: #fff;
}

.main-footer .request form .button button:Hover {
    background: var(--gray);
}

.main-footer .footer-content {
    background: var(--gray);
    color: #fff;
}

.main-footer .footer-container {
    display: flex;
    justify-content: space-between;
}

.main-footer .footer-container > div {
    width: calc(25% - 4px);
    margin: 0 20px;
}

.main-footer .footer-container .menu-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.main-footer .footer-container .logo .socials {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    font-size: 20px;
    transition: 300ms;
}

.main-footer .footer-container .logo .socials a {
    color: #000;
    transition: 300ms;
    opacity: .6;
}

.main-footer .footer-container .logo .socials a:Hover {
    color: var(--primary);
    opacity: 1;
}

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

.main-footer .footer-container .menu ul a {
    display: block;
    color: #fff;
    transition: 300ms;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px 0;
    opacity: .7;
}

.main-footer .footer-container .menu ul a:Hover {
    opacity: 1;
}

.main-footer .footer-container .menu ul a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-right: 10px;
}

.main-footer .footer-container .contacts > a:not(.phone) {
    display: flex;
    align-items: flex-start;
    color: #fff;
    padding: 10px 0;
    transition: 300ms;
    opacity: .7;
}

.main-footer .footer-container .contacts > a:not(.phone) i {
    width: 30px;
    min-width: 30px;
    margin-top: 5px;
}

.main-footer .footer-container .contacts > a:not(.phone):Hover {
    opacity: 1;
}

.main-footer .footer-container .contacts > .phone {
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.main-footer .footer-container .contacts > .phone > .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: Center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    transition: 300ms;
}

.main-footer .footer-container .contacts > .phone > .content {
    width: calc(100% - 60px);
    padding-left: 15px;
}

.main-footer .footer-container .contacts > .phone > .content p {
    margin: 0;
}

.main-footer .footer-container .contacts > .phone > .content .phone-title {
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.main-footer .footer-container .contacts > .phone > .content .number {
    font-size: 20px;
    color: #fff;
}

.main-footer .footer-container .contacts > .phone:Hover > .icon {
    background: var(--gray);
}

.main-footer .footer-bar {
    text-align: center;
}

.main-footer .footer-bar .bar-container {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 0;
}

.main-header .header-container .menu > ul > li ul {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    list-style: none;
    padding: 5px 5px;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    z-index: 11;
    transition: 300ms;
}

.main-header .header-container .menu > ul > li ul > li > a {
    color: #000;
    white-space: nowrap;
    transition: 300ms;
    padding: 4px 10px;
    border-radius: 3px;
    display: block;
    font-size: 13px;
}

.main-header .header-container .menu > ul > li ul > li > a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-right: 20px;
}

.main-header .header-container .menu > ul > li ul > li:Hover > a {
    background: var(--primary);
    color: #fff;
}

.main-header .header-container .menu > ul > li:hover > ul,
.main-header .header-container .menu > ul > li > ul > li:hover > ul{
    opacity: 1;
    visibility: visible;
}

.main-header .header-container .menu > ul > li > ul > li > ul {
    top: 0;
    left: 100%;
    box-shadow: 30px 0 30px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #eee;
}

.main-header .header-container .menu > ul > li > ul > li {
    position: relative;
}

.main-footer .footer-bar .bar-container p {
    margin: 0;
    text-align: center;
    width: 100%;
    font-size: 14px;
    opacity: .6;
    font-weight: 400;
}

.main-footer .footer-bar .bar-container p > a {
    color: #fff;
}

footer.main-footer .footer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 60px;
}

footer.main-footer .footer-bar-content .logo {
    max-width: 150px;
}

footer.main-footer .footer-bar-content > div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
}

footer.main-footer .footer-bar-content > div .title {
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    opacity: .7;
}

footer.main-footer .footer-bar-content > div .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-size: 25px;
}

footer.main-footer .footer-bar-content > div .socials a {
    color: #fff;
    opacity: .6;
    transition: 300ms;
}

footer.main-footer .footer-bar-content > div .socials a:Hover {
    opacity: 1;
}

.main-footer .footer-container > div:first-child {
    margin-left: 0;
}

.main-footer .footer-container > div:last-child {
    margin-right: 0;
}

.breadcrumb {
    padding: 180px 0 40px 0;
    margin-bottom: 100px;
    background-image: url('images/about.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.breadcrumb .breadcrumb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumb .breadcrumb-container .title {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
}

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

.breadcrumb .breadcrumb-container ul > li > a {
    color: #fff;
    font-size: 14px;
    transition: 300ms;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb .breadcrumb-container ul > li:not(:last-child):after {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    margin: 0 10px;
    color: #fff;
    font-weight: lighter;
}

.breadcrumb .breadcrumb-container ul > li > a:Hover {
    color: var(--primary);
}

.page-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.page-container > .content {
    width: calc(100% - 350px);
    padding-right: 30px;
    font-size: 20px;
}

.page-container > .sidebar {
    width: 350px;
    background: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
    position: sticky;
    top: 140px;
    transition: 300ms;
}

.page-container > .sidebar .menu-title {
    width: 100%;
    display: block;
    background: var(--primary);
    color: #fff;
    padding: 15px;
    font-size: 20px;
    border-radius: 6px;
}

.page-container > .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-container > .sidebar ul a {
    display: block;
    color: #000;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 300ms;
    padding: 10px 0 10px 10px;
    border-radius: 8px;
}

.page-container > .sidebar ul .active a{
    background-color: var(--primary);
    color: #fff !important;
}

.page-container > .sidebar ul a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 10px;
}

.page-container > .sidebar ul a:Hover {
    color: var(--primary);
}

.images-container {
    display: flex;
    flex-wrap: wrap;
}

.images-container > .image {
    width: calc(25% - 30px);
    margin: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.images-container > .image:Hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.images-container > .image img {
    transition: 300ms;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.contacts-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.contacts-details > div {
    width: 50%;
}

.contacts-details .info p:first-child {
    font-size: 25px;
}

.contacts-details .info p a {
    display: block;
    font-size: 20px;
    color: #000;
    transition: 300ms;
    font-weight: 500;
}

.contacts-details .info p a:Hover {
    color: var(--primary);
}

.contacts-details .info .socials nav {
    display: flex;
    font-size: 25px;
    column-gap: 30px;
    margin-top: 20px;
}

.contacts-details .info .socials nav a {
    color: #000;
    transition: 300ms;
    opacity: .3;
}

.contacts-details .info .socials nav a:hover{
    color: var(--primary);
    opacity: 1;
}

.contacts-details .info .socials .title {
    font-weight: 500;
    color: var(--primary);
    margin-top: 30px;
    display: block;
    font-size: 22px;
}

.contacts-details .form .branch-title {
    font-size: 25px;
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}

.contacts-details .form input,
.contacts-details .form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 0;
    background: #efefef;
}

.contacts-details .form button {
    background: var(--primary);
    border-radius: 5px;
    color: #fff;
    padding: 10px 30px;
    border: 0;
    transition: 300ms;
}

.contacts-details .form button:Hover {
    background: var(--gray);
}

.contacts-map iframe {
    width: 100%;
    margin-top: 50px;
    height: 600px;
    border-radius: 15px;
}

.page-container .page-image {
    margin-bottom: 20px;
}

.page-container .page-image img {
    border-radius: 10px;
}

.product-details .gallery img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 15px;
    transition: 1200ms;
}

.product-details .header {
    padding: 30px 0;
}

.product-details .gallery {
    position: relative;
}

.product-details .gallery .owl-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    padding: 15px;
    border-radius: 0 10px 0 0;
    column-gap: 10px;
}

.product-details .gallery .owl-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 100%;
    opacity: .6;
    transition: 300ms;
}

.product-details .gallery .owl-dot.active {
    opacity: 1;
    background: var(--primary);
}

.products-menu-container {
    position: relative;
}

.products-menu {
    position: absolute;
    left: 0;
    top: 1005;
    min-width: 100%;
    opacity: 0;
    transition: 300ms;
    visibility: hidden;
    z-index: 99;
}

.products-menu-container:Hover .products-menu {
    opacity: 1;
    visibility: visible;
}

.products-menu-content {
    position: relative;
    display: flex;
    z-index: 99;
    transition: 300ms;
    padding: 70px 20px 20px 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.products-menu-content:before {
    content: '';
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    height: calc(100% - 20px);
    z-index: -1;
    border-radius: 10px;
}

.products-menu-content > div {
    width: 100%;
    margin: 15px;
}

.products-menu-content > div:not(:first-child) {
    display: none !important;
}

.products-menu-content > div > .header {
    background: var(--gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    border-radius: 20px;
    transition: 300ms;
}

.products-menu-content > div:Hover > .header {
    box-shadow: 0 0 30px var(--gray);
}

.products-menu-content > div > .header .category-title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}

.products-menu-content > div > .products {
    margin-top: 20px;
}

.products-menu-content > div > .products a {
    color: #fff;
    display: inline-flex;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 300ms;
    padding: 5px 5px 5px 0;
    width: 100%;
}

.products-menu-content > div > .products a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 10px;
}

.products-menu-content > div > .products a:Hover {
    opacity: .5;
}

.products-menu-content > div > .header img {
    height: 35px;
}

.footer-buttons {
    display: none;
}

.main-sliders .slider-item {
    position: relative;
}

.main-sliders .slider-item .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 50px 50px 150px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.main-sliders .slider-item .content .content-box {
    width: 50%;
    color: #fff;
}

.main-sliders .slider-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.main-sliders .owl-dots {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    counter-reset: dot-counter;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.main-sliders .owl-dots .owl-dot {
    display: block;
    width: 70px;
    height: 50px;
    counter-increment: dot-counter;
    position: relative;
    text-align: right;
    font-size: 20px;
    opacity: .5;
    transition: 300ms;
}

.main-sliders .owl-dots .owl-dot:after {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - .5px);
    width: 40px;
    background: #fff;
    height: 1px;
}

.main-sliders .owl-dots .owl-dot:before {
    color: #fff;
    content: "0" counter(dot-counter);
    display: inline-block;
    transition: 300ms;
}

.main-sliders .owl-dots .owl-dot.active {
    opacity: 1;
    width: 120px;
}

.main-sliders .owl-dots .owl-dot.active:after {
    width: 90px;
}

.main-sliders .owl-dots .owl-dot.active:before {
    transform: scale(1.2);
}

.main-sliders .slider-item .content .title {
    font-size: 45px;
    font-weight: 600;
}

.main-sliders .slider-item .content .description {
    margin: 0;
    font-size: 14px;
}

.main-sliders .slider-item .content > a {
    display: inline-block;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    font-size: 14px;
    color: #000;
    transition: 300ms;
}

.main-sliders .slider-item > .content > a:Hover {
    background: var(--primary);
    color: #fff;
}

.main-products .main-products-cover img {
    max-width: 600px;
}

.main-product-categories {
    position: relative;
    transform: translateY(-50%);
    z-index: 1;
}

.main-product-categories .categories-bar {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.main-product-categories .categories-bar .category {
    background: var(--primary);
    color: #fff;
    padding: 10px;
    aspect-ratio: 1;
    text-align: center;
    transition: 300ms;
}

.main-product-categories .categories-bar .category img {
    width: 70%;
}

.main-product-categories .categories-bar .category .title {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 300ms;
}

.main-product-categories .categories-bar .category:Hover {
    background: #8a8a8a;
}

.main-featured-products {
    position: relative;
}

.main-featured-products .owl-nav {
    position: absolute;
    right: 0;
    top: -104px;
    display: flex;
    gap: 10px;
}

.main-featured-products .owl-nav button i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    border-radius: 5px;
    transition: 300ms;
}

.main-featured-products .section-header .view-all-btn:Hover,
.main-featured-products .owl-nav button i:hover {
    background: var(--primary);
    color: #fff;
}

.main-quality {
    min-height: 70vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    position: relative;
    background-position: center center;
    z-index: 1;
    color: #fff;
    margin: 120px 0;
}

.main-quality:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.main-quality .content {
    width: 50%;
    text-align: center;
}

.main-quality .content > h2 {
    font-size: 45px;
}

.main-quality .content > p {
    font-size: 14px;
    margin: 30px 0;
}

.main-quality .read-more-btn {
    background: #fff;
    color: #000;
    padding: 10px 30px;
    display: inline-block;
    font-weight: 500;
    transition: 300ms;
}

.main-quality .read-more-btn:Hover {
    background: var(--primary);
    color: #fff;
}

.main-production {
    margin: 120px 0;
    overflow: hidden;
}

.main-production h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
}

.main-production .gallery {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.main-production .gallery a {
    width: calc(25% - 30px);
    margin: 15px;
    display: block;
    overflow: hidden;
}

.main-production .gallery a img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 300ms;
}

.main-production .gallery a:hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.page .main-product-categories {
    margin-top: 120px;
    transform: translateX(0);
}

.page .main-product-categories .category {
    width: calc(20% - 20px);
    margin: 10px;
}

.page .main-product-categories .categories-bar {
    flex-wrap: wrap;
    gap: 0;
}

.page .main-featured-products {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.page .main-featured-products .item {
    width: calc(33% - 30px);
    margin: 15px;
}

a.product-item {
    position: relative;
    display: block;
    border: 1px solid #eee;
    transition: 300ms;
    border-radius: 10px;
    padding: 30px 15px;
    text-align: center;
    color: #000;
}

a.product-item .image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    transition: 300ms;
    margin-bottom: 20px;
}

a.product-item .content .code {
    font-size: 13px;
    color: var(--primary);
    margin: 0;
}

a.product-item .content .title {
    font-weight: 600;
    margin-bottom: 5px;
}

a.product-item .content .category {
    margin: 0;
    font-size: 12px;
}

a.product-item:Hover {
    border-color: #ddd;
}

a.product-item:hover .image img {
    transform: scale(1.1);
}

.main-references {
    margin: 120px 0;
}

.main-references .section-header {
    margin-bottom: 40px;
}

.main-references .references-slider img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    max-width: 150px;
    display: inline-block;
    border-radius: 10px;
    transition: 300ms;
    filter: grayscale(100%);
}

.main-references .references-slider .logo-content {
    border: 1px solid #eee;
    text-align: center;
    padding: 30px;
}

.main-references .references-slider .logo-content:hover img {
    filter: grayscale(0);
}

.main-references .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.main-references .owl-dots .owl-dot {
    width: 40px;
    height: 5px;
    background: #ddd;
    transition: 300ms;
    border-radius: 5px;
}

.main-references .owl-dots .owl-dot.active {
    width: 80px;
    background: var(--primary);
}

.search-form-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 300ms;
    width: 0;
    overflow: hidden;
    left: 50%;
}

.search-form-wrapper .close-btn {
    position: absolute;
    right: 30px;
    top: 30px;
    background: var(--primary);
    width: 50px;
    height: 50px;
    color: #fff;
    border: 0;
    border-radius: 8px;
    transition: 300ms;
}

.search-form-wrapper .close-btn:Hover {
    background: #000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.search-form-wrapper form .title {
    font-size: 25px;
    white-space: nowrap;
}

.search-form-wrapper .search-input-content {
    display: flex;
    font-size: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 20px;
    background: #fff;
}

.search-form-wrapper .search-input-content input {
    border: 0;
    background: transparent;
    min-width: 30vw;
}

.search-form-wrapper .search-input-content button {
    background: transparent;
    border: 0;
}

body.search-open .search-form-wrapper {
    left: 0;
    width: 100%;
}

section.page[data-id="6"] .images-container a{
    border: 1px solid #eee;
    display: block;
    padding: 15px;
}

section.page[data-id="6"] .images-container img {
    object-fit: contain;
}

.main-products-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.main-products-content > .sidebar{
    width: 350px;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 350px;
    padding-right: 30px;
}

.main-products-content > .sidebar > div{
    margin-bottom: 30px;
}

.main-products-content > .sidebar > div h2{
    font-size: 20px;
    font-weight: 500;
}

.main-products-content > .sidebar .filter-form .filter-item{
    margin-bottom: 10px;
}

.main-products-content > .sidebar .filter-form label{
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666666;
    margin-bottom: 2px;
}

.main-products-content > .sidebar .filter-form select{
    width: 100%;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 5px;
}

.main-products-content > .sidebar .filter-form button{
    width: 100%;
    border-radius: 5px;
    padding: 10px 0;
    border: 0;
    background: #eee;
    font-weight: 500;
    color: #646464;
    transition: 300ms;
}

.main-products-content > .sidebar .filter-form button:Hover{
    background: var(--primary);
    color: #fff;
}

.main-products-content > .sidebar ul.menu{
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.main-products-content > .sidebar ul.menu li > a:Before{
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    display: inline-flex;
    align-items: center;
    height: 25px;
    background:#eee;
    width: 25px;
    min-width: 25px;
    justify-content: center;
    border-radius: 100%;
    color: #afafaf;
}

.main-products-content > .sidebar ul.menu li.active > a:Before{
    background: var(--primary);
    color: #fff;
}

.main-products-content > .sidebar ul.menu li > a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    white-space: nowrap;
    padding:5px;
    color: #000;
    font-weight: 500;
    color: #797979;
    font-size: 18px;
    transition: 300ms;
}

.main-products-content > .sidebar ul.menu li.active a,
.main-products-content > .sidebar ul.menu li:Hover > a{
    color: var(--primary);
}

.main-products-content > .content{
    width: calc(100% - 350px);
    padding-left: 30px;
}

.products-container{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: wrap;
}

.products-container .product-item{
    width: calc(33.3% - 30px);
    margin: 15px;
}

.page-link:focus {box-shadow: none;}

.page-item.active .page-link {
    background: var(--primary);
}

.page-link {
    color: #000;
    border-color: #ddd !important;
    font-weight: 500;
    background: #fff;
}

.page-link:hover{
    color: #000;
}

.main-products-content > .sidebar > .search-form  .search-input-content{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
}

.main-products-content > .sidebar > .search-form  .search-input-content input{
    width: 100%;
    border: 0;
    background: transparent;
}

.main-products-content > .sidebar > .search-form  .search-input-content button{
    width: 30px;
    height: 30px;
    background: #eee;
    border: 0;
    border-radius: 5px;
    color: #797979;
    transition: 300ms;
}

.main-products-content > .sidebar > .search-form  .search-input-content button:Hover{
    background: var(--primary);
    color: #fff;
}

.products-details-page {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.products-details-page  > .gallery{
    width: 40%;
    position: sticky;
    top: 90px;
}

.products-details-page  > .content{
    width: 60%;
    padding: 60px;
}

.products-details-page  > .content .header h2{
    font-size: 25px;
    font-weight: 700;
}

.products-details-page  > .content .header .product-code{
    margin: 0;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    background: #eee;
    font-weight: 600;
    color: #646464;
}

.products-details-page > .content .header .actions {
    display: flex;
    margin-top: 20px;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.products-details-page > .content .header .actions .wp{
    background: #25d366;
    color: #fff;
    transition: 300ms;
    font-size: 14px;
    border-radius: 5px;
}

.products-details-page > .content .header .actions .wp:Hover{
    background: #075e54;
}

.products-details-page > .content .header .actions > a{
    padding: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.products-details-page > .content .header .actions > a > i {
    font-size: 18px;
    font-weight: lighter;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
}

.product-details table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.product-details table td{
    padding: 10px;
    border: 1px solid #eee;
}

.product-details table th{
    background: var(--primary);
    padding: 10px;
    color: #fff;
    border: 1px solid #fff;
}

.products-details-page > .gallery .cover img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    margin-bottom: 40px;
}

.products-details-page .thumbnails {
    position: relative;
    width: 100%;
    padding: 0 50px;
}


.products-details-page  .thumbnails .owl-nav i{
    position: absolute;
    width: 40px;
    height: 40px;
    background: #fff;
    top: calc(50% - 20px);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .7;
    transition: 300ms;
    border: 1px solid #eee;
}

.products-details-page  .thumbnails .owl-nav .owl-prev i{
    left:-50px;
}

.products-details-page  .thumbnails .owl-nav .owl-next i{
    right: -50px;
}

.products-details-page  .thumbnails .owl-nav i:hover{
    background: var(--primary);
    color: #fff;
    opacity: 1;
}

.products-details-page .thumbnails img{
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 5px;
    filter: grayscale(100%);
    cursor: pointer;
    opacity: .6;
}

.products-details-page .thumbnails img:Hover,
.products-details-page .thumbnails img.active{
    opacity: 1;
    filter: grayscale(0);
    border-color: var(--primary);
}

.breadcrumb .breadcrumb-container ul li {
    display: flex;
    align-items: center;
}

.main-products-content > .sidebar .sidebar-header .toggle-sidebar{
    display: none;
}

.main-video video {
    width: 100%;
    object-fit: cover;
}

.technical-table a.download {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 300ms;
}

.technical-table a.download:hover{
    background: var(--primary);
    color: #fff;
}

.technical-table a.download > i {
    margin-right: 5px;
}

.technical-table.has-multiple-type .type{
    display: inline-block;
    margin: 3px;
}

.technical-table .type{
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    background: #eee;
    padding: 6px 12px;
    border-radius: 5px;
}

.personals {
    display: flex;
    margin: 120px 0;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: wrap;
}

.personals .personal{
    width: calc(25% - 30px);
    border: 1px solid #eee;
    border-radius: 15px;
    margin: 15px;
    padding: 15px;
}

.personals .personal .avatar {
    max-width: 70%;
    margin: auto;
}

.personals .personal .avatar img{
    width: 100%;
    object-fit:contain;
}

.personals .personal .header{
    display: flex;
    margin: 15px 0;
    gap: 10px;
}


.personals .personal .header i{
    font-weight: lighter;
    font-size: 18px;
    color: #b1b1b1;
    margin-top: 2px;
}

.personals .personal .header .name{
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.personals .personal .header .degree{
    font-size: 14px;
    color: #696969;
    margin: 0;
}

.personals .personal .email,
.personals .personal .phone{
    display: block;
    margin: 8px 0;
    font-size: 14px;
    color: #000;
    color: #5c5c5c;
    transition: 300ms;
}

.personals .personal .email i,
.personals .personal .phone i{
    font-weight: lighter;
    margin-right: 8px;
}

.personals .personal .email:Hover,
.personals .personal .phone:Hover{
    color: var(--primary);
}

.general-documents-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.general-documents-container > .document {
    width: calc(33.3% - 30px);
    margin: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: 300ms;
}

.general-documents-container > .document  .image {
    overflow: hidden;
}

.general-documents-container > .document  .image img{
    width:100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    transition: 300ms;
}

.general-documents-container > .document .doc-content{
    padding: 15px;
}

.general-documents-container > .document .doc-content .title{
    font-size: 18px;
    color: #000;
    font-weight: 600;
    transition: 300ms;
    display: block;
    margin-bottom: 10px;
}

.general-documents-container > .document .doc-content .meta{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}

.general-documents-container > .document .doc-content .meta li{
    padding: 4px 8px;
    background: #eee;
    border-radius: 5px;
}

.general-documents-container > .document .doc-content .meta li:last-child{
    text-transform: uppercase;
}

.general-documents-container > .document:hover > .image img{
    transform: scale(1.1);
    filter:brightness(50%);
}

.general-documents-container > .document .title:Hover{
    color:var(--primary);
}

.sub-product-categories {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: wrap;
}

.sub-product-categories > a {
    margin: 15px;
    width: calc(33.3% - 30px);
    text-align: center;
    font-weight: 500;
    color: #000;
    transition: 300ms;
    border-radius: 8px;
}

.sub-product-categories > a img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 5px;
    transition: 300ms;
    display: block;
}

.sub-product-categories > a:Hover img{
    border: 1px solid #ddd;
}

@media (max-width: 992px) {
    .main-header .bar-container .contacts {
        display: none;
    }

    .main-header .header-container .menu > ul {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: calc(100% - 136px);
        flex-direction: column;
        background: #fff;
        justify-content: center;
        row-gap: 20px;
        visibility: hidden;
        opacity: 0;
        transition: 300ms;
        z-index: 999;
        text-align: left;
        align-items: flex-start;
        padding-left: 20px;
        display: none;
    }

    .toggle-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        transition: 300ms;
        padding: 10px;
        color: #000
    }

    .main-header .header-container .menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .large-container {
        padding: 0 10px;
    }

    .main-sliders img {
        width: 100%;
        height: 70vh;
    }

    .shadow-big-title {
        font-size: 25px;
        margin-bottom: 0;
    }

    .main-products .products > .product {
        width: calc(50% - 20px) !important;
        margin: 10px;
    }

    .articles-container .article {
        width: 100%;
        margin: 15px 0;
    }

    .main-footer .request {
        flex-direction: column;
    }

    .main-footer .request > div {
        width: 100%;
        padding: 30px;
    }

    .main-footer .request .form:after {
        transform: skewX(0) translateX(0);
        width: calc(100% - 20px);
        left: 10px;
        height: calc(100% - 10px);
        border-radius: 5px;
    }

    .main-footer .footer-container {
        flex-direction: column;
        row-gap: 30px;
    }

    .main-footer .footer-container > div {
        width: 100%;
        margin: 0;
    }

    .main-footer .footer-container .logo img {
        width: 250px;
    }

    .main-footer .footer-bar .bar-container {
        flex-direction: column;
        row-gap: 20px;
        text-align: center;
    }

    .open-menu .main-header .header-container .menu > ul {
        visibility: visible;
        opacity: 1;
        display: flex;
        padding-top: 0;
        height: calc(100% - 109px);
        align-items: flex-start;
        justify-content: flex-start;
        padding: 50px 50px 80px 50px;
        overflow: auto;
    }

    .main-header .header-container .menu > ul > li > a {
        color: #000;
        padding: 5px 0;
    }

    .open-menu .toggle-menu > i:before {
        content: '\f00d';
    }

    .main-header .header-container .menu > ul > li > ul {
        position: static;
        visibility: visible;
        box-shadow: none;
        opacity: .6;
    }

    .main-header .header-container .menu > ul > li {
        text-align: left;
    }

    .products-menu {
        display: none;
    }

    .main-header .header-container .menu > ul > li > ul > li > a:before {
        margin-right: 5px;
    }

    .main-header .header-container .menu > ul > li > ul > li > a {
        padding: 10px;
    }

    .main-footer .request form {
        flex-direction: column;
    }

    .main-footer .request form .inputs {
        width: 100%;
    }

    .main-footer .request form .button {
        width: 100%;
        padding-left: 0;
        margin-top: 10px;
    }

    .main-footer .request form .button button {
        padding: 15px 0;
    }

    .breadcrumb .breadcrumb-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb .breadcrumb-container .title {
        font-size: 16px;
    }

    .breadcrumb .breadcrumb-container ul {
        font-size: 11px;
        overflow: auto;
    }

    .breadcrumb .breadcrumb-container ul > li > a {
        font-size: 11px;
    }

    .breadcrumb {
        margin-bottom: 30px;
        padding-top: 170px;
    }

    .page-container {
        flex-direction: column;
        row-gap: 30px;
    }

    .page-container > .content {
        width: 100%;
        padding-right: 0;
        font-size: 16px;
    }

    .page-container > .sidebar {
        width: 100%;
    }

    .images-container > .image {
        width: calc(50% - 30px);
    }

    .contacts-details {
        flex-direction: column;
        row-gap: 30px;
        margin-bottom: 30px;
    }

    .contacts-details > div {
        width: 100%;
    }

    .main-products .products > .product .image img {
        height: 30px;
    }

    .main-products .products > .product .content {
        font-size: 14px;
    }

    .products.layout-3-2 .product:nth-child(-n+3),
    .products.layout-3 .product:nth-child(-n+3) {
        width: calc(33% - 20px);
    }

    .products.layout-3-2 .product:nth-child(-n+3) .image,
    .products.layout-3 .product:nth-child(-n+3) .image {
        height: 80px;
    }

    .products.layout-3-2 .product:nth-child(-n+3) .image img,
    .products.layout-3 .product:nth-child(-n+3) .image img {
        height: 20px;
    }

    .main-footer {
        margin-top: 50px;
    }

    .main-footer .request .info .title {
        font-size: 20px;
    }

    .main-footer .request .info .description {
        font-size: 14px;
    }

    .main-footer .footer-content {
        padding-top: 180px;
    }

    .footer-buttons {
        position: fixed;
        display: flex;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 99;
        background: #fff;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    }

    .footer-buttons > div {
        flex: 1;
        border-right: 1px solid #eee;
    }

    .footer-buttons > div a {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        justify-content: center;
        font-size: 14px;
        color: #000;
        padding: 10px 0 5px 0;
        row-gap: 5px;
    }

    .footer-buttons > div a i {
        color: var(--primary);
    }

    .footer-buttons > div:last-child {
        border: 0;
    }

    .product-details .gallery img {
        height: unset;
        aspect-ratio: 16 / 9;
    }

    .product-details .header h2 {
        font-size: 22px;
    }

    .product-details .body {
        font-size: 16px;
    }

    .main-sliders .slider-item > .content {
        display: flex;
        align-items: flex-end;
        padding: 10px;
        justify-content: space-between;
    }

    .main-sliders .slider-item > .content > .title {
        font-size: 14px;
        margin: 0;
    }

    .main-sliders .owl-nav {
        padding: 0;
    }

    .main-products .products > .product .image {
        height: 60px;
    }

    .main-products .main-products-cover img {
        width: 100%;
    }

    .main-sliders .slider-item > .content {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        row-gap: 5px;
    }

    .main-sliders .slider-item > .content > a {
        padding: 2px;
        background: var(--primary);
        color: #fff;
        font-size: 10px;
    }

    .main-sliders .owl-dots {
        display: none;
    }

    .main-sliders .slider-item .content .content-box {
        width: 100%;
    }

    .main-sliders .slider-item .content .title {
        font-size: 25px;
    }

    .main-product-categories .categories-bar {
        overflow: auto;
    }

    .main-product-categories .categories-bar .category {
        min-width: 20%;
    }

    .main-quality .content {
        width: 70%;
    }

    body.open-menu {
        overflow: hidden;
    }

    body.open-menu .footer-buttons {
        display: none;
    }

    .fixed-bar .main-header {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
    }

    .page .main-featured-products .item {
        width: 100%;
    }

    .page .main-product-categories {
        margin-top: 30px;
    }

    .main-product-categories .categories-bar .category {
        width: calc(33.3% - 20px);
    }

    .main-footer .map {
        margin-bottom: 0;
    }

    .main-footer .footer-content {
        padding-top: 0;
    }

    .main-footer .footer-bar {
        margin-bottom: 50px;
    }

    .main-about .main-about-wrapper .content {
        max-width: 100%;
    }

    .main-features .features-container .feature-card {
        width: 100%;
        margin: 15px 0;
    }

    .main-references .owl-dots .owl-dot.active {
        width: 60px;
    }

    .main-products-content {
        flex-direction: column;
    }

    .main-products-content > .sidebar {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        position: static;
        max-height: 40px;
        overflow: hidden;
    }

    .main-products-content > .sidebar ul.menu li > a {
        font-size: 16px;
    }

    .main-products-content > .sidebar ul.menu li > a:Before {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .main-products-content > .content {
        width: 100%;
        padding-left: 0;
    }

    .products-container {
        margin-left: 0;
        margin-inline: 0;
    }

    .products-container .product-item {
        width: 100%;
        margin: 15px 0;
    }

    .main-products-content > .sidebar .sidebar-header .toggle-sidebar{
        display: block;
        width: 100%;
        border: 0;
        padding: 10px 0;
        font-size: 13px;
        color: #3f3f3f;
        font-weight: 500;
        text-transform: uppercase;
        border-radius: 10px;
        transition: 300ms;
    }

    .open-filter-sidebar .main-products-content > .sidebar {
        max-height: 10000vh;
    }

    .open-filter-sidebar .main-products-content > .sidebar .sidebar-header .toggle-sidebar{
        background: var(--primary);
        color: #fff;
    }
    
    .products-details-page {
        flex-direction: column;
    }
    
    .products-details-page > .gallery {
        position: static;
        width: 100%;
    }
    
    .products-details-page > .content {
        width: 100%;
        padding: 0;
    }
    
    footer.main-footer .footer-bar-content > div .title {
        display: none;
    }
    
    footer.main-footer .footer-bar-content .logo {
        max-width: 70px;
    }
    
    footer.main-footer .footer-bar-content > div .socials a {
        font-size: 14px;
    }
    
    .products-details-page .thumbnails {
        padding: 0;
    }
    
    .main-video video {
        height: 40vh;
    }
    
    .personals {
        margin: 30px 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .personals .personal {
        width: 100%;
        margin: 15px 0;
    }
    
    .general-documents-container{
        margin-left: 0;
        margin-right: 0;
    }
    
    .general-documents-container > .document{
        width: 100%;
        margin: 10px;
    }
    
    .main-header .header-container .menu > ul > li > ul > li > ul{
        display: none;
    }
}
