:root {
    --red: #ac0000;
    --dark-red: #8d0000;
}

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

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

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wow {
    visibility: hidden;
}

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

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

#main-video {
    transition: 1000ms;
}

html[lang="en"] #main-counters .counter-container .counters .counter .text .title span,
html[lang="es"] #main-counters .counter-container .counters .counter .text .title span {
    display: block;
}

html[lang="en"] .main-header .menu > ul > li > a {
    font-size: 14px;
}

.langauges-list {
    position: fixed;
    right: 120px;
    top: 40px;
    width: 100%;
    z-index: 999;
    height: 80px;
    transition: 800ms;
    visibility: hidden;
}

.langauges-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 25px;
}

.langauges-list ul li {
    transition: 800ms;
    transform: translateY(-50px);
    opacity: 0;
}

.langauges-list ul li a {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: lighter;
    text-transform: capitalize;
    transition: 300ms;
}

.langauges-list ul li a:Hover {
    color: var(--red);
}

.langauges-list ul li.active a {
    color: var(--red);
    font-weight: 500;
}

.open-lang-menu #main-video {
    transform: scale(.9) translateY(50px);
    filter: brightness(50%);
}

.open-lang-menu .langauges-list {
    visibility: visible;
}

.open-lang-menu .langauges-list li {
    opacity: 1;
    transform: translateX(0);
}

.open-lang-menu .main-header .language-btn button {
    transform: translateY(-30px);
    color: var(--red);
}

.open-lang-menu .main-header .language-btn button i:before {
    content: '\f00d';
}

.open-lang-menu .main-header > div:not(.language-btn) {
    transform: translateX(-35px);
    opacity: 0;
    visibility: hidden;
}

main#home {
    width: 100%;
    height: 100vh;
    position: relative;
}

#home > section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row;
    color: #000;
    position: relative;
}

#home .swiper-slide {
    cursor: default;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

#main-video .content {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 11;
}

#main-video .content .text-box {
    width: 450px;
    max-width: 100%;
    transition: 800ms;
}

#main-video .content .sup-title {
    margin-bottom: 10px;
    display: block;
    color: var(--red);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 1000ms;
    transform: translateY(-50px);
    opacity: 0;
}

.cta-slider #main-video .content .sup-title {
    transform: translateY(0);
    opacity: 1;
}

#main-video .content h1 {
    color: #fff;
    font-size: 64px;
    font-weight: bolder;
    margin-bottom: 30px;
    transition: 1000ms;
    transform: translatex(-80px);
    opacity: 0;
}

.cta-slider #main-video .content h1 {
    transform: translatex(0);
    opacity: 1;
}

#main-video .content p {
    margin-bottom: 30px;
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    transform: translatex(-120px);
    opacity: 0;
    transition: 1000ms;
}

.cta-slider #main-video p {
    transform: translatex(0);
    opacity: 1;
}

#main-video .content a {
    font-size: 14px;
    display: inline-block;
    padding: 15px 30px;
    background: var(--red);
    color: #fff;
    font-weight: 500;
    transition: 1000ms;
    transform: translateY(80px);
    opacity: 0;
}

.cta-slider #main-video a {
    transform: translateY(0);
    opacity: 1;
}

#main-video .content a:Hover {
    background: var(--dark-red);
    box-shadow: 0 0 30px var(--dark-red);
}

#main-video .content .scroll-button {
    position: absolute;
    bottom: calc(50% - 25px);
    right: 0;
    padding-right: 30px;
}

#main-video .content .scroll-button button {
    background: transparent;
    transition: 300ms;
    border: 0;
    font-size: 30px;
    color: var(--red);
    transition: 300ms;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

#main-video .content .vertical-text {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .2px;
    transition: 1000ms;
    transform: rotate(-180deg) translateX(100px);
    opacity: 0;
}

.cta-slider #main-video .content .vertical-text {
    transform: rotate(-180deg) translateX(0);
    opacity: 1;
}

#main-video .content .about-button {
    position: absolute;
    left: calc(50% - 19px);
    bottom: 0;
    transform: translateY(20px);
}

#main-video .content .about-button p {
    display: flex;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 38px;
}

#main-video .content .about-button p i {
    font-weight: lighter;
    font-size: 40px;
    margin-left: -3px;
    margin-bottom: 30px;
    animation: arrowJump 1200ms linear infinite;
    transition: 300ms;
}

@keyframes arrowJump {
    50% {
        transform: translateY(20px);
        text-shadow: 0 0 20px red;
    }
}

#main-about .about-content {
    height: 100%;
    position: relative;
    overflow: hidden;
}

#main-about .about-content .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(100vh - 400px);
    position: relative;
}

#main-about .about-content .about-container > div {
    width: 50%;
}

#main-about .about-content .about-container .images {
    display: flex;
    flex-direction: column;
}

#main-about .about-content .about-container .images > div {
    display: flex;
}

#main-about .about-content .about-container .images .image-row-1 {
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}

#main-about .about-content .about-container .images .image-row-1 .image-col:first-child {
    width: 300px;
}

#main-about .about-content .about-container .images .image-row-1 .image-col:last-child {
    width: calc(100% - 300px);
}

#main-about .about-content .about-container .images .image-row-1 .image-col img {
    width: 370px;
    height: 480px;
    object-fit: cover;
    transform: translatex(250px);
    transition: 1000ms;
    opacity: 0;
}

#main-about.swiper-slide-active .about-content .about-container .images .image-row-1 .image-col img {
    opacity: 1;
    transform: translateX(0);
}

#main-about .about-content .about-container .images .image-row-1 .since {
    text-transform: lowercase;
    color: #eeeeee;
    font-size: 9vh;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -1vh;
    width: 100%;
    display: block;
    margin-bottom: -25px;
    margin-left: -7px;
    transform: translateY(250px);
    transition: 1000ms;
    opacity: 0;
}

#main-about.swiper-slide-active .about-content .about-container .images .image-row-1 .since {
    opacity: 1;
    transform: translateY(0);
}

#main-about .about-content .about-container .images .number {
    display: block;
    font-size: 20vh;
    font-weight: 800;
    line-height: 1;
    color: var(--red);
}

#main-about .about-content .about-container .images .image-row-1 .image-col:first-child .number {
    margin-bottom: -35px;
    margin-left: -7px;
}

#main-about .about-content .about-container .images .image-row-2 .image-col:first-child {
    width: 200px;
    transform: translateY(250px);
    transition: 1000ms;
    opacity: 0;
}

#main-about.swiper-slide-active .about-content .about-container .images .image-row-2 .image-col:first-child {
    opacity: 1;
    transform: translateY(0);
}

#main-about .about-content .about-container .images .image-row-2 .image-col:last-child {
    padding-left: 20px;
}

#main-about .about-content .about-container .images .image-row-2 .image-col:last-child .number {
    margin-top: -25px;
    transform: translateY(200px);
    transition: 1000ms;
    opacity: 0;
    transition-delay: 400ms;
}

#main-about.swiper-slide-active .about-content .about-container .images .image-row-2 .image-col:last-child .number {
    opacity: 1;
    transform: translateY(0);
}

#main-about .about-content .about-container .text {
    padding-right: 10%;
}

#main-about .about-content .about-container .text .sup-title {
    color: #989898;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

#main-about .about-content .about-container .text h2 {
    font-size: 50px;
    letter-spacing: 1.2px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 40px;
    transition: 1000ms;
    transform: translateX(-120px);
    opacity: 0;
    font-weight: 700;
}

#main-about.swiper-slide-active .about-content .about-container .text h2 {
    opacity: 1;
    transform: translateX(0);
}

#main-about .about-content .about-container .text a {
    border: 1px solid var(--red);
    font-size: 14px;
    padding: 15px 30px;
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    transition: 300ms;
}

#main-about .about-content .about-container .text a:Hover {
    background-color: var(--red);
    color: #fff;
    box-shadow: 0 0 30px var(--red);
}

#main-about .about-content .company-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #ededee;
    font-size: 17vh;
    overflow: hidden;
}

#main-about .about-content .company-text span {
    width: 100%;
    font-weight: 800;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -15px;
}

#main-about .about-content .company-text span:first-child {
    margin-bottom: -30px;
    transition: 1500ms;
    transform: translateX(-250px);
    opacity: 0;
}

#main-about.swiper-slide-active .about-content .company-text span:first-child {
    opacity: 1;
    transform: translateX(320px);
}

#main-about .about-content .company-text span:last-child {
    transition: 1500ms;
    transform: translateX(250px);
    opacity: 0;
}

#main-about.swiper-slide-active .about-content .company-text span:last-child {
    opacity: 1;
    transform: translateX(0);
}

#main-categories {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#main-categories .categories-content {
    width: calc(100% - calc(calc(100% - 1400px) / 2));
    background: var(--red);
    height: 100vh;
    padding: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#main-categories .categories-content > .text {
    width: 100px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 14px;
}

#main-categories .categories-content > .text:After {
    content: '';
    position: absolute;
    left: calc(50% - 1.5px);
    bottom: -60px;
    width: 4px;
    height: 40px;
    background: #1f1f1f;
    border-radius: 5px;
}

#main-categories .categories-content > .categories {
    width: calc(100% - 100px);
    display: flex;
    height: calc(100vh - 200px);
}

#main-categories .categories-content > .categories .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 600px;
    transition: 1000ms;
}

#main-categories .categories-content > .categories .preview {
    width: calc(100% - 600px);
}

#main-categories .categories-content > .categories .preview img {
    transition: 1000ms;
    display: block;
}

#main-categories .categories-content > .categories .preview .shadow-text {
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 80px;
    width: 100%;
    padding-left: 20%;
    text-align: right;
    font-weight: 800;
    opacity: .1;
    z-index: -1;
}

#main-categories .categories-content > .categories .menu .sup-title {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    color: #940000;
    margin-bottom: 50px;
}

#main-categories .categories .nav-tabs {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 0;
}

#main-categories .categories .nav-tabs button.nav-link {
    background: transparent;
    border-radius: 0;
    border: 0;
    color: #940000;
    padding: 15px 0;
    font-size: 45px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    white-space: nowrap;
    transition: 300ms;
}

#main-categories .categories .nav-tabs button.nav-link:Before {
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    font-size: 35px;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50px);
    transition: 300ms;
    opacity: 0;
    visibility: hidden;
}

#main-categories .categories .nav-tabs button.nav-link.active {
    color: #fff;
    padding-left: 60px;
}

#main-categories .categories .nav-tabs button.nav-link.active:Before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

#main-categories .view-all a {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    transition: 300ms;
}

#main-categories .view-all a i {
    font-weight: lighter;
    margin-left: 15px;
    transition: 300ms;
}

#main-categories .view-all a:Hover i {
    margin-left: 20px;
}

#main-categories .categories-content > .categories .preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    text-align: center;
    z-index: 1;
}

#main-categories.clicked .preview img {
    transform: translateX(100px);
}

#main-categories.clicked .categories-content > .categories .menu {
    transform: translateX(-100px);
}

#main-categories .categories-content > .categories .preview .view-products {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    transition: 600ms;
    border: 1px solid #fff;
    padding: 10px 20px;
    letter-spacing: .5px;
    transform: translateY(-30px);
    display: inline-block;
    opacity: 0;
}

#main-categories .categories-content > .categories .preview .view-products i {
    margin-left: 10px;
}

#main-categories .categories-content > .categories .preview .view-products:Hover {
    background-color: #fff;
    color: var(--red);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

#main-categories .categories-content > .categories .preview .tab-pane.show .view-products {
    opacity: 1;
    transform: translateX(0);
}

#main-categories .categories .nav-tabs li {
    transition: 1000ms;
    transform: scale(.8);
}

