:root {
    --red: #040383;
    --dark-red: #0071a8;
}

* {
    font-family: 'Mulish', 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;
    height: 120px;
}

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

.main-header .header-wrapper .logo {
    width: 320px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    padding: 30px 0;
}

.main-header .header-wrapper .logo img {
    width: 300px;
    transition: 300ms;
}

.main-header .header-wrapper .header-content {
    width: calc(100% - 330px);
    padding-left: 20px;
}

.main-header .header-wrapper .header-content .bar {
    display: flex;
    align-items: center;
    height: 50px;
    transition: 300ms;
}

.main-header .header-wrapper .header-content .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.main-header .header-wrapper .header-content .menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: -8px;
    gap: 5px;
}

.main-header .header-wrapper .header-content .menu > ul > li > a {
    display: block;
    color: #000;
    font-weight: 700;
    transition: 300ms;
    padding: 16px 16px;
    border-radius: 8px;
}

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

.main-header .header-wrapper .header-content .menu > ul > li:hover > a {
    background: var(--red);
    color: #fff;
}

.main-header .header-wrapper .header-content .menu > ul > li > ul {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    min-width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--red);
    transition: 300ms;
    transform: translateX(-10px);
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
}

.main-header .header-wrapper .header-content .menu > ul > li:Hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.main-header .header-wrapper .header-content .menu > ul > li > ul > li > a {
    display: block;
    white-space: nowrap;
    color: #fff;
    padding: 10px;
    transition: 300ms;
    font-size: 14px;
    border-bottom: 1px solid var(--dark-red);
}

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

.main-header .header-wrapper .header-content .menu > ul > li > ul > li:Hover > a {
    background: var(--dark-red);
}

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

.main-header .header-wrapper .header-content .menu > ul > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--red);
    transition: 300ms;
    transform: translateX(-10px);
    opacity: 0;
    visibility: hidden;
}

.main-header .header-wrapper .header-content .menu > ul > li > ul > li:Hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    border-radius: 0 5px 5px 0;
}

.main-header .header-wrapper .header-content .menu > ul > li > ul > li > ul > li > a {
    display: block;
    white-space: nowrap;
    color: #fff;
    padding: 10px;
    transition: 300ms;
    font-size: 14px;
    border-bottom: 1px solid var(--dark-red);
}

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

.main-header .header-wrapper .header-content .menu > ul > li > ul > li > ul > li:Hover > a {
    background: var(--dark-red);
}

.main-header .header-wrapper .bar a {
    color: #fff;
    font-size: 14px;
    transition: 300ms;
    display: block;
    margin: 0 5px;
    padding: 5px;
    border-radius: 4px;
}

.main-header .header-wrapper .bar a:Hover {
    background: #fff;
    color: var(--red);
}

.main-header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    z-index: -1;
    background: var(--red);
    width: 100%;
    transition: 300ms;
}

.main-header .header-wrapper .bar form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 20px;
}

.main-header .header-wrapper .bar form input {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.main-header .header-wrapper .bar form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.main-header .header-wrapper .bar form button {
    background: transparent;
    border: 0;
    color: #fff;
    transition: 300ms;
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 4px;
}

.main-header .header-wrapper .bar form button:Hover {
    background: #fff;
    color: var(--red);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.main-header .header-wrapper .logo {
    background: transparent;
    padding: 0;
    box-shadow: none;
    height: 70px;
    margin-top: 50px;
}

.main-header .header-wrapper .logo img{
    width: 250px;
}

.fixed-bar .main-header .header-wrapper .logo {
    margin-top: 0;
}

.fixed-bar .main-header .header-wrapper .logo img {
    width: 250px;
}

.card-toggle-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    border: 0;
    padding: 10px 15px;
    color: #fff;
    border-radius: 10px;
    transition: 300ms;
}

.card-toggle-button i {
    display: flex;
    width: 30px;
    height: 30px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    background: var(--dark-red);
    transition: 300ms;
    margin-right: 10px;
    border-radius: 5px;
    font-weight: lighter;
    transition: 300ms;
}

.card-toggle-button:Hover i {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, .8);
    color: var(--red);
    transform: scale(1.2);
}

.fixed-bar .main-header .header-wrapper .header-content .bar {
    margin-top: -50px;
}

.fixed-bar .main-header:before {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    height: 100%;
}

.fixed-bar .main-header {
    height: 70px;
}

.main-header .header-wrapper .logo a {
    display: block;
}

.fixed-bar .main-header .header-wrapper .logo img {
    width: 200px;
}

.main-sliders {
    margin-top: 120px;
}

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

.main-sliders img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px 0 30px 30px;
}

.main-sliders .slider .slider-actions {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    padding: 0 0 30px 50px;
    display: flex;
    align-items: centeR;
    justify-content: flex-start;
    column-gap: 30px;
}

.main-sliders .slider .slider-actions .counter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-sliders .slider .slider-actions .counter .active {
    font-size: 55px;
    font-weight: bolder;
    color: #fff;
    transition: 300ms;
}

.main-sliders .slider .slider-actions .counter .total {
    color: #fff;
    font-weight: lighter;
    font-size: 38px;
    opacity: .6;
    display: flex;
    align-items: center;
}

.main-sliders .slider .slider-actions .counter .total:Before {
    content: '/';
    font-size: 35px;
    margin: 0 8px;
}

