:root {
    --orange: #F49900;
    --dark-orange: #c17900;
}

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

body {
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wow {
    visibility: hidden;
}

.menu-toggle,
.menu-wrapper,
.mobile-languages {
    display: none;
    transition: 300ms;
}

.bg-video {
    width: 100%;
    height: calc(100vh - 135px);
}

video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 11;
    transition: 300ms;
}

.main-header .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    transition: 300ms;
    padding: 15px 0;
}

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

.main-header .header-bar .contacts a {
    color: #fff;
    opacity: .7;
    transition: 300ms;
    display: block;
}

.main-header .header-bar .contacts a:last-child {
    margin-left: 10px;
}

.main-header .header-bar .contacts a:Hover {
    opacity: 1;
}

.main-header .header-bar .socials {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header .header-bar .socials a {
    color: #fff;
    display: block;
    opacity: .5;
    font-size: 20px;
    transition: 300ms;
    margin: 0 5px;
}

.main-header .header-bar .socials a:hover {
    opacity: 1;
}

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

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

.main-header .header-bar .languages .active {
    color: #fff;
    opacity: .5;
    transition: 300ms;
    padding: 0 10px;
    cursor: pointer;
}

.main-header .header-bar .languages .active:After {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
}

.main-header .header-bar .languages:Hover .active {
    opacity: 1;
}

.main-header .header-bar .languages:Hover .list {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.main-header .header-bar .languages .list {
    position: absolute;
    left: 0;
    min-width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--orange);
    z-index: 1;
    font-size: 16px;
    border-radius: 10px;
    transition: 300ms;
    transform: scale(.5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.main-header .header-bar .languages .list a {
    display: block;
    color: #000;
    padding: 5px 10px;
    transition: 300ms;
}

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

.main-header .header-bar .actions .company-text {
    color: #fff;
    opacity: .6;
    margin: 0 15px 0 0;
}

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

.main-header .header-menu .logo {
    width: 160px;
    transition: 300ms;
}

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

.main-header .catalog-url {
    color: #fff;
    border-radius: 20px;
    margin-right: 10px;
    text-transform: uppercase;
    font-weight: 500;
    transition: 300ms;
    background: #ff0000;
    padding: 5px 10px;
}

.main-header .catalog-url:Before{
    content: '\f1c1';
    font-family: 'Font Awesome 5 Free';
    margin-right: 10px;
}

.main-header .catalog-url:Hover{
    background: #f49900;
    color: #000;
}

.main-header .header-menu .menu-container {
    width: calc(100% - 190px);
    background: rgba(44, 44, 44, .5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    border-radius: 30px;
}

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

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

.main-header .header-menu .menu-container .menu > ul > li > a {
    display: block;
    color: #fff;
    transition: 300ms;
    font-weight: 500;
    transition: 300ms;
    padding: 15px;
    margin: 0 5px;
    position: relative;
    border-radius: 30px;
    text-transform: uppercase;
}

.main-header .header-menu .menu-container .menu > ul > li:Hover > a,
.main-header .header-menu .menu-container .menu > ul > li:last-child a {
    background: var(--orange);
    color: #000;
}

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

.main-header .header-menu .menu-container .menu > ul > li:last-child i {
    margin-right: 20px;
    transition: 300ms;
}

.main-header .header-menu .menu-container .menu > ul > li:last-child:Hover a {
    background: var(--dark-orange);
}

.main-header .header-menu .menu-container .menu > ul > li > ul {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    min-width: 120%;
    transition: 300ms;
    list-style: none;
    padding: 30px 0 0 5px;
    margin: 0;
    transform: translateY(-30px);
    opacity: 0;
    visibility: hidden;
}

.main-header .header-menu .menu-container .menu > ul > li > ul > li > a {
    display: block;
    white-space: nowrap;
    background: var(--orange);
    padding: 10px;
    transition: 300ms;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid var(--dark-orange);
}

.main-header .header-menu .menu-container .menu > ul > li > ul > li:first-child a {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.main-header .header-menu .menu-container .menu > ul > li > ul > li:last-child a {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom: 0;
}

.main-header .header-menu .menu-container .menu > ul > li > ul > li > a:Hover {
    background: var(--dark-orange);
}

.main-header .header-menu .search {
    border-radius: 15px;
    overflow: hidden;
    min-width: 230px;
}

.main-header .header-menu .search form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0.5);
}

.main-header .header-menu .search form button {
    background: #4A4A4A;
    color: #fff;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    border: 0;
    border-radius: 15px;
}

.main-header .header-menu .search form button:Hover {
    background: var(--orange);
}

.main-header .header-menu .search form input {
    background: transparent;
    border: 0;
    width: calc(100% - 37px);
    height: 37px;
    padding: 0 15px;
    color: #fff;
}

.main-about {
    position: relative;
    z-index: 1;
    transform: translateY(-20%);
}

.main-about .about-text {
    background: #3A3A3A;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    letter-spacing: 3px;
    padding: 0 60px;
    border-radius: 30px;
    font-size: 25px;
    background-image: url(../images/map.png);
    background-size: cover;
    background-position: right center;
}

.main-about .about-button {
    text-align: center;
    position: relative;
    transform: translateY(-50%);
}

.main-about .about-button a {
    background: var(--orange);
    display: inline-block;
    padding: 20px 50px;;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
    transition: 300ms;
    font-size: 15px;
}

.main-about .about-button a:After {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
}

.main-about .about-button a:hover {
    background: #3A3A3A;
    box-shadow: 0 0 20px var(--orange);
    color: #fff;
}

.home-categories {
    margin-bottom: 120px;
}

.home-categories .section-title {
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
    margin-bottom: 90px;
}

.home-categories .section-title strong {
    font-size: 30px;
    display: block;
}

.home-categories .section-title strong:After {
    content: attr(data-shadow);
    position: absolute;
    left: 0;
    top: 5px;
    width: 100%;
    font-size: 45px;
    z-index: -1;
    opacity: .21;
}

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

.categories-container .category {
    width: calc(50% - 30px);
    margin: 15px;
    background: #F2F2F2;
    border-radius: 30px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    transition: 300ms;
}

.categories-container .category .content {
    padding: 30px;
    width: 60%;
}

.categories-container .category .content .title {
    display: block;
    font-size: 30px;
    white-space: nowrap;
}

.categories-container .category .content .read-more {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: #000;
    transition: 300ms;
    margin-top: 5px;
}

.categories-container .category .content .read-more:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 5px;
}

.categories-container .category .image {
    width: 40%;
}

.categories-container .category .image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: 300ms;

    transform: scale(1.1);
}

.categories-container .category:Hover {
    transform: scale(1);
    background: var(--orange);
    box-shadow: 0 0 40px var(--orange);
}

.categories-container .category:Hover .image img {
    transform: scale(1.2);
}

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

.main-products .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 90px;
}

