:root {
    --red: #403939;
    --yellow: #e22822;
    --dark: #e22822;
}

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

body {
    font-size: 16px;
    font-weight: 400;
    background-color: #f8f8f8;
}

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;
    z-index: 999;
    transition: 300ms;
    width: 100%;
}

.main-header .header-bar {
    padding-top: 15px;
}

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

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

.main-header .header-bar > div:not(.logo),
.main-header .menu-bar > div:not(.logo) {
    width: calc(50% - 160px);
}

.main-header .header-bar > div:not(.logo) {
    padding: 0 15px;
    font-size: 14px;
    height: 40px;
    position: relative;
}

.main-header .header-bar > div:not(.logo):before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: inherit;
    z-index: -1;
}

.main-header .header-bar .contact-bar a {
    color: #ffffff;
    transition: 300ms;
    font-weight: 300;
    display: block;
}

.main-header .header-bar .contact-bar a:Hover {
    color: #ffffff;
}

.main-header .header-bar .contact-bar:before {
    right: -30px;
    transform: skewX(-20deg);
}

.main-header .header-bar .action-bar:before {
    left: -30px;
    transform: skewX(20deg);
}

.main-header .header-bar .contact-bar:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: var(--yellow);
    width: 100vh;
    height: 100%;
    z-index: -1;
}

.main-header .header-bar .action-bar:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: var(--dark);
    width: 100vh;
    height: 100%;
    z-index: -1;
}

.main-header .header-bar .contact-bar {
    background: var(--yellow);
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: flex-start;
}

.main-header .header-bar .action-bar {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
}

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

.main-header .header-bar .action-bar .languages > .active {
    color: #fff;
    cursor: pointer;
    transition: 300ms;
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: 300;
}

.main-header .header-bar .action-bar .languages > .active:After {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-left: 10px;
}

.main-header .header-bar .action-bar .languages .list {
    position: absolute;
    right: -15px;
    top: calc(100% - 1px);
    background: var(--yellow);
    list-style: none;
    padding: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-10px);
    transition: 300ms;
    z-index: 11;
}

.main-header .header-bar .action-bar .languages .list a {
    display: block;
    color: #000;
    transition: 300ms;
    padding: 5px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
}

.main-header .header-bar .action-bar .languages .list a:Hover {
    background: var(--dark);
    color: #fff;
}

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

.main-header .header-bar .action-bar .languages:Hover > .active {
    color: #e22822;
}

.main-header .header-bar .action-bar .socials {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 18px;
}

.main-header .header-bar .action-bar .socials a {
    transition: 300ms;
    display: block;
    color: #fff;
}

.main-header .header-bar .action-bar .socials a:Hover {
    color: #e22822;
}

.main-header .menu-bar .menu > ul {
    list-style: none;
    padding: 0;
    display: -webkit-inline-box;
    column-gap: 10px;
    margin: 0;
}

.main-header .menu-bar .menu > ul > li > a {
    display: block;
    color: #000;
    transition: 300ms;
    padding: 30px 10px;
}

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

.main-header .menu-bar .menu > ul > li > a {
    display: block;
    font-weight: bolder;
    color: #000;
    transition: 300ms;
}

.main-header .menu-bar .menu > ul > li.has-sup > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-left: 10px;
}

.main-header .menu-bar .menu > ul > li:Hover > a {
    color: #e22822;
}

.main-header .menu-bar .menu > ul > li > ul {
    position: absolute;
    background: var(--yellow);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 100%;
    max-height: 0;
    transition: 600ms;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.main-header .menu-bar .menu > ul > li > ul > li > a {
    display: block;
    font-size: 14px;
    white-space: nowrap;
    padding: 10px 20px;
    transition: 300ms;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: -30px;
    opacity: 0;
}

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

.main-header .menu-bar .menu > ul > li:Hover > ul {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
}

.main-header .menu-bar .menu > ul > li:Hover > ul > li > a {
    margin-top: 0;
    opacity: 1;
}

.main-header .menu-bar > .action a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
    color: #000;
    transition: 300ms;
    text-align: right;
}

.main-header .menu-bar > .action a span {
    font-size: 13px;
}

.main-header .menu-bar > .action a p {
    margin: 0;
    font-weight: 600;
}

.main-header .menu-bar > .action a:Hover {
    color: #e22822;
}


.main-header .menu-bar > .action .icon {
    position: relative;
}

.main-header .menu-bar > .action .icon i {
    display: flex;
    position: relative;
    font-size: 35px;
    color: #e22822;
    font-weight: lighter;
    align-items: center;
    justify-content: center;
}


