@import url("./fonts/Effra/effra.css");
@import url("./fonts/Gotham/gotham.css");

:root {
    --primaryColor: #b90014;
    --secondaryColor: #4a4a4d;
    --white-color: rgb(255, 255, 255);
    --headFontColor: #1a1818;
    --headFont: "Effra", sans-serif;
    --bodyFont: "Gotham", sans-serif;
    --thm-white: #ffffff;
    --thm-primary: #b90014;
    --thm-black: #b90014;
    --thm-secondary: #b90014;
    --theme-color1: #171717;
    --theme-color2: #b90014;
    --thm-secondary-rgb: 255, 224, 227;
    --border-theme-color1: var(--theme-color1);
    --border-theme-color2: var(--theme-color2);
    --bg-theme-color1: var(--theme-color1);
    --bg-theme-color2: var(--theme-color2);
}

* {
    font-family: var(--bodyFont);
}

.about-infrastructure-content-wrapper.product-feature-item {}

body {
    overflow-x: hidden;
    font-family: var(--bodyFont);
    font-size: 16px;
}

img {
    max-width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0px 60px;
}

.header .container-fluid {
    padding-right: 0px;
}

@media screen and (max-width: 1199px) {
    .container-fluid {
        padding: 0px 20px;
    }

    .header .container-fluid {
        padding: 0 15px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 1199px) {
    .header .container-fluid {
        padding: 0 15px;
        padding-right: 0px;
    }
}

.v-center {
    align-items: center;
}

ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1,
h1 a,
h2,
h2 a,
h2 span,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
    transition: all 0.35s ease-in-out 0s;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--headFont) !important;
}

a {
    font-family: var(--bodyFontFamliy);
    transition: all 0.35s ease-in-out 0s;
    text-decoration: none;
    color: var(--primaryColor);
}

a:hover {
    color: var(--secondaryColor);
}

.btn-primary {
    clip-path: polygon(83% 0px,
            100% 45%,
            100% 60%,
            100% 100%,
            0px 100%,
            0px 100%,
            0px 0px);
    transition: all 0.35s ease-in 0s;
    background: var(--primaryColor);
}

.btn {
    padding: 12px 50px;
    border-radius: 0px;
    transition: all 0.35s cubic-bezier(0.47, 1.21, 0.47, 1.21) 0s;
    border: 0px;
}

.btn-primary:hover {
    background: var(--secondaryColor);
    clip-path: polygon(100% 0px,
            100% 0%,
            100% 60%,
            100% 100%,
            0px 100%,
            0px 100%,
            0px 0px);
}

.logo {
    position: relative;
}

/* navbar */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    padding-right: 0;
    background: #fff;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar .logo {
    text-decoration: none;
    color: #122f48;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

/* nav menu button */

.menu-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
    content: "";
    position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
    width: 1.5rem;
    height: 0.1rem;
    background: #132f48;
    transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
    transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
    transform: translateY(0.5rem);
}

.navbar .menu-items {
    display: flex;
    align-items: center;
    background: var(--primaryColor);
    position: relative;
    justify-content: flex-end;
    padding-right: 80px;
}

.navbar ul li {
    list-style: none;
    transition: 0.3s ease;
}

.navbar ul li .arrow {
    transition: all 0.3s ease-out;
}

.navbar ul>li>a {
    text-decoration: none;
    color: #ffffff;
    width: 100%;
}

/* dropdown menu */

.navbar .dropdown {
    position: relative;
}

.expand-btn:after {
    content: " \25BE";
    opacity: 0.4;
    margin-left: 5px;
}

.navbar .dropdown-menu,
.menu-right {
    position: absolute;
    width: 190px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    top: 100%;
    border-top: 1px solid white;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    display: block;
    border: 0;
}

.navbar .dropdown-menu,
.menu-right,
.menu-left {
    pointer-events: none;
}

.expand-btn.open,
.navbar .dropdown:hover .dropdown-menu {
    pointer-events: all;
}

.navbar .menu-right {
    top: 0;
    left: 100%;
}

.navbar .dropdown-menu,
.menu-left {
    right: 0;
}

.navbar .menu-left {
    left: -100%;
}

.navbar .menu-item {
    display: flex;
    justify-content: space-between;
    /* width: 100%; */
    padding: 0.5rem 1.5rem;
    font-size: 14px;
    font-size: 16px;
    font-family: var(--headFont);
    font-weight: 600;
    align-items: center;
}

.navbar .menu-item:hover {
    color: #ff5722;
}

.menu-item.first-item {
    padding: 2.25rem 1rem;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-right:hover .menu-right {
    left: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: #fff;
}

.navbar .dropdown-menu a {
    color: #000;
}

.dropdown i {
    margin-left: 2px;
    margin-top: 4px;
}

.navbar .dropdown-right:hover .menu-left {
    left: -100%;
}

/* mega menu  */

.navbar .mega-menu {
    position: absolute;
    left: 0;
    width: 100%;
    top: 65px;
    border-top: 1px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
    pointer-events: none;
}

.mega-menu .content {
    background: #e9ecef;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.blog .content {
    grid-template-columns: repeat(4, 1fr);
}

.content .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 3rem;
}

.content .col .img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 20vw;
    overflow: hidden;
}

.content .col .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.content .col img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
    transform: scale(1.1);
}

.content .col .menu-title {
    color: #ff5722;
    font-size: 1.2rem;
    line-height: 3rem;
    font-weight: bold;
}

.content .col p {
    line-height: 1.2rem;
    margin-top: 5px;
    color: #112f48;
}

.content .col .mega-links {
    border-left: 1px solid #3c3c3c;
}

.content .col .read-more {
    font-size: 16px;
    display: flex;
    padding-top: 1rem;
    color: #03a9f4;
    transition: color 0.3s ease;
    justify-content: flex-end;
    padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
    padding: 0 1rem;
}

.menu-items li:hover .mega-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.content .col .read-more:hover {
    color: #ff5722;
}

/* container */
.container {
    margin: auto auto;
    padding: 0 15px;
    max-width: 1200px;
    text-align: center;
}

.container p {
    color: #ffffff;
}

h1 {
    font-weight: 700;
    line-height: 10vw;
    color: #ffffff;
    text-transform: uppercase;
}

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #132f48;
}

.menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #132f48;
}

/* Responsive style */

@media screen and (max-width: 1280px) {
    .navbar {
        padding: 10px 20px;
    }

    .overflow {
        overflow: hidden;
    }

    .navbar .menu-items::before {
        display: none;
    }

    .navbar .menu-items::after {
        display: none;
    }

    .navbar ul>li>a {
        color: #000;
    }

    .overlay {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 500;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .overlay--active {
        opacity: 1;
        visibility: visible;
    }

    .menu-btn {
        display: flex;
    }

    .navbar .menu-items {
        position: fixed;
        height: 100%;
        max-height: initial;
        overflow-y: auto;
        width: 80%;
        top: 65px;
        right: -200%;
        background: #fcfcfc;
        display: block;
        transform: translateX(-100vh);
        transition: 0.3s ease-out;
        padding-bottom: 100px;
        padding-right: 0;
    }

    .menu-items.open {
        transform: translateY(0);
        right: 0;
    }

    .menu-items li:not(:last-child) {
        border-bottom: 1px solid #e7e7e7;
    }

    .menu-items li:first-child {
        margin-top: 0;
    }

    .menu-items li a {
        padding: 10px 1rem;
        display: block;
        font-size: 18px;
    }

    .menu-items .dropdown-right .right-arrow {
        transform: rotate(90deg);
    }

    .menu-item.first-item {
        padding: 0.5rem 1rem;
    }

    /* DROPDOWN, MEGA MENUS */
    .menu-items .dropdown-menu,
    .menu-items .menu-right,
    .menu-items .mega-menu {
        position: static;
        opacity: 1;
        top: 4rem;
        visibility: visible;
        margin-left: -18px;
        width: auto;
        max-height: 0;
        transform: scaleX(0);
        transform-origin: left;
        overflow: hidden;
        transition: all 0.5s ease;
        display: none;
    }

    .menu-items .dropdown-menu,
    .menu-items .menu-right {
        padding-left: 1rem;
        width: 102%;
        margin-left: -10px;
    }

    .menu-items .mega-menu .col {
        padding-left: 1rem;
    }

    .expand-btn.open+.sample {
        max-height: 100%;
        transform: scaleZ(1);
        display: block;
    }

    .expand-btn.open+.blog.sample {
        max-height: 100%;
        transform: scaleZ(1);
        max-width: fit-content;
    }

    .navbar .sample {
        border-top: none;
    }

    .sample li {
        margin: 0;
    }

    .sample li:last-child {
        border-bottom: none;
    }

    .sample li a {
        font-size: 1rem;
    }

    .mega-menu .content {
        grid-template-columns: auto;
        padding: 1rem 1rem 0 1rem;
    }

    .mega-menu .content .col {
        width: 100%;
        padding-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .col .mega-links li,
    .col .mega-links li a {
        padding: 0 0.5rem;
    }

    .content .col .mega-links {
        border-left: 0;
        padding-left: 0.5rem;
    }

    .col .mega-links li {
        margin: 0;
    }
}

#video-popup-container {
    display: none;
    position: fixed;
    width: 60%;
    left: 50%;
    margin-left: -30%;
    top: 20%;
    background-color: rgb(255, 255, 255);
    z-index: 9999;
}

#video-popup-close {
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 998;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    text-align: center;
    font-size: 12px;
    background-color: rgb(0, 0, 0);
    line-height: 25px;
    color: rgb(255, 255, 255);
    opacity: 1;
}

#video-popup-iframe-container {
    position: absolute;
    z-index: 997;
    width: 100%;
    padding-bottom: 56.25%;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 2px;
    background-color: rgb(0, 0, 0);
}