.main-products .section-header .buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #3A3A3A;
    width: calc(100% - 800px);
    padding: 30px;
    position: relative;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 1;
}

.main-products .section-header .buttons:before {
    content: '';
    position: absolute;
    left: -400px;
    width: 400px;
    height: 100%;
    background: #3A3A3A;
    z-index: -1;
}

.main-products .section-header .buttons button {
    border: 1px solid var(--orange);
    margin-left: 15px;
    display: flex;
    padding: 15px;
    background: transparent;
    color: var(--orange);
    border-radius: 5px;
    display: flex;
    align-items: center;
    height: 50px;
    transition: 300ms;
}

.main-products .section-header .buttons button:Hover {
    background: var(--orange);
    color: #3a3a3a;
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--orange);
}

.main-products .section-header .text {
    width: 300px;
    text-align: center;
}

.main-products .section-header .text .title {
    font-size: 45px;
    display: block;
}

.main-products .section-header .description {
    width: 500px;
}

.main-products .section-header .description p {
    margin: 0;
    font-size: 14px;
}

.main-products .owl-stage-outer {
    padding: 30px;
}

.product {
    border: 1px solid #ddd;
    border-radius: 30px;
    transition: 300ms;
}

.product .image {
    padding: 30px;
}

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

.product:Hover {
    border-color: var(--orange);
    box-shadow: 0 0 30px var(--orange);
}

.product .content {
    padding: 30px;
    text-align: center;
}

.product .content .category {
    margin-bottom: 20px;
    font-size: 14px;
    color: #747474;
}

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

.product:Hover .content .title {
    color: var(--orange);
}

.fixed-bar .main-header .header-bar {
    margin-top: -60px;
    opacity: 0;
}

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

.fixed-bar .main-header {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    padding: 5px 0;
}

.fixed-bar .main-header .header-menu .menu-container {
    background-color: transparent;
}

.fixed-bar .main-header .header-menu .logo {
    transform: scale(.9);
}

