:root {
    --container-width: 1400px;
    --primary: #55752A;
    --gray: #494948;
}

* {
    font-family: "Open Sans", 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: rgba(0,0,0,0.5);
}

.main-header .header-bar {
    background: var(--primary);
    transition: 300ms;
}

.main-header .bar-container {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
}

.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: 14px;
    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;
}

.main-header .header-container .logo {
    width: 200px;
    margin-top: -55px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    position: relative;
    z-index: 1;
}

.main-header .header-container .logo:after{
    left: -25px;
    content: '';
    top: 0;
    width: calc(100% + 50px);
    height: 100%;
    position: absolute;
    background: #fff;
    transform: skewX(-25deg);
    z-index: -1;
}

.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: 20px 15px;
    border-radius: 5px;
    transition: 300ms;
    color: #fff;
    font-weight: 500;
    position: relative;
}

.main-header .header-container .menu > ul > li > a:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 5px;
    width: 0;
    background: var(--primary);
    transition: 300ms;
    opacity: 0;
}

.main-header .header-container .menu > ul > li:Hover > a:before {
    width: 100%;
    left: 0;
    opacity: 1;
}

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

.fixed-bar .main-header {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.fixed-bar .main-header .header-container .logo {
    height: 60px;
    margin-top: 0;
}

.fixed-bar .main-header .header-container .logo > a {
    display: block;
    height: 90px;
    margin-top: -10px;
}

.fixed-bar .main-header .header-container .logo:before,
.main-header .header-container .logo:after{
    height: calc(100% + 2px);
}

.fixed-bar .main-header {
    backdrop-filter: blur(5px);
}

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

.main-video {
    position: relative;
    border-bottom: 40px solid var(--primary);
}

.main-video video {
    width: 100%;
    object-fit: cover;
    margin-bottom: -10px;
    max-height: calc(100vh - 30px);
}

.main-sliders {
    margin-top: 44px;
    position: relative;
    border-bottom: 40px solid var(--primary);
}

.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-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-top: 80px;
}

@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 .image {
    overflow: hidden;
}

.main-featured-products .image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 300ms;
}

.main-featured-products .content {
    font-size: 20px;
    color: var(--gray);
    font-weight: 500;
    transition: 300ms;
}

.main-featured-products a:Hover .image img {
    transform: scale(1.1);
    filter: brightness(50%);
}

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

.main-about .body {
    font-size: 16px;
}

.main-about .body strong {
    font-size: 25px;
}

.main-about .about-body {
    display: flex;
    justify-content: space-between;
}

.main-about .about-body > div {
    width: 50%;
}

.main-about .about-body .image img {
    padding-left: 50px;
}

.main-about .about-body .about-tag {
    text-transform: uppercase;
    background: #eee;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
}

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

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

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

.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(--primary);
    padding-top: 250px;
    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: 23px;
    font-weight: 500;
    margin-bottom: 20px;
}

.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 {
    background: #1D1D1B;
    padding: 20px 0;
}

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

.main-footer .footer-bar .bar-container .returnTop {
    background: var(--primary);
    color: #fff;
    border: 0;
    padding: 15px 50px;
    font-size: 14px;
    text-transform: uppercase;
    transition: 300ms;
    line-height: 1;
    border-radius: 5px;
}

.main-footer .footer-bar .bar-container .returnTop:Hover {
    background: var(--gray);
}

.main-footer .footer-bar .bar-container .copyright {
    margin: 0;
}

.main-footer .footer-bar .bar-container .copyright a {
    color: #fff;
    transition: 300ms;
}

.main-footer .footer-bar .bar-container .copyright a:hover {
    opacity: .5;
}

.main-header .header-container .menu > ul > li > ul {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    list-style: none;
    padding: 15px 10px;
    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: 5px 20px;
    border-radius: 5px;
    display: block;
}

.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 {
    opacity: 1;
    visibility: visible;
}

.main-footer .map {
    width: 100%;
    height: 350px;
    margin-bottom: -250px;
    position: relative;
    z-index: 1;
}

.main-footer .map iframe {
    width: 100%;
    height: 100%;
}