#main-categories .categories .nav-tabs li:nth-child(1) {
    transition-delay: 300ms;
}

#main-categories .categories .nav-tabs li:nth-child(2) {
    transition-delay: 400ms;
}

#main-categories .categories .nav-tabs li:nth-child(3) {
    transition-delay: 500ms;
}

#main-categories .categories .nav-tabs li:nth-child(4) {
    transition-delay: 600ms;
}

#main-categories .categories .nav-tabs li:nth-child(5) {
    transition-delay: 700ms;
}

#main-categories .categories .nav-tabs li:nth-child(6) {
    transition-delay: 800ms;
}

#main-categories .categories .nav-tabs li:nth-child(7) {
    transition-delay: 900ms;
}

#main-categories .categories .nav-tabs li:nth-child(8) {
    transition-delay: 1000ms;
}

#main-categories .categories .nav-tabs li:nth-child(9) {
    transition-delay: 1100ms;
}

#main-categories .categories .nav-tabs li:nth-child(10) {
    transition-delay: 1200ms;
}

#main-categories .categories .nav-tabs li:nth-child(11) {
    transition-delay: 1300ms;
}

#main-categories.swiper-slide-active .categories .nav-tabs li {
    transform: scale(1);
}

#main-categories .categories .nav-tabs li:nth-child(n+8) {
    display: none !important;
}

#main-production {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: calc(calc(100% - 1400px) / 2);
    background-image: url(/images/production-bg.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    background-color: whitesmoke;
}

html[lang="ar"] #main-production {
    padding-left: 0;
    padding-right: calc(calc(100% - 1400px) / 2);
}

#main-production > div {
    width: 50%;
}

#main-production .image img {
    width: 100%;
    height: calc(100vh - 200px);
    object-fit: cover;
    transform: translateX(240px);
    filter: grayscale(1) brightness(0.5);
    transition: 1000ms;
}

#main-production.swiper-slide-active .image img {
    filter: grayscale(0);
    transform: translateX(0);
}

#main-production .text {
    max-width: 100%;
    width: 450px;
    transition: 1000ms;
    transform: translateX(-240px);
    opacity: 0;
}

#main-production.swiper-slide-active .text {
    opacity: 1;
    transform: translateX(0);
}

#main-production .text .sup-title {
    color: #989898;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

#main-production .text h3 {
    font-size: 50px;
    letter-spacing: 1.2px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 40px;
    font-weight: 700;

}

#main-production .text a {
    border: 1px solid var(--red);
    font-size: 14px;
    padding: 15px 30px;
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    transition: 300ms;
}

#main-production .text a:Hover {
    background-color: var(--red);
    color: #fff;
    box-shadow: 0 0 30px var(--red);
}

#main-production .text p {
    font-size: 24px;
    color: #3d3d3d;
    font-weight: 300;
    margin-bottom: 40px;
}

#main-counters {
    padding-right: calc(calc(100% - 1400px) / 2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

html[lang="ar"] #main-counters {
    padding-right: 0;
    padding-left: calc(calc(100% - 1400px) / 2);
}

html[lang="ar"] #main-counters .counter-container .image img {
    left: 50px;
    width: calc(100% - 50px);
}

html[lang="ar"] .contacts-container .info section .boxes .box .content {
    padding-left: 0;
    padding-right: 20px;
}

#main-counters .counter-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    height: 100vh;
}

#main-counters .counter-container .image {
    width: 40vw;
    position: relative;
    height: 640px;
}

#main-counters .counter-container .image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1000ms;
    transform: translateX(-240px);
    opacity: 0;
}

#main-counters.swiper-slide-active .counter-container .image img {
    opacity: 1;
    transform: translateX(0);
}

#main-counters .counter-container .counters {
    display: flex;
    flex-wrap: wrap;
    padding-left: 10vw;
    row-gap: 80px;
    width: calc(100% - 40vw);
}

#main-counters .counter-container .counters .counter {
    width: calc(20vw - 56px);
}

#main-counters .counter-container .counters .counter .text {
    margin-top: 30px;
}

#main-counters .counter-container .counters .counter .text .title {
    display: block;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    white-space: nowrap;
}

#main-counters .counter-container .counters .counter .text .title span {
    font-weight: 700;
}

#main-counters .counter-container .counters .counter img {
    transition: 1000ms;
    transform: scale(.6);
    opacity: 0;
}

#main-counters.swiper-slide-active .counter-container .counters .counter img {
    opacity: 1;
    transform: scale(1);
}

.lines-container {
    position: absolute;
    z-index: -1;
    width: calc(100% - 260px);
    height: 100%;
    left: 0;
    top: 0;
}

.lines-container span {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(20vw - 56px);
    height: 0;
    border-left: 1px solid #eeeeee;
    transition: 1500ms;
}

.lines-container span:nth-child(1) {
    left: 260px;
    transition-delay: 600ms;
}

.lines-container span:nth-child(2) {
    left: calc(260px + 20%);
    transition-delay: 600ms;
}

.lines-container span:nth-child(3) {
    left: calc(260px + 40%);
    transition-delay: 600ms;
}

.lines-container span:nth-child(4) {
    left: calc(260px + 60%);
    transition-delay: 600ms;
}

.lines-container span:nth-child(5) {
    left: calc(260px + 80%);
    transition-delay: 600ms;
}

.swiper-slide-active .lines-container span {
    height: 100%;
}

#main-counters .counter-container .scroll-button {
    width: 100px;
    position: absolute;
    right: 100px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 50px;
}

#main-counters .counter-container .scroll-button p {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 20px;
    font-weight: lighter;
    color: var(--red);
    text-transform: uppercase;
    cursor: pointer;
}

#main-counters .counter-container .scroll-button p i {
    font-weight: lighter;
    margin-top: 30px;
}

#main-counters .counter-container .counters .counter .count-text {
    font-size: 70px;
    color: var(--red);
    transition: 300ms;
    font-weight: lighter;
}

#main-media {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: flex-end;
}

#main-media .media-content {
    padding-left: 260px;
}

#main-media .media-content .media-container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
}

#main-media .media-content .media-container aside:not(.articles) {
    width: calc(20vw - 51px);
    height: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    transition: 300ms;
    position: relative;
    z-index: 1;
}

#main-media .media-content .media-container aside.technology {
    background: #313131;
}

#main-media .media-content .media-container aside.documents {
    background: #5e0205;
}

#main-media .media-content .media-container aside:not(.articles) .sup-title {
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: lighter;
    letter-spacing: .5px;
    transition: 1000ms;
    transform: translateY(-100px);
    opacity: 0;
}

#main-media.swiper-slide-active .media-content .media-container aside:not(.articles) .sup-title {
    opacity: 1;
    transform: translateY(0);
}

#main-media .media-content .media-container aside:not(.articles) .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    display: block;
    transition: 1000ms;
    transform: translateX(-100px);
    opacity: 0;
}

#main-media.swiper-slide-active .media-content .media-container aside:not(.articles) .title {
    opacity: 1;
    transform: translateX(0);
}

#main-media .media-content .media-container aside:not(.articles) footer {
    width: 100%;
}

#main-media .media-content .media-container aside:not(.articles) footer a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    transition: 1000ms;
    transform: translateY(100px);
    opacity: 0;
}

#main-media.swiper-slide-active .media-content .media-container aside:not(.articles) footer a {
    opacity: 1;
    transform: translateY(0);
}

#main-media .media-content .media-container aside:not(.articles) footer a i {
    font-weight: lighter;
}

#main-media .media-content .media-container aside:not(.articles) footer a:Hover {
    color: var(--red);
}

#main-media .media-content .media-container aside:not(.articles):Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 300ms;
    opacity: 0;
}

#main-media .media-content .media-container aside:not(.articles):Hover:Before {
    opacity: 1;
}

#main-media .media-content .media-container aside.articles {
    width: calc(40vw - 103px);
}

#main-media .media-content .media-container aside.articles .article {
    height: calc(calc(40vw - 103px) - 520px);
    background-size: cover;
    background-position: center center;
    position: relative;
}

#main-media .media-content .media-container aside.articles .article .content {
    background: var(--red);
    width: 50%;
    height: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

#main-media .media-content .media-container aside.articles .article .content .articles-text {
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: lighter;
    letter-spacing: .5px;
    color: #fff;
}

#main-media .media-content .media-container aside.articles .article .content .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    width: 100%;
}

#main-media .media-content .media-container aside.articles .article .content .footer .title {
    font-weight: 500;
    font-size: 14px;
}

#main-media .media-content .media-container aside.articles .article .content .footer nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
}

#main-media .media-content .media-container aside.articles .article .content a.title {
    height: calc(100% - 51px);
    padding-bottom: 20px;
    display: block;
    padding-right: 20px;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    transition: 300ms;
}

#main-media .media-content .media-container aside.articles .article .content a p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

#main-media .media-content .media-container aside.articles .article .content a.title:Hover {
    color: var(--dark-red);
}

#main-media .media-content .media-container aside.articles .article .content .footer button {
    border: 0;
    background: transparent;
    color: #fff;
    transition: 300ms;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

#main-media .media-content .media-container aside.articles .article .content .footer button i {
    font-weight: lighter;
}

#main-media .media-content .media-container aside.articles .article .content .footer button:Hover {
    background: var(--dark-red);
}

#main-media .newsletter {
    background-image: url(/images/newsletter-bg.jpg);
    width: calc(80vw - 205px);
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20vw;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-color: var(--red);
    position: relative;
    z-index: 1;
}

#main-media .newsletter:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--red);
    left: -650px;
    z-index: -1;
}

#main-media .newsletter .sup-title {
    margin-bottom: 5px;
    display: block;
    font-weight: lighter;
    text-transform: uppercase;
    font-size: 14px;
}

#main-media .newsletter .title {
    display: block;
    font-size: 38px;
    font-weight: 600;
}

#main-media .newsletter .button button {
    background: transparent;
    border: 0;
    transition: 300ms;
    font-size: 35px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

#main-media .newsletter .button button:Hover {
    background: #fff;
    color: var(--red);
    box-shadow: 0 0 20px #fff;
}

.main-footer {
    background-image: url(/images/footer-bg.jpg);
    background-size: cover;
    background-position: center center;
}

.main-footer .footer-container {
    display: flex;
    column-gap: 30px;
    position: relative;
    justify-content: space-between;
}

.main-footer .footer-container > aside {
    width: 100%;
    padding: 120px 0 60px;
}

.main-footer .footer-container .logo {
    background-color: #2d2d2d;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 250px;
    max-width: 250px;
    align-items: center;
    justify-content: flex-end;
}

.main-footer .footer-container .logo > a img {
    width: 180px !important;
}

.main-footer .footer-container .logo > a img:first-child {
    width: unset;
    margin-bottom: 30px;
}

.main-footer .footer-container .logo .copyright {
    margin: 50px 0 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    transition: 300ms;
}

.main-footer .footer-container .logo:Hover .copyright {
    color: #fff;
}

.main-footer .footer-container .logo .copyright img {
    width: 20px;
    margin-left: 5px;
}

.main-footer .footer-container .menu-title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 20px;
}

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

.main-footer .footer-container .menu ul li a {
    display: block;
    white-space: nowrap;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    transition: 300ms;
    padding: 6px 0;
}

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

.main-footer .footer-container .contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    transition: 300ms;
    padding: 6px 0;
    font-size: 14px;
}

.main-footer .footer-container .contacts ul a {
    color: rgba(255, 255, 255, .6);
    transition: 300ms;
}

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

.main-footer .footer-container .socials {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
}