.main-production {
    margin: 120px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-production > div {
    width: 50%;
    position: relative;
}

.main-production .images {
    height: 700px;
}

.main-production .images img {
    position: absolute;
    transition: 300ms;
    box-shadow: 0 0 50px rgba(0, 0, 0, .2);
    border-radius: 30px;
}

.main-production .images img:nth-child(1) {
    left: 10px;
    top: -50px;
    width: 80%;
    z-index: 1;
}

.main-production .images img:nth-child(2) {
    right: 10px;
    top: 120px;
    width: 50%;
    z-index: 2;
}

.main-production .images img:nth-child(3) {
    left: 50px;
    bottom: 0;
    width: 50%;
    z-index: 2;
}

.main-production > .content {
    padding-left: 60px;
    max-width: 600px;
}

.main-production > .content .section-title .title {
    display: block;
    margin-bottom: 30px;
    font-size: 35px;
}


.main-production > .content .text-body {
    height: 400px;
    overflow: hidden;
}

.main-production > .content .button {
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

.main-production > .content .button:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    padding-top: 80px;
    margin-top: -30px;
    background: linear-gradient(0deg, #fff 10%, rgba(0, 0, 0, 0.0) 100%);
    z-index: -1;
}

.main-production > .content .button a {
    text-transform: uppercase;
    display: inline-block;
    background: var(--orange);
    padding: 15px 30px;
    transition: 300ms;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
}

.main-production > .content .button a:After {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
}

.main-production > .content .button a:Hover {
    background: var(--dark-orange);
}

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

.main-articles .section-header strong {
    display: block;
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
}

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

.articles-container .article {
    width: calc(33% - 30px);
    margin: 15px;
    background: #F8F8F8;
    border-radius: 30px;
}

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

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

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

.articles-container .article .content .date {
    margin: 15px 0 25px 0;
    font-size: 14px;
    opacity: .5;
}

.articles-container .article .content .summary {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    opacity: .8;
}

.articles-container .article .content .read-more {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    transition: 300ms;
}

.articles-container .article .content .read-more:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
}

.articles-container .article:Hover .image img {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.21);
}

.articles-container .article:Hover .content .title {
    color: var(--orange);
}

.articles-container .article .content .read-more:Hover {
    color: var(--orange);
}

.main-articles .section-button {
    margin-top: 50px;
    text-align: center;
}

.main-articles .section-button a {
    text-transform: uppercase;
    display: inline-block;
    background: var(--orange);
    padding: 15px 30px;
    transition: 300ms;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
}

.main-articles .section-button a:After {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
}

.main-articles .section-button a:Hover {
    background: var(--dark-orange);
}

.main-footer .request-bar {
    background-image: url(../images/request-bg.png);
    padding: 50px 0;
    background-size: cover;
    background-position: center center;
}

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

.main-footer .request-bar p {
    color: #fff;
    font-size: 20px;
    padding-right: 150px;
    margin: 0;
    font-weight: 500;
}

.main-footer .request-bar a {
    text-transform: uppercase;
    display: inline-block;
    background: var(--orange);
    padding: 15px 30px;
    transition: 300ms;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
    white-space: nowrap;
}

.main-footer .request-bar a:After {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
}

.main-footer .request-bar a:Hover {
    background: var(--dark-orange);
}

.main-footer .footer-container {
    display: flex;
    justify-content: space-between;
    margin: 100px 0 50px 0;
}

.main-footer .footer-container .logo {
    width: 30%;
    padding-right: 20px;
}

.main-footer .footer-container .menu {
    width: 20%;
}

.main-footer .footer-container .contacts {
    width: 30%;
}

.main-footer .footer-container .logo img {
    margin-bottom: 30px;
}

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

.main-footer .footer-container .menu ul li a {
    display: block;
    color: #000;
    transition: 300ms;
    margin-bottom: 10px;
}

.main-footer .footer-container .menu ul li a:Hover {
    color: var(--orange);
}

.main-footer .footer-container .menu ul li a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
}

.main-footer .footer-container .footer-aside-title {
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.main-footer .contacts {
    display: flex;
    flex-wrap: wrap;
}

.main-footer .contacts .title {
    margin-right: 5px;
    font-weight: 600;
}

.main-footer .copyright {
    margin: 30px 0;
    text-align: center;
}

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

.main-footer .copyright p a {
    color: #000;
    font-weight: 500;
    transition: 300ms;
}

.main-footer .copyright p a:Hover {
    color: var(--orange);
}

.main-footer .footer-menu {
    position: relative;
    z-index: 1;
}

.main-footer .footer-menu:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 5px);
    height: 10px;
    background: #2c2c2c;
    width: 100%;
    z-index: -1;
}