.main-header .menu-bar > .action .icon .count {
    position: absolute;
    background: var(--red);
    display: flex;
    width: 20px;
    height: 20px;
    z-index: 1;
    right: -10px;
    top: -10px;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.main-header .logo {
    min-width: 260px;
    text-align: center;
    padding: 0 80px;
    margin-top: -40px;
}

.main-header .logo p {
    font-size: 13px;
    color: #000;
    letter-spacing: 2px;
    transition: 300ms;
    margin-bottom: 8px;;
}

.main-header .logo:hover p {
    color: #e22822;
}

.main-header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-header .search-products {
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-header .search-products form {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 2px 10px 10px 10px;
    position: relative;
    margin-top: -5px;
}

.main-header .search-products form:before,
.main-header .search-products form:after {
    position: absolute;
    content: '';
    width: 47px;
    height: 52px;
    background: #fff;
    z-index: -1;
    top: 0;
}

.main-header .search-products form:before {
    left: -12px;
    transform: skewX(20deg);
}


.main-header .search-products form:after {
    right: -10px;
    transform: skewX(-20deg);
}

.main-header .search-products form input {
    border: 0;
    background: transparent;
    font-size: 14px;
    text-align: center;
    background: var(--red);
    height: 40px;
    margin-left: -10px;
    color: #fff;
}

.main-header .search-products form input::placeholder {
    letter-spacing: .2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: lighter;
}

.main-header .search-products form > i,
.main-header .search-products form > button {
    width: 40px;
    height: 40px;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    color: #c6c6c6;
    z-index: 1;
}

.main-header .search-products form > button {
    border: 0;
    background: transparent;
    position: relative;
    margin-left: -2px;
}

.main-header .search-products form > button .bg {
    position: absolute;
    left: -5px;
    top: 0;
    background: white;
    height: 100%;
    z-index: -1;
    transform: skewX(-20deg);
    width: calc(100% + 8px);
}

.main-header .search-products form > i:after,
.main-header .search-products form > button:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: skewX(20deg);
    background: #efefef;
    border-radius: 3px;
    transition: 300ms;
}

.main-header .search-products form > button:Before {
    content: '';
    position: absolute;
    left: -5px;
    width: 2px;
    top: 5px;
    height: calc(100% - 10px);
    background: #efefef;
    transform: skewX(-20deg);
}

.main-header .search-products form > button:after {
    opacity: 0;
    transform: skewX(-20deg);
}

.main-header .search-products form > button:Hover:after {
    opacity: 1;
}

.main-header .search-products form .bg-shadow {
    height: 6px;
    width: 70%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .3);
    background: transparent;
    z-index: -1;
}

.main-sliders {
    margin-top: 140px;
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
}

.main-sliders img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

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

.main-sliders .buttons-area {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 111;
}

.main-sliders .buttons {
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-sliders .buttons button {
    display: flex;
    width: 50px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    transition: 300ms;
    position: relative;
    z-index: 1;
    background: transparent;
}

.main-sliders .buttons button:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--red);
    transition: 300ms;
}

.main-sliders .buttons button:Hover {
    color: #000;
}

.main-sliders .buttons button:Hover:Before {
    background: var(--yellow);
}

.main-sliders .buttons button:first-child:Before {
    transform: skewX(20deg);
}

.main-sliders .buttons button:last-child:Before {
    transform: skewX(-20deg);
}

.main-sliders .item {
    padding-bottom: 30px;
}

.main-sliders:before,
.main-sliders:after {
    content: '';
    position: absolute;
    bottom: 30px;
    height: 50px;
    width: 250px;
    background: #f8f8f8;
    z-index: 11;
}

.main-sliders:after {
    right: -50px;
    transform: skewX(-20deg);
}

.main-sliders:before {
    left: -50px;
    transform: skewX(20deg);
}

section[class^="main-"]:not(.main-sliders) {
    margin: 120px 0;
}

section[class^="main-"] .section-header {
    padding-bottom: 100px;
    text-align: center;
}

section[class^="main-"] .section-header .sup-title {
    display: block;
    color: #b9b9b9;
    font-size: 22px;
}

section[class^="main-"] .section-header .title {
    font-size: 40px;
    font-weight: 800;
    display: block;
    text-transform: lowercase;
}

section[class^="main-"] .section-header .lines {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    margin-bottom: 60px;
}

section[class^="main-"] .section-header .lines > span {
    height: 3px;
    transform: skewX(30deg);
    border-radius: 1px;
    transition: 600ms;
    width: 0;
    opacity: 0;
}

section[class^="main-"] .section-header .lines > span:first-child {
    background: var(--red);
    transition-delay: 500ms;
}