.main-footer .logo {
    background: #fff;
    margin-left: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-footer .footer-container > div:not(.logo) {
    padding: 30px 0;
}

.breadcrumb {
    background: #e7e7e7;
    padding: 180px 0 40px 0;
    margin-bottom: 100px;
}

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

.breadcrumb .breadcrumb-container .title {
    font-size: 45px;
    font-weight: 500;
    color: var(--gray);
    margin: 0;
    font-weight: 700;
}

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

.breadcrumb .breadcrumb-container ul > li > a {
    color: #000;
    font-size: 14px;
    transition: 300ms;
}

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

.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: #e7e7e7;
    border-radius: 15px;
    padding: 20px;
    position: sticky;
    top: 140px;
}

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

.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;
}

.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 .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 250px 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%;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}

.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;
    z-index: 1;
    margin-top: 90px;
}

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

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

.main-product-categories .categories-bar .category:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #eee;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
}

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

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

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

.main-product-categories.home-section{
    margin-top: -200px;
}

.main-product-categories.home-section .categories-bar{
    justify-content: space-between;
}

.main-product-categories.home-section .categories-bar .category{
    max-width: 200px;
    background: transparent;
    overflow: unset;
}

.main-product-categories.home-section .categories-bar .category:before{
    content: none;

}

.main-product-categories.home-section .categories-bar .category:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    background: var(--primary);
    height: 50%;
    transition: 300ms;
}

.main-product-categories.home-section .categories-bar .category img{
    transform: scale(2);
    transition: 300ms;
    filter: grayscale(1);
}

.main-product-categories.home-section .categories-bar .category:hover img{
    transform: scale(2.5);
    filter: grayscale(0);
}

.main-product-categories.home-section .categories-bar .category:hover:after{
    height: 70%;
}

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

.main-featured-products .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.main-featured-products .section-header h2 {
    font-size: 35px;
    font-weight: 700;
    margin: 0;
}

.main-featured-products .section-header .view-all-btn {
    background: #eee;
    display: inline-block;
    padding: 10px 30px;
    transition: 300ms;
    color: #000;
    border-radius: 5px;
}

.main-featured-products .section-header > div {
    padding-right: 130px;
}

.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-featured-products .content {
    background: var(--primary);
    color: #fff;
    text-align: center;
    width: calc(100% - 50px);
    margin-left: 25px;
    margin-top: -20px;
    position: relative;
    z-index: 1;
    padding: 15px;
}

.main-featured-products .content .title {
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-featured-products .content .category {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.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 {
    flex: 1;
    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;
}

.main-about .about-body .body-content {
    max-height: 40vh;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.main-about .about-body .body-content:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #fff, transparent);
}

.main-about .about-body .read-more {
    background: var(--primary);
    color: #fff;
    padding: 10px;
    transition: 300ms;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
}

.main-about .about-body .read-more:Hover {
    background: var(--gray);
}

@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: #fff;
    }

    .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;
    }

    .main-about:before {
        border-left: 0 solid transparent;
        border-right: 60px solid transparent;
        border-top: 120px solid var(--primary);
    }

    .main-about .shadow-big-title {
        font-size: 30px;
    }

    .main-about .body strong {
        font-size: 16px;
    }

    .main-about .body {
        font-size: 16px;
        padding-left: 0;
    }

    .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-featured-products .image img {
        height: unset;
        aspect-ratio: 16 / 9;
    }

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

    .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-about .about-body {
        flex-direction: column;
    }

    .main-about .about-body > div {
        width: 100%;
    }

    .main-about .about-body .image img {
        padding-left: 0;
    }

    .main-featured-products .section-header > div {
        padding-right: 0;
    }

    .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-production .gallery a {
        width: calc(50% - 30px);
    }
    
    .main-product-categories {
        margin-top: 20px;
    }
    
    .main-product-categories .categories-bar .category {
        flex: unset;
        width: 100% !important;
        aspect-ratio: unset;
    }
    
    .main-product-categories .categories-bar {
        flex-wrap: wrap;
    }
    
    .main-product-categories .categories-bar .category img {
        width: 60%;
    }
    
    .main-product-categories .categories-bar .category:before{
        transform: translate(0) rotate(0);
        height: 45%;
    }
    
    .main-header .header-container .logo:after{
        left: -40px;
    }
    
    .main-product-categories.home-section{
    margin-top: 20px;
    }
    
    .main-product-categories.home-section .categories-bar{
        overflow: unset;
    }
    
    .main-product-categories.home-section .categories-bar .category{
        width: calc(50% - 10px) !important;
        max-width: unset;
    }
    
    .main-product-categories.home-section .categories-bar .category img {
        transform: scale(1.5);
    }
    
    
    .main-video video {
        aspect-ratio: 1;
    }
}