.main-footer .footer-container .socials {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.main-footer .footer-container .socials .return-top {
    font-size: 25px;
    font-weight: lighter;
    transition: 300ms;
    color: var(--red);
    cursor: pointer;
    margin-right: 5px;
}

.main-footer .footer-container .socials .return-top:Hover {
    color: #fff;
}

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

.main-footer .footer-container .socials nav a {
    color: var(--red);
    font-size: 25px;
    transition: 300ms;
    display: block;
}

.main-footer .footer-container .socials nav a:Hover {
    color: #fff;
}

#main-media .main-footer {
    height: 520px;
}

.main-header {
    position: fixed;
    left: 0;
    top: 30px;
    z-index: 99;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
    transition: 1200ms;
    padding-left: calc(calc(100% - 1400px) / 2);
}

.main-header > div {
    transition: 800ms;
}

.main-header .logo {
    widtH: 160px;
}

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

.main-header .menu {
    width: calc(100% - 360px);
    padding-right: 50px;
}

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

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

.main-header .menu > ul > li > a {
    display: block;
    color: #fff;
    transition: 300ms;
    font-weight: 500;
    text-transform: uppercase;
}

.main-header .menu > ul > li:Hover > a {
    color: var(--red);
}

.main-header .menu > ul > li > ul {
    background: #272727;
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 100%;
    font-size: 14px;
    transition: 300ms;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
}

.sup-page .menu > ul > li > ul {
    padding-top: 48px;
}

.fixed-bar .main-header .menu > ul > li > ul {
    padding-top: 24px;
}

.main-header .menu > ul > li > ul > li > a {
    display: block;
    color: #fff;
    font-weight: 400;
    padding: 15px;
    white-space: nowrap;
    transition: 300ms;
}

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

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

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

.main-header .language-btn {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 200px;
}

.main-header .language-btn .title {
    display: block;
    font-size: 13px;
    margin-right: 20px;
    color: rgba(255, 255, 255, .5);
    font-weight: lighter;
    transition: 300ms;
    white-space: nowrap;
}

.main-header .language-btn button {
    display: flex;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 0;
    position: relative;
    overflow: hidden;
    transition: 600ms;
    min-width: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.main-header .language-btn button span {
    position: absolute;
    width: 35px;
    height: 2px;
    top: 0;
    left: 6px;
    background: #fff;
    transition: 300ms;
}

.main-header .language-btn button:Hover span {
    background: var(--red);
}

.main-header .language-btn button span:nth-child(1) {
    transform: translateY(18px);
    width: 25px;
    left: 16px;
}

.main-header .language-btn button span:nth-child(2) {
    transform: translateY(25px);
}

.main-header .language-btn button span:nth-child(3) {
    transform: translateY(32px);
    width: 25px;
}

.main-header .language-btn button span:nth-child(4) {
    background: transparent;
    top: 10px;
    left: unset;
    right: 0;
    transform: translateX(30px);
    opacity: 0;
}

.main-header .language-btn button span:nth-child(4):After {
    content: '\f104';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    color: var(--red);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bolder;
}

body.open-lang-menu .main-header .language-btn button span:nth-child(1) {
    width: 20px;
    left: 6px;
    transform: translateY(16px);
}

body.open-lang-menu .main-header .language-btn button span:nth-child(2) {
    width: 15px;
}

body.open-lang-menu .main-header .language-btn button span:nth-child(3) {
    transform: translateY(34px);
    width: 20px;
}

body.open-lang-menu .main-header .language-btn button span:nth-child(4) {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

body.open-lang-menu .main-header .language-btn button span:not(:last-child) {
    background: var(--red);
}

.main-header.hide-header {
    top: 0;
    background: rgba(0, 0, 0, .9);
}

.main-header.hide-header .logo img {
    width: 100px;
}

.main-header .language-btn .title .hl {
    text-transform: capitalize;
}

.sup-page .main-header {
    background: #272727;
    top: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 120px;
}

.breadcrumb {
    background: #e9e9e9;
    align-items: flex-end;
    margin-top: 120px;
}

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

.breadcrumb .breadcrumb-container h1 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
}

.breadcrumb .breadcrumb-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    width: 50%;
    overflow: hidden;
}

.breadcrumb .breadcrumb-container ul li a {
    color: #272727;
    font-weight: 300;
    display: block;
    transition: 300ms;
    white-space: nowrap;
}

.breadcrumb .breadcrumb-container ul li a:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin: 0 10px;
    color: #272727;
}

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

.breadcrumb .breadcrumb-container ul li:last-child a:after {
    content: none;
}

.breadcrumb .breadcrumb-container ul li:last-child {
    max-width: 250px;
}

.breadcrumb .breadcrumb-container ul li:last-child a {
    font-weight: 600;
    color: var(--red);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#page {
    transition: 800ms;
}

.open-lang-menu #page {
    transform: scale(.9) translateY(50px);
    filter: blur(3px);
}

.product-details .product-header {
    height: calc(100vh - 170px);
    position: relative;
    z-index: 1;
    margin: auto;
    padding: 50px 7vw 0 7vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.product-details .product-header header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 175px;
    width: 100%;
}

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

.product-details .product-header:after {
    content: '';
    position: absolute;
    left: calc(50% - 700px);
    bottom: 0;
    width: 1400px;
    max-width: 100%;
    height: 260px;
    background: var(--red);
    z-index: -1;
}

.product-details .product-header > .image {
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.product-details .product-header .scroll-button {
    display: flex;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 25px;
    left: calc(50% - 12px);
    bottom: 40px;
    z-index: 1;
}

.product-details .product-header .scroll-button i {
    font-weight: lighter;
    margin-bottom: 20px;
}

.product-details .product-header .category-name {
    font-size: 14px;
    font-weight: lighter;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    color: var(--red);
    letter-spacing: 1px;
}

.product-details .product-header h2 {
    font-size: 25px;
    font-weight: 700;
    color: #000;
}

.product-details .product-header .description p {
    margin: 0;
    font-size: 13px;
    font-weight: lighter;
    color: #666666;
    text-align: right;
}

.product-details .product-header .actions a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 25px;
}

.product-details .product-header .actions a i {
    display: flex;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    background: #3d3d3d;
    border-radius: 100%;
    transition: 800ms;
    color: #fff;
    font-size: 20px;
    animation: blinkerGray 1s linear infinite;
}

.product-details .product-header .actions a .title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #656565;
    white-space: nowrap;
    transition: 300ms;
}

@media (min-width: 992px) {
    .sup-page.fixed-bar .main-header .logo img {
        width: 100px;
    }

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

.product-details .product-header .actions a:Hover i {
    background: var(--red);
    box-shadow: 0 0 30px var(--red);
}

.product-details .product-header .actions a:Hover .title {
    color: var(--red);
}

.product-details .product-header .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.product-details .product-header .links ul li a {
    display: block;
    color: #272727;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    transition: 300ms;
    white-space: nowrap;
}

.product-details .product-header .links ul li a:After {
    content: '\f060';
    font-weight: lighter;
    font-family: 'Font Awesome 5 Pro';
    margin-left: 10px;
}

.product-details .product-header .links ul li a:Hover {
    color: var(--red);
}

.product-details .product-header .content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 260px;
    padding-bottom: 100px;
    width: 100%;
    position: relative;
}

.product-details .product-header .content > div:not(.image) {
    width: 25%;
}

.product-details .product-header .content > .image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -70px;
}

.product-details .product-header .scroll-button p {
    color: #fff;
    font-weight: lighter;
}

.product-details .product-header .content > .image img {
    width: 100%;
    max-height: 900px;
    object-fit: contain;
    height: 70vh;
    position: relative;
    z-index: 11;
    filter: drop-shadow(2px 80px 90px rgba(0, 0, 0, 0.5));
}

.open-lang-menu.sup-page .main-header {
    top: 20px;
    background-color: transparent;
}

.product-details-page .product-body {
    padding: 100px 0;
    font-size: 14px;
}

.product-details-page .product-body > section {
    margin-bottom: 50px;
    padding: 50px;
    scroll-margin-top: 80px;
}

.product-details-page .product-body > section:last-child {
    margin-bottom: 0;
}

.product-details-page .product-body > section > header .section-title {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 700;
    display: block;
}

.product-details-page .product-body > section:nth-child(odd) {
    background: #fcfcfc;
}

.product-details-page .product-body table {
    width: fit-content !important;
}

.product-details-page .product-body table td {
    padding: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.product-details-page .product-body strong {
    font-weight: 600;
}

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

.product-content .galleries {
    position: relative;
    z-index: 1;
    margin-top: -30px;
    scroll-margin-top: 80px;
}

.product-content .galleries img {
    width: 100%;
    height: 200px;
    transition: 300ms;
    object-fit: cover;
}

.product-content .galleries a {
    display: block;
}

.product-content .galleries .video a {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-content .galleries .video a:after {
    content: '\f04b';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    transition: 300ms;
    color: #fff;
    text-shadow: 0 0 30px #fff;
}

.product-content .galleries .video:hover a:after {
    color: var(--red);
    text-shadow: 0 0 60px var(--red);
    transform: scale(1.1);
}

.product-content .galleries .image:Hover img {
    filter: brightness(50%);
}

.product-content .galleries .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: -60px;
    width: calc(100% + 120px);
    top: calc(50% - 15px);
    z-index: -1;
}

.product-content .galleries .owl-nav.disabled {
    display: none !important;
}

.product-content .galleries .owl-nav i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    width: 50px;
    height: 50px;
    transition: 300ms;
    color: #fff;
}

.product-content .galleries .owl-nav i:Hover {
    background: Var(--dark-red);
}

.sup-page #main-media .main-footer {
    height: unset;
}

.sup-page #main-media {
    height: unset;
}

.get-request-bar {
    position: fixed;
    width: 40%;
    z-index: 999;
    transition: 300ms;
    left: 30%;
    transform: translateY(calc(-50% + 60px));
    bottom: 0;
}

.get-request-bar .request-bar {
    background: var(--red);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
}

.get-request-bar .request-bar > div:not(.close-button) {
    width: 100%;
}

.offer-request-form-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.get-request-bar .request-bar .close-button {
    position: absolute;
    right: 0;
    top: -35px;
}

.get-request-bar .request-bar .close-button button {
    display: flex;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--red);
    color: #fff;
    transition: 300ms;
    font-weight: lighter;
    font-size: 14px;
    padding: 0 15px;
    line-height: 1;
}

.get-request-bar .request-bar .close-button button i {
    font-weight: lighter;
    margin-right: 10px;
    margin-bottom: -1px;
}

.get-request-bar .request-bar .close-button button:Hover {
    background: var(--dark-red);
}

.get-request-bar .request-bar .text {
    padding-right: 30px;
    margin-bottom: 30px;
}

.get-request-bar .request-bar > .form > form .item {
    margin-bottom: 10px;
}

.get-request-bar .request-bar > .form > form .item button {
    width: 100%;
    background: #313131;
    color: #fff;
    padding: 15px 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    transition: 300ms;
}

.get-request-bar .request-bar > .form > form .item button:Hover {
    background: #242424;
}

.get-request-bar .request-bar .text .title {
    font-size: 35px;
    color: #fff;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.get-request-bar .request-bar .text p {
    margin: 0;
    font-size: 14px;
    color: #fff;
    font-weight: lighter;
}