section[class^="main-"] .section-header .lines > span:nth-child(2) {
    background: var(--yellow);
}

section[class^="main-"] .section-header .lines > span:last-child {
    background: var(--dark);
    transition-delay: 500ms;
}

section[class^="main-"] .section-header.wowed .lines > span {
    width: 60px;
    opacity: 1;
}

.main-counters .counters-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

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

.main-counters .counters-container > .counter-item {
    width: 25%;
    text-align: center;
    padding: 15px 30px;
    position: relative;
}

.main-counters .counters-container > .counter-item:not(:last-child):After {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #eee;
    transform: skewX(-10deg);
}

.main-counters .counters-container > .counter-item .count {
    font-size: 54px;
    font-weight: 800;
    color: #403939;
    margin: 20px 0;
    display: block;
}

.main-counters .counters-container > .counter-item .count:After {
    content: '+';
}

.main-counters .counters-container > .counter-item p {
    margin: 0;
    position: relative;
    display: inline-block;
    color: #231f20;
    padding-bottom: 20px;
}

.main-counters .counters-container > .counter-item p:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: 600ms;
}

.main-counters .counters-container > .counter-item.wowing p:after {
    left: 0;
    width: 100%;
}

.main-production-bg {
    background-image: url(images/main-products-bg.jpg);
    background-size: cover;
}

.main-categories {
    position: relative;
}

.category-item {
    display: block;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.category-item .cover {
    width: 100%;
    height: 550px;
    object-fit: contain;
}

.category-item .content .title {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 0;
    background: var(--yellow);
    color: #000;
    transition: 300ms;
}

.category-item:hover .content .title {
    background: var(--dark);
    color: #fff;
}


.main-categories .owl-nav {
    position: absolute;
    left: -80px;
    bottom: 0;
    z-index: -1;
    width: calc(100% + 160px);
    justify-content: space-between;
    display: flex;
    align-items: center;
}


.main-categories .owl-nav i {
    display: flex;
    width: 50px;
    height: 70px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.main-categories .owl-nav i:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #efefef;
    z-index: -1;
    transition: 300ms;
}

.main-categories .owl-nav .owl-prev i:after {
    transform: skewX(20deg);
}


.main-categories .owl-nav .owl-next i:after {
    transform: skewX(-20deg);
}

.main-categories .owl-nav i:Hover:after {
    background: var(--yellow);
}

.main-production {
    padding: 120px 0 240px;
    background-size: cover;
    background-attachment: fixed;
}

.main-production .text {
    max-width: 50%;
}

.main-production .text p {
    font-size: 72px;
    font-weight: bolder;
    color: #fff;
    margin-bottom: 50px;
}

.main-production .text p span {
    font-weight: 600;
    font-size: 28px;
    color: #e22822;
}

.main-production a {
    display: inline-block;
    padding: 10px 40px;
    color: #fff;
    position: relative;
    z-index: 1;
    text-transform: lowercase;
    letter-spacing: 2px;
}

.main-production a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--red);
    z-index: -1;
    transform: skewX(-20deg);
    transition: 300ms;
}

.main-production a:Hover:before {
    background: var(--dark);
}

.main-production a:After {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-left: 15px;
}


.main-media {
    display: flex;
    flex-wrap: Wrap;
    margin-bottom: 0 !important;
}

.main-media > .category {
    width: 50%;
    background-size: cover;
    display: flex;
    color: #fff;
}

.main-media > .category .content .sup-title {
    font-weight: lighter;
    text-transform: uppercase;
    display: block;
}

.main-media > .category .content .title {
    font-weight: 600;
    display: block;
    font-size: 30px;
}

.main-media > .category > .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 290px;
    width: 290px;
    justify-content: space-between;
}

.main-media > .category:nth-child(1) {
    height: 568px;
    align-items: flex-start;
    justify-content: flex-end;
}

.main-media > .category:nth-child(2) {
    height: 290px;
    align-items: flex-end;
    justify-content: flex-start;
    background-size: contain;
}

.main-media > .category:nth-child(3) {
    color: #000;
}

.main-media > .category:nth-child(4) {
    margin-top: -278px;
    height: 645px;
}

.main-media > .category:nth-child(1) .content {
    background: var(--dark);
}

.main-media > .category:nth-child(2) .content {
    background: #dbdada;
}

.main-media > .category:nth-child(2) .content .sup-title {
   color: #e22822;;
}

.main-media > .category:nth-child(2) .content .title {
   color: #e22822;;
}

.main-media > .category:nth-child(2) .content a {
   color: #e22822;;
}