.main-sliders .slider .slider-actions .navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.main-sliders .slider .slider-actions .navigation button {
    background: transparent;
    border: 0;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    transition: 300ms;
}

.main-sliders .slider .slider-actions .navigation button:hover {
    background: var(--red);
    color: #fff;
    box-shadow: 0 0 30px var(--red);
}

.main-about {
    margin: 50px 0 120px;
}

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

.main-about .about-container > .text {
    width: calc(100% - 530px);
    padding-right: 40px;
}

.main-about .about-container > .home-boxes {
    width: 530px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 30px;
    margin-top: -120px;
    position: relative;
    z-index: 1;
}

.main-about .about-container > .home-boxes .box {
    width: calc(50% - 30px);
    background: #FBFBFB;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    height: 245px;
}

.main-about .about-container > .home-boxes .box .icon {
    display: flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    font-size: 35px;
}

.main-about .about-container > .home-boxes .box .icon i {
    font-weight: lighter;
}

.main-about .about-container > .home-boxes .box .count {
    font-size: 35px;
    margin: 10px 0 0px;
    display: inline-block;
    position: relative;
}

.main-about .about-container > .home-boxes .box .count:Before {
    content: '+';
}

.main-about .about-container > .home-boxes .box:nth-child(2) .count:after,
.main-about .about-container > .home-boxes .box:nth-child(4) .count:after {
    content: 'm2';
    position: absolute;
    right: -25px;
    top: 8px;
    font-size: 14px;
}

.main-about .about-container > .home-boxes .box .title {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .6;
}

.main-about .about-container > .home-boxes .box:nth-child(2),
.main-about .about-container > .home-boxes .box:nth-child(4) {
    margin-top: -50px;
}


.section-header {
    position: relative;
}

.section-header .title:before {
    content: '';
    width: 250px;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0;
    bottom: 0;
}

.section-header .title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 1px;
    background: var(--red);
    z-index: 1;
}

.section-header .title {
    font-size: 25px;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
}

.main-about .about-container .text-body {
    font-size: 14px;
}

.main-about .about-container .text-body p {
    color: #8b8b8b;
}

.site-btn {
    background: var(--red);
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    transition: 300ms;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 14px;
    border: 0;
}

.site-btn i {
    margin-left: 15px;
}

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

.main-about .about-container .clients {
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    border: 1px solid #dddd;
}

.main-about .about-container .clients header {
    width: 200px;
}