.main-footer .footer-menu .menu-container {
    background: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    padding: 30px;
}

.main-footer .footer-menu .menu-container .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-footer .footer-menu .menu-container .menu ul a {
    color: #fff;
    text-transform: uppercase;
    margin-right: 15px;
    transition: 300ms;
    font-weight: 500;
}

.main-footer .footer-menu .menu-container .menu ul a:Hover {
    color: var(--orange);
}

.main-footer .socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-footer .socials a {
    color: #fff;
    transition: 300ms;
    font-size: 20px;
    margin-left: 25px;
}

.main-footer .socials a:Hover {
    color: var(--orange);
}

.breadcrumb-area {
    position: relative;
}

.breadcrumb-area .breadcrumb-image img {
    width: 100%;
    object-fit: cover;
    min-height: 200px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.breadcrumb-area .breadcrumb {
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}


.breadcrumb-area .breadcrumb h1 {
    margin: 0;
    font-size: 25px;
    font-weight: bolder;
}

.breadcrumb-area .breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 14px;
}

.breadcrumb-area .breadcrumb ul li a {
    color: #000;
    transition: 300ms;
    display: block;
}

.breadcrumb-area .breadcrumb ul li:not(:last-child) a:After {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin: 0 5px;
}

section.page {
    margin: 120px 0;
}

.page-container {
    display: flex;
}

.page-container > .sidebar {
    width: 300px;
}

.page-container > .sidebar .widgets {
    position: sticky;
    top: 150px;
}

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

.page-container > .sidebar .menu {
    border-radius: 15px;
    overflow: hidden;
}

.page-container > .sidebar .menu .title {
    display: block;
    font-size: 20px;
    font-weight: bolder;
    background-color: var(--orange);
    padding: 10px;
    text-transform: uppercase;
}

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

.page-container > .sidebar .menu ul li a {
    display: block;
    color: #000;
    text-transform: uppercase;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: 300ms;
}

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

.page-container > .sidebar .menu ul li.active a {
    background-color: #ddd;
}

.page-container > .sidebar .menu ul li:not(.active) a:Hover {
    background-color: var(--orange);
}

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

.page-container > .content {
    color: #5a5a5a;
}

.categories-page {
    margin-top: 120px;
}

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

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

.products-container .product .image img {
    height: 150px;
}

.product-details .cover {
    position: relative;
    margin-bottom: 15px;
}

.product-details .cover .owl-nav i {
    position: absolute;
    top: calc(50% - 25px);
    z-index: 1;
    display: flex;
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: 300ms;
    color: #000;
}

.product-details .cover .owl-nav .owl-prev i {
    left: 0;
}

.product-details .cover .owl-nav .owl-next i {
    right: 0;
}


.product-details .cover .owl-nav i:Hover {
    background-color: var(--dark-orange);
}

.product-details .cover img {
    width: 100%;
    object-fit: contain;
    height: 500px;
}

.product-details .thumbnails {
    position: relative;
    margin-bottom: 30px;
}

.product-details .thumbnails img {
    border-radius: 5px;
    overflow: hidden;
    transition: 300ms;
    width: 100%;
    height: 150px;
    object-fit: contain;
    cursor: pointer;
    opacity: .4;
    filter: grayscale(.5);
}

.product-details .thumbnails img.active {
    opacity: 1;
    filter: grayscale(0);
}

.product-details .thumbnails .owl-nav i {
    position: absolute;
    top: calc(50% - 15px);
    z-index: 1;
    display: flex;
    width: 30px;
    height: 30px;
    background-color: var(--orange);
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: 300ms;
    color: #000;
    font-size: 14px;
}

.product-details .thumbnails .owl-nav .owl-prev i {
    left: 10px;
}

.product-details .thumbnails .owl-nav .owl-next i {
    right: 10px;
}

.product-details .thumbnails .owl-nav i:Hover {
    background-color: var(--dark-orange);
}

.product-details .product-header {
    margin: 60px 0 30px;
    background-color: #3A3A3A;
    border-radius: 30px;
    height: 50px;
}

.product-details .product-header h2 {
    margin: 0;
    display: inline-block;
    background-color: var(--orange);
    color: #000;
    padding: 20px 35px;
    border-radius: 30px;
    margin-left: 30px;
    transform: scale(1.1);
    box-shadow: 0 0 12px var(--orange);
    font-size: 20px;
    text-transform: uppercase;
    margin-top: -10px;
}

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