#video-popup-iframe {
    z-index: 999;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: rgb(0, 0, 0);
}

#video-popup-overlay {
    display: none;
    position: fixed;
    top: 0px;
    background-color: rgb(0, 0, 0);
    opacity: 0.8;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: 9999;
}

#video-popup-close:hover {
    color: var(--primaryColor);
}

.vpop {
    position: relative;
    cursor: pointer;
}

.video-icon {
    position: absolute;
    inset: 0px;
    margin: auto;
    display: flex;
    width: 151px;
    height: 151px;
    z-index: 3;
}

.photo-video-section .section-title.text-center {
    margin-top: 30px;
}

.video-icon i {
    font-size: 95px;
    color: var(--primaryColor);
}

.video-main-img {
    position: relative;
    z-index: 1;
    background: rgb(0, 0, 0);
}

.video-main-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    left: 0px;
    top: 0px;
    opacity: 0;
}

#home-banner-slider span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: transparent;
    border: 1px solid rgb(255, 255, 255);
}

#home-banner-slider span.swiper-pagination-bullet {
    background: rgb(255, 255, 255);
    opacity: 1;
    transition: all 0.3s ease-in 0s;
    width: 10px;
    height: 10px;
}

#home-banner-slider .swiper-pagination {
    bottom: 50px;
}

section.home-about-section {
    padding: 80px 0px 0;
}

.section-title [class*="title-syle-"] {
    position: relative;
    font-weight: 900;
    flex-wrap: wrap;
    font-size: 50px;
    margin-bottom: 30px;
    display: inline-flex;
    gap: 8px;
}

.section-title .title-syle-1 span:nth-child(1) {
    color: var(--primaryColor);
    font-weight: 400;
}

.section-title .title-syle-2 span:nth-child(2) {
    color: var(--primaryColor);
    font-weight: 400;
}

.section-title [class*="title-syle-"] span:nth-child(2) {
    position: relative;
    padding-right: 10px;
}

.section-title [class*="title-syle-"] span:nth-child(2)::after {
    position: absolute;
    pointer-events: none;
    content: "";
    background-image: url("../img/heading-style.png");
    top: 0px;
    right: 0px;
    width: 24px;
    height: 24px;
    animation: titleAni 2s cubic-bezier(0.47, 1.21, 0.47, 1.21) 0s alternate infinite;
}

@keyframes titleAni {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .section-title [class*="title-syle-"] {
        font-size: 34px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    #home-banner-slider .swiper-pagination {
        bottom: 10px;
    }
}

.home-solution-section {
    padding: 80px 0px;
    position: relative;
}

.home-solution-section::after {
    content: "";
    background: url("../img/solution.png") center center / cover;
    mix-blend-mode: luminosity;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.75;
    z-index: -1;
}

.home-solution-item {
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease-in 0s;
    height: 100%;
}

/* .home-solution-item:hover {
    transform: translateY(-5px);
    box-shadow: rgb(106, 106, 106) 0px 0px 50px -20px;
} */

.home-solution-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.35s ease-in;
}

#product-gallery-slider .product-gallery-img img {
    width: 100%;
}

#home-banner-slider video {
    display: block;
    width: 100%;
}

.home-solution-item:hover .home-solution-img img {
    transform: scale(1.025) translateY(-10px);
}

.home-solution-main {
    background: rgb(255, 255, 255);
}

.home-solution-main-content {
    text-align: center;
    padding: 0 30px 50px;
    font-size: 20px;
}

.home-solution-img {
    position: relative;
    height: 100%;
}

.home-solution-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(51, 51, 48, 0) 100%);
}

.home-solution-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0px;
    align-items: end;
    padding: 15px;
}

section.plant-installation-section {
    padding: 80px 0;
}

.home-solution-content h3 {
    font-weight: 400;
    font-family: var(--bodyFont) !important;
}

.home-solution-content h3 a {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-family: var(--bodyFont) !important;
    font-size: 20px;
}

.home-solution-content h3 a:hover {
    color: var(--primaryColor);
}

.home-solution-main #tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.home-solution-main #tabs-nav li {
    background: var(--primaryColor);
    padding: 16px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease-in 0s;
}

.home-solution-main #tabs-nav li a {
    color: rgb(255, 255, 255);
    font-size: 18px;
}

.home-solution-main #tabs-nav li:hover,
.home-solution-main #tabs-nav li.active {
    background: rgb(0, 0, 0);
}

.home-solution-main #tabs-nav li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.36);
}

.tab-content.show-tab {
    transform: translateY(0);
    opacity: 1;
    display: block !important;
    animation: solutionAni 0.45s cubic-bezier(0.47, 1.21, 0.47, 1.21) 0s;
}

@media (max-width: 1199px) {
    .home-solution-main #tabs-nav {
        gap: 1px;
        grid-template-columns: repeat(2, 1fr);
    }

    .home-solution-main #tabs-nav li a {
        font-size: 14px;
    }

    .home-solution-main #tabs-nav li:not(:last-child) {
        border-right: 0px solid rgba(255, 255, 255, 0.36);
    }
}

@media (max-width: 576px) {
    .home-solution-main #tabs-nav {
        grid-template-columns: repeat(1, 1fr);
    }
}

@keyframes solutionAni {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

section.news-blog-section {
    padding: 80px 0;
    background: #e4e4e4;
}

.news-item ul {
    display: grid;
    grid-template-columns: 4.5fr 8fr;
    background: #fff;
    padding: 30px 40px;
    gap: 30px;
    box-shadow: 0px 12px 12px #00000029;
    border-radius: 5px;
}

.news-item ul li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.news-item ul li a {
    height: 100%;
}

.news-item ul li a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.news-item ul li h6 {
    color: #a9abac;
    font-family: var(--bodyFont);
    font-weight: 400;
}

.news-item ul li h3 a {
    color: var(--headFontColor);
}

.news-item ul li h3 a:hover {
    color: var(--primaryColor);
}

.news-item ul li a i {
    vertical-align: middle;
    font-size: 20px;
    transition: transform 0.35s ease-in;
    transform: translateX(0px);
    font-weight: 500;
}

.news-item ul li p a:hover i {
    transform: translateX(5px);
}

.news-item ul li p a {
    font-weight: 500;
    font-family: var(--bodyFont);
}

.plant-installation-item {
    height: 100%;
}

.plant-installation-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-section {
    height: 100%;
}

.blog-content {
    padding: 40px;
    background: #fff;
    border-radius: 0px 0px 5px 5px;
}

.blog-img {
    height: 252px;
}

.blog-content h3 a {
    color: var(--headFontColor);
}

.blog-content h3 a:hover {
    color: var(--primaryColor);
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0px 0px;
}

@media (max-width: 576px) {
    .news-item ul {
        padding: 30px 20px;
        grid-template-columns: 1fr;
    }
}

footer {
    background: #4a4a4d;
    padding: 80px 0 40px;
}

.footer-wrapper {
    background: #fff;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.footer-logo-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: end;
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.footer-social ul {
    display: flex !important;
    gap: 15px !important;
    flex-direction: initial !important;
    flex-wrap: wrap;
}

.footer-social ul li a {
    font-size: 30px;
    color: var(--headFontColor);
}

.footer-social ul li a:hover {
    color: var(--primaryColor);
}

.footer-address ul li {
    display: flex;
    gap: 18px;
}

.footer-address ul li a {
    color: var(--headFontColor);
}

.footer-address ul li a:hover {
    color: var(--primaryColor);
}

.footer-links-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 10px;
}

.footer-links-wrapper .footer-link-title h4 {
    font-size: 20px;
}

.footer-links-wrapper .footer-social ul {
    margin-top: 0;
}

.footer-links-wrapper .footer-social {
    margin-top: 30px;
}

.footer-social h4 {
    font-size: 20px;
}

.footer-links-wrapper ul li a {
    color: var(--headFontColor);
}

.footer-links-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.footer-links-wrapper ul li a:hover {
    color: var(--primaryColor);
}

.footer-wrapper:after,
.footer-wrapper:before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.footer-wrapper:after {
    width: 290px;
    height: 90px;
    background: var(--primaryColor);
    right: -201px;
    top: 0px;
    /* transform: rotate(45deg); */
    clip-path: polygon(1.8% 0%, 100% 0%, 100% 100%, 38% 101%);
}

.footer-wrapper:before {
    background: #fff;
    width: 30px;
    height: 30px;
    top: 27px;
    right: 30px;
    z-index: 1;
}

.footer-copy {
    text-align: right;
    margin-top: 40px;
}

.footer-copy li {
    color: #848484;
}

.footer-copy li {
    display: flex;
    justify-content: end;
    gap: 20px;
}

.footer-copy li a {
    color: #848484;
}

.footer-copy li a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-logo-block {
        padding-right: 50px;
        position: relative;
        z-index: 2;
    }

    .footer-links-wrapper {
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .footer-logo-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links-wrapper {
        flex-direction: column;
    }

    .footer-copy li {
        flex-direction: column;
        text-align: center;
    }
}

.home-solution-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.home-solution-grid-wrapper>* {
    height: 100%;
}

.home-solution-grid-right {
    background: var(--primaryColor);
    padding: 80px 120px;
}

.home-solution-grid-left {
    position: relative;
    display: flex;
    align-items: center;
}

.home-solution-grid-left-img {
    background: #000;
}

.home-solution-grid-left-img img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: #000;
    z-index: -1;
}

.home-solution-grid-left-content {
    padding: 100px 90px;
}

.home-solution-grid-left-content p {
    color: #fff;
    line-height: 1.8;
    font-size: 20px;
}

.home-solution-grid-right-content h3 {
    font-size: 50px;
    color: #fff;
}

.home-solution-grid-right-content h3 span {
    font-weight: 400;
    font-family: var(--headFont);
}

.home-solution-grid-right-content ul li a {
    color: #ffbcbc;
    font-size: 30px;
    text-transform: capitalize;
}