.main-about .about-container .clients header .title {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.main-about .about-container .clients header span {
    font-size: 18px;

}

.main-about .about-container .clients .slider {
    width: calc(100% - 200px);
}

.main-about .about-container .clients .slider img {
    filter: grayscale(1);
    opacity: .8;
}

.site-link {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    color: #8e8e8e;
    font-weight: 600;
    transition: 300ms;
}

.site-link i {
    margin-left: 10px;
    font-weight: lighter;
}

.site-link:Hover {
    color: var(--red);
}

.section-header.with-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.categories-container .category {
    width: calc(20% - 30px);
    margin: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

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

.categories-container .category .title {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: calc(100% - 60px);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    padding: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    border-radius: 15px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    transition: 300ms;
    z-index: 1;
}

.categories-container .category:Hover .cover {
    transform: scale(1.1);
}

.categories-container .category:Hover .title {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

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

.section-header .slider-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
}

.section-header .slider-nav button {
    width: 40px;
    height: 40px;
    border: 0;
    background: var(--red);
    color: #fff;
    border-radius: 5px;
    transition: 300ms;
    font-size: 14px;
}

.section-header .slider-nav button:Hover {
    background: var(--dark-red);
}


.product {
    position: relative;
    transition: 300ms;
    border-radius: 15px;
    padding: 15px;
    background: transparent;
    border: 5px solid #008dd2;
    box-shadow: 0 0 15px rgb(0 0 0 / 50%);
}

.product img {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #fff;
    transition: 300ms;
}

.product .image {
    overflow: hidden;
    border-radius: 15px;
}

.product .content {
    margin: 20px 0;
}

.product .content .brand {
    background: #F0F0F0;
    display: inline-block;
    color: #9C9C9C;
    font-size: 13px;
    padding: 5px 16px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.product .content .title {
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    transition: 300ms;
}

.product:hover .content .title {
    color: var(--red);
}

.product .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
}

.product .buttons a,
.product .buttons button {
    background: #F0F0F0;
    border: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9C9C9C;
    transition: 300ms;
    border-radius: 10px;
    font-size: 14px;
}

.product .buttons a {
    width: calc(100% - 50px);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.product .buttons button {
    width: 40px;
}

.product .buttons a:Hover,
.product .buttons button:hover {
    background: #F4CD00;
    color: #fff;
}

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

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

.articles-container .article {
    width: calc(33% - 30px);
    margin: 15px;
}

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

.articles-container .article .content {
    padding-top: 20px;
}

.articles-container .article .content .summary {
    font-size: 13px;
    color: #676767;
}

.articles-container .article .content .title {
    font-size: 20px;
    display: block;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}

.main-footer {
    margin-top: 170px;
    background: #343434;
    position: relative;
}

.main-footer .brands {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    transform: translateY(-70px);
}

.main-footer .brands img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.main-footer .footer-container {
    display: flex;
    padding-top: 30px;
    column-gap: 80px;
    color: #fff;
}

.main-footer .footer-container > aside {
    width: 25%;
}

.main-footer .footer-container .logo {
    background: #fff;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    color: #000;
    text-align: center;
    margin-bottom: -60px;
    padding-bottom: 60px;
    padding-top: 30px;
}

.main-footer .footer-container .logo p {
    margin: 20px 0;
    font-size: 14px;
}

.main-footer .footer-container .logo img {
    width: 70%;
    margin-bottom: 20px;
}

.main-footer .footer-container .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    font-size: 18px;
}

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

.main-footer .footer-container .socials a:hover {
    color: var(--red);
}

.main-footer .footer-container .footer-title {
    font-size: 20px;
    display: block;
    margin-bottom: 20px;
}

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

.main-footer .footer-container .menu > ul > li a {
    display: block;
    color: #DDDDDD;
    transition: 300ms;
    padding: 5px 0;
}

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

.main-footer .footer-container .menu > ul > li a:Hover {
    color: #fff;
}

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

.main-footer .footer-container .contacts p {
    margin: 0;
    color: #DDDDDD;
}

.main-footer .footer-container .contacts li:first-child {
    margin-bottom: 30px;
}

.main-footer .footer-container .contacts li:last-child {
    margin-top: 10px;
}

.main-footer .footer-container .contacts li a {
    color: #DDDDDD;
    transition: 300ms;
    display: inline-block;
}

.main-footer .footer-container .contacts li a:Hover {
    color: #fff;
}

.main-footer .footer-bar {
    background: #232323;
}

.main-footer .footer-bar .bar-content {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #dddddd;
    padding-left: calc(25% + 20px);
}

.main-footer .footer-bar .bar-content p {
    margin: 0;
    font-size: 14px;
}

.breadcrumb-area {
    background: #FBFAFA;
    padding-top: 140px;
    position: relative;
    z-index: 1;
}

.breadcrumb-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 120px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.breadcrumb-area .breadcrumb {
    justify-content: flex-end;
    padding-bottom: 20px;
}

.breadcrumb-area .breadcrumb li a {
    font-size: 14px;
    color: #000;
    transition: 300ms;
    opacity: .6;
}

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

.breadcrumb-area .breadcrumb li a:Hover {
    opacity: 1;
}

section.page {
    margin: 60px 0;
}

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

.page-container > .sidebar {
    width: 350px;
    background: #FBFAFA;
    border-radius: 20px;
    padding: 15px;
    position: sticky;
    top: 130px;
}

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

.page-container > .page-content > .page-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}

.page-container > .sidebar .title {
    background: var(--red);
    display: block;
    font-size: 20px;
    color: #fff;
    border-radius: 15px;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 20px;
}

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

.page-container > .sidebar .menu ul li a {
    display: block;
    color: #000;
    font-weight: 600;
    transition: 300ms;
    padding: 10px 0 10px 10px;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 8px;
}

.page-container > .sidebar .menu ul li:last-child a {
    border: 0;
}

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

.page-container > .sidebar .menu ul li a:Hover {
    background: var(--red);
    color: #fff;
}

.page-container > .page-content p {
    color: #828282;
}

.milestones {
    position: relative;
}

.milestones:before {
    content: '';
    position: absolute;
    left: 75px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #eee;
    z-index: -1;
}

.milestones .milestone {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 50px;
    transition: 300ms;
}

.milestones .milestone .year {
    width: 150px;
    background: var(--red);
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.milestones .milestone .content {
    width: calc(100% - 150px);
    padding-left: 30px;
}

.milestones .milestone .content .title {
    display: block;
    font-size: 20px;
    margin-bottom: 20px;
}

.milestones:Hover .milestone:not(:hover) {
    opacity: .6;
}

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

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

section.page .categories-container .category {
    width: calc(33% - 30px);
}

section.page .categories-container {
    justify-content: flex-start;
}

.product-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
}

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

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

.product-details .images .thumbnails {
    width: 150px;
    height: 500px;
    overflow: auto;
    padding-right: 20px;
}

.product-details .images .slider {
    padding-right: 20px;
    width: calc(100% - 150px);
}

.product-details .images .slider img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.product-details .images .thumbnails img {
    width: 100%;
    height: 110px;
    object-fit: contain;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: 300ms;
    padding: 5px;
    opacity: .5;
    cursor: pointer;
}

.product-details .images .thumbnails img:last-child {
    margin-bottom: 0;
}

.product-details .images .thumbnails img:Hover {
    opacity: 1;
}

.product-details .images .thumbnails img.active {
    opacity: 1;
    border-color: var(--red);
}


.product-details .images .thumbnails::-webkit-scrollbar {
    width: 3px;
}

.product-details .images .thumbnails::-webkit-scrollbar-track {
    background: #ddd;
}

.product-details .images .thumbnails::-webkit-scrollbar-thumb {
    background: #888;
}

.product-details .images .thumbnails::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

.product-details > .text {
    padding-left: 30px;
    height: 500px;
}

.product-details > .text > .title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-details > .text .body {
    font-size: 14px;
    color: #5b5b5b;
}

.product-details > .text .meta-table {
    margin: 30px 0;
}

.product-details > .text .meta-table .tr {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: -1px;
    margin-left: -1px;
}

.product-details > .text .meta-table .td {
    width: 50%;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
}

.product-details > .text .meta-table .tr > .td:first-child {
    padding-top: 18px;
}

.product-details > .text .meta-table a {
    display: inline-block;
    background: #f7f7f7;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    transition: 300ms;
    color: #909090;
}

.product-details > .text .meta-table a:Hover {
    background: var(--red);
    color: #fff;
}

.product-details > .text .body table td, .product-details > .text .body table th {
    padding: 5px;
    border: 1px solid #ddd;
}

#card-items-count:before {
    content: '(';
}