.main-media > .category:nth-child(2) .content a:After {
   color: #e22822;;
}

.main-media > .category:nth-child(4) .content {
    background: var(--red);
}

.main-media > .category > .content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    text-transform: uppercase;
    color: #fff;
}

.main-media > .category > .content a:after {
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    font-size: 25px;
}

.main-media > .category:nth-child(3) form {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 50%;
    background-image: url(images/newsletter-bg.jpg);
    background-repeat: no-repeat;
    background-position: 15% bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    background-color: #e22822;
}

.main-media > .category:nth-child(3) form .sup-title {
    display: block;
    font-weight: lighter;
}

.main-media > .category:nth-child(3) form .title {
    display: block;
    font-weight: bolder;
    font-size: 30px;
    margin: 15px 0 40px 0;
}

.main-media > .category:nth-child(3) form .input {
    display: flex;
    width: 100%;
    allign-items: center;
    justify-content: flex-start;
}

.main-media > .category:nth-child(3) form .input input {
    width: calc(100% - 50px);
    border: 1px solid #000;
    background: transparent;
    padding: 10px 30px;
    border-radius: 30px;
    color: #000;
}

.main-media > .category:nth-child(3) form .input input::placeholder {
    color: rgba(0, 0, 0, .5);
}

.main-media > .category:nth-child(3) form .input button {
    width: 50px;
    border: 0;
    display: flex;
    height: 50px;
    transition: 300ms;
    background: transparent;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 25px;
    font-weight: bolder;
}

.main-media > .category:nth-child(3) form .input button:Hover {
   color: #e22822;;
}

.main-footer {
    background: #dbdada;
    padding: 120px 0;
    color: #6f6f6f;
    font-weight: 300;
}

.main-footer .footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
}

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

.main-footer .footer-container .logo {
    min-width: 300px;
}

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

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

.main-footer .footer-container .logo .socials a {
    color: #6f6f6f;
    transition: 300ms;
    display: block;
}

.main-footer .footer-container .logo .socials a:Hover {
   color: #e22822;;
}

.main-footer .footer-container .logo p {
    margin: 0;
}

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

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

.main-footer .footer-container > aside > ul li {
    margin: 10px 0;
}

.main-footer .footer-container > aside > ul li a {
    display: block;
    color: #6f6f6f;
    transition: 300ms;
}

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

.page-header-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

section.page {
    margin: 30px 0;
}

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

.page-container .sidebar {
    width: 300px;
    margin-top: -115px;
    position: sticky;
    top: 170px;
}

.page-container .sidebar ul {
    background: var(--red);
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-container .sidebar ul li a {
    display: block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: 300ms;
}

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

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

.page-container .sidebar ul li.active a:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 10px;
    font-size: 13px;
    transform: translateY(-2px);
    display: inline-block;
    color: #ff7500;
    font-weight: bolder;
}

.page-container .sidebar ul li.active a {
    font-weight: bolder;
}

.page-container .sidebar .aside-menu {
    display: flex;
    width: 100%;
    height: 85px;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    font-size: 25px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-container > .content {
    width: calc(100% - 300px);
    padding-left: 50px;
    color: #231f20;
}

.page-container > .content p {
    line-height: 2;
    letter-spacing: .5px;
    color: #231f20;
}

.breadcrumb {
    display: flex;
    border-radius: 0;
    background: transparent;
    margin-bottom: 60px;
}

.breadcrumb li a {
    color: #9b9797;
    display: block;
    transition: 300ms;
}

.breadcrumb li:not(:last-child) a:After {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    margin: 0 10px;
    font-size: 13px;
    color: #9b9797;
}

.breadcrumb li:last-child a {
    font-weight: 600;
}

.breadcrumb li a:Hover {
   color: #e22822;;
}

.page-header-image {
    margin-top: 230px;
}

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

.categories-container .category-item {
    width: calc(33% - 30px);
    margin: 15px;
}


.categories-container .category-item .cover {
    height: 300px;
}


.contact-details .contacts-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

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

.contact-details .contacts-container > div iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-details .contacts-container .info {
    padding-right: 50px;
   color: #e22822;;
}

.contact-details .contacts-container .info .company-title {
    display: block;
    font-size: 17px;
    font-weight: bolder;
   color: #e22822;;
    margin-bottom: 20px;
}

.contact-details .contacts-container .info nav {
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-size: 25px;
}

.contact-details .contacts-container .info nav a {
   color: #e22822;;
    transition: 300ms;
}

.contact-details .contacts-container .info nav a:Hover {
    display: block;
    color: var(--light);
}

.contact-details .form .form-header .title {
    font-size: 20px;
   color: #e22822;;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.contact-details .form .form-header p {
    margin: 0;
    max-width: 70%;
    font-weight: lighter;
    margin: 0;
}

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

.contact-details .form form .input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.contact-details .form form .input label {
    width: 40%;
}

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

.contact-details .form form .input:nth-child(6) {
    align-items: flex-start;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #ddd;
}

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

.contact-details .form form .input.button {
    justify-content: flex-end;
}

.contact-details .form form .input.button button {
    color: #e22822;
    background: transparent;
    border: 1px solid var(--yellow);
    padding: 15px 60px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: 300ms;
}

.contact-details .form form .input.button button:Hover {
    background: var(--yellow);
    color: #fff;
}

.hr-form .form-description {
    width: 450px;
}

.hr-form .form-description h2 {
    font-size: 25px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
   color: #e22822;;
}

.hr-form .form-body {
    margin-top: 30px;
}

.hr-form .form-body input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.hr-form .form-body label {
    font-size: 14px;
    margin-bottom: 5px;
}

.hr-form .form-body button {
    background: var(--yellow);
    border: 0;
    padding: 15px 50px;
    transition: 300ms;
    font-weight: bolder;
    text-transform: uppercase;
    color: #fff;
}

.hr-form .form-body button:Hover {
    background: var(--dark);
    color: #fff;
}

.product-container .product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    background: #fff;
    margin: 15px 0;
}