.home-solution-grid-right-content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 65%;
    margin-top: 40px;
}

.home-solution-grid-right-content ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.home-solution-grid-right-content ul li {
    position: relative;
}

.home-solution-grid-right-content ul li:after,
.home-solution-grid-right-content ul li::before {
    content: "";
    position: absolute;
}

.home-solution-grid-right-content ul li:after {
    background: url(../img/style-white.svg);
    width: 21px;
    height: 21px;
    left: -50px;
    top: 12px;
    transition: all 0.35s cubic-bezier(0.47, 1.21, 0.47, 1.21) 0s;
}

.home-solution-grid-right-content ul li:hover:after {
    transform: rotate(45deg);
}

.home-solution-grid-right-content ul li:hover:after {
    transform: rotate(45deg);
}

.home-solution-grid-right-content ul li::before {
    border-bottom: 2px dashed #fff;
    top: 0;
    bottom: 0;
    width: 80px;
    height: 24px;
    left: -120px;
}

.home-solution-grid-left-btn {
    text-align: right;
    position: relative;
    margin-top: 30px;
}

.home-solution-grid-left-btn a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    position: relative;
    top: 0;
    right: 0;
}

span.btn-style {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    border: 1px solid;
    top: 0;
    left: 40px;
    margin-left: 40px;
    transition: all 0.35s cubic-bezier(0.34, 1.18, 0.34, 1.17);
}

span.btn-style:after {
    content: "";
    width: 100px;
    height: 50px;
    background-color: currentColor;
    -webkit-mask-image: url(../img/btn-icon.png);
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -40px;
    transition: all 0.35s cubic-bezier(0.34, 1.18, 0.34, 1.17);
}

a.link.btn-link:hover span.btn-style:after {
    left: 40px;
}

a.link.btn-link {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    width: max-content;
    margin-left: auto;
    padding-right: 70px;
}

a.link.btn-link:hover {
    color: #fff;
}

a.link.btn-link:hover span.btn-style {
    left: 0;
}

@media (max-width: 1540px) {
    .home-solution-grid-right-content ul {
        max-width: 85%;
    }

    .home-solution-grid-right-content ul li a {
        font-size: 26px;
    }

    .home-solution-grid-right {
        padding-right: 80px;
    }
}

@media (max-width: 1199px) {
    .home-solution-grid-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .home-solution-grid-right {
        order: 0;
    }

    .home-solution-grid-right-content ul {
        padding-left: 50px;
        max-width: 100%;
    }

    .home-solution-grid-left {
        order: 1;
    }

    .home-solution-grid-right-content ul li::before {
        display: none;
    }

    .home-solution-grid-right,
    .home-solution-grid-left-content {
        padding: 50px 15px;
    }
}

@media (max-width: 576px) {
    .home-solution-grid-right-content h3 {
        font-size: 40px;
    }
}

.swiper-nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
}

.swiper-nav .swiper-button-next,
.swiper-nav .swiper-rtl .swiper-button-prev {
    right: 0;
}

.swiper-nav .swiper-button-prev.testimonial-button-prev,
.swiper-nav .swiper-rtl .swiper-button-next {
    left: 0;
}

div#testimonial-slider {
    margin: 0 60px;
    height: 100%;
    padding-bottom: 60px;
}

.testimonial-slider-wrapper {
    position: relative;
    height: 630px;
}

.swiper-nav .swiper-button-next:after,
.swiper-nav .swiper-button-prev:after {
    font-size: 30px;
    color: #000;
}

section.home-testimonials-section {
    padding: 80px 0 0;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.testimonial-item {
    position: relative;
}

.testimonial-content {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 50px;
}

.testimonial-content-inner {
    position: relative;
    width: 50%;
    padding: 80px 80px;
    background: #4a4a4d;
    color: #fff;
    font-weight: 300;
}

.testimonial-content-inner::after,
.testimonial-content-inner::before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    opacity: 0.5;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    width: 50px;
    height: 50px;
}

.testimonial-content-inner::before {
    -webkit-mask-image: url(../img/quote-icon.png);
    top: 40px;
    left: 40px;
    animation: swing ease-in-out 500ms infinite alternate;
}

.testimonial-content-inner::after {
    -webkit-mask-image: url(../img/quote-icon-2.png);
    animation: swing ease-in-out 500ms infinite alternate;
    bottom: 40px;
    right: 40px;
}

@keyframes swing {
    0% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}

.testimonial-item {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.testimonial-img {
    height: 100%;
    overflow: hidden;
}

.testimonial-content {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 60px;
}

.testimonial-content-inner {
    width: 50%;
    padding: 100px 80px;
    background: #4a4a4d;
    color: #fff;
    font-weight: 300;
}

.testimonial-img:before,
.testimonial-img:after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.testimonial-img:before {
    width: 160px;
    height: 70px;
    background: var(--primaryColor);
    top: -2px;
    right: -65px;
    z-index: 1;
    transform: rotate(48deg);
}

.testimonial-img:after {
    width: 20px;
    height: 20px;
    background: #000;
    top: 38px;
    right: 38px;
    z-index: 1;
}

#testimonial-slider span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: transparent;
    width: 12px;
    height: 12px;
    border: 1px solid var(--primaryColor);
}

#testimonial-slider span.swiper-pagination-bullet {
    background: #4a4a4d;
    opacity: 1;
    transition: all 0.3s ease-in 0s;
    width: 10px;
    height: 10px;
}

@media (max-width: 1199px) {
    .testimonial-content-inner {
        width: 80%;
    }
}

@media (max-width: 991px) {
    .testimonial-img:after {
        background: #4a4a4d;
    }

    .testimonial-slider-wrapper {
        height: auto;
    }

    .testimonial-content {
        padding: 0;
        position: unset;
    }

    .testimonial-content:before,
    .testimonial-content:after {
        content: "";
        position: absolute;
        pointer-events: none;
    }

    .testimonial-content:before {
        width: 160px;
        height: 70px;
        background: var(--primaryColor);
        top: -2px;
        right: -65px;
        z-index: 1;
        transform: rotate(48deg);
    }

    .testimonial-content:after {
        width: 20px;
        height: 20px;
        background: #4a4a4d;
        top: 38px;
        right: 38px;
        z-index: 1;
    }

    .testimonial-content-inner {
        width: 100%;
        height: 100%;
    }

    .testimonial-img {
        display: none;
    }
}

@media (max-width: 576px) {
    .swiper-nav {
        display: none;
    }

    div#testimonial-slider {
        margin: 0;
    }

    .testimonial-content-inner::before {
        left: 20px;
    }

    .testimonial-content-inner::after {
        right: 20px;
    }

    .testimonial-content-inner {
        padding: 100px 30px;
    }
}

#home-banner-slider .video-icon:after,
#home-banner-slider .video-icon:before {
    width: 151px;
    height: 151px;
}

#home-banner-slider .video-icon:after {
    position: absolute;

    left: 50%;
    top: 50%;
    border: 2px solid #fff;
    content: "";
    z-index: -1;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    pointer-events: none;
}

#home-banner-slider .video-icon:before {
    position: absolute;

    left: 50%;
    top: 50%;
    border: 2px solid #fff;
    content: "";
    z-index: -1;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    animation-delay: 0.5s;
    pointer-events: none;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

section.breadcrumb-section {
    background: #e9e9e9;
    padding: 10px 0;
}

ul.bread-crumb {
    display: flex;
}

ul.bread-crumb li:not(:last-child):after {
    content: ">";
    position: relative;
    margin: 0 10px;
    font-weight: 600;
}

.breadcrumb-links.bread-crumb span {
    font-weight: 600;
}

.product-banner-img img {
    width: 100%;
}

.product-banner-content {
    margin-bottom: 30px;
}

section.product-banner-section {
    padding: 80px 0;
}

.product-banner-content h2.title-syle-1 {
    margin-bottom: 10px;
}

.product-banner-content p {
    margin-bottom: 50px;
}

.product-storage-material-content {
    position: relative;
    display: block;
    background: #ffff;
    border-radius: 4px;
    padding: 40px 10px 33px;
    height: 100%;
    box-shadow: 1px 2px 35px -28px #340000;
}

.product-storage-material-content .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primaryColor);
    border-radius: 50%;
    margin: 0 auto 13px;
    z-index: 1;
}

.product-storage-material-content .icon-box:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 100%;
    background-color: var(--secondaryColor);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top center;
    -webkit-transform: scale(0);
    transform: scale(0);
    z-index: -1;
}

.product-storage-material-content:hover .icon-box:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    transform-origin: bottom center;
}

.product-storage-material-content .icon-box span {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 28px;
    line-height: 28px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.product-storage-material-content:hover .icon-box span {
    color: #ffffff;
    transform: rotateY(0deg) scale(1.05);
}

.product-storage-material-content .text {
    position: relative;
    display: block;
}

.product-storage-material-content .text h4 {
    color: var(--headFontColor);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

section.product-storage-material-section {
    background: #f7f7f7;
    padding: 80px 0;
}

.types-asrs-section {
    position: relative;
    display: block;
    padding: 80px 0px;
    background: var(--thm-body-background);
    z-index: 1;
}

.types-asrs-section .row {
    --bs-gutter-x: 50px;
}

.types-asrs-item {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    margin-bottom: 30px;
    z-index: 1;
}

.types-asrs-item::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 0px;
    right: 0;
    border-radius: 4px;
    background-color: rgba(var(--thm-secondary-rgb), 0.6);
    z-index: -1;
}

.types-asrs-item::after {
    content: "";
    position: absolute;
    top: 90px;
    left: 0;
    bottom: 20px;
    right: 0;
    width: 50px;
    border: 1px solid var(--thm-primary);
    border-bottom-left-radius: 4px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -2;
    border-right: none;
    border-top: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.types-asrs-item:hover::after {
    border: 1px solid var(--thm-secondary);
    border-right: none;
    border-top: none;
}

.types-asrs-item-overlay-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    background-color: var(--thm-secondary);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 1;
}

.types-asrs-item:hover .types-asrs-item-overlay-bg {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.types-asrs-item .content-box {
    position: relative;
    display: block;
    padding: 0 50px 41px;
    padding-right: 35px;
    z-index: 1;
}

.types-asrs-item .content-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-bottom-right-radius: 4px;
    z-index: -1;
}

.types-asrs-item .content-box .title-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: -50px;
    z-index: 2;
}