#card-items-count:after {
    content: ')';
}

.card-content {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .30);
    padding: 30px;
    transition: 300ms;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
}

.card-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.card-content > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 50px;
}

.card-content > header .title {
    font-size: 25px;
}

.card-content > .content {
    height: calc(100% - 110px);
    overflow: auto;
}

.card-content > .content p {
    font-size: 14px;
    color: #979797;
}

.card-content > .button {
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.card-content > .button a {
    display: block;
    width: 100%;
    background: var(--red);
    color: #ffF;
    padding: 15px 0;
    text-align: center;
    border-radius: 10px;
    transition: 300ms;
}

.card-content > .button a:Hover {
    background: var(--dark-red);
}

.card-content > header button {
    display: flex;
    width: 40px;
    height: 40px;
    background: #ededed;
    border: 0;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: 300ms;
}

.card-content > header button:Hover {
    background: var(--red);
    color: #fff;
}

.card-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.card-product .image {
    width: 75px;
}

.card-product .image img {
    width: 100%;
    height: 75px;
    object-fit: contain;
}

.card-product .content {
    width: calc(100% - 75px);
    padding-left: 10px;
}

.card-product .content .title {
    display: block;
    font-size: 20px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-product .content .remove-product {
    background: #f1f1f1;
    border: 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    column-gap: 10px;
    border-radius: 5px;
    transition: 300ms;
    color: #5a5a5a;
    font-weight: 700;
}

.card-product .content .remove-product i {
    font-weight: lighter;
}

.card-product .content .remove-product:Hover {
    background: var(--red);
    color: #fff;
}

.card-items .card-product:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}

.card-form {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-form .form {
    width: 400px;
    padding: 20px;
    box-shadow: -10px -10px 30px rgb(0 0 0 / 10%);
    border-radius: 15px;
}

.card-form .products {
    width: calc(100% - 400px);
    padding-right: 30px;
}

.card-form .products .card-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 15px;
    overflow: hidden;
    margin: 10px 0;
}

.card-form .products .card-product-item .image {
    width: 100px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-form .products .card-product-item .image img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.card-form .products .card-product-item .actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
}

.card-form .products .card-product-item .actions > button {
    width: 50px;
    height: 50px;
    background: #e5e5e5;
    border: 0;
    border-radius: 5px;
    color: #505050;
    transition: 300ms;
}

.card-form .products .card-product-item .actions > button:Hover {
    background: var(--red);
    color: #fff;
}

.card-form .products .card-product-item .actions .qty-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: #e5e5e5;
    padding: 0 10px;
    border-radius: 5px;
}

.card-form .products .card-product-item .actions .qty-container .qty {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
}

.card-form .products .card-product-item .actions .qty-container .title {
    display: block;
    font-weight: 700;
    color: #505050;
    margin-right: 10px;
}

.card-form .products .card-product-item .actions .qty-container .qty button {
    width: 30px;
    height: 30px;
    background: #d4d4d4;
    border: 0;
    color: #505050;
    transition: 300ms;
}

.card-form .products .card-product-item .actions .qty-container .qty button:Hover {
    background: #505050;
    color: #fff;
}

.card-form .products .card-product-item .actions .qty-container .qty input {
    border: 0;
    background: #f4f1f1;
    font-weight: 700;
    text-align: center;
    width: 100px;
    height: 30px;
}

.card-form .products .card-product-item > .title {
    width: calc(100% - 400px);
    padding-left: 10px;
}

.card-form .products .card-product-item > .title a {
    display: block;
    font-size: 20px;
    font-weight: 700;
    transition: 300ms;
    color: #000;
}

.card-form .products .card-product-item:nth-child(even) {
    background: #f6f6f6;
}

.card-form .form header .title {
    background: var(--red);
    color: #fff;
    padding: 15px 0;
    display: block;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.card-form .form header p {
    font-size: 14px;
    color: #888888;
}

.card-form .form .input {
    width: 100%;
    display: block;
    margin: 10px 0;
}

.card-form .form .input input,
.card-form .form .input textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

.card-form .form button {
    width: 100%;
    padding: 15px 0;
    border-radius: 10px;
    border: 0;
    font-weight: 700;
    text-transform: uppercase;
    transition: 300ms;
    color: #7a7a7a;
    letter-spacing: 2px;
}

.card-form .form button:Hover {
    background: var(--red);
    color: #fff;
}

.empty-card {
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
}

.empty-card i {
    font-size: 150px;
    opacity: .1;
    margin-bottom: 20px;
}

.empty-card p {
    max-width: 50%;
    text-align: center;
    margin: 0 auto;
}

.clients-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.clients-container .client {
    width: calc(25% - 30px);
    margin: 15px;
    text-align: center;
}

.clients-container .client img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .8;
}