.product-container .product .image {
    width: 240px;
    overflow: hidden;
    background: #fff;
}

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

.product-container .product .action {
    width: 150px;
}

.product-container .product .content {
    width: calc(100% - 390px);
}

.product-summary .summary-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-size: 14px;
    color: #231f20;
}

.product-summary .summary-row .summary-col:first-child {
    width: 200px;
    font-size: 12px;
    color: #9b9797;
    font-weight: lighter;
}

.product-summary .summary-row:last-child {
    border: 0;
}

.product-summary .title {
    font-size: 16px;
    font-weight: bolder;
    color: #000;
    transition: 300ms;
}

.product-summary .title:Hover {
    color: #e22822;
}

.action.card-actions {
    text-align: center;
    padding: 0 20px;
}

.action.card-actions .qty-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.action.card-actions .qty-wrapper:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: skewX(-20deg);
    border: 1px solid #9b9797;
}

.action.card-actions .qty-wrapper input {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: center;
    max-width: 80px;
    color: #9b9797;
    padding: 10px 0;
}

.action.card-actions .add-card {
    background: transparent;
    border: 0;
    font-size: 25px;
    font-weight: lighter;
    color: #403939;
    transition: 300ms;
}

.action.card-actions .add-card i {
    font-weight: bolder;
}

.action.card-actions .add-card:Hover {
    color: #e22822;
}

.product-details .image img {
    max-height: 400px;
    object-fit: contain;
}

.product-details > .content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
    margin: 30px 0;
}

.product-details > .content > .action {
    width: 150px;
}

.product-details > .content > .product-summary {
    width: calc(100% - 150px);
}

.product-details > .content > div {
    background: #fff;
    padding: 30px;
}

.product-details .body table {
    width: 100%;
    margin: 30px 0;
    background: #fff;
}

.product-details .body table th,
.product-details .body table td {
    border: 1px solid #eee;
    padding: 10px;
    color: #9b9797;
}

.product-details .body table tr:nth-child(even) {
    background: #eee;
}

.table-container {
    padding: 15px 30px;
    background: #fff;
    overflow: auto;
}

.related-products {
    margin-top: 120px;
    background: #fff;
    padding: 60px 0 120px 0;
}

.related-products .related-products-title {
    display: block;
    font-size: 25px;
    margin-bottom: 30px;
}

.related-products .product {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.orders-content .order-header .title {
    font-size: 16px;
    font-weight: bolder;
    transition: 300ms;
}

.orders-content .order-header .description {
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: lighter;
}

.orders-content section {
    margin: 30px 0;
}

.orders-content section > .section-title {
    display: block;
    font-size: 25px;
    margin-bottom: 20px;
}

.orders-content form {
    display: flex;
    flex-wrap: wrap;
    align-items: centeR;
    justify-content: space-between;
}

.orders-content form .input {
    width: 100%;
    margin: 10px 0;
}

.orders-content form .input label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: lighter;
}

.orders-content form .input:nth-child(1),
.orders-content form .input:nth-child(2) {
    width: calc(50% - 10px);
}

.orders-content form .input input,
.orders-content form .input textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