.product-details .drawings {
    position: relative;
    margin-bottom: 15px;
}

.product-details .drawings .owl-nav i {
    position: absolute;
    top: calc(50% - 25px);
    z-index: 1;
    display: flex;
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: 300ms;
    color: #000;
}

.product-details .drawings .owl-nav .owl-prev i {
    left: 0;
}

.product-details .drawings .owl-nav .owl-next i {
    right: 0;
}

.product-details .drawings .owl-nav i:Hover {
    background-color: var(--dark-orange);
}

.product-details .drawings img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: 300ms;
    border-radius: 10px;
}

.table-container {
    max-width: 100%;
    overflow-x: scroll;
    padding-right: 1px;
}

.table-container table {
    width: 100% !important;
}

table {
    width: 100%;
    height: unset !important;
}

table td,
table th {
    border: 1px solid #ddd;
}

.product-details .product-body {
    color: #7c7c7c;
}

.table-container::-webkit-scrollbar {
    width: 5px;
    height: 15px;
}

.table-container::-webkit-scrollbar-track {
    background: #ddd;
}

.table-container::-webkit-scrollbar-thumb {
    background: #000;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

.product-details .request {
    margin: 30px 0;
    border: 2px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    transition: 300ms;
}

.product-details .request .title {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--orange);
}

.product-details .request .text {
    font-size: 14px;
    font-weight: lighter;
}

.product-details .request .inputs input,
.product-details .request .inputs textarea {
    width: 100%;
    border: 1px solid #ddd;
    display: block;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    transition: 300ms;
    border-radius: 10px;
}

.product-details .request button {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    border: 0;
    transition: 300ms;
}

.product-details .request:Hover {
    border-color: var(--orange);
}

.product-details .request .inputs input:focus,
.product-details .request .inputs textarea:focus {
    border-color: var(--orange);
}

.product-details .request button:Hover {
    background-color: var(--orange);
}

.product-details .request .alert {
    margin-top: 10px;
    border-radius: 10px;
}

.article-details {
    text-align: center;
}

.article-details .article-header {
    margin-bottom: 30px;
}

.article-details .article-header .date {
    margin-bottom: 5px;
    font-size: 14px;
    opacity: .6;
}

.article-details .article-header h2 {
    font-size: 30px;
    max-width: 60%;
    margin: auto;
}

.article-cover img {
    max-width: 70%;
    margin: 0 auto 50px 0;
    border-radius: 30px;
    overflow: hidden;
}

.article-details .article-content {
    opacity: .6;
}

.documents-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--orange);
}

.documents-container .documents-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 15px;
    transition: 300ms;
}

.documents-container .documents-row .documents-col:first-child {
    width: calc(100% - 200px);
}

.documents-container .documents-row .documents-col:last-child {
    width: 200px;
}

.documents-container .documents-row.header {
    background-color: var(--orange);
    font-weight: bolder;
    border-bottom: 0;
    font-size: 20px;
}

.documents-container .documents-row a {
    display: inline-block;
    background-color: var(--orange);
    transition: 300ms;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bolder;
    letter-spacing: .5px;
    padding: 5px 15px;
    border-radius: 5px;
    color: #000;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.documents-container .documents-row a:Hover {
    background-color: var(--dark-orange);
}

.documents-container .documents-row:not(.header):Hover {
    background-color: #f1f1f1;
}

.documents-container .documents-row:not(.header):Hover a {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--orange);
}

.contacts-content .map iframe {
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
}

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

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

.contacts-content .contacts-container .form .form-content {
    padding-right: 150px;
    position: relative;
    margin-top: -76px;
}

.contacts-content .contacts-container .form h2 {
    background-color: #fff;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    box-shadow: -5px -30px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    padding: 0 20px 20px 20px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #ddd;

}

.contact-form textarea {
    height: 200px;
}

.contact-form .alert {
    margin-top: 10px;
    width: 100%;
    border-radius: 5px;
}

.contact-form button {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: bolder;
    border: 0;
    border-radius: 10px;
    background-color: var(--orange);
    padding: 10px 30px;
    transition: 300ms;
    width: 100%;
}

.contact-form button:Hover {
    background-color: var(--dark-orange);
}

.contacts-content .contacts-container > .info {
    margin-top: 50px;
}

.contacts-content .contacts-container > .info h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.contacts-content .info-box {
    width: 60%;
    margin-bottom: 30px;
}