.get-request-bar .request-bar .form .input {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.get-request-bar .request-bar .form .input input {
    width: 100%;
    height: 50px;
    border: 0;
    padding: 10px;
    background: var(--dark-red);
    color: #fff;
    font-weight: lighter;
}

.get-request-bar .request-bar .text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.get-request-bar .request-bar .text > .image {
    width: 20%;
}

.get-request-bar .request-bar .form .input input::placeholder {
    color: #fff;
    opacity: .6;
}

.get-request-bar .request-bar .form .input button {
    background: #000;
    border: 0;
    width: 50px;
    height: 50px;
    color: #fff;
    transition: 300ms;
}

.get-request-bar .request-bar .form .input button:Hover {
    background: #fff;
    color: var(--dark-red);
}

.get-request-bar.hide-bar,
.get-request-bar.closed-bar {
    transform: translateY(90px);
    opacity: 0;
    visibility: hidden;
}

.get-request-bar .request-bar .step-counter {
    color: #fff;
    margin-bottom: 15px;
    opacity: .8;
    font-weight: lighter;
}

.get-request-bar .request-bar .step-counter .total:after {
    content: '/';
    margin: 0 0 0 5px;
}

.product-details-page .product-content {
    scroll-margin-top: 150px;
}

.loaded #page #main-about .about-content .about-container .images .image-row-1 .since,
.loaded #page #main-about .about-content .about-container .images .image-row-1 .image-col img,
.loaded #page #main-about .about-content .about-container .text h2,
.loaded #page #main-about .about-content .about-container .images .image-row-2 .image-col:first-child,
.loaded #page #main-about .about-content .about-container .images .image-row-2 .image-col:last-child .number {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    max-width: 80%;
    margin: 60px auto;
}

.about-image img {
    width: 100%;
}

.about-details-page #milestones {
    background: #EFEFEF;
    padding: 100px 0;
    margin: 60px 120px;
}

.about-details-page #milestones .section-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.about-details-page #milestones .shadow-text {
    font-size: 90px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: .1;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -20px;
}

.about-details-page #milestones .section-header h2 {
    font-size: 45px;
    font-weight: 400;
}

.about-details-page #milestones .section-header h2 span {
    font-weight: 700;
    color: var(--red);
}

.about-details-page #milestones .milestone-slider {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-details-page #milestones .milestone-slider .year {
    width: 400px;
    text-align: center;
}

.about-details-page #milestones .milestone-slider .year .number {
    font-size: 45px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.about-details-page #milestones .milestone-slider .slider {
    width: calc(100% - 400px);
}

.about-details-page #milestones .milestone-slider .stones {
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    overflow-y: hidden;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

.about-details-page #milestones .milestone-slider .stones:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 100%;
    height: 2px;
    background: var(--red);
    z-index: -1;
}

.about-details-page #milestones .milestone-slider .stones button {
    width: 100%;
    border: 0;
    color: var(--red);
    font-weight: 700;
    line-height: 1;
    background: #efefef;
    position: relative;
    padding-top: 10px;
    text-align: center;
    transition: 600ms;
}

.about-details-page #milestones .milestone-slider .stones button:before {
    content: '';
    position: absolute;
    left: calc(50% - 12.5px);
    width: 25px;
    height: 25px;
    background: var(--red);
    border-radius: 100%;
    top: -26px;
    border: 8px solid #efefef;
    transition: 600ms;
}

.about-details-page #milestones .milestone-slider .item p {
    font-size: 18px;
    color: #777777;
}

.about-details-page #milestones .milestone-slider .stones button.active:before {
    transform: scale(1.5) translateY(3px);
    background-color: var(--dark-red);
}

.about-details-page #milestones .milestone-slider .stones button.active {
    transform: scale(1.2);
}

.about-widget-container {
    position: relative;
}

.about-widget-container .widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.about-widget-container .widget > div {
    width: 50%;
}

.about-widget-container .widget .image {
    position: relative;
}

.about-widget-container .widget:nth-child(even) {
    flex-direction: row-reverse;
}

.about-widget-container .widget .content {
    padding: 120px;
}

.about-widget-container .widget .content .title {
    font-weight: 700;
    font-size: 25px;
    display: block;
    margin-bottom: 20px;
    color: var(--red);
}

.about-widget-container .widget .content p {
    font-size: 14px;
    font-weight: lighter;
}

.about-widget-container .widget .image:Before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    background-color: var(--red);
    transition: 300ms;
    z-index: -1;
    transform: scale(.6);
}

.about-widget-container .widget:nth-child(even) .image:Before {
    right: -30px;
    top: -30px;
}

.about-widget-container .widget:nth-child(odd) .image:Before {
    left: -30px;
    top: -30px;
}

.about-widget-container .widget.wowed .image:before {
    transform: scale(1);
}

.about-details-page #main-counters .counter-container {
    height: unset;
    display: block;
}

.about-details-page #main-counters {
    display: block;
    padding-right: 0;
    margin: 30px 0;
}

.about-details-page #main-counters .counter-container .counters {
    width: 100%;
    padding-left: 0;
    flex-wrap: unset;
}

.about-details-page #main-counters .counter-container .counters .counter {
    width: 100%;
}

.about-details-page #main-counters .counter-container .counters .counter img {
    opacity: 1;
    transform: scale(1);
}

.breadcrumb.with-nav {
    background-color: var(--red);
    background-image: url(/images/newsletter-bg.jpg);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-top: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.breadcrumb.with-nav h1 {
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
}

.breadcrumb.with-nav p {
    font-weight: 500;
    font-size: 17px;
    max-width: 100%;
    width: 500px;
    text-align: center;
    margin: 10px 0 20px;
}

.breadcrumb.with-nav nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.breadcrumb.with-nav nav ul li a {
    display: block;
    font-size: 14px;
    margin: 0 10px;
    color: #fff;
    padding: 15px;
    transition: 300ms;
    position: relative;
    opacity: .8;
    transition: 300ms;
    text-transform: uppercase;
}

.breadcrumb.with-nav nav ul li a:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 5px;
    background-color: #fff;
    transition: 300ms;
    opacity: 0;
}

.breadcrumb.with-nav nav ul li:Hover a,
.breadcrumb.with-nav nav ul li a.active{
    opacity: 1;
}

.breadcrumb.with-nav nav ul li:Hover a:before,
.breadcrumb.with-nav nav ul li a.active:before{
    opacity: 1;
    width: 100%;
    left: 0;
}

.categories-page-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 25px;
    justify-content: flex-start;
    margin: 80px 0;
}

.categories-details-page .categories-page-container {
    margin: 40px 0;
}

.categories-page-container .category {
    width: calc(33% - 15px);
    flex: 1 1 auto;
    transition: 300ms;
    position: relative;
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    height: 200px;
    z-index: 1;
}

.categories-page-container .category > div {
    width: 50%;
}

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

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

.categories-page-container .category .content .title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: block;
    transition: 300ms;
    margin-bottom: 10px;
}

.categories-page-container .category .content .read-more {
    font-size: 11px;
    font-weight: 300;
    color: #fff;
    transition: 300ms;
    display: block;
    text-transform: uppercase;
}

.categories-page-container .category .content .read-more:After {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    margin-left: 5px;
}

.categories-page-container .category:Hover {
    background-color: #272727;
}

.categories-page-container .category:Hover .image img {
    transform: translateY(-30px);
}

.categories-page-container .category {
    flex-direction: row-reverse;
}

.search-products {
    margin-top: -1em;
    padding: 10px 0;
    background-color: var(--red);
    background-image: url(/images/newsletter-bg.jpg);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.search-products form {
    display: flex;
    flex-wrap: wrap;
}

.search-products .form-title {
    display: block;
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    width: 100%;
}

.search-products input {
    background-color: var(--dark-red);
    border: 0;
    width: calc(60% - 50px);
    padding: 0 15px;
    font-size: 14px;
    font-weight: lighter;
    color: #fff;
    height: 50px;
}

.search-products button {
    background-color: var(--dark-red);
    color: #fff;
    border: 0;
    transition: 300ms;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-products input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.search-products form .result-text {
    width: 100%;
    color: #fff;
    margin-top: 15px;
    font-size: 14px;
    font-weight: lighter;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 90px 0;
}

.products-container .product {
    width: calc(20% - 30px);
    margin: 15px;
    border: 1px solid #ddd;
    position: relative;
    transition: 300ms;
}

.products-container .product .cover {
    width: 100%;
    background-size: cover;
    transition: 300ms;
}

.products-container .product .content {
    padding: 20px;
}

.products-container .product .content .image {
    position: relative;
}

.products-container .product .content .image img {
    width: 100%;
    height: 200px;
    position: relative;
    z-index: 1;
    transition: 300ms;
    object-fit: contain;
}

.products-container .product .content .read-more {
    transition: 300ms;
    background: var(--red);
    display: flex;
    width: 100%;
    padding: 15px;
    transition: 300ms;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: lighter;
    align-items: center;
    justify-content: space-between;
}

.products-container .product .content .read-more:after {
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
}

.products-container .product .title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    transition: 300ms;
    margin: 5px 0;
    display: block;
    height: 84px;
}

.products-container .product .content .read-more:Hover {
    background: var(--dark-red);
}

.products-container .product:Hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.products-container .product:Hover .cover {
    filter: brightness(60%);
}

.products-container .product:Hover .image img {
    transform: scale(1.5) translateY(-30px);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.products-container .product:Hover .title {
    color: var(--red);
}

.pagination {
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 0;
}

.pagination li a,
.pagination li span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    border: 1px solid #ddd;
    transition: 300ms;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.pagination li:hover a,
.pagination li:Hover span {
    border-color: var(--red);
    color: var(--red);
}

.pagination li.disabled span {
    opacity: .6;
    cursor: no-drop;
}

.pagination li i {
    font-weight: lighter;
}

.pagination li.active span {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.no-result-for-search {
    margin: 120px 0;
}

.no-result-for-search .title {
    display: block;
    font-size: 45px;
}

.no-result-for-search .description {
    font-weight: 300;
    font-size: 14px;
    margin: 30px 0 60px;
    max-width: 40%;
}

.no-result-for-search nav a {
    display: block;
    margin-bottom: 15px;
    transition: 300ms;
    color: #000;
}

.no-result-for-search nav a:first-child {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.no-result-for-search nav a i {
    font-weight: lighter;
    margin-right: 5px;
}

.no-result-for-search nav a:Hover {
    color: var(--red);
}

.contacts-container {
    position: relative;
    display: flex;
    margin-top: 70px;
}

.contacts-container .map {
    position: sticky;
    width: 50%;
    height: calc(100vh - 120px);
    top: 120px;
}

.contacts-container .info {
    width: 50%;
    position: relative;
    z-index: 1;
}

.contacts-container .info:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    box-shadow: -30px -30px 30px rgba(0, 0, 0, 0.2);
}

.contacts-container .map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

.contacts-container .info section {
    padding: 15px 50px;
    width: 100%;
}

.contacts-container .info section:first-child {
    padding-top: 80px;
}

.contacts-container .info section:nth-child(even) {
    background: #e8e8e8;
}

.contacts-container .info section .section-header .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.contacts-container .info section .section-header .description {
    font-size: 14px;
    margin-top: -10px;
    display: block;
    margin-bottom: 25px;
}

.contacts-container .info section h2 {
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contacts-container .info section .boxes .box {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

.contacts-container .info section .boxes .box .icon {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #929292;
    transition: 300ms;
}

.contacts-container .info section .boxes .box:Hover .icon {
    border-color: var(--red);
}

.contacts-container .info section .boxes .box .content {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.contacts-container .info section .boxes .box .content .title {
    display: block;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-weight: lighter;
    margin-bottom: 5px;
}

.contacts-container .info section .boxes .box .content .value {
    margin: 0;
    display: block;
    color: #000;
    font-weight: 500;
    margin-bottom: 3px;
    transition: 300ms;
    font-size: 14px;
}

.contacts-container .info section .boxes .box .content a.value:Hover {
    color: var(--red);
}

.contacts-container .info .info-private {
    margin-top: 60px;
}

.contacts-container .info .info-private .title {
    display: block;
    font-size: 35px;
    margin-bottom: 20px;
}

.contacts-container .info form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 20px;
}

.contacts-container .info form .input {
    width: calc(50% - 15px);
}

.contacts-container .info form .input:nth-child(5) {
    width: 100%;
}

.contacts-container .info form .input label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: lighter;
    color: rgba(0, 0, 0, 0.6);
}

.contacts-container .info form .input input,
.contacts-container .info form .input textarea {
    width: 100%;
    border: 0;
    transition: 300ms;
    background: #F1F1F1;
    padding: 15px;
}

.contacts-container .info form .input input:focus,
.contacts-container .info form .input textarea:focus {
    background: #E0E0E0;
}

.contacts-container .info form .input textarea {
    min-height: 200px;
}

.contacts-container .info form button {
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    font-weight: 300;
    border: 0;
    padding: 15px 60px;
    transition: 300ms;
}

.contacts-container .info form button:After {
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-left: 20px;
}

.contacts-container .info form button:Hover {
    background: var(--dark-red);
}

.contacts-container .info .socials-section nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.contacts-container .info .socials-section nav a {
    display: flex;
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    transition: 300ms;
    color: rgba(0, 0, 0, 0.8);
}

.contacts-container .info .socials-section nav a:Hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.media-details-page .media-center {
    margin: 120px 0;
}

.media-details-page .documents {
    display: flex;
}

.media-details-page .documents .catalogs {
    width: 350px;
    position: relative;
    height: 450px;
}

.media-details-page .documents .catalogs:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--red);
    z-index: -1;
}

.media-details-page .documents .catalogs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.2);
}