.orders-content form .input button {
    padding: 15px 30px;
    border: 0;
    background: var(--yellow);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: bolder;
    transition: 300ms;
}

.orders-content form .input button:Hover {
    background: var(--dark);
    color: #fff;
}

.orders-content .products-table .remove-product {
    font-size: 14px;
    background: var(--red);
    border: 0;
    padding: 8px 15px;
    color: #fff;
    transition: 300ms;
}

.orders-content .products-table .remove-product i {
    margin-right: 10px;
}

.orders-content .products-table .remove-product:Hover {
    background: var(--dark);
}

.posts-container .post {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 20px;
    margin: 15px 0;
    transition: 300ms;
}

.posts-container .post .image {
    width: 300px;
    overflow: hidden;
}

.posts-container .post .image img {
    height: 100%;
    object-fit: cover;
    transition: 300ms;
}

.posts-container .post .content {
    width: calc(100% - 300px);
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.posts-container .post .content .title {
    display: block;
   color: #e22822;;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
}

.posts-container .post .content p {
    margin: 0;
    font-size: 14px;
}

.posts-container .post .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
}

.posts-container .post .footer .read-more {
    font-size: 14px;
    font-weight: bolder;
    color: #403939;
    transition: 300ms;
}

.posts-container .post:Hover {
    background: var(--yellow);
}

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

.posts-container .post .footer .read-more:Hover {
   color: #e22822;;
}

.post-details > .cover img {
    width: 100%;
}

.post-details > .header {
    margin: 30px 0;
}

.post-details > .header h1 {
    font-size: 25px;
}

.post-details > .header .date {
    font-size: 14px;
    opacity: .6;
}

.post-details > .images {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.post-details > .images a {
    width: calc(25% - 30px);
    margin: 15px;
    overflow: hidden;
}

.post-details > .images a img {
    transition: 300ms;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-details > .images a:Hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.page-container .sidebar ul {
    max-height: calc(100vh - 260px);
    overflow-y: auto;
}

.page-container .sidebar ul::-webkit-scrollbar {
    width: 3px;
}

.page-container .sidebar ul::-webkit-scrollbar-track {
    background: #fac809;
}

.page-container .sidebar ul::-webkit-scrollbar-thumb {
    background: #231f20;
}

.page-container .sidebar ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.page-header-image.no-image {
    margin-top: 220px;
}

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

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

.product-details .product-media .content {
    display: flex;
}

.product-details .product-media .content .product-summary {
    width: calc(100% - 100px);
    padding-right: 20px;
}

.product-details .product-media .content .buttons {
    width: 100px;
}

.product-details .product-media .content .buttons a,
.product-details .product-media .content .buttons span {
    color: #403939;
    font-size: 25px;
    display: block;
    text-align: center;
    transition: 300ms;
    cursor: pointer;
}

.product-details .product-media .content .buttons > a {
    margin: 10px 0;
}

.product-details .product-media .content .buttons a:Hover {
    color: #e22822;
}

.product-details .product-media .content .buttons .shares {
    position: relative;
    z-index: 1;
    width: 50px;
    margin: auto;
}

.product-details .product-media .content .buttons .shares ul {
    list-style: none;
    display: flex;
    column-gap: 10px;
    position: absolute;
    right: 0;
    padding: 10px 50px 10px 16px;
    background: var(--red);
    top: -5px;
    border-radius: 5px;
    z-index: -1;
    margin: 0;
    transition: 300ms;
    opacity: 0;
    visibility: hidden;
}

.product-details .product-media .content .buttons .shares ul > li > a {
    display: flex;
    color: #fff;
}

.product-details .product-media .content .buttons .shares ul > li > a:Hover {
    color: #e22822;
}

.product-details .product-media .content .buttons .shares:Hover > ul {
    opacity: 1;
    visibility: visible;
}

.product-details .product-media .content .buttons .shares:Hover > span {
    color: #fff;
}

.product-details .action.card-actions .qty-wrapper input {
    text-align: center;
    padding-left: 10px;
}

#productDetails {
    margin-top: 50px;
    justify-content: flex-start;
    background: #ebebeb;
    border-radius: 10px;
    overflow: hidden;
}

#productDetails li {
    width: 33%;
}

#productDetails li > button {
    width: 100%;
    text-align: center;
    border-radius: 0;
    padding: 15px 0;
    transition: 300ms;
}

#productDetails li > button.active {
    background: var(--red);
}

.page-header-image img {
    display: none !important;
}