.contacts-content .info-box .title {
    font-size: 20px;
    margin: 0;
    opacity: .6;
    font-weight: lighter;
}

.contacts-content .info-box .value {
    display: block;
    font-size: 25px;
    font-weight: bolder;
    color: #000;
    transition: 300ms
}

.contacts-content .info-box:last-child .value {
    font-size: 20px;
    font-weight: 400;
}

.contacts-content .info-box a.value:Hover {
    color: var(--orange);
}

.product-details .product-body table img {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

.product-details .product-body table td a:not(:first-child) {
    display: none;
}

.product-details .product-body table td a {
    display: inline-block;
    font-size: 11px;
    background: var(--orange);
    padding: 5px 10px;
    color: #000;
    border-radius: 15px;
    transition: 300ms;
    white-space: nowrap;
}

.product-details .product-body table td a:hover {
    background: var(--dark-orange);
    color: #000;
}

.product-details .product-body table .imageButton a:after {
    content: '\f302';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
}

table th, table td {
    padding: 4px;
    min-height: 40px !important;
    font-size: 12px;
    width: unset !important;
    height: 40px !important;
    white-space: nowrap;
    text-align: center;
}

table tr:first-child {
    background: var(--orange);
    color: #000;
}

table tr:first-child td,
table tr:first-child th {
    padding: 15px 4px;
}

table tr:not(:first-child):nth-child(even) {
    background: #f3f3f3;
}

table p:not(:last-child) {
    margin-bottom: 5px;
}

table p:last-child {
    margin: 0;
    text-align: center;
}

table a {
    text-align: center;
}

.error-page p {
    font-size: 14px;
    color: #838383;
}

.error-page .url {
    display: inline-block;
    background: #ffd6d6;
    margin-bottom: 20px;
    font-family: monospace;
    padding: 5px;
    font-size: 13px;
    color: #ff3737;
    font-weight: bolder;
    border-radius: 5px;
}

.error-page nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.error-page nav a {
    display: block;

}

.error-page nav a {
    text-transform: uppercase;
    display: inline-block;
    background: var(--orange);
    padding: 10px 30px;
    transition: 300ms;
    color: #000;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
    white-space: nowrap;
    margin-right: 10px;
    font-size: 12px;
}

.error-page nav a:Hover {
    background: var(--dark-orange);
}

.contacts-content .info-box:nth-child(3) .value {
    margin-bottom: 5px;
}

.staff {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    column-gap: 15px;
    row-gap: 15px;
}

.staff .person {
    width: calc(50% - 15px);
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
}

.staff .person .name {
    font-size: 20px;
}

.staff .person .degree {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: lighter;
}

.staff .person .contacts .emails {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 15px;
}

.staff .person .contacts .emails .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    border-radius: 10px;
}

.staff .person .contacts .emails .value {
    width: calc(100% - 40px);
    padding: 8px 0 0 10px;
}

.staff .person .contacts .emails .value a {
    display: block;
    color: #000;
    transition: 300ms;
}

.staff .person .contacts .emails .value a:Hover {
    color: var(--orange);
}

.staff .person .contacts .phone {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 15px;
}

.staff .person .contacts .phone .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    border-radius: 10px;
}

.staff .person .contacts .phone .value {
    width: calc(100% - 40px);
    padding: 8px 0 0 10px;
}

.staff .person .contacts .phone .value a {
    display: block;
    color: #000;
    transition: 300ms;
}

.staff .person .contacts .phone .value a:Hover {
    color: var(--orange);
}

.dealers-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 15px;
}

.dealers-container .delaer{
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 10px;
    transition: 300ms;
    border-radius: 10px;
}

.dealers-container .delaer .logo{
    width: 200px;
    border: 1px solid #ddd;
    padding: 10px;
    transition: 300ms;
    border-radius: 10px;
}

.dealers-container .delaer .logo img{
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: 300ms;
    filter: grayscale(100%);
    border-radius: 10px;
}

.dealers-container .delaer .content{
    width: calc(100% - 200px);
    padding: 10px 20px;
}
.dealers-container .delaer .content > .title{
    font-size: 24px;
}

.dealers-container .delaer .content .author{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: lighter;
    letter-spacing: 1px;
}

.dealers-container .delaer .content ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.dealers-container .delaer .content ul li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.dealers-container .delaer .content ul li .title{
    width: 70px;
    white-space: nowrap;
}