.media-details-page .documents .slider {
    width: calc(100% - 350px);
    padding-left: 30px;
}

.media-details-page .documents .slider header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.media-details-page .documents .slider header .title {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.media-details-page .documents .slider header .title span {
    font-weighT: lighter;
}

.media-details-page .documents .slider .document {
    height: 380px;
    position: relative;
    transition: 300ms;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 30px;
    position: relative;
}

.media-details-page .documents .slider .document a {
    background: #fff;
    transition: 300ms;
    padding: 15px;
    transition: 300ms;
    width: 100%;
    height: 100px;
    position: relative;
    overflow: hidden;
}

.media-details-page .documents .slider .document a .title {
    font-weight: 600;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #272727;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 300ms;
}

.media-details-page .documents .slider .document a .view-btn {
    font-weight: 600;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 300ms;
    text-transform: uppercase;
    transform: translateY(100%);
    font-size: 14px;
}

.media-details-page .documents .slider .document a .view-btn i {
    font-weight: bolder;
    margin-right: 10px;
}

.media-details-page .documents .slider .document:hover a .view-btn {
    transform: translateY(0);
}

.media-details-page .documents .slider .document:hover a .title {
    transform: translateY(-100%);
}

.media-details-page .documents .owl-nav {
    position: absolute;
    right: 0;
    top: -80px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.media-details-page .documents .owl-nav i {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    background: var(--red);
    color: #fff;
    transition: 300ms;
}

.media-details-page .documents .owl-nav i:Hover {
    background: var(--dark-red);
    box-shadow: 0 0 30px var(--dark-red);
}

.media-details-page .documents .owl-nav .disabled i {
    opacity: .6;
    cursor: no-drop;
}

.media-details-page .media-center .galleries {
    margin: 120px 0;
    background: #272727;
    padding: 80px 0;
}

.media-details-page .media-center .galleries .gallery-item {
    height: 450px;
    display: flex;
    padding: 0 30px;
    text-align: center;
    justify-content: center;
    width: 100%;
    align-items: flex-end;
    margin-bottom: 60px;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.media-details-page .media-center .galleries .gallery-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--red);
    z-index: -1;
    mix-blend-mode: darken;
    transition: 300ms;
    opacity: .1;
}

.media-details-page .media-center .galleries .gallery-item .title {
    display: block;
    width: 100%;
    background: var(--red);
    padding: 30px;
    color: #fff;
    transition: 300ms;
    transform: translateY(30px);
    transition: 300ms;
}

.media-details-page .media-center .galleries .gallery-item:Hover .title {
    background: var(--dark-red);
}

.media-details-page .media-center .galleries .gallery-item:Hover:before {
    opacity: 1;
}

.media-details-page .galleries .owl-nav {
    display: flex;
}

.media-details-page .galleries .owl-nav i {
    position: relative;
    background: var(--red);
    position: absolute;
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    color: #fff;
    transition: 300ms;
}

.media-details-page .galleries .owl-nav .owl-prev i {
    left: -60px;
}

.media-details-page .galleries .owl-nav .owl-next i {
    right: -60px;
}

.media-details-page .galleries .owl-nav i:Hover {
    background: var(--dark-red);
    box-shadow: 0 0 30px var(--dark-red);
}

.media-details-page .galleries .owl-nav .disabled i {
    opacity: .1;
    cursor: no-drop;
}

.media-details-page .galleries header .title {
    color: var(--red);
    font-size: 45px;
    margin-bottom: 50px;
    display: block;
    text-align: center;
}

.media-details-page .galleries header .title span {
    font-weight: lighter;
    color: #fff;
}

.gallery-details .related-galleries {
    display: flex;
    column-gap: 30px;
}

.gallery-details .related-galleries .gallery-item {
    height: 450px;
    display: flex;
    padding: 0 30px;
    text-align: center;
    justify-content: center;
    width: 100%;
    align-items: flex-end;
    margin-bottom: 60px;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.gallery-details .related-galleries .gallery-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--red);
    z-index: -1;
    mix-blend-mode: darken;
    transition: 300ms;
    opacity: .1;
}

.gallery-details .related-galleries .gallery-item .title {
    display: block;
    width: 100%;
    background: var(--red);
    padding: 30px;
    color: #fff;
    transition: 300ms;
    transform: translateY(30px);
    transition: 300ms;
}

.gallery-details .related-galleries .gallery-item:Hover .title {
    background: var(--dark-red);
}

.gallery-details .related-galleries .gallery-item:Hover:before {
    opacity: 1;
}

.media-details-page .articles {
    margin: 120px 0;
}

.media-details-page .articles-content {
    display: flex;
    column-gap: 20px;
}

.media-details-page .articles-content > div {
    width: 50%;
}

.media-details-page .articles-content .big {
    height: 50vh;
    position: relative;
}

.media-details-page .articles-content .big .article {
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.media-details-page .articles-content .big .article .content {
    background: var(--red);
    padding: 30px;
    width: 60%;
    color: #fff;
    transition: 300ms;
}

.media-details-page .articles-content .article .content .date {
    margin: 0;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: lighter;
}

.media-details-page .articles-content .article .content .date i {
    font-weight: lighter;
    margin-right: 5px;
}

.media-details-page .articles-content .article .content .title {
    display: block;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.media-details-page .articles-content .article .content .read-more {
    font-size: 12px;
    color: #fff;
    font-weight: lighter;
    transition: 300ms;
}

.media-details-page .articles-content .article .content .read-more i {
    margin-left: 10px;
    transition: 300ms;
    font-weight: lighter;
}

.media-details-page .articles-content .big .article:Hover .content {
    background: var(--dark-red);
}

.media-details-page .articles-content .smalls .article {
    background: var(--red);
    height: calc(25vh - 60px);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 300ms;
}

.media-details-page .articles-content .smalls .article > .content {
    width: 50%;
    padding: 30px;
    color: #fff;
}

.media-details-page .articles-content .smalls .article > .cover {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.media-details-page .articles-content .smalls .article:Hover {
    background-color: var(--dark-red);
}

.media-details-page .articles-content .smalls .view-all-articles {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    color: #fff;
    transition: 300ms;
}

.media-details-page .articles-content .smalls .view-all-articles i {
    margin-left: 10px;
    font-weight: lighter;
}

.media-details-page .articles-content .smalls .view-all-articles:Hover {
    background: var(--dark-red);
}

.media-details-page .articles header .title {
    text-align: center;
    display: block;
    font-size: 35px;
    margin-bottom: 60px;
    font-weight: 700;
}

.media-details-page .gallery-details {
    padding: 30px 0;
    position: relative;
    margin-top: -1em;
    overflow: hidden;
}

.media-details-page .gallery-details header .title {
    display: block;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
    mix-blend-mode: exclusion;
}

.media-details-page .gallery-details .gallery-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.media-details-page .gallery-details .gallery-container .gallery {
    width: calc(33% - 30px);
    margin: 15px;
    position: relative;
    overflow: hidden;
}

.media-details-page .gallery-details .gallery-container .gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 300ms;
    filter: grayscale(100%);
}

.media-details-page .gallery-details .gallery-container .gallery:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--red);
    mix-blend-mode: darken;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: 300ms;
}

.media-details-page .gallery-details .gallery-container .gallery.video:after {
    content: '\f04b';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    font-weight: bolder;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--red);
    transition: 1200ms;
    text-shadow: 0 0 30px var(--red);
}

.media-details-page .gallery-details .gallery-container .gallery:Hover img {
    filter: grayscale(0);
}

.media-details-page .gallery-details .gallery-container .gallery:Hover:Before {
    opacity: 1;
}

.media-details-page .gallery-details .gallery-container .gallery.video:Hover:after {
    color: #fff;
    text-shadow: 0 0 30px #fff;
    transform: scale(1.1);
}

.media-details-page {
    overflow: hidden;
}

.media-details-page .article-details {
    margin: 60px 0;
    position: relative;
}

.media-details-page .article-details > header {
    max-width: 60%;
    margin: auto;
    text-align: center;
}

.media-details-page .article-details > header h2 {
    font-weight: 600;
    font-size: 35px;
    margin-top: 15px;
}

.media-details-page .article-details > header .date {
    margin: 0;
    font-size: 14px;
    font-weight: lighter;
}

.media-details-page .article-details > header .date i {
    font-weight: lighter;
    margin-right: 5px;
}

.media-details-page .cover {
    margin: 50px 0;
}

.media-details-page .cover img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.media-details-page .body {
    max-width: 60%;
    margin: 60px auto;
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;
}

.article-details .related-articles {
    display: flex;
    column-gap: 30px;
    justify-content: space-between;

}

.article-details .article {
    background: #eeee;
    height: 300px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 300ms;
    width: 100%;
}

.article-details .article > .content {
    width: 50%;
    padding: 30px;
    color: #000;
}

.article-details .article > .cover {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.article-details .article:Hover {
    background: var(--red);
}

.article-details.article-page .article:Hover .content .title {
    color: #fff;
}

.article-details .article:Hover .content .date {
    color: #fff;
}

.article-details .article:Hover .content .read-more {
    color: #fff;
}

.article-details .article .content .date {
    margin: 0;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: lighter;
}

.article-details .article .content .date i {
    font-weight: lighter;
    margin-right: 5px;
}

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

.article-details .article .content .read-more {
    font-size: 12px;
    color: #000;
    font-weight: lighter;
    transition: 300ms;
}

.article-details .article .content .read-more i {
    margin-left: 10px;
    transition: 300ms;
    font-weight: lighter;
}

.article-details.article-page .related-articles {
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 15px;
}

.article-details.article-page .related-articles .article {
    width: calc(50% - 15px);
}

.article-details.article-page .article .content .title {
    font-size: 20px;
}

.product-details {
    margin-top: 120px;
}

.media-details-page .breadcrumb.with-nav {
    padding: 35px 0;
    text-align: center;
}

.media-details-page .breadcrumb.with-nav h1 {
    margin: 0;
    font-size: 30px;
}

.media-details-page .related-articles-header h2 {
    display: block;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
    mix-blend-mode: exclusion;
}

.swal2-styled.swal2-confirm {
    background: var(--red) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: 300ms;
}

.swal2-styled.swal2-confirm:Hover {
    background: var(--dark-red) !important;
}

.swal2-popup {
    border-radius: 0 !important;
}

#main-categories .categories .nav-tabs button.nav-link {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#main-categories .categories .nav-tabs {
    max-width: 100%;
}