.action.card-actions .qty-wrapper {
    display: none;
}

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

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

    .main-header .menu-bar > .action .text {
        display: none;
    }

    .main-header .header-bar .action-bar .socials {
        display: none;
    }

    .main-header .logo p {
        display: none;
    }

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

    section[class^="main-"]:not(.main-sliders) {
        margin: 30px 0;
    }

    section[class^="main-"] .section-header .title {
        font-size: 25px;
    }

    section[class^="main-"] .section-header .sup-title {
        font-size: 16px;
    }


    section[class^="main-"] .section-header {
        padding-bottom: 80px;
    }

    .main-counters .counters-container {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .main-counters .counters-container > .counter-item {
        width: 50%;
    }

    .main-counters .counters-container > .counter-item:not(:last-child):After {
        content: none;
    }

    .main-counters .counters-container > .counter-item .count {
        font-size: 25px;
    }

    .main-counters .counters-container > .counter-item p {
        margin: auto;
    }

    .main-production .text {
        max-width: 100%;
    }

    .main-production .text p {
        font-size: 35px;
    }

    .main-production .text p span {
        display: block;
        font-size: 20px;
    }

    .main-media > .category {
        width: 100% !important;
        margin: 0 !important;
        height: 300px !important;
    }

    .main-footer {
        padding: 60px 0;
    }

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

    .main-header .logo {
        padding: 0;
        max-width: 180px !important;
        min-width: unset;
        margin-top: -70px;
        transform: translateX(-60%);
    }

    .main-header .menu-bar > .action .icon i {
        font-size: 20px;
    }

    .main-header .menu-bar > div:not(.logo) {
        margin-top: 15px;
        width: calc(50% - 100px);
        padding-right: 9px;
    }

    .main-header:before {
        height: calc(100% - 50px);
    }

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

    .category-item .cover {
        height: 300px;
    }

    .main-header .toggle-menu {
        display: flex;
        font-size: 20px;
        border: 0;
        background: transparent;
        color: #e22822;
        margin-top: -10px;
    }

    .menu-wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1111;
        width: 100%;
        height: 100%;
        transition: 300ms;
        padding: 30px;

        background: rgba(255, 255, 255, 0.8);
        overflow: scroll;

        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

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

    .menu-wrapper .menu > ul > li > a {
        display: block;
        color: #000;
        font-weight: bolder;
        margin: 10px 0;
    }

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

    .menu-wrapper .menu > ul > li > ul > li > a {
        font-size: 16px;
        font-weight: 600;
        color: #000;
        margin: 5px 0;
        display: block;
    }

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

    .menu-wrapper .contact-bar a {
        display: block;
        color: #000;
        display: block;
        margin: 20px 0;
        font-size: 15px;
        font-weight: bolder;
    }

    .menu-wrapper .socials {
        display: flex;
        font-size: 20px;
        column-gap: 20px;
    }

    .menu-wrapper .socials a {
        color: #000;
    }


    .menu-wrapper .toggle-menu {
        display: flex;
        width: 50px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border: 0;
        color: #fff;
        transition: 300ms;
        z-index: 1;
        background: transparent;
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .menu-wrapper .toggle-menu:Before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: var(--red);
        transition: 300ms;
        transform: skewX(20deg);
    }

    .menu-wrapper:Before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--yellow);
        z-index: -1;
        transform: skewX(20deg) translateY(100%);
        transition: 600ms;
    }

    .open-menu .menu-wrapper {
        max-height: 100%;
        opacity: 1;
        visibility: visible;
    }

    .open-menu .menu-wrapper:Before {
        transform: skewX(20deg) translateY(0);
    }

    .page-header-image {
        margin-top: 175px;
    }

    .page-header-image img {
        height: 200px;
    }

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

    .page-container .sidebar {
        width: 100%;
        position: unset;
        margin-top: 30px;
    }

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

    .breadcrumb {
        margin-bottom: 30px;
        overflow: auto;
        flex-wrap: unset;
    }

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

    .posts-container .post {
        flex-direction: column-reverse;
    }

    .posts-container .post .content {
        width: 100%;
    }

    .posts-container .post .image {
        width: 100%;
        margin-bottom: 30px;
    }

    .posts-container .post .content p {
        margin: 20px 0;
    }

    .post-details > .images a {
        width: calc(50% - 10px);
        margin: 5px;
    }

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

    .categories-container .category-item .cover {
        height: 200px;
    }

    .product-container .product {
        flex-direction: column;
        padding: 0 15px;
    }

    .product-container .product > div {
        width: 100% !important;
    }

    .action.card-actions .qty-wrapper {
        width: 150px;
        margin: 10px auto;
    }

    .product-container .product {
        flex-direction: column;
        padding: 0 15px;
    }

    .product-container .product > div {
        width: 100% !important;
    }

    .action.card-actions .qty-wrapper {
        width: 150px;
        margin: 10px auto;
    }

    .product-details > .content {
        flex-direction: column;
        row-gap: 20px;
    }

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

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

    .contact-details .contacts-container > div {
        width: 100% !important;
        padding: 0 !important;
    }

    .contact-details .form form .input {
        flex-direction: column;
        justify-content: flex-start;
    }

    .contact-details .form form .input label {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-details .form .form-header p {
        max-width: 100%;
    }

    .main-counters {
        overflow: hidden;
    }

    .main-header .header-bar > .contact-bar {
        display: none;
    }

    .main-header .header-bar .action-bar {
        width: 100px !important;
    }

    .main-sliders:before, .main-sliders:after {
        width: 130px;
        height: 30px;
    }

    .main-sliders .buttons {
        padding: 0 15px;
    }

    .main-header {
        z-index: 1111;
    }

    .main-media > .category .content .title {
        font-size: 16px;
    }

    .main-media > .category .content .sup-title {
        font-size: 14px;
    }

    .main-media > .category:nth-child(3) form .title {
        font-size: 16px;
    }

    .main-media > .category:nth-child(3) form .sup-title {
        font-size: 14px;
    }

    .main-media > .category:nth-child(3) form {
        padding-left: 5%;
    }

    .main-media > .category > .content {
        width: 200px;
        height: 230px;
    }

    .product-details .product-media {
        flex-direction: column;
    }

    .product-details .product-media > div {
        width: 100%;
        margin-bottom: 20px;
    }

    .product-details .action.card-actions .qty-wrapper {
        width: 100%;
    }

    .product-summary .summary-row {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: auto;
    }

    #productDetails li {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .main-header .menu-bar > div {
        width: 33% !important;
    }

    .main-header .menu-bar .menu > ul > li > a {
        padding: 30px 5px;
        font-size: 15px;
    }

    .main-sliders {
        min-height: 550px;
    }

    .main-header .logo p {
        font-size: 12px;
        letter-spacing: 0;
    }
}