.dealers-container .delaer .content ul li .value{
    width: calc(100% - 70px);
}

.dealers-container .delaer:Hover .logo img{
    filter: grayscale(0);
}

.dealers-container .delaer:Hover .logo{
    border-color: var(--orange);
}

.dealers-container .delaer:Hover{
    border-color: var(--orange);
}

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

    .main-header .header-menu .search {
        display: none;
    }

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

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        color: #fff;
        background: transparent;
        border: 1px solid #fff;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .mobile-languages {
        display: block;
    }

    .main-header .header-menu .logo {
        width: 120px;
    }

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

    .main-header .header-menu .menu-container .menu {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        padding-right: 20px;
    }

    .main-header .header-menu .menu-container .menu .mobile-languages {
        position: relative;
        padding: 10px;
    }

    .main-header .header-menu .menu-container .menu .mobile-languages .list {
        position: absolute;
        background: #fff;
        left: 0;
        top: calc(100% - 1px);
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        min-width: 120px;
        border-radius: 10px;
        overflow: hidden;
        opacity: 0;
        transition: 300ms;
        visibility: hidden;
    }


    .main-header .header-menu .menu-container .menu .mobile-languages .list a {
        display: block;
        color: #000;
        transition: 300ms;
        padding: 10px;
    }

    .main-header .header-menu .menu-container .menu .mobile-languages .list li:not(:last-child) a {
        border-bottom: 1px solid #ddd;
    }

    .main-header .header-menu .menu-container .menu .mobile-languages:hover .list {
        opacity: 1;
        visibility: visible;
    }

    .bg-video {
        height: 50vh;
    }

    .main-about .about-text {
        height: unset;
        border-radius: 15px;
        font-size: 20px;
        padding: 20px;
        letter-spacing: 0;
        font-size: 14px;
    }

    .main-about {
        transform: translateY(0);
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .main-about .about-button {
        transform: translateY(0);
        margin-top: 10px;
    }

    .main-about .about-button a {
        width: 100%;
    }


    .home-categories .section-title strong:After {
        font-size: 25px;
    }

    .home-categories .section-title strong {
        font-size: 20px;
    }

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

    .main-products .section-header {
        margin-bottom: 30px;
        flex-wrap: wrap;
        text-align: center;
    }

    .main-products .section-header .text {
    }

    .main-products .section-header .buttons {
        width: 100%;
        justify-content: center;
        padding: 15px;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .main-products .section-header > div {
        width: 100% !important;
    }

    .main-products .section-header .text .title {
        font-size: 25px;
    }

    .main-products .section-header .buttons button {
        font-size: 14px;
        height: 40px;
    }

    .main-production {
        margin: 30px 0;
        flex-direction: column;
        padding: 0 30px;
    }

    .main-production .images {
        height: unset;
        padding: 0;
    }

    .main-production > .content {
        padding-left: 0;
    }

    .main-production > div {
        width: 100%;
        padding: 15px;
    }

    .main-production .images img {
        position: unset;
    }

    .main-production .images img:not(:first-child) {
        display: none;
    }

    .main-production > .content .section-title .title {
        font-size: 25px;
    }

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

    .main-articles .section-header strong {
        font-size: 25px;
    }

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

    .main-footer .request-container {
        flex-wrap: wrap;
    }

    .main-footer .request-bar .text {
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .main-footer .footer-container {
        margin-top: 50px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .main-footer .footer-container .logo {
        width: 100%;
        padding-right: 0;
    }

    .main-footer .footer-container .menu {
        width: 100%;
    }

    .main-footer .footer-container .contacts {
        width: 100%;
    }

    .main-footer .footer-container aside {
        margin-bottom: 30px;
    }

    .main-footer .footer-menu .menu-container {
        flex-wrap: wrap;
    }

    .main-footer .socials {
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }

    .main-footer .footer-menu .menu-container .menu ul {
        flex-direction: column;
        align-items: center;
    }

    .main-products .section-header .buttons:before,
    .main-footer .footer-menu:before {
        content: none;
        display: none;
    }


    .categories-container .category .content .title {
        font-size: 18px;
    }

    .categories-container .category .content .read-more {
        font-size: 12px;
    }

    .categories-container .category .content {
        padding: 15px;
    }

    .menu-wrapper {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        width: calc(100% - 100px);
        z-index: 999;
        height: 100%;
        background: rgba(0, 0, 0, .8);
        align-items: flex-start;
        justify-content: space-between;
        padding: 15px;
        transform: 300ms;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
    }

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

    .menu-wrapper .logo {
        text-align: center;
    }

    .menu-wrapper .logo img {
        height: 80px;
    }

    .menu-wrapper .search {
        height: 70px;
        display: flex;
        align-items: flex-end;
    }

    .menu-wrapper .search form {
        display: flex;
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        overflow: hidden;
    }

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

    .menu-wrapper .search form button {
        width: 30px;
        background: transparent;
        border: 0;
        color: #fff;
    }

    .menu-wrapper .menu {
        height: calc(100% - 140px);
        position: relative;
        padding-bottom: 30px;
    }

    .menu-wrapper .menu ul {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        list-style: none;
        padding: 0;
        margin: 0;
        overflow: scroll;
    }

    .menu-wrapper .menu ul li {
        display: block;
        width: 100%;
    }

    .menu-wrapper .menu ul li a {
        color: #fff;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #505050;
        width: 100%;
    }

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

    .breadcrumb-area .breadcrumb-image img {
        min-height: unset;
        height: 100px;
        border-radius: 0;
    }

    .breadcrumb-area .breadcrumb ul {
        overflow: scroll;
    }

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

    .breadcrumb-area .breadcrumb h1 {
        white-space: nowrap;
        margin-bottom: 8px;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    section.page {
        margin: 30px 0;
    }

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

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

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

    .article-details .article-header h2 {
        max-width: 100%;
    }

    .article-cover img {
        max-width: 100%;
        width: 100%;
    }

    .article-details {
        text-align: left;
    }

    .article-details .article-header h2 {
        max-width: 100%;
    }

    .article-cover img {
        max-width: 100%;
        width: 100%;
    }

    .article-details {
        text-align: left;
    }

    .contacts-content .contacts-container > div {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .contacts-content .contacts-container {
        flex-direction: column-reverse;
    }

    .contacts-content .contacts-container .form .form-content {
        padding-right: 0;
    }

    .contacts-content .contacts-container > .info {
        margin-top: 0;
        text-align: center;
    }

    .contacts-content .info-box {
        width: 100%;
    }

    .main-footer .footer-menu .menu-container .menu {
        width: 100%;
    }

    .main-footer .footer-menu .menu-container .menu ul a {
        margin-bottom: 10px;
        display: block;
        margin-right: 0;
    }

    .main-footer .socials a:first-child {
        margin-left: 0;
    }

    .main-products .owl-stage-outer {
        padding: 0;
    }

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

    .breadcrumb-area .breadcrumb {
        overflow: hidden;
    }

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

    .main-production .images img:nth-child(1) {
        top: unset;
        left: 0;
        width: 100%;
    }

    .main-articles .section-button {
        text-align: left;
        margin-top: 20px;
    }

    .map.loading {
        position: relative;
        overflow: hidden;
    }

    .map.loading:Before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #ebebeb;
        z-index: 111;
        border-radius: 20px;
        overflow: hidden;
        transition: 300ms;
    }

    .map.loading:After {
        content: '\f110';
        font-family: 'Font Awesome 5 Free';
        font-weight: bolder;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #ebebeb;
        z-index: 111;
        border-radius: 20px;
        overflow: hidden;

        animation-name: spin;
        animation-duration: 2000ms;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        transition: 300ms;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
            color: var(--orange);
        }
        to {
            transform: rotate(360deg);
            color: #000;
        }
    }

    .map.loaded:before,
    .map.loaded:after {
        opacity: 0;
        visibility: hidden;
    }

    .product-details .product-header h2 {
        font-size: 16px;
        padding: 10px 20px;
        margin-top: -3px;
    }

    .product-details .product-header {
        height: 30px;
    }

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

    .product-details .thumbnails img {
        height: 70px;
    }

    .product-details .thumbnails {
        margin-bottom: 0 !important;
    }

    .product-details .owl-dots {
        display: none !important;
    }

    .product-details .cover .owl-nav {
        display: flex;
    }

    .product-details .thumbnails .owl-nav {
        display: flex;
    }

    .product-details .cover {
        margin-bottom: 0;
    }

    .staff .person {
        width: 100%;
        margin: 5px 0;
        text-align: left;
    }

    .staff {
        column-gap: 0;
    }

    .dealers-container .delaer {
        width: 100%;
        margin: 0;
        flex-direction: column;
    }

    .dealers-container .delaer .logo {
        width: 100%;
    }

    .dealers-container .delaer .content {
        width: 100%;
        padding: 15px;
    }
}