#main-categories .categories .nav-tabs li {
    max-width: 100%;
}

#main-categories .categories .nav-tabs button.nav-link.active {
    white-space: normal;
    text-align: left;
}

.request-bar-trigger-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-bar-trigger-wrapper .button {
    background: var(--red);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    flex-direction: column;
    transform: rotate(-180deg);
    transition: 300ms;
    animation: blinker 1s linear infinite;
    text-transform: uppercase;
}

@keyframes blinker {
    50% {
        box-shadow: 0 0 30px red;
    }
}

@keyframes blinkerGray {
    50% {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }
}

.request-bar-trigger-wrapper .button i {
    transform: rotate(-180deg);
}

.request-bar-trigger-wrapper .title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-top: 10px;
}

.request-bar-trigger-wrapper .button:Hover {
    background: var(--dark-red);
}

.product-content .galleries img {
    background: #eee;
}

#productDetailsTab {
    border: 0;
    font-size: 20px;
    font-weight: bolder;
    margin-bottom: 20px;
    background: #fcfcfc;
    padding-right: 0;
    scroll-margin-top: 100px;
}

#productDetailsTab button {
    border: 0;
    color: #000;
    font-weight: 600;
    background: #fcfcfc;
    border-radius: 0;
    padding: 20px;
    transition: 300ms;
}

#productDetailsTab button.active {
    background: var(--red);
    color: #fff;
}

#productDetailsTab button:not(.active):Hover {
    background: #ddd;
}

html[lang="ar"] #main-media .newsletter:Before {
    left: unset;
    right: -650px;
}

html[lang="ar"] .langauges-list {
    right: unset;
    left: 0;
    width: 100%;
}

html[lang="ar"] .langauges-list ul {
    justify-content: center;
}

html[lang="ar"] .product-details .product-header .actions a i {
    margin-right: unset;
    margin-left: 15px;
}

html[lang="ar"] .product-details .product-header .links ul li a:After {
    margin-left: 0;
    margin-right: 10px;
}

html[lang="ar"] .media-details-page .documents .owl-nav {
    right: unset;
    left: 0;
}

html[lang="ar"] .media-details-page .documents .slider header {
    padding-right: 15px;
}

html[lang="ar"] .media-details-page .documents .owl-nav button:first-child {
    order: 2;
}

.fixed-wp {
    background: #128C7E;
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    z-index: 99;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 100%;
    transition: 300ms;
}

.fixed-wp:Hover {
    background: #25D366;
    color: #fff;
}

.next-arrow-text {
    position: fixed;
    left: calc(50% - 15px);
    bottom: 30px;
    z-index: 999;
    color: #fff;
    font-size: 35px;
    transition: 300ms;
    opacity: 0;
    animation: nextArrowJump 1200ms linear infinite;
}

.next-arrow-text i {
    font-weight: lighter;
}

.next-arrow-text.active {
    opacity: 1;
}

.hide-header-body.cta-slider .langauges-list ul li a {
    color: #fff;
    margin-top: -15px;
}

.hide-header-body.cta-slider .main-header .language-btn .title {
    margin-top: -10px;
    opacity: 0;
}

.hide-header-body.cta-slider.open-lang-menu .main-header .language-btn button {
    transform: translateX(0);
}

.open-lang-menu .langauges-list:after {
    content: '';
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

.open-lang-menu.sup-page .main-header {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 20px;
}

.sup-page.open-lang-menu .langauges-list {
    z-index: 999;
    margin-top: 60px;
}

.sup-page .langauges-list ul {
    margin-top: 60px;
}

.about-details-page #milestones .milestone-slider .slider .item {
    transition: 200ms;
    opacity: 0;
}

.about-details-page #milestones .milestone-slider .slider .active .item {
    opacity: 1;
}

.media-details-page .gallery-details .gallery-container.corporate-image-gallery {
    padding: 0 100px;
}

.media-details-page .gallery-details .gallery-container.corporate-image-gallery .gallery {
    width: calc(20% - 30px);
}

.media-details-page .gallery-details .gallery-container.corporate-image-gallery .gallery:Before {
    content: none;
}

.media-details-page .gallery-details .gallery-container.corporate-image-gallery .gallery img {
    aspect-ratio: 1;
    width: 100%;
    height: unset;
}

.media-details-page .gallery-details .gallery-container.corporate-image-gallery .gallery:Hover img {
    filter: unset;
}

.media-arrow-down {
    text-align: center;
    font-size: 35px;
    margin-top: 30px;
    animation: nextArrowJumpUncolor 1200ms linear infinite;
}

.media-arrow-down i {
    font-weight: lighter;
}

.galleries .media-arrow-down {
    color: #fff;
}

.get-request-bar .request-bar .text > .image img {
    width: 100%;
}

@keyframes nextArrowJumpUncolor {
    50% {
        transform: translateY(20px);
    }
}

@keyframes nextArrowJump {
    50% {
        transform: translateY(20px);
        text-shadow: 0 0 5px red;
    }
}

html[lang="ru"] .main-header .menu > ul{
    column-gap: 15px;
    font-size: 15px;
}

html[lang="es"] .main-header .menu > ul{
    column-gap: 15px;
    font-size: 15px;
}
.media-details-page.about-details-page .breadcrumb.with-nav{
    padding: 20px 0 0 0;
}

@media (max-height: 768px) and (min-width: 994px) {
    #main-video .content {
        justify-content: flex-end;
        padding-bottom: 30px;
    }

    #main-video .content .vertical-text {
        justify-content: flex-start;
        padding-top: 30px;
    }

    #main-about .about-content .company-text {
        font-size: 21vh;
        height: 250px;
    }

    #main-about .about-content .about-container .images .image-row-1 .image-col:first-child {
        width: 200px;
    }

    #main-about .about-content .about-container .images .image-row-1 .image-col:last-child {
        width: calc(100% - 200px);
    }

    #main-about .about-content .about-container .images .image-row-1 .image-col img {
        height: 200px;
        width: 100%;
    }

    #main-about .about-content .about-container .images {
        align-items: center;
        justify-content: center;
        padding-top: 120px;
    }

    #main-about .about-content .about-container .text {
        padding-right: 0;
        padding-left: 130px;
    }

    #main-about .about-content .about-container {
        height: calc(100vh - 250px);
        position: relative;
        z-index: 11;
    }

    #main-categories .categories-content {
        width: 100%;
        padding: 50px;
    }

    #main-categories .categories .nav-tabs button.nav-link {
        font-size: 25px;
    }

    #main-production > div {
        width: 50%;
    }

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

    #main-counters .counter-container .counters .counter img {
        width: 80px;
    }

    #main-media .media-content .media-container aside.articles {
        display: none;
    }

    .main-footer .footer-container > aside {
        padding: 15px 0;
    }

    #main-media .newsletter .title {
        font-size: 25px;
    }

    #main-about .about-content .about-container .text h2 {
        font-size: 35px;
    }

    #main-about .about-content .about-container .images .image-row-1 .since {
        font-size: 40px;
    }

    .categories-page-container .category .content .title {
        word-break: break-all;
    }

    #main-media .main-footer {
        height: unset;
    }

    .main-footer .footer-container .socials nav {
        padding-bottom: 100px;
    }

    #main-media .media-content .media-container aside:not(.articles) {
        height: calc(100vh - 520px);
        width: 50%;
    }

    #main-media .media-content .media-container aside:not(.articles) .sup-title {
        font-size: 11px;
        margin-bottom: 5px;
    }

    #main-production .text h3 {
        font-size: 45px;
        padding-right: 20%;
    }

    #main-production .text {
        padding-left: 10%;
    }

    #main-production .text p {
        font-size: 20px;
        padding-right: 20%;
    }

    .main-header {
        padding-left: 130px;
    }

    .main-header .logo {
        width: 130px;
    }

    .sup-page #main-about .about-content .about-container .images {
        padding-top: 0 !important;
    }

    #main-about .about-content .about-container .text {
        padding-left: 130px;
        text-align: unset;
    }

    .sup-page #main-about .about-content .about-container {
        height: 100%;
    }

    .about-widget-container .widget:nth-child(odd) {
        padding-left: 120px;
    }

    .about-widget-container .widget:nth-child(even) {
        padding-right: 120px;
    }

    .about-widget-container .widget .image {
        width: 40%;
    }

    .about-widget-container .widget .content {
        width: 60%;
    }

    .about-details-page #main-counters .counter-container .counters {
        width: 70%;
        margin: auto;
    }

    .search-products input {
        width: calc(100% - 50px);
    }

    .search-products form {
        width: 50%;
    }

    .products-container {
        margin: 40px 0;
    }

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

    .product-details .product-header .scroll-button p {
        display: none;
    }

    .product-details .product-header .actions a .title {
        color: rgba(255, 255, 255, 0.7);
    }

    .product-details .product-header .links ul li a {
        color: rgba(255, 255, 255, 0.7);
    }

    .product-details .product-header .links ul li a:Hover {
        color: #fff;
    }

    .product-content .galleries {
        max-width: 70%;
        margin: 50px auto;
    }

    .product-content .galleries img {
        height: 150px;
    }

    .product-details-page .product-body {
        padding: 10px 0;
    }

    .product-details-page .product-body > section {
        padding: 30px;
        margin-bottom: 15px;
    }

    .product-details .product-header {
        height: calc(100vh - 120px);
        padding-top: 10px;
    }

    .media-details-page .media-center .galleries .gallery-item {
        height: 300px;
    }

    .media-details-page .galleries .owl-nav {
        z-index: 99;
    }

    .media-details-page .galleries .owl-nav .owl-next i {
        right: 30px;
        top: calc(calc(50% - 25px) - 42px);
    }

    .media-details-page .galleries .owl-nav .owl-prev i {
        left: 30px;
        top: calc(calc(50% - 25px) - 42px);
    }

    .media-details-page .articles-content .smalls .article {
        height: calc(35vh - 60px);
    }

    .media-details-page .articles-content .big {
        height: 70vh;
    }

    .media-details-page .articles {
        margin: 60px 0;
    }

    .media-details-page .media-center {
        margin: 60px 0;
    }

    .media-details-page .media-center .galleries {
        margin: 60px 0;
    }

    .product-details .product-header .content > .image {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 60px;
        width: 50%;
    }

    .product-details .product-header .content {
        margin-bottom: 0;
        padding-bottom: 50px;
    }
}

@media (min-width: 1800px) {
    .product-details .product-header:after {
        width: 100%;
        left: 0;
        height: 500px;
    }

    .product-details .product-header .actions a .title {
        color: #fff;
        opacity: .7;
        transition: 300ms;
    }

    .product-details .product-header .links ul li a {
        opacity: .6;
        color: #fff;
    }

    .product-details .product-header .links ul li a:Hover {
        opacity: 1;
        color: #fff;
    }

    .product-details .product-header .actions a:Hover .title {
        opacity: 1;
        color: #fff;
    }

    .product-details .product-header .actions a:Hover i {
        background: var(--dark-red);
    }
}

@media (min-width: 993px) and (max-height: 1000px) {
    #main-about .about-content .about-container .images .image-row-1 .image-col img {
        height: 370px;
    }

    #home #main-media .newsletter {
        display: none;
    }
}