.action{
	display: flex;
    justify-content: space-between;
}
.quick-contact.whatsapp {
    bottom: 80px;
    background: #28d366;
}



.quick-contact {
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 99;
    background: #20429a;
    color: #fff !important;
    padding: 12px;
    border-radius: 50px;
    font-size: 25px;
    width: 60px;
    height: 60px;
    text-align: center;

}


.service_post .pagination-area, .blog_post .pagination-area {
    padding-top: 20px;
}
.pagination-area, .pagination_blog {
    position: relative;
    padding-top: 15px;
}body .pagination, .page-numbers {
     position: relative;
     padding: 0px 0px 0px 0px;
 }body .pagination li, .page-numbers li {
      display: inline-block;
  }.page-item:first-child .page-link {
       border-top-left-radius: 0.25rem;
       border-bottom-left-radius: 0.25rem;
   }
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
body .pagination li.active a, .page-numbers li.active a {
    transform: translateY(0px);
    color: var(--color-set-one-1) !important;
    text-decoration-color: var(--color-set-one-1) !important;
    border: 0px;
}
body .pagination li a.page-link, body .pagination li .page-numbers, .page-numbers li a.page-link, .page-numbers li .page-numbers {
    width: 35px;
    display: block;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    font-weight: 700;
    background-color: transparent !important;
    color: var(--heading-color-one);
    text-decoration: underline;
    text-decoration-color: var(--color-white);
    border: unset;
    text-align: center;
    padding: 0px;
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}
.page-link {
    padding: 0.375rem 0.75rem;
}
.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}body .pagination li, .page-numbers li {
     display: inline-block;
 }body .pagination li.next_link a, body .pagination li.prev_link a, body .pagination li a.next, body .pagination li a.prev, .page-numbers li.next_link a, .page-numbers li.prev_link a, .page-numbers li a.next, .page-numbers li a.prev {
      width: 30px;
      display: block;
      height: 30px;
      background: var(--color-white);
      border: 1px solid var(--color-set-one-bor-3) !important;
      border-radius: 45px;
      padding: 0px;
      text-align: center;
      color: var(--content-color-one);
      line-height: 40px;
      font-size: 18px;
      font-weight: 700;
  }
li.next_link.page-item{

border: 1px solid black;
border-radius: 40px;
background: white;}

.auto-container, .auto_container {
    position: static;
    max-width: 1240px;
    padding: 0px 15px;
    margin: 0 auto;
}

.main-header .search-products form input::placeholder {
    color: #ffffff80 !important;
}