.types-asrs-item .content-box .title-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    width: 100px;
    height: 90px;
    border-top-left-radius: 4px;
    background-color: rgba(var(--thm-secondary-rgb), 0.6);
}

.types-asrs-item .content-box .title-box .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.types-asrs-item:hover .content-box .title-box .icon-box span {
    color: var(--thm-white);
}

.types-asrs-item .content-box .title-box .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-top-left-radius: 4px;
    background-color: var(--thm-secondary);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 1;
}

.types-asrs-item:hover .content-box .title-box .icon-box::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.types-asrs-item .content-box .title-box h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    margin-left: 30px;
}

.types-asrs-item .content-box .title-box h3 a {
    color: var(--thm-heading-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.types-asrs-item .content-box .title-box h3 a:hover {
    color: var(--thm-primary);
}

.types-asrs-item .content-box .text-box {
    position: relative;
    display: block;
    padding-top: 23px;
}

.types-asrs-item .content-box .text-box p {
    font-weight: 500;
}

.feature-item {
    background: #ffecee;
    display: flex;
    padding: 15px 20px;
    border-radius: 7px;
    font-weight: 500;
    gap: 10px;
    transition: all 0.35s ease-in-out;
}

.feature-item:hover {
    background-color: var(--thm-primary);
    color: #fff;
}

.sub-nav-solution {
    row-gap: 20px;
}

section.feature-section {
    background: #f7f7f7;
    padding: 80px 0;
}

.list-style-one li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #101a30;
    font-weight: 500;
    padding-left: 27px;
    margin-bottom: 11px;
}

.list-style-one li:last-child {
    margin-bottom: 0px;
}

.list-style-one li:before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    width: 18px;
    height: 18px;
    line-height: 16px;
    text-align: center;
    border: 1.5px solid var(--primaryColor);
    font-size: 10px;
    text-align: center;
    border-radius: 50%;
    left: 0px;
    top: 4px;
    font-weight: 900;
    color: var(--primaryColor);
}

section.tech-specification-section {
    padding: 80px 0;
}

figure.image-box {
    text-align: center;
    background: #ffecee;
    border-radius: 10px;
}

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 70px;
}

.contact-section .bg-image {
    position: absolute;
    right: 60px;
    bottom: 0;
}

@media only screen and (max-width: 1700px) {
    .contact-section .bg-image {
        right: -60px;
    }
}

@media only screen and (max-width: 1439px) {
    .contact-section .bg-image {
        display: none;
    }
}

.contact-section .sec-title {
    margin-bottom: 40px;
    padding: 0 12px;
}

.contact-section .title-column {
    position: relative;
    margin-bottom: 50px;
}

.contact-section .form-column {
    margin-bottom: 50px;
}

.contact-section .form-column .inner-column {
    padding-right: 130px;
    margin-left: -30px;
}

@media only screen and (max-width: 1199px) {
    .contact-section .form-column .inner-column {
        padding-right: 0;
        margin-left: 0;
    }
}

.contact-info-block {
    position: relative;
    margin-bottom: 20px;
}

.contact-info-block .inner {
    position: relative;
    padding-left: 110px;
    min-height: 80px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
}

@media only screen and (max-width: 599px) {
    .contact-info-block .inner {
        padding-left: 70px;
        min-height: auto;
    }
}

.contact-info-block .inner:hover .icon {
    background-color: var(--bg-theme-color1);
    border-radius: 50%;
}

.contact-info-block .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 80px;
    width: 80px;
    background-color: var(--bg-theme-color2);
    color: #fff;
    font-size: 24px;
    line-height: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media only screen and (max-width: 599px) {
    .contact-info-block .icon {
        height: 50px;
        width: 50px;
        font-size: 20px;
    }
}

.contact-info-block .title {
    font-size: 16px;
    text-transform: uppercase;
    color: #717070;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-info-block .text {
    font-size: 20px;
    line-height: 30px;
    color: #171717;
    font-weight: 500;
}

.contact-info-block .text a {
    color: inherit;
    font-weight: inherit;
}

.contact-info-block .text a:hover {
    color: var(--theme-color2);
}

.contact-form {
    position: relative;
    background-color: #ffffff;
    padding: 15px 15px 50px;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
}