@media (min-width: 993px) and (max-width: 1399px) {
    .product-details .product-header:after {
        width: 100%;
        left: 0;
    }

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

    .product-details .product-header .content {
        flex-wrap: wrap;
    }

    .product-details .product-header .content .image {
        order: 0;
        width: 100% !important;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .product-details .product-header .content .actions {
        order: 1;
        width: 50%;
        width: 50% !important;
    }

    .product-details .product-header .content .links {
        order: 1;
        width: 50% !important;
    }

    .product-details .product-header .content > .image img {
        max-height: 480px;
    }

    #main-categories .categories-content {
        width: 100%;
        padding: 50px;
    }

    #main-categories .categories .nav-tabs button.nav-link {
        font-size: 25px;
    }

    #main-categories .categories-content > .categories .menu {
        width: 400px;
    }
    
    #main-categories .categories-content > .categories{
        justify-content: space-between;
    }

    #main-categories .categories-content > .categories .preview {
        width: 60%;
    }

    #main-production {
        padding-left: 50px;
    }

    .request-bar-trigger-wrapper .button {
        font-size: 13px;
        padding: 15px 10px;
    }
}

@media (min-width: 993px) and (max-width: 1350px) {
    .lines-container {
        width: 100%;
    }

    .lines-container span:nth-child(1) {
        left: 0;
    }

    .lines-container span:nth-child(2) {
        left: 20vw;
    }

    .lines-container span:nth-child(3) {
        left: 40vw;
    }

    .lines-container span:nth-child(4) {
        left: 60vw;
    }

    .lines-container span:nth-child(5) {
        left: 80vw;
    }

    #main-counters .counter-container .counters {
        padding-left: 10vw;
        width: 50vw;
    }

    #main-counters .counter-container .image {
        width: 50vw;
    }

    #main-counters .counter-container .counters .counter .text .title {
        font-size: 14px;
    }

    #main-counters .counter-container .counters .counter .count-text {
        font-size: 50px;
    }

    #main-counters .counter-container .counters .counter {
        width: 20vw;
        padding-left: 2vw;
    }

    .main-header .menu > ul {
        column-gap: 20px;
    }

    .main-header .menu > ul > li > a {
        font-size: 14px;
    }
}

@media (min-width: 1351px) and (max-width: 1600px) {
    #main-counters .counter-container .counters {
        column-gap: 1vw;
        padding-left: 12vw;
    }

    #main-counters .counter-container .counters .counter .text .title {
        font-size: 16px;
    }
}

@media (min-width: 993px) and (max-width: 1600px) {
    #main-video .content .text-box {
        padding-left: 100px;
        width: 550px;
    }

    .product-details .product-header .links ul li a:Hover {
        color: #fff;
    }

    .product-details .product-header .actions a:Hover i {
        background: var(--dark-red);
        box-shadow: 0 0 30px var(--dark-red);
    }

    .product-details .product-header .actions a:Hover .title {
        color: #fff;
    }

    .product-details .product-header .content > div:not(.image) {
        z-index: 111;
    }
}

@media (min-width: 2000px) {
    #main-counters .counter-container .counters .counter {
        width: 35%;
    }

    #main-counters .counter-container .counters {
        width: 60vw;
        padding-left: 10vw;
    }

    #main-counters {
        padding-right: 0;
    }
}

@media (min-width: 1600px) and (max-width: 2000px) {
    #main-media .media-content .media-container aside.articles .article {
        height: 400px;
    }

}

@media (min-width: 1200px) and (max-width: 1599px) {
    #main-media .media-content .media-container aside.articles .article {
        height: 400px;
    }

    #main-media .media-content .media-container aside.articles .article .content a.title {
        font-size: 16px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    #main-media .media-content .media-container aside.articles .article {
        height: 400px;
    }

    #main-media .media-content .media-container aside.articles .article .content a.title {
        font-size: 16px;
    }

    #main-media .media-content .media-container aside.articles {
        width: calc(50vw - 103px);
    }

    #main-media .media-content {
        padding-left: calc(calc(100% - 960px) / 2);
    }

    #main-media .newsletter {
        width: calc(90vw - 205px);
    }

    #main-media .media-content .media-container aside:not(.articles) .title {
        font-size: 16px;
    }

    #main-media .media-content .media-container aside:not(.articles) footer a {
        font-size: 14px;
    }

    #main-media .media-content .media-container aside:not(.articles) .sup-title {
        font-size: 12px;
    }
}

@media (max-width: 1366px){
    .about-widget-container .widget .content{
        padding: 25px 120px;
    }
    
    #main-about .about-content .about-container .images .image-row-1 .since{
        color: #747474;
    }
    
    .loaded #page #main-about .about-content .about-container .images .image-row-1 .since{
        transform: translateY(-10px);
    }
    
    #main-about .about-content .company-text {
        font-size: 18vh;
    }
    
    #main-categories .categories .nav-tabs button.nav-link {
        font-size: 15px;
    }
    
    #main-categories .categories .nav-tabs button.nav-link:not(.active) {
        color: #fff; opacity: .7;
    }
    
    .about-details-page #milestones .shadow-text {
        font-size: 70px;
        bottom: -5px;
    }
}