.clients-container .client:Hover {
    opacity: 1;
    filter: grayscale(0);
}

.contact-details {
    margin-top: -60px;
}

.contact-details .map iframe {
    width: 100%;
    height: 600px;
    border-radius: 0 0 30px 30px;
}

.contact-details .actions {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

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

.contact-details .actions .info {
    padding-top: 80px;
    padding-right: 30px;
}

.contact-details .actions .info > .title {
    font-size: 25px;
    display: block;
    margin-bottom: 30px;
}

.contact-details .actions .info .box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.contact-details .actions .info .box .icon {
    background: #eeeeee;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-radius: 8px;
    font-size: 20px;
    color: #777777;
}


.contact-details .actions .info .box .content {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.contact-details .actions .info .box .content .title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #777777;
    opacity: .6;
}

.contact-details .actions .info .box .content .value {
    max-width: 70%;
    display: block;
    color: #000;
    transition: 300ms;
    font-weight: 600;
    font-size: 18px;
}

.contact-details .actions .form form {
    margin-top: -80px;
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 30px;
    box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.contact-details .actions .form .contacts-title {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    font-size: 25px;
    text-align: center;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.contact-details .actions .form {
    padding-right: 80px;
}

.contact-details .actions .form .description {
    font-size: 14px;
}

.contact-details .actions .form input,
.contact-details .actions .form textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
    transition: 300ms,
}

.brands-page .brand {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    transition: 300ms;
}

.brands-page:Hover .brand:not(:Hover) {
    opacity: .6;
}

.brands-page .brand header {
    width: 300px;
    background: var(--red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px 0 0 15px;
    color: #fff;
    min-height: 400px;
}

.brands-page .brand .slider {
    width: calc(100% - 300px);
    padding-left: 50px;
}

.brands-page .brand header .logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.brands-page .brand header .logo img {
    width: 100px;
}

.brands-page .brand header .title {
    display: block;
    font-size: 25px;
    margin: 15px 0;
}

.brands-page .brand header .view-all {
    font-size: 14px;
    color: #fff;
    transition: 300ms;
    margin-top: 10px;
    opacity: .6;
}

.brands-page .brand header .view-all i {
    margin-left: 10px;
    font-weight: lighter;
}

.brands-page .brand header .view-all:Hover {
    opacity: 1;
}

.brand-details .brand-header {
    position: relative;
    background: #f1f1f1;
    border-radius: 30px 30px 0 0;
    padding: 30px 0 0 15px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 80px;
}

.brand-details .brand-header .logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    margin-bottom: -35px;
}

.brand-details .brand-header h2 {
    width: calc(100% - 150px);
    padding-left: 15px;
    padding-bottom: 15px;
    font-weight: 700;
}

.categories-accordion {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
}

.categories-accordion > a {
    width: calc(100% / 5);
    position: relative;
    transition: 600ms;
    overflow: hidden;
}

.categories-accordion:hover > a:not(:Hover) {
    width: 60%;
    filter: brightness(50%);
}

.categories-accordion > a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.categories-accordion > a:Hover {
    width: 100%;
}

.categories-accordion > a .title {
    display: block;
    white-space: nowrap;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    transition: 800ms;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    opacity: 1;
    height: 100%;
    transform: rotate(180deg);
    padding: 30px 10px;
    z-index: 1;
    font-size: 20px;
    font-weight: bolder;
    background: rgba(0, 0, 0, 0.6);
}

.categories-accordion > a:Hover .title {
    opacity: 1;
    font-weight: bolder;
}

.main-categories .categories-accordion:nth-child(1) {
    border-radius: 15px 15px 0 0;
}

.main-categories .categories-accordion:nth-child(2) {
    border-radius: 0 0 15px 15px;
}

.main-categories .accordion-area:Hover .categories-accordion:not(:Hover) .category {
    filter: brightness(50%);
}

.main-footer .brands .title {
    width: 220px;
    font-size: 20px;
    display: inline-block;
    background: var(--red);
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-weight: bolder;
    position: absolute;
    top: -50px;
    left: calc(50% - 110px);
    border-radius: 25px 25px 0 0;
    box-shadow: 0 0 30px rgb(0 0 0 / 20%);
}

.fixed-sectors {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 1;
    display: flex;
    transition: 300ms;
    transform: translateX(calc(100% - 44px));

    -moz-transform: translateX(calc(100% - 44px));
    -ms-transform: translateX(calc(100% - 44px));
    -o-transform: translateX(calc(100% - 44px));
    -webkit-transform: translateX(calc(100% - 44px));
    transform: translateX(calc(100% - 44px));
}

.fixed-sectors .title {
    display: flex;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--red);
    color: #fff;
    padding: 15px 10px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: 600ms;

    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fixed-sectors ul {
    list-style: none;
    padding: 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-block: 1px solid var(--red);
}

.fixed-sectors ul > li {
    width: 100%;
}

.fixed-sectors ul > li > a {
    border-bottom: 1px solid #c1c1c1;
    display: block;
    padding: 5px;
    color: #000;
    font-weight: 600;
    transition: 300ms;
    border-radius: 5px;
}

.fixed-sectors ul > li:last-child > a {
    border: 0;
}

.fixed-sectors ul > li > a:Hover {
    background: var(--red);
    color: #fff;
    border-color: transparent;
}

.fixed-sectors ul > li > a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-right: 5px;
}

.fixed-sectors:Hover {
    transform: translateX(0);
}

.fixed-wp {
    position: fixed;
    left: 30px;
    bottom: 30px;
    background: #137800;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    width: 50px;
    font-size: 30px;
    border-radius: 100%;
    color: #fff;
    transition: 300ms;
}

.fixed-wp:Hover {
    transform: scale(1.1);
    background: #00ff2d;
    color: #137800;
    box-shadow: 0 0 30px #00ff2d;
}

.pagination {
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.pagination a, .pagination span {
    display: flex;
    width: 40px;
    height: 40px;
    background: #fbfbfb;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    color: #000;
}

.pagination a:Hover,
.pagination span:Hover,
.pagination .active span {
    background: var(--red);
    color: #fff;
}

.page .categories-accordion > a {
    width: calc(33% - 10px) !important;
    margin: 5px;
    border-radius: 10px;
}

.page .categories-accordion > a .title {
    transform: rotate(0);
    white-space: unset;
    writing-mode: unset;
    width: 100%;
    padding: 15px;
    height: unset;
}

.page .categories-accordion > a img {
    height: 150px;
}

section.page .categories-accordion {
    flex-wrap: wrap;
    justify-content: flex-start;
}
.product-details .files{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.product-details .files .files-title {
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #868686;
    margin-bottom: 5px;
    margin-left: 5px;
}

.product-details .files .files-title:After{
    content: ':';
}

.product-details .files .file-item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 5px;
    width: calc(33% - 10px);
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 5px;
    color: #5a5a5a;
    transition: 300ms;
}

.product-details .files .file-item i{
    margin-right: 5px;
}

.product-details .files .file-item:Hover{
    background: #040383;
    color: #fff;
    border-color: transparent;
}

@media (max-width: 992px) {
    .product-details .files .file-item {
        width: 100%;
    }

    .main-header .header-wrapper .logo {
        width: 180px;
    }

    .main-header .header-wrapper .logo img {
        width: 90px;
    }

    .main-header .header-wrapper .header-content .menu > ul {
        display: none;
    }

    .main-header .header-wrapper .header-content .bar {
        display: none;
    }

    .main-sliders img {
        height: 300px;
    }

    .main-about .about-container {
        flex-direction: column;
    }

    .main-about .about-container > .text {
        width: 100%;
        padding-right: 0;
    }

    .section-header .title {
        font-size: 20px;
    }

    .main-sliders .slider .slider-actions {
        column-gap: 10px;
        padding: 10px;
    }

    .main-sliders .slider .slider-actions .counter .active {
        font-size: 25px;
    }

    .main-sliders .slider .slider-actions .counter .total {
        font-size: 16px;
    }

    .main-about .about-container > .home-boxes {
        margin-top: 30px;
        flex-wrap: wrap;
        width: 100%;
        row-gap: 0;
        column-gap: 0;
    }

    .main-about .about-container > .home-boxes .box {
        width: calc(50% - 10px);
        height: unset;
        margin: 5px;
    }

    .main-about .about-container > .home-boxes .box:nth-child(2), .main-about .about-container > .home-boxes .box:nth-child(4) {
        margin: 5px;
    }

    .main-about .about-container > .home-boxes .box .icon {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .main-about .about-container .clients header {
        width: 100%;
    }

    .main-about .about-container .clients {
        flex-direction: column;
    }

    .main-about .about-container .clients .slider {
        width: 100%;
    }

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

    .section-header .title {
        width: 100%;
        margin-bottom: 10px;
        white-space: nowrap;
    }

    .section-header a {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .categories-container .category {
        width: 100%;
        margin: 15px 0;
    }

    .main-categories .categories-container {
        padding: 0 20px;
    }

    .categories-container .category .title {
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        font-size: 14px;
    }

    .section-header .slider-nav {
        margin-bottom: 20px;
        width: 100%;
    }

    .articles-container {
        margin-left: 0;
        margin-right: 0;
    }

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

    .main-footer .brands img {
        height: 50px;
    }

    .main-footer .footer-container {
        flex-wrap: wrap;
        column-gap: 20px;
        padding-top: 15px;
    }

    .main-footer .footer-container .logo {
        width: 100%;
        order: 4;
        margin-bottom: 0;
        padding-bottom: 10px;
    }

    .main-footer .footer-container .menu:nth-child(2),
    .main-footer .footer-container .menu:nth-child(3) {
        order: 0;
        width: calc(50% - 10px);
    }

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

    .main-footer .footer-container .contacts {
        width: 100%;
        margin: 20px 0;
    }

    .main-footer .footer-bar .bar-content {
        height: unset;
        padding-left: 0;
        flex-direction: column;
        padding: 10px 0;
    }

    .main-footer .footer-bar .bar-content .powered {
        margin-top: 10px;
    }

    .main-header .header-wrapper .header-content .menu {
        height: 40px;
        justify-content: flex-end;
        column-gap: 10px;
        padding-top: 5px;
    }

    .toggle-menu {
        display: flex;
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 5px;
        border: 0;
        align-items: center;
        justify-content: center;
    }

    .main-header .toggle-menu {
        background: transparent;
        color: #fff;
        font-size: 14px;
        align-items: center;
        justify-content: center;
        background: var(--dark-red);
    }

    .menu-wrapper > div {
        width: 100%;
    }

    .main-header .header-wrapper .header-content {
        padding-left: 10px;
        width: calc(100% - 120px);
    }

    .main-header .card-toggle-button strong {
        display: none;
    }

    .main-header .card-toggle-button {
        height: 40px;
        width: 40px;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .main-header .card-toggle-button i {
        width: 40px;
        margin-right: 0;
        height: 40px;
    }

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

    .fixed-bar .main-header:before {
        height: 50px;
    }

    .fixed-bar .main-header .header-wrapper .logo img {
        width: 80px;
    }

    .menu-wrapper {
        position: fixed;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 30px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--red);
        z-index: 999;
        transition: 300ms;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        overflow: scroll;
    }

    .menu-wrapper .logo {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        background: #fff;
        padding: 10px 25px;
        border-radius: 0 0 15px 15px;
        margin: -30px -30px 20px -30px;
        width: calc(100% + 60px);
        position: relative;
    }

    .menu-wrapper .logo img {
        width: 120px;
    }

    .menu-wrapper .menu > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-wrapper .menu > ul > li > a {
        font-size: 20px;
        color: #fff;
        display: block;
        padding: 10px 0;
    }

    .menu-wrapper .menu > ul > li > ul > li > a {
        display: block;
        font-size: 16px;
        color: #fff;
        opacity: .8;
        padding: 4px 0;
    }

    .menu-wrapper .menu > ul > li > ul {
        list-style: none;
        padding: 0;
        margin-left: 20px;
    }

    .menu-wrapper .logo .toggle-menu {
        position: absolute;
        right: 20px;
        bottom: -20px;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1);
        border-radius: 100%;
        color: var(--red);
    }

    .open-menu .menu-wrapper {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .main-header {
        height: 90px;
    }

    .breadcrumb-area:before {
        height: 70px;
    }

    .breadcrumb-area {
        padding-top: 110px;
    }

    .breadcrumb-area .breadcrumb {
        justify-content: flex-start;
        padding-bottom: 10px;
        font-size: 12px;
        overflow: scroll;
        flex-wrap: unset;
    }

    .breadcrumb-area .breadcrumb li a {
        white-space: nowrap;
    }

    .page-container {
        flex-direction: column-reverse;
    }

    .page-container > .sidebar {
        width: 100%;
        margin-top: 20px;
    }

    .page-container > .page-content {
        width: 100%;
        padding-left: 0;
    }

    .page-container > .page-content > .page-title {
        font-size: 25px;
    }

    .milestones:before {
        content: none;
    }

    .milestones .milestone {
        flex-direction: column;
    }

    .milestones .milestone .content {
        padding-left: 0;
        width: 100%;
        margin-top: 20px;
    }

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

    section.page .categories-container .category {
        width: 100%;
        margin: 15px 0;
    }

    .product-details {
        margin-bottom: 40px;
        flex-direction: column;
    }

    .product-details .images {
        width: 100%;
        flex-direction: column;
    }

    .product-details .images .slider {
        width: 100%;
        padding-right: 0;
    }

    .product-details .images .thumbnails {
        width: 100%;
        height: 90px;
        padding-right: 0;
        margin: 15px 0;
        display: flex;
        column-gap: 10px;
    }

    .product-details .images .thumbnails img {
        width: 80px;
        height: 70px;
        margin-bottom: 0;
    }

    .product-details > .text {
        width: 100%;
        height: unset;
        padding-left: 0;
    }

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

    .product-details > .text > .title {
        font-size: 25px;
    }

    .product-details > .text .meta-table a {
        margin: 5px;
    }

    .product-details .images .slider img {
        height: 300px;
    }

    section.page {
        margin: 30px 0;
    }

    .clients-container .client {
        width: calc(50% - 10px);
        margin: 5px;
    }

    .brands-page .brand {
        flex-direction: column;
    }

    .brands-page .brand header {
        width: 100%;
        border-radius: 15px 15px 0 0;
        min-height: 0;
        padding: 20px 0;
    }

    .brands-page .brand header .logo img {
        width: 50px;
    }

    .brands-page .brand header .logo {
        width: 100px;
        height: 100px;
    }

    .brands-page .brand .slider {
        padding-left: 0;
        width: 100%;
    }

    .brand-details .brand-header .logo {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        padding: 3px;
    }

    .brand-details .brand-header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .brand-details .brand-header h2 {
        width: 100%;
        padding-left: 0;
        padding-bottom: 10px;
    }

    .contact-details {
        display: flex;
        flex-direction: column-reverse;
        margin-top: 0;
        row-gap: 20px;
    }

    .contact-details .actions {
        flex-direction: column;
        row-gap: 20px;
    }

    .contact-details .actions .info {
        width: 100%;
        padding: 0;
    }

    .contact-details .actions .info .box .content .value {
        max-width: 100%;
        font-size: 16px;
    }

    .contact-details .actions .form {
        padding-right: 0;
        width: 100%;
    }

    .contact-details .actions .form form {
        margin-top: 0;
        padding: 15px 0;
        background: transparent;
        backdrop-filter: unset;
        box-shadow: none;
    }

    .contact-details .actions .form .contacts-title {
        font-size: 20px;
    }

    .contact-details .map iframe {
        height: 400px;
        border-radius: 15px;
    }

    .contact-details .actions .info .box .icon {
        width: 50px;
        height: 50px;
    }

    .contact-details .actions .info .box {
        align-items: flex-start;
    }

    .contact-details .actions .info .box .content {
        width: calc(100% - 50px);
    }

    .menu-wrapper .search form {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
    }

    .menu-wrapper .search form input {
        height: 40px;
        background: transparent;
        padding: 0 10px;
        border: 0;
        color: #fff;
        width: calc(100% - 40px);
        font-size: 14px;
    }

    .menu-wrapper .search form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .menu-wrapper .search form button {
        width: 40px;
        border: 0;
        height: 40px;
        color: var(--red);
        background-color: #fff;
    }

    .menu-wrapper .search form {
        background: var(--dark-red);
        border-radius: 10px;
        overflow: hidden;
    }

    .card-content {
        width: 100%;
    }

    .card-content > header .title {
        font-size: 20px;
    }

    .card-content > header {
        align-items: center;
        padding-bottom: 10px;
    }

    .card-product .content .title {
        font-size: 16px;
    }

    .card-form {
        flex-direction: column;
    }

    .card-form .products {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .card-form .products .card-product-item {
        flex-direction: column;
        margin: 0;
    }

    .card-form .products .card-product-item .image {
        width: 100%;
    }

    .card-form .products .card-product-item .image img {
        height: 200px;
    }

    .card-form .products .card-product-item > .title {
        width: 100%;
        padding-left: 0;
        margin: 10px 0;
    }

    .card-form .products .card-product-item .actions {
        width: 100%;
        justify-content: flex-start;
    }

    .card-form .form {
        width: 100%;
        margin-top: 20px;
    }

    .main-articles {
        margin: 30px 0;
    }

    .main-products {
        margin: 30px 0;
    }

    .categories-accordion .category {
        margin: 5px;
        border-radius: 10px;
        overflow: hidden;
    }

    .categories-accordion .category:nth-child(1),
    .categories-accordion .category:nth-child(2),
    .categories-accordion .category:nth-child(3) {
        width: calc(33% - 10px) !important;
    }

    .categories-accordion .category:nth-child(4),
    .categories-accordion .category:nth-child(5) {
        width: calc(50% - 10px) !important;
    }

    .categories-accordion {
        flex-wrap: wrap;
    }

    .categories-accordion > a .title {
        transform: rotate(0);
        white-space: unset;
        writing-mode: unset;
        width: 100%;
        font-size: 14px;
        padding: 15px;
        height: unset;
    }

    .categories-accordion > a img {
        height: 150px;
    }

    .categories-accordion > a:Hover {
        max-width: unset;
    }

    .section-header a {
        padding: 5px 10px;
        width: unset;
        white-space: nowrap;
        font-size: 13px;
    }

    .section-header .slider-nav button {
        width: 30px;
        height: 30px;
    }

    .main-about .about-container .clients .slider img {
        height: 100px;
        object-fit: contain;
    }

    .main-footer .brands .title {
        font-size: 14px;
        height: 30px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        top: -30px;
    }

    .main-about .about-container .text-body p:nth-child(2) {
        display: none;
    }

    .main-about .about-container .text-body .site-btn {
        background: transparent;
        color: var(--red);
        border: 1px solid var(--red);
        font-size: 13px;
        padding: 5px 15px;
        font-weight: 500;
    }

    .fixed-sectors {
        font-size: 14px;
        transform: translateX(calc(100% - 41px));
        padding: 15px 5px;
    }

    .main-sliders .slider .slider-actions .navigation button {
        width: 30px;
        height: 30px;
        color: #000;
    }

    .fixed-sectors .title {
        padding-left: 50px;
    }

    .fixed-sectors:hover .title {
        padding-left: 5px;
    }

    .page .products-container .product {
        width: calc(50% - 10px);
        margin: 5px;
        padding: 5px;
    }

    section.page .product .content .title {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    section.page .product .content {
        margin-bottom: 10px;
    }

    section.page .product img {
        height: 100px;
    }

    section.page .product .content .brand {
        display: none;
    }

    section.page .categories-accordion {
        justify-content: flex-start;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .main-header .header-wrapper .header-content .menu > ul > li > a {
        font-size: 14px;
        padding: 23px 5px;
    }

    .main-header .card-toggle-button {
        font-size: 14px;
        padding: 6px 10px;
    }

    .categories-accordion > a img {
        height: 300px;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .categories-accordion > a:Hover {
        width: 100%;
        max-width: 360px;
    }

    .categories-accordion:Hover > a:not(:hover) {
        min-width: unset;
        width: 80%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main-header .header-wrapper .logo {
        width: 220px;
    }

    .main-header .header-wrapper .logo img {
        width: 180px;
    }

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

    .main-header .header-wrapper .header-content .menu > ul > li > a {
        font-size: 14px;
        padding: 23px 8px;
    }

    .main-header .card-toggle-button i {
        display: none;
    }

    .main-header .card-toggle-button {
        font-size: 12px;
    }

    .categories-container .category {
        width: calc(25% - 30px);
    }
}