@media only screen and (max-width: 1023px) {
    .contact-form {
        padding: 50px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-form {
        padding: 40px 20px;
    }
}

.contact-form::before {
    position: absolute;
    right: 30px;
    bottom: 30px;
    height: 414px;
    width: 340px;
    border-bottom: 5px solid;
    -o-border-image: linear-gradient(to left,
            var(--border-theme-color2),
            transparent) 1;
    border-image: -webkit-gradient(linear,
            right top,
            left top,
            from(var(--border-theme-color2)),
            to(transparent)) 1;
    border-image: linear-gradient(to left,
            var(--border-theme-color2),
            transparent) 1;
    z-index: 2;
    pointer-events: none;
    content: "";
}

@media only screen and (max-width: 1023px) {
    .contact-form::before {
        display: none;
    }
}

.contact-form:after {
    position: absolute;
    right: 30px;
    bottom: 30px;
    height: 414px;
    width: 340px;
    pointer-events: none;
    border-right: 5px solid;
    -o-border-image: linear-gradient(transparent, var(--border-theme-color2)) 1;
    border-image: linear-gradient(transparent, var(--border-theme-color2)) 1;
    z-index: 2;
    content: "";
}

@media only screen and (max-width: 1023px) {
    .contact-form:after {
        display: none;
    }
}

.contact-form .title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 10px;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form .form-group label {
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 500;
    display: block;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-form .form-group label.error {
    display: block;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    line-height: 24px;
    color: #ff0000;
    margin-bottom: 0;
}

.contact-form .form-group .select2-container--default .select2-selection--single,
.contact-form .form-group input:not([type="submit"]),
.contact-form .form-group textarea,
.contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    padding: 15px 30px;
    line-height: 30px;
    font-size: 14px;
    color: #717070;
    font-weight: 500;
    background-color: #f6f6f6;
    border: 1px solid transparent;
    border-radius: 5px;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern-6 {
    background-image: url(../img/pattern-6.jpg);
}

.contact-form .form-group ::-webkit-input-placeholder {
    color: #6a6a6a;
}

.contact-form .form-group ::-moz-input-placeholder {
    color: #8c8f94;
}

.contact-form .form-group ::-ms-input-placeholder {
    color: #8c8f94;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--border-theme-color2);
}

.contact-form .form-group textarea {
    height: 170px;
    resize: none;
}

.contact-form .form-group input[type="submit"],
.contact-form .form-group button {
    margin-top: 0px;
    line-height: 30px;
    padding: 15px 50px;
}

.btn-style-one {
    position: relative;
    font-size: 14px;
    line-height: 30px;
    padding: 15px 55px;
    font-weight: 700;
    overflow: hidden;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--bg-theme-color2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--bg-theme-color2);
    z-index: 1;
}

.btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0%;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background: var(--bg-theme-color1);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-style-one i {
    margin-left: 5px;
}

.btn-style-one:hover:before {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-one:hover {
    border: 1px solid var(--bg-theme-color1);
    color: var(--theme-color1);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-style-one.hvr-dark:before {
    background: var(--bg-theme-color1);
}

.btn-style-one.hvr-dark:hover {
    color: #ffffff;
}

.map-section {
    position: relative;
    z-index: 1;
}

.map-section .map {
    position: relative;
    min-height: 480px;
    width: 100%;
    display: block;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

@media only screen and (max-width: 1199px) {
    .map-section .map {
        min-height: 480px;
    }
}

.products-area {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.products-area .col-xl-4 {
    padding-left: 30px;
    padding-right: 30px;
}

.single-awesome-products {
    position: relative;
    margin-top: 15px;
    margin-bottom: 50px;
    margin-top: 30px;
    background: #fff5f6;
    border-radius: 4px;
}

.products-all {
    margin-top: -40px;
}

.products-all .single-awesome-products {
    margin-top: 30px;
}

.products-carousel .col-md-4 {
    width: 100%;
}

.awesome-img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 4px;
    text-align: center;
}

.awesome-img img {
    transform: scale(1);
    transition: 0.4s;
}

.single-awesome-products:hover .awesome-img img {
    transform: scale(1.1);
    transition: 0.4s;
}

.awesome-img>a {
    display: block;
    position: relative;
}

.single-awesome-products:hover .awesome-img>a::after {
    opacity: 0.8;
}

.single-awesome-products:hover .add-actions {
    opacity: 1;
}

.awesome-img>a::after {
    background: var(--primaryColor);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: 0.4s;
}

.add-actions {
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    transition: all 0.4s ease 0s;
    width: 100%;
    z-index: 4;
    top: 0;
    cursor: pointer;
}

.port-icon {
    color: #fff;
    display: inline-block;
    cursor: pointer;
    top: 41%;
    position: relative;
    font-size: 40px;
}

.products-dec {
    background: var(--primaryColor);
    position: absolute;
    left: 8%;
    top: 86%;
    transition: 0.5s;
    z-index: 50;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

.products-dec h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    margin-bottom: 0px;
    cursor: pointer;
    position: relative;
    line-height: 36px;
    width: 80%;
    float: left;
}

.products-dec h4::after {
    position: absolute;
    content: "\f061";
    right: -50px;
    bottom: 0px;
    font-family: "Font Awesome 5 Pro";
    font-size: 24px;
    color: #fff;
    text-align: center;
    line-height: 34px;
    transition: 0.5s;
    padding: 0px 6px;
}

.single-awesome-products:hover .products-dec h4::after {
    right: -20px;
    opacity: 1;
    transition: 0.5s;
}

.single-awesome-products:hover .products-dec h4:hover::after {
    color: var(--primaryColor);
    transition: 0.5s;
    right: -60px;
}

.pst-content {
    padding-left: 10px;
}

.single-awesome-products:hover .products-dec h4:hover {
    color: var(--primaryColor);
}

.products-dec a {
    width: 100%;
}

.single-awesome-products:hover .products-dec {
    background: #fff5f6;
}

.single-awesome-products:hover .products-dec h4 {
    color: #000;
}

.single-awesome-products:hover .products-dec h4:after {
    color: #000;
}

section.products-category-section .section-title h2 {
    border-bottom: 1px solid var(--primaryColor);
    padding: 10px 0;
}

section.products-category-section {
    background: #f7f7f7;
    padding: 80px 0;
}

.product-item {
    background: #fff;
    transition: all 0.35s ease-in;
    border-radius: 0;
}

.product-img {
    padding: 20px;
    border-bottom: 1px solid #c1c1c1;
}

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

.product-content p a {
    font-size: 18px;
    color: var(--headFontColor);
}

.product-content p a:hover {
    color: var(--primaryColor);
}

.product-content p {
    margin-bottom: 0;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: #4c4c4c 0 0 40px -20px;
    border-radius: 10px;
}

section.products-category-info-section {
    padding: 80px 0;
}

.products-category-info-content>p:last-child {
    margin-bottom: 0;
}

.product-feature-item ul li::before {
    content: url(../img/style-2.svg);
    margin-right: 14px;
    transition: all 0.35s ease-in;
    position: absolute;
    left: 0;
}

section.product-feature-section {
    padding: 80px 0;
}

.product-feature-item ul li:not(:last-child) {
    margin-bottom: 12px;
}

.product-feature-item ul li {
    display: flex;
    font-size: 18px;
}

.product-feature-item ul {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.product-feature-item p {
    margin-bottom: 0;
    font-weight: 400;
}

.product-feature-item ul li:hover:before {
    transform: rotate(45deg);
}

.product-details-banner-img {
    position: relative;
    height: 100%;
}

.product-details-banner-img>img {
    height: 100%;
    object-fit: cover;
}

.product-details-banner-img .product-details-banner-img-inner {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-details-banner-wrapper {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 40px;
    background: #f7f7f7;
}

.product-details-banner-img .product-details-banner-img-inner img {
    width: 80%;
}

.product-details-btn-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.product-details-banner-content {
    padding: 50px 30px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-details-banner-content h3 {
    color: #434b4d;
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 20px;
}

.product-details-banner-content:after,
.product-details-banner-content:before {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.product-details-banner-content:after {
    background: #f7f7f7;
    width: 30px;
    height: 30px;
    top: 27px;
    right: 30px;
    z-index: 1;
}

.product-details-banner-content:before {
    width: 290px;
    height: 90px;
    background: var(--primaryColor);
    right: -201px;
    top: 0px;
    clip-path: polygon(1.8% 0%, 100% 0%, 100% 100%, 38% 101%);
}

.tech-specification-section {
    background: url(../img/tech-bg.png);
    background: #b90014;
}

.tech-specification-section .section-title [class*="title-syle-"] span:nth-child(2)::after {
    background-image: url(../img/heading-style-2.png);
}

.tech-specification-wrapper {
    display: flex;
    gap: 30px;
    row-gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.tech-specification-item {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: calc(24% - 30px);
}

.tech-specification-icon {
    width: 60px;
    text-align: center;
    height: 60px;
}

.tech-specification-content {}

.tech-specification-content p {
    margin-bottom: 0;
    font-weight: 300;
    color: #fff;
    font-size: 20px;
}

section.tech-specification-section h2.title-syle-1>* {
    color: #fff !important;
}

section.tech-specification-section h2.title-syle-1 {
    text-align: center;
}

.product-gallery-item {
    background: #e9eaea;
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

section.product-gallery-section {
    padding: 0px 0 80px;
}

@media (max-width: 1540px) {
    .tech-specification-wrapper .tech-specification-content {}
}

@media (max-width: 991px) {
    .product-details-banner-wrapper {
        grid-template-columns: 1fr;
    }

    .product-details-banner-content-inner {
        text-align: center;
    }

    .product-details-btn-group {
        justify-content: center;
    }

    .tech-specification-wrapper {}

    .tech-specification-wrapper .tech-specification-content {
        width: 100%;
    }

    .tech-specification-item {
        justify-content: center;
        text-align: center;
        width: calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .product-details-banner-wrapper {
        gap: 0;
    }

    .tech-specification-item {
        justify-content: center;
        text-align: center;
        width: calc(100% - 30px);
    }

    .product-details-banner-content-inner {
        text-align: center;
    }

    .product-details-btn-group {
        justify-content: center;
    }

    section.product-feature-section {
        padding-top: 0;
    }

    section.product-feature-section .row {
        gap: 40px;
    }

    .tech-specification-wrapper {
        grid-template-columns: 1fr;
    }
}

.products-banner-item {
    position: relative;
}

.products-banner-content {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.products-banner-content .products-banner-content-inner {
    max-width: 40%;
}

.products-banner-content .products-banner-content-inner .section-title h2>* {
    color: #fff !important;
}

.products-banner-content .products-banner-content-inner p {
    color: #fff;
    margin: 0;
}

.products-banner-content .section-title [class*="title-syle-"] span:nth-child(2)::after {
    background-image: url(../img/heading-style-2.png);
}

.products-banner-content .title-syle-2 span:nth-child(2) {
    font-weight: 300;
}

@media (max-width: 1199px) {
    .products-banner-content .products-banner-content-inner {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .products-banner-img {
        height: 450px;
    }

    .products-banner-img img {
        height: 100%;
        object-fit: cover;
        object-position: right;
    }

    .products-banner-content .products-banner-content-inner {
        max-width: 100%;
    }

    .products-banner-content {
        background-color: #0000009c;
    }
}

@media (max-width: 576px) {
    .products-banner-content .products-banner-content-inner p {
        text-align: center;
    }

    .products-category-info-content {
        text-align: center;
    }
}

/* navbar */

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

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    /* box-shadow: 0 36px 40px -33px #474747; */
    z-index: 999;
}

.navbar .logo {
    width: 170px;
    text-decoration: none;
    color: var(--primaryColor);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

@media (max-width: 1024px) {
    .navigation {
        position: fixed;
        width: 100%;
        background: var(--overlayColor);
        height: 100%;
        top: 0;
        left: 0;
        z-index: -2;
        opacity: 0;
        transition: all 0.35s ease-in;
        pointer-events: none;
    }

    .navigation.open {
        opacity: 1;
        pointer-events: all;
        z-index: 9999;
    }
}

/* nav menu button */

.menu-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
    content: "";
    position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
    width: 1.5rem;
    height: 0.125rem;
    /* background: var(--primaryColor); */
    background: #132f48;
    transition: all 0.4s ease-in-out;
}

ul.sub-menu li:not(:last-child) {
    border-bottom: 1px solid #e2d2bb;
}

.navbar .menu-btn__lines::before {
    transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
    transform: translateY(0.5rem);
}

.navbar .menu-items {
    display: flex;
    align-items: center;
}

.navbar ul li {
    list-style: none;
    transition: 0.3s ease;
}

.navbar ul li .arrow {
    transition: all 0.3s ease-out;
}

/* 
.navbar ul li a {
  text-decoration: none;
  color: var(--bodyTextColor);
} */
aside#mob-menu {
    display: none;
}

/* dropdown menu */

.navbar .dropdown {
    position: relative;
}

.expand-btn:after {
    content: " \25BE";
    opacity: 0.4;
    margin-left: 5px;
}

.navbar .sub-menu,
.menu-right {
    position: absolute;
    background: #fff;
    width: max-content;
    line-height: 30px;
    /* border-radius: 5px; */
    top: 100%;
    border-top: 1px solid var(--bodyBGColor);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    pointer-events: none;
    display: block;
    border: 0;
    padding: 0;
}

.navbar .menu-right {
    top: 0;
    left: 100%;
}

.navbar .sub-menu,
.menu-left {
    left: 0;
}

.navbar .menu-left {
    left: -100%;
}

.navbar .menu-item {
    /* display: flex; */
    /* justify-content: space-between; */
    /* width: 100%; */
    font-weight: 600;
    padding: 0;
    font-size: 14px;
}

.navbar .menu-item:hover {
    color: var(--primaryColor);
}

.menu-item a {
    /* color: var(--primaryColor); */
    color: #fff;
    font-family: var(--headingFont);
    font-size: 18px;
    padding: 46px 20px;
}

.menu-item a:hover,
.current-menu-item a {
    color: #ff9d9d !important;
}

.navbar .dropdown:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

button.sub-menu-toggle {
    display: none;
}

.navbar .dropdown-right:hover .sub-menu {
    left: 100%;
    opacity: 1;
    top: 0;
    visibility: visible;
    pointer-events: all;
}

.navbar .dropdown-right:hover .menu-left {
    left: -100%;
}

.navbar .dropdown-left .sub-menu {
    border-left: 0 !important;
    border-right: 1px solid;
}

.navbar .dropdown-left:hover .sub-menu {
    left: -322px;
    top: 0;
}

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: var(--secondaryColor);
}

.menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: var(--secondaryColor);
}

.navbar.desktop-menu {
    padding: 0;
}

/* Responsive style */
@media (max-width: 1380px) {
    .menu-item a {
        font-size: 16px;
        padding: 30px 15px;
    }

    .navbar .logo {
        width: 140px;
    }
}

@media (min-width: 1281px) {
    .desktop-menu {
        display: block;
    }

    .mobile-menu {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .navbar {
        padding: 10px 20px;
    }

    .overflow {
        overflow: hidden;
    }

    .overlay {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 500;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .overlay--active {
        opacity: 1;
        visibility: visible;
    }

    .menu-btn {
        display: flex;
    }

    .navbar .menu-items {
        position: fixed;
        height: 100%;
        max-height: initial;
        overflow-y: auto;
        width: 80%;
        top: 75px;
        right: 0;
        /* background: var(--lightBGColor); */
        background: #fff;
        display: block;
        transform: translateX(200%);
        transition: 0.3s ease-out;
        padding-bottom: 100px;
        font-size: 14px;
    }

    .menu-items.open {
        transform: translateY(0);
    }

    .menu-items li:first-child {
        /* margin-top: 20px; */
    }

    .menu-items li a {
        padding: 10px 1rem;
        display: block;
        font-size: 18px;
    }

    .menu-items ul>li ul>a {
        color: var(--primaryColor);
    }

    .menu-items ul>li ul>a:hover {
        color: var(--linkHoverColor);
    }

    .menu-items .dropdown-right .right-arrow {
        transform: rotate(90deg);
    }

    .menu-item.first-item {
        padding: 1rem 1rem;
    }

    /* DROPDOWN, MEGA MENUS */
    .menu-items .sub-menu,
    .menu-items .menu-right,
    .menu-items .mega-menu {
        position: static;
        opacity: 1;
        top: 4rem;
        visibility: visible;
        margin-left: -18px;
        width: auto;
        max-height: 0;
        transform: scaleX(0);
        transform-origin: left;
        overflow: hidden;
        transition: all 0.5s ease;
    }

    .menu-items .sub-menu,
    .menu-items .menu-right {
        padding-left: 1rem;
        width: 100%;
        margin-left: -10px;
    }

    .menu-items .mega-menu .col {
        padding-left: 1rem;
    }

    .expand-btn.open+.sample {
        max-height: 100%;
        transform: scaleZ(1);
    }

    .expand-btn.open+.blog.sample {
        max-height: 100%;
        transform: scaleZ(1);
        max-width: fit-content;
    }

    .navbar .sample {
        border-top: none;
    }

    .sample li {
        margin: 0;
    }

    .sample li:last-child {
        border-bottom: none;
    }

    .sample li a {
        font-size: 1rem;
    }

    .mega-menu .content {
        grid-template-columns: auto;
        padding: 1rem 1rem 0 1rem;
    }

    .mega-menu .content .col {
        width: 100%;
        padding-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .col .mega-links li,
    .col .mega-links li a {
        padding: 0 0.5rem;
    }

    .content .col .mega-links {
        border-left: 0;
        padding-left: 0.5rem;
    }

    .col .mega-links li {
        margin: 0;
    }
}

.menu-item ul li a {
    color: var(--primaryColor);
}

@media (max-width: 1280px) {
    .navigation .menu-btn {
        opacity: 0;
    }

    .navbar .menu-item {
        display: block;
    }

    .navigation.open .menu-btn {
        width: 1.5rem;
        height: 1.5rem;
        position: absolute;
        right: 40px;
        top: 10px;
        opacity: 1;
    }

    .menu-items li a {
        font-size: 16px;
        width: -webkit-fill-available !important;
        width: max-content;
    }

    .navbar .dropdown:hover>.sub-menu {
        transform: scale(1);
        max-height: 100%;
    }

    /* animation menu hamburger */
    .navigation.open .menu-btn__lines {
        transform: translateX(1rem);
        background: transparent;
    }

    .navigation.open .menu-btn__lines::before {
        transform: rotate(45deg) translate(-0.5rem, 0.5rem);
        /* background: var(--primaryColor); */
        background: #fff;
    }

    .navigation.open .menu-btn__lines::after {
        transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
        /* background: var(--primaryColor);0 */
        background: #fff;
    }

    .main-search {
        display: none;
    }

    .info-block {
        display: none;
    }

    .menu-item.first-item {
        padding: 1.3585em 1.1em;
        border-bottom: 1px solid var(--borderColor);
    }
}

.header-item.item-center {
    width: 78%;
}

.navbar .dropdown:hover>.sub-menu a {
    padding: 10px 20px;
}

.navbar .sub-menu ul.sub-menu {
    background: #f7f7f7;
    border-left: 1px solid;
    margin-left: 0;
}

@media (max-width: 1280px) {
    .header-item.item-center {
        width: auto;
    }
}

.navbar .menu-items::after {
    content: "";
    width: 30px;
    height: 30px;
    background: rgb(255, 255, 255);
    position: absolute;
    top: 33px;
    pointer-events: none;
    left: -106px;
    display: none;
    z-index: 1;
    /* transform: rotate(45deg); */
}

.navbar .menu-items::before {
    content: "";
    pointer-events: none;
    width: 200px;
    height: 100%;
    position: absolute;
    left: -125px;
    top: 0px;
    z-index: 0;
    background: #b90014;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-x: 1.5rem;
    clip-path: polygon(1.8% 0%, 100% 0%, 100% 100%, 38% 101%);
    z-index: -1;
}

@media (max-width: 1540px) {
    .header .menu>ul>li>a {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {

    .logo::before,
    .logo::after {
        display: none;
    }
}

.enquiry {
    position: fixed;
    right: -63px;
    top: 330px;
    z-index: 9;
    transform: rotate(-7deg);
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -moz-transform: rotate(90deg);
    /* Firefox */
    -webkit-transform: rotate(270deg);
    /* Safari and Chrome */
    -o-transform: rotate(90deg);
    /* writing-mode: vertical-lr; */
    filter: drop-shadow(2px -1px 3px #e7e7e7);
}

.icon {
    background: #000;
    width: 24px;
    height: 24px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    transition: all 0.35s ease-in;
    display: flex;
}

.icon:hover {
    background: var(--primaryColor);
}

.icon-facebook {
    -webkit-mask-image: url(../img/02-facebook.png);
}

.icon-twiter {
    -webkit-mask-image: url(../img/03-twitter.png);
}

.icon-linkedin {
    -webkit-mask-image: url(../img/04-linkedin.png);
}

.icon-youtube {
    -webkit-mask-image: url(../img/01-youtube.png);
}

.is-hidden {
    display: none;
}

.product-gallery-section .filters {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-gallery-section .filters .filters__item a {
    font-size: 16px;
    font-weight: 500;
    background: var(--primaryColor);
    color: #fff;
    padding: 8px 20px;
    display: block;
}

.product-gallery-section .filters .filters__item a:hover,
.product-gallery-section .filters .filters__item a.active {
    background: var(--secondaryColor);
}

.page-template-conveying-system section.product-gallery-section {
    padding-top: 80px;
}

.page-template-about section.product-details-banner-section.about-2 {
    background: #f1f1f1;
    padding: 50px 0 0;
}

.page-template-divisions .product-details-banner-content:after,
.page-template-divisions .product-details-banner-content:before {
    display: none;
}

.page-template-divisions .product-details-banner-wrapper {
    gap: 0;
}

/* about us */
section.about-page-section {
    background: #f7f7f7;
}

.about-page-img {
    position: relative;
}

.about-page-img-content {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-img-content h2.title-syle-1 {
    margin-bottom: 0;
    color: #ffff;
}

.about-page-img-content h2.title-syle-1 span {
    color: #fff !important;
    margin-right: 5px;
}

.about-page-main-content {
    padding: 50px 0;
}

.about-page-main-content p {
    font-size: 20px;
    line-height: 35px;
    font-weight: 300;
    color: #434b4d;
}

section.about-presence-section {
    padding: 80px 0;
}

section.about-presence-section .section-title p {
    font-size: 20px;
    font-weight: 300;
    color: #434b4d;
}

section.about-presence-section .section-title {
    margin-bottom: 50px;
}

section.about-presence-section .about-presence-img img {
    width: 100%;
}

section.about-presence-section .about-presence-img {
    margin-top: 20px;
}

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

.about-infrastructure-img {
    position: relative;
}

.about-infrastructure-content {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding-left: 100px;
    padding-bottom: 80px;
    pointer-events: none;
}

.about-infrastructure-content .about-infrastructure-content-inner {
    background: var(--primaryColor);
    color: #fff;
    padding: 30px;
    pointer-events: all;
    border-radius: 10px 0 0 10px;
}

.about-infrastructure-content .about-infrastructure-content-inner p {
    font-size: 20px;
}

section.about-infrastructure-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

section.about-infrastructure-section:before {
    content: "";
    background: #212529;
    width: 100%;
    height: 320px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

section.about-infrastructure-section .section-title {
    margin-bottom: 30px;
}

section.about-infrastructure-section .section-title span {
    color: #fff !important;
}

.about-infrastructure-slider-container div#about-infrastructure-slider {
    padding-bottom: 70px;
}

.about-infrastructure-slider-container span.swiper-pagination-bullet {
    width: 20px;
    height: 5px;
    border-radius: 0;
    background: var(--primaryColor);
}

section.division-section {
    background: #f7f7f7;
    padding: 80px 0;
}

.division-count h2 {
    color: #c7c7c7;
    font-size: 90px;
    opacity: 0.3;
    margin-bottom: 20px;
}

.division-img img {
    width: 100%;
}

.division-content h4 {
    color: var(--primaryColor);
    margin-bottom: 10px;
    font-size: 30px;
}

.division-content {
    margin-top: 20px;
}

.division-content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 35px;
}

.projects .about-infrastructure-content-inner h3 a {
    color: #fff;
}

.projects .about-infrastructure-item {
    border-radius: 30px;
    overflow: hidden;
}

@media (max-width: 1380px) {
    .about-infrastructure-content {
        padding-left: 40px;
        padding-bottom: 40px;
    }

    .about-infrastructure-content .about-infrastructure-content-inner p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {

    .about-page-main-content p,
    section.about-presence-section .section-title p,
    .about-infrastructure-content .about-infrastructure-content-inner p {
        font-size: 14px;
        line-height: 30px;
        font-weight: 400;
    }
}

section.industries-served-section {
    padding: 80px 0;
    background: #212529;
}

.industries-served-section .section-title .title-syle-1 span:nth-child(1) {
    color: #fff;
}

.industries-served-section .section-title .title-syle-1 span:nth-child(2) {
    color: #fff;
}

.industries-served-section .section-title p {
    font-size: 20px;
    color: #fff;
    font-weight: 100;
}

.industries-served-img img {
    width: 100%;
    border-radius: 15px;
    transition: all 0.35s cubic-bezier(0.36, 1.13, 0.38, 1.13);
}

.industries-served-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.industries-served-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.industries-served-content-inner h5 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 100 !important;
    font-size: 25px;
}

.industries-served-img {
    position: relative;
}

.industries-served-img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 7%,
            rgba(0, 0, 0, 1) 110%);
    top: 0;
    left: 0;
    z-index: 0;
}

.industries-served-item:hover .industries-served-img img {
    transform: scale(1.05) translateY(-15px);
}

section.tech-specification-section .section-title {
    text-align: center;
}

.page-template-project-details section.product-gallery-section {
    padding-top: 60px;
}

section.aditional-contact-info-section {
    padding: 80px 0;
}

.aditional-contact-info-item {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    background: #ffeaec;
    height: 100%;
}

.aditional-contact-info-item-inner {
    position: relative;
    padding: 0 30px 30px;
    text-align: left;
}

.aditional-contact-info-item-inner:after,
.aditional-contact-info-item-inner:before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    top: 0;
    width: 100%;
    pointer-events: none;
    height: 100%;
}

.aditional-contact-info-item-inner:before {
    border-bottom: 5px solid;
    -o-border-image: linear-gradient(to left,
            var(--border-theme-color2),
            transparent) 1;
    border-image: -webkit-gradient(linear,
            right top,
            left top,
            from(var(--border-theme-color2)),
            to(transparent)) 1;
    border-image: linear-gradient(to left,
            var(--border-theme-color2),
            transparent) 1;
    z-index: 2;
    pointer-events: none;
    content: "";
}

.aditional-contact-info-item-inner:after {
    border-right: 5px solid;
    -o-border-image: linear-gradient(transparent, var(--border-theme-color2)) 1;
    border-image: linear-gradient(transparent, var(--border-theme-color2)) 1;
    z-index: 2;
    content: "";
}

.aditional-contact-info-item p {
    display: flex;
    color: #000;
    gap: 10px;
    text-align: left;
}

.aditional-contact-info-item p .icon {
    color: #fff;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px;
    display: flex;
}

.aditional-contact-info-item p:hover .icon {
    background: var(--primaryColor);
}

.aditional-contact-info-item p a {
    color: #000;
}

.aditional-contact-info-item p a:hover {
    color: var(--primaryColor);
}

.aditional-contact-info-item p span {
    max-width: calc(100% - 50px);
}

.aditional-contact-info-item p:hover .icon {
    border-radius: 50%;
}

.aditional-contact-info-content {
    margin-top: 30px;
}

.aditional-contact-info-item-inner h5 {
    color: var(--primaryColor);
}

.about-infrastructure-content-wrapper.product-feature-item {
    display: flex;
    gap: 0px 30px;
    margin-top: 30px;
}

.about-infrastructure-content-wrapper.product-feature-item ul {
    padding-left: 0;
}

.about-infrastructure-content-wrapper.product-feature-item ul li {
    position: relative;
}

.about-infrastructure-content-wrapper.product-feature-item ul li::before {
    position: relative;
}

.home-slider-item {
    position: relative;
}

.home-slider-img {
    position: relative;
}

.home-slider-img:after {
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.4;
    pointer-events: none;
}

.home-slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.home-slider-content-inner {
    background: #fff;
    padding: 30px 60px;
    margin-bottom: 30px;
    border-radius: 0 10px 10px 0;
    pointer-events: all;
}

.home-slider-content-inner h2 a {
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .home-slider-content-inner {
        padding: 10px 20px;
    }

    .home-slider-content-inner h2 a {
        font-size: 16px;
    }

    .home-slider-content-inner h6 {
        font-size: 12px;
    }

    #home-banner-slider .video-icon:before,
    #home-banner-slider .video-icon:after {
        width: 50px;
        height: 50px;
    }

    #home-banner-slider .video-icon {
        width: 50px;
        height: 50px;
    }
}

.gform_footer.before {
    justify-content: center;
}

.gform_button.button {
    clip-path: polygon(83% 0px,
            100% 45%,
            100% 60%,
            100% 100%,
            0px 100%,
            0px 100%,
            0px 0px);
    padding: 15px 50px !important;
    border-radius: 0px !important;
    transition: all 0.35s cubic-bezier(0.47, 1.21, 0.47, 1.21) 0s !important;
    border: 0px;
    background: var(--primaryColor) !important;
}

.gform_button.button:hover {
    background: var(--secondaryColor) !important;
    clip-path: polygon(100% 0px,
            100% 0%,
            100% 60%,
            100% 100%,
            0px 100%,
            0px 100%,
            0px 0px);
}

.gform-theme--foundation .gform_fields {
    row-gap: 15px !important;
    text-align: left;
}

.gform-theme--foundation .gfield input,
.gform-theme--foundation .gfield textarea,
.gform-theme--foundation .gfield select {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 60px !important;
    /*  padding: 15px 30px !important;*/
    line-height: 30px !important;
    font-size: 14px;
    color: #717070 !important;
    background-color: #f6f6f6 !important;
    border: 1px solid transparent !important;
    border-radius: 5px !important;
    margin-bottom: 0 !important;
    -webkit-transition: all 300ms ease !important;
    transition: all 300ms ease !important;
}

.product-banner-section div#product-gallery-slider {
    padding-bottom: 50px;
}

.product-banner-section #product-gallery-slider span.swiper-pagination-bullet {
    width: 20px;
    height: 5px;
    border-radius: 0;
    background: var(--primaryColor);
}

@media (max-width: 768px) {
    .about-infrastructure-content-wrapper.product-feature-item {
        display: block;
    }
}

@media (max-width: 576px) {
    .enquiry {
        width: 100%;
        top: unset;
        bottom: 0;
        right: 0;
        transform: unset;
        writing-mode: unset;
    }

    .enquiry .btn {
        display: block;
        clip-path: unset !important;
    }

    .footer-copy {
        margin-bottom: 40px;
    }
}

.our-division-gird {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.our-division-gird .our-division-item .our-division-img img {
    width: 100%;
    height: auto !important;
    transition: all 0.35s ease-in;
}

.our-division-item {
    position: relative;
    overflow: hidden;
}

.our-division-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.our-division-content .our-division-content-inner {
    pointer-events: all;
    padding: 30px;
    text-align: center;
}

.our-division-img {
    position: relative;
}

.our-division-img:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.55;
    transition: all 0.35s ease-in;
    pointer-events: none;
}

.our-division-content .our-division-content-inner h2 a {
    color: #fff;
}

.our-division-item:hover .our-division-img:after {
    background: var(--primaryColor);
    opacity: 0.8;
}

.our-division-item:hover .our-division-img img {
    transform: translateY(20px) scale(1.25);
}

@media (max-width: 1440px) {
    .our-division-content .our-division-content-inner h2 a {
        font-size: 24px;
        line-height: 1.5;
    }

    .our-division-content .our-division-content-inner h2 {
        line-height: 0;
    }
}

@media (max-width: 991px) {
    .our-division-content .our-division-content-inner h2 a {
        font-size: 8px;
        line-height: 1.5;
    }

    .our-division-content .our-division-content-inner {
        padding: 5px;
    }
}

@media (max-width: 767px) {
    .our-division-gird {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-solution-banner-gird .home-solution-banner-item {
    display: grid;
    grid-template-columns: 4fr 5fr;
    row-gap: 30px;
}

.home-solution-banner-img {
    height: 100%;
}

.home-solution-banner-img img {
    /*  height: 100%;*/
    width: 100%;
    /*  object-fit: cover;*/
}

.home-solution-banner-content {
    padding: 30px 0;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.home-solution-banner-gird .home-solution-banner-item .container-fluid {
    background: #efefef;
}

section.home-solution-banner-section {
    padding: 30px 0 0;
}

ul.home-solution-product {
    display: grid;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    padding-left: 30px;
}

ul.home-solution-product li a {
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

ul.home-solution-product li::before {
    content: url(../img/style-2.svg);
    margin-right: 14px;
    transition: all 0.35s ease-in;
    position: absolute;
    left: 0;
}

ul.home-solution-product li a:hover {
    color: var(--primaryColor);
}

ul.home-solution-product li {
    display: flex;
    align-items: center;
}

ul.home-solution-product li:hover::before {
    transform: rotate(45deg);
}

@media (max-width: 1199px) {
    .home-solution-banner-gird .home-solution-banner-item:nth-child(even) .container-fluid {
        order: 1;
    }

    .home-solution-banner-gird .home-solution-banner-item:nth-child(odd) .home-solution-banner-img {
        order: 0;
    }

    .home-solution-banner-gird .home-solution-banner-item:nth-child(even) .home-solution-banner-img {
        order: 0;
    }

    .home-solution-banner-gird .home-solution-banner-item {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .home-solution-banner-content {
        padding: 30px 0;
    }
}

.aditional-contact-info-item-inner>p {
    font-size: 14px;
    font-weight: 500;
}

.gform_confirmation_message .btn.btn-primary i {
    margin-right: 5px;
}

/* new-section */
.asrs-section {
    text-align: center;
    padding: 60px 0 20px 0;
    /* border-bottom: 1px solid #ddd; */
}

.asrs-section h1 {
    color: #212529;
    line-height: normal;
    margin-bottom: 20px;
}

.asrs-section h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.section-title-new [class*="title-syle-"] {
    position: relative;
    font-weight: 900;
    flex-wrap: wrap;
    font-size: 50px;
    margin-bottom: 30px;
    display: inline-flex;
    gap: 8px;
}

.section-title-new [class*="title-syle-2"] span:nth-child(1) {
    position: relative;
}

.section-title-new [class*="title-syle-2"] span:nth-child(1)::after {
    position: absolute;
    pointer-events: none;
    content: "";
    background-image: url("../img/heading-style.png");
    top: 0px;
    right: 20px;
    width: 24px;
    height: 24px;
    animation: titleAni 2s cubic-bezier(0.47, 1.21, 0.47, 1.21) 0s alternate infinite;
}

.section-title-new .title-syle-2 span:nth-child(2) {
    color: var(--primaryColor);
    font-weight: 400;
}

.asrs-section .section-title .title-syle-2 {
    font-size: 30px !important;
    display: flex;
    justify-content: center;
}

.asrs-section .section-title [class*="title-syle-"] span:nth-child(2)::after {
    top: -10px;
    right: -10px;
}

@media (max-width: 1560px) {
    .section-title-new [class*="title-syle-"] {
        font-size: 40px;
    }

    .section-title-new [class*="title-syle-2"] span:nth-child(1)::after {
        top: -2px;
        right: 15px;
        width: 18px;
        height: 18px;
        background-size: 18px;
    }
}

@media (max-width: 1199px) {
    .section-title-new [class*="title-syle-"] {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .asrs-section .section-title [class*="title-syle-"] {
        font-size: 20px !important;
        align-items: start;
    }

    .asrs-section .section-title [class*="title-syle-2"] span:nth-child(1)::after {
        top: -5px;
        right: 5px;
        width: 12px;
        height: 12px;
        background-size: 12px;
    }

    .asrs-section {
        text-align: start;
    }

    .section-title-new [class*="title-syle-"] {
        font-size: 20px;
    }

    .section-title-new [class*="title-syle-2"] span:nth-child(1)::after {
        top: -5px;
        right: 5px;
        width: 12px;
        height: 12px;
        background-size: 12px;
    }
}

section.sa-b-archive-blogs-section {
    padding: 60px 0;
}

.sa-b-archive-blog-item .sa-b-archive-blog-img img {
    width: 100%;
    transition: all 0.35s ease-in;
}

.sa-b-archive-blog-item .sa-b-archive-blog-img {
    position: relative;
    overflow: hidden;
}

.sa-b-archive-blog-date {
    position: absolute;
    bottom: 0;
    background: var(--primaryColor);
    color: #fff;
    border-radius: 0 6px 6px 0;
    padding: 5px 15px;
}

.sa-b-archive-blog-date p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.sa-b-archive-blog-item {
    height: 100%;
    background: #efefef;
    border-radius: 10px;
    overflow: hidden;
}

.sa-b-archive-blog-content {
    padding: 30px 20px;
}

.sa-b-archive-blog-item:hover .sa-b-archive-blog-img img {
    transform: scale(1.05);
}

.sa-b-archive-blog-content h3 a {
    font-size: 22px;
}

.sa-b-archive-blog-content p {
    font-size: 16px;
}

.sa-b-single-blogs-body p {
    color: #333;
}

.sa-b-single-blogs-body {
    margin-top: 20px;
}

.sa-b-single-blogs-content {
    margin-top: 30px;
}

section.sa-b-single-blogs-section {
    padding: 60px 0;
}

.sa-b-single-blogs-img img {
    width: 100%;
    /*   object-fit: cover;
  height: 523px; */
}

.sa-b-single-blogs-recent-post {
    background: #efefef;
    padding: 30px;
    position: sticky;
    top: 130px;
    border-radius: 10px;
}

.sa-b-single-blogs-img {
    overflow: hidden;
    border-radius: 10px;
    display: flex;
     justify-content: center;
}

.sa-b-cta-content {
    border: 2px solid #b9b9b9;
    border-radius: 8px;
    padding: 20px;
}

section.sa-b-cta-section {
    padding-bottom: 60px;
}

.sa-b-cta-content p {
    color: #333;
    margin-bottom: 0;
    margin-top: 16px;
}

.sa-b-cta-content p a {
    font-weight: 500;
}


section.sa-b-single-blogs-section .table-of-content {
    padding-bottom: 30px;
}

section.sa-b-single-blogs-section .table-of-content h3 {
    padding-bottom: 20px;
}

section.sa-b-single-blogs-section .table-of-content ul {
    padding-left: 25px;
    border-left: 2px solid #c31c22;
    margin-left: 5px;
}

section.sa-b-single-blogs-section .table-of-content ul li {
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    color: #6b6b6b;
    padding-bottom: 7px;
}

section.sa-b-single-blogs-section .table-of-content ul li a {
    font-size: 17px;
    line-height: 28px;
    color: #c7161d;
}

section.sa-b-single-blogs-section .article-topic {
    padding-bottom: 30px;
}

.sa-b-single-blogs-section .product-feature-item {
    margin-top: 30px;
}

.sa-b-single-blogs-section .product-feature-item ul li {
    font-size: 16px;
}

.sa-b-single-blogs-section .product-feature-item ul {
    margin: 15px 0 15px 0 !important;
}

.sa-b-single-blogs-section .product-feature-item ul li:not(:last-child) {
    margin-bottom: 5px;
}

/*--------------------------------------------------Disclaimer-------------------------------------------------*/

.dtcp h2 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    color: #0f0f0f;
    padding-bottom: 10px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    margin-bottom: 0;
}

.dtcp h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #0f0f0f;
    padding-bottom: 10px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    margin-bottom: 0;
}

.dtcp h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: #0f0f0f;
    padding-bottom: 10px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    margin-bottom: 0;
}

.dtcp p {
    line-height: 27px;
    font-size: 17px;
    font-weight: 400;
    color: #6b6b6b;
    padding-bottom: 10px;
    text-align: left;
    margin-bottom: 0;
}

.dtcp p:last-child {
    padding-bottom: 0;
}

.dtcp p b {
    color: #000000;
}

.dtcp p a {
    color: #c7161d;
}

.dtcp ul {
    padding-bottom: 20px;
    text-align: left;
    margin-bottom: 0;
}

.dtcp ul li {
    line-height: 27px;
    font-size: 17px;
    font-weight: 400;
    color: #6b6b6b;
    padding-bottom: 10px;
    text-align: left;
}

.dtcp ul li:last-child {
    padding-bottom: 0;
}

.dtcp address {
    text-align: left;
}

/* popup image */
/* Overlay */
#imagePopup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

#imagePopup.open {
    opacity: 1;
    pointer-events: all;
}

/* =====================
  SCREEN LAYER
   ===================== */
.screen-layer {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 1;
    pointer-events: none;
}

.screen-left,
.screen-right {
    width: 50%;
    height: 100%;
    background: #111;
    /* screen color */
    transition: transform 0.9s ease-in-out;
}

/* Closed state */
.screen-left {
    transform: translateX(0);
}

.screen-right {
    transform: translateX(0);
}

/* Open state */
#imagePopup.open .screen-left {
    transform: translateX(-100%);
}

#imagePopup.open .screen-right {
    transform: translateX(100%);
}

/* =====================
  CONTENT
  ===================== */
.popup-content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    text-align: center;
    transform: scale(0.6);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
    max-width: 880px;
}


/* Content zoom after screen open */
#imagePopup.show-content .popup-content {
    transform: scale(1);
    opacity: 1;
}

.popup-content img {
    max-width: 100%;
    border-radius: 8px;
}

.popup-content p {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 600;
}

/* Close */
.close-popup {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    cursor: pointer;
}

/* homepopup*/
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1055; 
}
  
.homepage-popup {
    max-width: 880px;
    width: 100%;
    position: relative;
    animation: popupZoom 0.6s ease forwards;
    margin: 20px;
}
  

 .homepage-popup img{
    width: 80%;
    margin: 0 auto;
    display: block;

}
.popup-close {
    position: absolute;
    top: 0;
    right: 88px;
    /* top: -14px;
    right: -14px; */
    background: #000;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}
  
@keyframes popupZoom {
    0% {
      transform: scale(0.7) translateY(40px);
      opacity: 0;
    }
    100% {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
}

.custom-header.sticky-top {
    box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
}

.custom-header .navbar {
    border-color: rgba(255, 255, 255, 0.05);
    padding: 8px 0px;
}

.custom-header .navbar .navbar-brand {
    padding: 0;
    margin: 0;
}

.custom-header .navbar .navbar-brand img {
    width: 150px;
}

.custom-header .navbar .contact-list {
    display: flex;
}

.custom-header .navbar .icon-context {
    display: flex;
    gap: 3px;
    padding-right: 30px;
    align-items: center;
}

.custom-header .navbar .icon-context .icons i {
    font-size: 12px;
    color: #c7161d;
    margin-right: 7px;
}

.custom-header .navbar .icon-context .context ul li a {
    font-size: 13px;
    line-height: 13px;
    font-weight: 300;
    color: #000000;
}

footer .footer-bottom {
    padding: 10px 0px;
    background-color: #000000;
    text-align: center;
}

footer .footer-bottom ul {
    display: flex;
    justify-content: center;
}

footer .footer-bottom ul li {
    font-size: 13px;
    line-height: 18px;
    font-weight: 300;
    color: #ffffff;
}