@media (min-width: 993px) and (max-width: 1699px) {
    .product-content .galleries {
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .main-header .menu {
        display: none;
    }
    
    #switchLangBtn i:before {
    content: '\f0c9';
}

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

    .main-header .language-btn {
        width: calc(100% - 120px);
        justify-content: flex-end;
    }

    .main-header {
        padding: 0 15px;
    }

    #main-video .bg-video {
        display: none;
    }

    #main-video .content {
        align-items: center;
        text-align: center;
        padding-bottom: 70px;
    }

    #main-video .content .about-button{
        transform: translateY(0);
        left: calc(50% - 33px);
        bottom: 50px;
    }

    #main-video .content .text-box {
        width: 100%;
    }

    #main-video .content .vertical-text {
        display: none;
    }

    #main-video .content h1 {
        font-size: 35px;
    }

    #main-video .content .scroll-button {
        display: none;
    }

    #main-about .about-content .about-container {
        height: 100vh;
        flex-direction: column;
        justify-content: center;
    }

    #main-about .about-content .company-text {
        display: none;
    }

    #main-about .about-content .about-container .text {
        padding-right: 0;
    }

    #main-about .about-content .about-container > div {
        width: 100%;
    }

    #main-about .about-content .about-container .text h2 {
        font-size: 25px;
    }

    #main-categories .categories-content {
        width: 100%;
        padding: 20px;
    }

    #main-categories .categories .nav-tabs button.nav-link {
        font-size: 16px;
        color: #5c0000;
    }

    #main-categories .categories-content > .categories .preview {
        display: none;
    }

    #main-production {
        padding-left: 0;
        flex-direction: column;
        justify-content: center;
    }

    #main-production .image img {
        width: 100%;
        height: unset;
        max-height: 300px;
    }

    #main-production > div {
        width: 100%;
    }

    #main-production .text h3 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    #main-production .text p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #main-production .text {
        margin-bottom: 20px;
        width: 100%;
        padding: 30px;
        text-align: center;
    }

    #main-production .image {
        padding: 30px;
    }

    #main-counters .counter-container .image {
        display: none;
    }

    #main-counters .counter-container .counters {
        width: 100%;
        padding-left: 0;
        text-align: center;
        height: unset !important;
        row-gap: 40px;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
    }

    .lines-container {
        display: none;
    }

    #main-counters .counter-container {
        align-items: center;
    }

    #main-counters .counter-container .scroll-button {
        display: none;
    }

    #main-counters .counter-container .counters .counter,
    #main-counters .counter-container .counters .counter:last-child {
        width: 50%;
    }

    #main-counters .counter-container .counters .counter .count-text {
        font-size: 30px;
    }

    #main-counters .counter-container .counters .counter .text {
        margin-top: 5px;
    }

    #main-counters.swiper-slide-active .counter-container .counters .counter img {
        width: 100px;
    }

    #main-counters .counter-container .counters .counter .text .title span {
        display: block;
    }

    #main-counters .counter-container .counters .counter .text .title {
        font-size: 18px;
    }

    #main-media .newsletter {
        display: none;
    }

    #main-media .media-content {
        padding-left: 0;
    }

    #main-media .media-content .media-container aside.articles {
        display: none;
    }

    #main-media .media-content .media-container {
        flex-wrap: wrap;
    }

    #main-media .media-content .media-container aside.articles .article {
        height: 250px;
    }

    #main-media .media-content .media-container aside.articles .article .content {
        width: 100%;
        height: 100%;
    }

    #main-media .media-content .media-container aside:not(.articles) {
        width: 50%;
        height: 250px;
    }

    #home #main-media .main-footer .footer-container .logo {
        background: transparent;
        width: 100%;
        text-align: center;
        max-width: 100%;
        padding: 30px 0;
    }

    #home #main-media .main-footer .footer-container > .menu,
    #home #main-media .main-footer .footer-container > .contacts {
        display: none;
    }

    #home #main-media .main-footer .footer-container {
        column-gap: 0;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        padding-bottom: 30px;
    }

    #home #main-media .main-footer .footer-container .logo > a img {
        display: block;
    }

    #home #main-media .main-footer .footer-container .logo > a img:first-child {
        margin: auto auto 30px auto;
    }

    #home #main-media .main-footer .footer-container .socials {
        width: 100%;
        max-width: 100%;
        flex-direction: unset;
        padding: 0;
        justify-content: center;
    }

    #home #main-media .main-footer .footer-container .socials nav {
        flex-direction: unset;
        column-gap: 10px;
        flex-wrap: wrap;
    }

    #home #main-media .main-footer .footer-container .socials .return-top {
        margin-right: 15px;
    }

    #main-media .media-content .media-container aside:not(.articles) .title {
        font-size: 16px;
    }

    #home #main-media .main-footer {
        height: unset;
    }

    .breadcrumb.with-nav nav {
        display: none;
    }

    .breadcrumb.with-nav p {
        padding: 0 30px;
    }

    .about-details-page #milestones {
        margin: 30px 0;
        overflow: hidden;
        padding: 50px 0;
    }

    .about-details-page #milestones .shadow-text {
        white-space: nowrap;
        font-size: 35px;
    }

    .about-details-page #milestones .section-header h2 {
        font-size: 25px;
    }

    .about-details-page #milestones .milestone-slider {
        margin-top: 30px;
        flex-direction: column;
    }

    .about-details-page #milestones .milestone-slider .year {
        width: 100%;
    }

    .about-details-page #milestones .milestone-slider .slider {
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

    .about-widget-container {
        margin: 30px 0;
        overflow: hidden;
    }

    .about-widget-container .widget {
        padding: 30px 0;
        flex-direction: column !important;
    }

    .about-widget-container .widget > div {
        width: 100%;
    }

    .about-widget-container .widget .content {
        padding: 30px;
    }

    body.sup-page .main-footer .footer-container {
        flex-wrap: wrap;
        column-gap: 15px;
        justify-content: unset;
        align-items: unset;
    }

    body.sup-page .main-footer .footer-container .logo {
        order: 5;
        background: transparent;
        width: 100%;
        max-width: 100%;
        padding: 30px 0;
    }

    body.sup-page .main-footer .footer-container .socials {
        order: 0;
        width: 100%;
        max-width: unset;
        padding: 30px 0;
        flex-direction: row;
        justify-content: center;
    }

    body.sup-page .main-footer .footer-container .menu {
        order: 2;
        width: calc(50% - 10px);
    }

    body.sup-page .main-footer .footer-container .contacts {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    body.sup-page .main-footer .footer-container .socials .return-top {
        margin-right: 15px;
    }

    body.sup-page .main-footer .footer-container .socials nav {
        flex-direction: unset;
        column-gap: 15px;
    }

    body.sup-page .main-footer .footer-container .logo > a img {
        display: block;
    }

    body.sup-page .main-footer .footer-container .logo > a img:first-child {
        margin: auto auto 30px auto;
    }

    body.sup-page .main-footer .footer-container > aside {
        padding: 0;
    }

    .search-products .form-title {
        font-size: 25px;
    }

    .search-products form {
        justify-content: center;
        text-align: center;
    }

    .search-products input {
        width: calc(100% - 50px);
    }

    .categories-page-container .category {
        width: 1010%;
    }

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

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

    .product-details .product-header {
        width: 100%;
        padding: 30px;
        height: unset !important;
    }

    .product-details .product-header header {
        height: unset;
        flex-direction: column;
    }

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

    .product-details .product-header header .description {
        display: none;
    }

    .product-details .product-header .category-name {
        font-size: 12px;
    }

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


    .product-details .product-header header {
        text-align: center;
    }

    .product-details .product-header .content {
        flex-direction: column;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .product-details .product-header .content > .image {
        width: 100%;
        margin-top: 0;
    }

    .product-details .product-header .content > div:not(.image) {
        width: 100%;
        display: flex;
        column-gap: 15px;
    }

    .product-details .product-header:after {
        left: 0;
        top: 58%;
        bottom: unset;
        height: 45%;
    }

    .product-body .tab-pane {
        max-width: 100%;
        overflow: auto;
    }

    .product-details-page .product-body table td {
        font-size: 8px !important;
    }

    .product-details .product-header .scroll-button {
        display: none;
    }

    .product-details .product-header .actions a .title {
        font-size: 12px;
        white-space: unset;
        width: 100%;
    }

    .product-details .product-header .actions a {
        width: 50%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .product-details .product-header .actions a i {
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 10px;
        width: 40px;
        height: 40px;
    }

    .product-details .product-header .content > .image img {
        height: unset !important;
    }

    .product-details .product-header .content .actions {
        align-items: center;
        justify-content: center;
    }

    .product-details .product-header .links ul li a:Hover {
        color: #fff;
    }

    .product-details .product-header .links ul li a {
        color: #fff;
    }

    .product-details .product-header .content > .links {
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 0;
    }

    .product-details .product-header .links ul {
        text-align: center;
    }

    .product-details .product-header .links ul li a:After {
        content: none;
    }

    .product-content .galleries {
        margin-top: 0;
    }

    .product-content .galleries .owl-nav {
        position: unset;
        left: unset;
        width: 100%;
        margin-top: 30px;
    }

    .product-details-page .product-body > section > header .section-title {
        font-size: 25px;
    }

    .get-request-bar .request-bar {
        flex-direction: column;
    }

    .get-request-bar .request-bar > div:not(.close-button) {
        width: 100%;
    }

    .get-request-bar .request-bar .text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .get-request-bar .request-bar .text .title {
        font-size: 18px;
    }

    .get-request-bar .request-bar .text p {
        font-size: 12px;
    }

    .media-details-page .documents .catalogs {
        display: none;
    }

    .media-details-page .documents {
        display: block;
    }

    .media-details-page .documents .slider {
        width: 100%;
        padding-left: 0;
    }

    .media-details-page .documents .owl-nav {
        position: unset;
        margin-top: 30px;
    }

    .media-details-page .articles-content {
        display: block;
    }

    .media-details-page .articles-content .big {
        height: unset;
        width: 100%;
        margin-bottom: 15px;
    }

    .media-details-page .articles-content > div {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .media-details-page .articles-content .smalls .article {
        margin-bottom: 15px;
        height: unset;
    }

    .media-details-page .articles-content .big .article .content {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .media-details-page .articles-content .article .content .title {
        font-size: 14px;
    }

    .media-details-page .articles-content .smalls .article > .cover {
        height: 250px;
        margin: 0;
    }

    .media-details-page .articles-content .big .article {
        height: 250px;
    }

    .media-details-page .gallery-details .gallery-container .gallery {
        width: calc(50% - 15px);
        margin: 7.5px;
    }

    .gallery-details .related-galleries {
        column-gap: 10px;
    }

    .gallery-details .related-galleries .gallery-item {
        width: calc(50% - 10px);
        height: 350px;
    }

    .gallery-details .related-galleries .gallery-item:nth-child(3) {
        display: none;
    }

    .media-details-page .article-details {
        margin: 15px 0;
    }

    .media-details-page .article-details > header {
        max-width: 100%;
        text-align: left;
    }

    .media-details-page .article-details > header h2 {
        font-size: 25px;
    }

    .media-details-page .body {
        max-width: 100%;
    }

    .article-details .related-articles {
        flex-direction: column;
    }

    #main-about .about-content .about-container .images .image-row-1 .image-col img {
        aspect-ratio: 1/1;;
        width: 100%;
        height: unset;
        max-height: 250px;
        object-position: top center;
    }

    #main-about .about-content .about-container .images .image-row-1 .image-col:first-child {
        width: 200px;

    }

    #main-about .about-content .about-container .images .image-row-1 .image-col:last-child {
        width: calc(100% - 200px);
    }

    #main-categories .categories-content > .categories .menu .sup-title {
        margin-bottom: 0;
        color: #5c0000;
    }

    #main-categories .categories-content > .text {
        align-items: flex-start;
    }

    #main-categories .categories-content > .text:After {
        left: unset;
        right: 8px;
    }

    .menu-wrapper {
        position: fixed;
        display: flex;
        left: 0;
        top: 0;
        z-index: 999;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        padding: 80px 0 0 0;
        text-align: center;
        transition: 300ms;
        max-height: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    }

    .menu-wrapper .close-wrapper {
        position: absolute;
        right: 15px;
        top: 15px;
        background: var(--red);
        display: flex;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .menu-wrapper .close-wrapper i {
        font-weight: lighter;
    }

    .menu-wrapper .menu {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .menu-wrapper ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        height: calc(100% - 100px);
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        row-gap: 15px;
    }

    .menu-wrapper ul li a {
        color: #fff;
        font-weight: 600;
        font-size: 25px;
    }

    .menu-wrapper .languages {
        padding: 0 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        column-gap: 10px;
        row-gap: 10px;
    }

    .menu-wrapper .languages a {
        display: block;
        color: #fff;
        text-transform: capitalize;
    }

    .open-lang-menu .menu-wrapper {
        opacity: 1;
        visibility: visible;
        max-height: 100vh;
        transform: translateY(0);
    }

    .langauges-list {
        display: none !important;
    }

    .contacts-container {
        flex-direction: column-reverse;
        row-gap: 20px;
    }

    .contacts-container .map {
        width: 100%;
        position: unset;
        height: 500px;
    }

    .contacts-container .info {
        width: 100%;
    }

    .contacts-container .info section .section-header .title {
        font-size: 25px;
        margin-bottom: 9px;
    }

    .contacts-container .info section h2 {
        font-size: 16px;
    }

    .contacts-container .info section {
        padding: 30px;
    }

    .contacts-container .info section .boxes .box .icon {
        width: 70px;
        height: 70px;
    }

    .contacts-container .info section .boxes .box .content {
        width: calc(100% - 70px);
    }

    .contacts-container .info section .section-header .description {
        margin-top: 0;
    }

    .contacts-container .info form .input {
        width: 100%;
    }

    .contacts-container .info .socials-section nav a {
        width: 50px;
        height: 50px;
    }

    .media-details-page .media-center {
        margin: 30px 0;
    }

    .media-details-page .documents .slider header .title {
        font-size: 16px;
    }

    .media-details-page .documents .slider .document {
        height: 250px;
        padding: 10px;
    }

    .media-details-page .gallery-details {
        padding: 30px 0;
    }

    .media-details-page .gallery-details header .title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .media-details-page .gallery-details .gallery-container .gallery img {
        height: 200px;
    }

    #productDetailsTab li {
        width: 100%;
    }

    #productDetailsTab li button {
        width: 100%;
        font-size: 12px;
        border: 1px solid var(--red);
        padding: 10px 0;
    }

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

    .article-details.article-page .related-articles .article {
        width: 100%;
        margin: 15px 0;
    }

    .product-body #myTabContent {
        padding-left: 55px;
    }

    .media-details-page .gallery-details .gallery-container.corporate-image-gallery {
        padding: 0;
        justify-content: center;
    }

    .media-details-page .gallery-details .gallery-container.corporate-image-gallery .gallery {
        width: calc(33% - 30px);
    }

    .get-request-bar {
        top: 70px;
        bottom: unset;
        transform: translateY(0);
        left: 0;
        width: 100%;
    }

    .request-bar-trigger-wrapper .button {
        font-size: 14px;
        padding: 10px 5px;
    }

    .product-details .product-header .links ul li a {
        font-size: 12px;
    }

    .product-content .galleries img {
        height: unset;
        aspect-ratio: 1;
    }

    .product-details-page .product-body {
        padding: 15px 0;
    }

    body.sup-page .main-footer .footer-container .logo {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 10px;
        justify-content: space-between;
    }

    body.sup-page .main-footer .footer-container .logo > a {
        width: calc(33.3% - 10px);
    }

    .main-footer .footer-container .logo .copyright {
        max-width: 50%;
        margin: auto;
    }

    .sup-page .main-header {
        height: 60px;
    }

    .main-header .logo {
        width: 60px;
    }

    .open-lang-menu .main-header .language-btn button {
        opacity: 0;
    }

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

    .contacts-container .info section:first-child{
        padding-top: 30px;
    }

    .breadcrumb {
        margin-top: 60px;
    }

    .sup-page .main-header{
        top: -2px;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .product-details-page .product-body {
        padding-left: 50px;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .products-container .product {
        width: calc(20% - 10px);
        margin: 5px;
    }

    .products-container .product .content {
        padding: 10px;
    }

    .products-container .product .title {
        font-size: 12px;
    }

    .products-container .product .content .read-more {
        font-size: 12px;
    }

    .main-footer .footer-container .menu ul li a {
        font-size: 12px;
        white-space: unset;
    }

    .main-footer .footer-container .logo {
        min-width: 150px;
        max-width: 150px;
        padding: 10px;
    }

    .main-footer .footer-container .logo .copyright {
        font-size: 12px;
    }

    #main-about .about-content .about-container .text h2 {
        font-size: 20px;
    }

    .product-details .product-header .content > .actions {
        margin-bottom: -40px;
    }

    #productDetailsTab button {
        font-size: 14px;
    }

    .product-details-page .product-body {
        padding-left: 50px;
    }

    .main-footer .footer-container .logo > a img {
        max-width: 100%;
    }

    .media-details-page .media-center .galleries .owl-carousel,
    .media-details-page .documents {
        width: 80%;
        margin: auto;
    }

    .media-details-page .documents .slider .document {
        height: 320px;
    }

    .media-details-page .documents .catalogs {
        height: 390px;
    }

    .media-details-page .documents .slider .document a {
        font-size: 13px;
    }

    #categoriesTabContent {
        width: 70%;
    }

    #categoriesTabContent img {
        width: 100%;
    }

    #main-about .about-content .about-container .images {
        padding-top: 280px !important;
    }

    #main-about .about-content .about-container .images .image-row-1 .since {
        letter-spacing: 1px;
    }

    .get-request-bar {
        transform: translateY(0);
        bottom: 30px
    }

    .get-request-bar .request-bar .text .title {
        font-size: 25px;
    }

    .get-request-bar .request-bar .text p {
        font-size: 12px;
    }

    .get-request-bar .request-bar .form .input input {
        height: 40px;
        font-size: 12px;
    }

    .get-request-bar .request-bar .text > .image {
        width: 40%;
    }
}
