:root {
    --primary: #1F232E;
    --secondary: #FF2424;
    --white: #ffff;
    --dark: #000;
    --text: #3B4051;
    --font1: "Montserrat", serif;
    --font2: "Unbounded", serif;
}
body {
    margin: 0;
    font-family: var(--font1);
    font-size: 16px;
    line-height: 160%;
    overflow-x: hidden;
}
a {
    color: var(--white);
    text-decoration: none !important;
    transition: all 0.4s;
}
a:hover {
    color: var(--primary);
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 130%;
    font-family: var(--font2);
    font-weight: 700;
    color: var(--primary);
}
p:last-child {
    margin-bottom: 0;
}
b,
strong {
    font-weight: 700;
}
::selection {
    color: var(--white);
    background: var(--secondary);
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
}
html .container {
    max-width: 1370px;
    margin: 0 auto;
    width: 100%;
    padding: 0 25px;
}
section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.bg-dark {
    background-color: var(--primary) !important;
}
html .btn {
    position: relative;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    border-radius: 70px;
    padding: 0px 25px;
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    background-color: var(--secondary);
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s;
}
html .btn:hover {
    gap: 15px;
}
html .btn-outline {
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    line-height: 46px;
}
html header .btn:hover {
    background-color: var(--white);
    color: var(--primary);
}
html .btn-outline:hover {
    background: var(--secondary);
    color: var(--white) !important;
}
header {
    padding: 27px 0px;
    background-color: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.4s;
}
header .nav-bar>ul {
    gap: 28px;
}
header .nav-bar>ul>li.active>a {
    color: var(--secondary);
}
header .nav-bar>ul>li>a {
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s;
    position: relative;
    line-height: 40px;
    display: flex;
    align-items: center;
    gap: 5px;
}
header .nav-bar>ul>li:hover>a {
    color: var(--secondary)
}
header .nav-bar>ul>li.menu-parent>a:after {
    content: "";
    height: 6px;
    display: inline-block;
    width: 10px;
    background-image: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 1.5C9 1.5 6.054 4.5 5 4.5C3.9459 4.5 1 1.5 1 1.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.4s;
}
header .nav-bar>ul>li:hover>a::after {
    background-image: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 1.5C9 1.5 6.054 4.5 5 4.5C3.9459 4.5 1 1.5 1 1.5" stroke="%23FF2424" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
li.menu-parent {
    position: relative;
}
.sub-menu {
    position: absolute;
    top: 100%;
    background: #00000099;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(17px);
    left: -100%;
    right: 0;
    margin: auto;
    min-width: 590px;
    padding: 30px;
    border-radius: 20px;
    opacity: 0;
    transform: translatey(50px);
    visibility: hidden;
    transition: all 0.4s;
    width: auto;
    z-index: 9;
}
li:hover>.sub-menu {
    opacity: 1;
    transform: translatey(0px);
    visibility: visible;
}
.sub-menu ul li {
    margin-bottom: 11px;
}
.sub-menu ul li:last-child {
    margin-bottom: 0;
}
.sub-menu h6 {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 13px;
    color: #90979F;
}
.sub-menu ul li a {
    display: inline-block;
    line-height: 130%;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding-right: 28px;
}
.sub-menu ul li a:after {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--secondary);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateX(10px);
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}
.sub-menu ul li:hover a:after {
    transform: translateX(0px);
    visibility: visible;
    opacity: 1;
}
.sub-menu.sub-menu-sm {
    min-width: 450px;
}
.sub-menu ul li a:hover {
    color: var(--secondary);
}
.header-menu .sub-menu ul li {
    width: 100%;
}
.sub-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.menu-parent.active .sub-menu ul li.active a {
    color: var(--secondary);
}
.menu-parent.active .sub-menu ul li.active a::after {
    transform: translateX(0px);
    visibility: visible;
    opacity: 1;
}
.main-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-header-wrap .nav-wrap {
    margin-left: auto;
    margin-right: 0;
    position: relative;
}
.contact_us_banner_sec {
    padding-bottom: 0px;
    background-image: url(../images/banner-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.contact_us_banner_wrap h3 {
    font-weight: 700;
    font-size: 90px;
    color: var(--primary);
    font-family: var(--font2);
    max-width: 515px;
    width: 100%;
}
.contact_us_banner_wrap p {
    font-weight: 400;
    color: var(--text);
    line-height: 160%;
    max-width: 419px;
    width: 100%;
}
.contact_detail_wrap .contact_form {
    background-color: var(--primary);
    padding: 40px;
}
.contact_detail_wrap h4 {
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font2);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.contact_form label.form-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}
.contact_form input.form-control,
textarea.form-control {
    background-color: var(--white);
    border-radius: 9px;
    padding: 0px 20px;
    line-height: 48px;
    margin-bottom: 20px;
}
.contact_form input.form-control,
textarea.form-control:focus {
    box-shadow: none;
    border: 0px;
}
.contact_form textarea {
    height: 120px;
}
.contact_form .btn.send-msg-btn {
    line-height: 46px;
    margin-top: 10px;
}
.contact_form .btn.send-msg-btn svg {
    margin-left: 12px;
}
.contact_detail_wrap .contact_detail {
    max-width: 400px;
    width: 100%;
}
.contact_detail h3 {
    font-size: 30px;
    font-weight: 300;
    color: var(--primary);
    font-family: var(--font2);
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
}
.contact_detail h3:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    top: -24px;
    left: 0;
}
ul.contact-info li {
    position: relative;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 160%;
    color: var(--text);
    padding-left: 52px;
    min-height: 40px;
}
ul.contact-info li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(34, 31, 31, 0.06);
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 0;
}
ul.contact-info li h6 {
    font-size: 14px;
    font-weight: 400;
    color: #1F232ECC;
    margin-bottom: 4px;
    text-transform: uppercase;
}
ul.contact-info li a {
    color: var(--primary);
    font-weight: 500;
    font-size: 20px;
}
ul.contact-info li a:hover {
    color: var(--secondary);
}
.contact_detail hr {
    border-top: 1px solid #1F232E26;
    margin: 30px 0px;
}
.contact_detail h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font2);
    text-transform: uppercase;
    margin-bottom: 10px;
}
ul.social-media {
    gap: 8px;
}
ul.social-media a {
    height: 36px;
    width: 36px;
    background-color: #F4F5F5;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}
ul.social-media a svg {
    color: var(--primary);
    transition: all 0.5s;
}
ul.social-media a:hover {
    background-color: var(--primary);
}
ul.social-media a:hover svg {
    color: #F4F5F5;
}
footer .bg-image img {
    position: absolute;
    right: 0;
    top: -106px;
}
footer .footer-logo {
    border-bottom: 1px solid #FFFFFF4D;
    padding-bottom: 40px;
}
footer .footer-logo a {
    display: block;
    width: 314px;
}
.footer-logo img {
    transition: all 0.5s;
}
.footer-logo img:hover {
    transform: scale(0.9);
}
.footer_bottom p {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    margin: 15px 0px 15px;
}
.footer_top {
    padding-top: 80px;
}
.footer_top .social-media-wrap {
    padding-top: 40px;
}
.footer_top h5 {
    color: var(--white);
    font-family: var(--font2);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}
.footer_top ul.social-media a {
    background-color: #FFFFFF0F;
}
.footer_top ul.social-media a:hover {
    background-color: var(--secondary);
}
.footer_top ul.social-media a svg {
    color: var(--white);
}
.footer_top h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    font-family: var(--font2);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer_top ul.links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 0px;
}
.footer_top ul.links li {
    display: block;
    line-height: 130%;
}
.footer_top ul.links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-left: 15px;
    position: relative;
    transition: all 0.5s;
    line-height: 130%;
}
.footer_top ul.links a:hover {
    color: var(--secondary);
}
ul.links a:before {
    position: absolute;
    content: '';
    display: block;
    width: 5px;
    min-width: 5px;
    height: 5px;
    background: var(--secondary);
    border-radius: 20px;
    left: 0;
}
.footer_top ul.contact-info li {
    margin-bottom: 12px;
}
.footer_top ul.contact-info li:last-child {
    margin-bottom: 0;
}
.footer_top ul.contact-info li .icon {
    background-color: #FFFFFF1A;
}
.footer_top ul.contact-info li a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}
.footer_top ul.contact-info li a:hover {
    color: var(--secondary);
}
.hero-banner-carousel .item {
    padding-top: 192px;
    padding-bottom: 26px;
    z-index: 2;
    position: relative;
    overflow: hidden;
}
.hero-banner-carousel .item .image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
}
.hero-banner-carousel .item .image img {
    transform: scale(1.2);
    transition: all 8s;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero-banner-carousel .active .item .image img {
    transform: scale(1);
}
.hero-banner-carousel .item:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #12121299;
    z-index: -1;
}
.hero-banner-carousel .item h2 {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 60px;
    line-height: 120%;
    margin-bottom: 24px;
    color: var(--white);
    padding-left: 110px;
    transition-delay: 0.4s !important;
}
.hero-banner-carousel .item :is(h2, p, .em_btn) {
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
}
.hero-banner-carousel .active .item :is(h2, p, .em_btn) {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.hero-banner-carousel .item p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
}
.hero-banner-carousel .item .btn {
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #FFFFFF66;
    background: transparent;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    font-family: var(--font2);
    gap: 10px;
    text-transform: none;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.hero-banner-carousel .item .btn:hover {
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 0 0 100px var(--secondary) inset;
}
.hero-banner-carousel .item:after {
    content: "";
    clip-path: polygon(calc(100% - 278px) 180px, 100% 76px, 100% 290px, 480px 100%, 0% calc(100% - 185px), 0 0);
    position: absolute;
    top: 194px;
    bottom: 0;
    left: 0;
    width: 760px;
    height: 403px;
    backdrop-filter: blur(19px);
    background: #FF242466;
    z-index: -1;
}
.hero-banner-carousel .item .btn::before {
    display: none;
}
body:has(.hero-banner-carousel) header {
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.social_media_wrap {
    display: flex;
    color: var(--white);
    position: absolute;
    right: 38px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-family: "Unbounded", sans-serif;
    z-index: 9;
    top: 0;
    justify-content: center;
    gap: 24px;
    bottom: 0;
}
.social_media_wrap a {
    color: var(--white);
    text-transform: uppercase;
    transition: all 0.5s;
    font-size: 13px;
}
.social_media_wrap a:hover {
    color: var(--secondary);
}
.hero-banner-carousel .owl-dots .owl-dot {
    height: 20px;
    width: 20px;
    min-width: 10px;
    background: transparent;
    border-radius: 50px;
    display: block;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.4s;
    outline: none;
}
.hero-banner-carousel .owl-dots .owl-dot:hover,
.hero-banner-carousel .owl-dots .owl-dot.active {
    border-color: var(--secondary);
}
.hero-banner-carousel .owl-dots .owl-dot:hover:before,
.hero-banner-carousel .owl-dots .owl-dot.active:before {
    background: var(--secondary);
}
.hero-banner-carousel .owl-dots .owl-dot:before {
    content: "";
    height: 10px;
    width: 10px;
    background: #FFFFFF80;
    display: flex;
    border-radius: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.4s;
}
.hero-banner-carousel .owl-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 70px;
    left: 110px;
}
.aboutus_section {
    padding: 0;
    padding-left: 30px;
}
.our_experience {
    height: 400px;
    width: 400px;
    border-radius: 50%;
    border: 1px solid #1F232E1A;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url('../images/factory.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    gap: 10px;
}
.our_experience p {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-family: Poppins;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    text-transform: uppercase;
    color: #3B4051;
    margin: 0;
}
html .our_experience h2.count {
    font-family: var(--font1);
    font-weight: 700;
    font-size: 174px;
    line-height: 130%;
}
html .our_experience span {
    color: var(--secondary);
    font-size: 38px;
    position: absolute;
    top: -5px;
    bottom: 0;
    left: 43px;
    right: 0;
    margin: auto;
    height: 16px;
    width: 16px;
    line-height: normal;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
html .our_experience h2.completed~span {
    opacity: 1;
    visibility: visible;
}
.aboutus_section .content h2 {
    font-weight: 300;
    font-size: 34px;
    line-height: 130%;
    margin-bottom: 30px;
}
.aboutus_section .content h2 b {
    font-weight: 700;
}
.aboutus_section .content p {
    margin-bottom: 30px;
}
/* .aboutus_section .content a:before {
    content: '';
    display: block;
    width: 26px;
    height: 16px;
    background-image: url('data:image/svg+xml,<svg width="28" height="18" viewBox="0 0 28 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.5998 1C18.3818 3.57678 21.4976 8.80225 27.7051 9.08989C24.878 9.32959 18.8991 11.2472 17.5998 17" stroke="black" stroke-width="1.5"/><line y1="9.05005" x2="24" y2="9.05005" stroke="black" stroke-width="1.5"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.8s;
} */
.aboutus_section .content a {
    position: relative;
    font-size: 12px;
    padding: 0 18px;
}
.aboutus_section .content a img {
    -webkit-animation: spin 14s linear infinite;
    -moz-animation: spin 14s linear infinite;
    animation: spin 14s linear infinite;
    filter: brightness(0);
}
.aboutus_section .content a:hover img {
    animation-play-state: paused;
}
@keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.aboutus_section .image {
    height: 360px;
    margin-bottom: 30px;
}
.aboutus_section .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
div#counter .wrp {
    display: flex;
    align-items: end;
}
div#counter .wrp span,
h2.count {
    margin-bottom: 12px;
    font-family: var(--font1);
    font-size: 34px;
    line-height: 100%;
    font-weight: 600;
    text-transform: uppercase;
}
div#counter p {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-transform: uppercase;
}
.aboutus_section .content {
    padding: 100px 0;
    padding-left: 28px;
    padding-right: 10px;
    border-left: 1px solid #0000001A;
}
.our_prdct_sec .title h2 {
    font-weight: 300;
    font-size: 64px;
    line-height: 120%;
    margin-bottom: 34px;
    text-shadow: 0px -1px 0 var(--white), 1px 0px 0 var(--white), -1px 1px 0 var(--white), 1px 1px 0 var(--white);
}
.our_prdct_sec .prdct {
    width: 703px;
    max-width: 100%;
    margin: 90px auto 27px;
}
.col_sticky {
    position: sticky;
    top: 100px;
}
section.our_prdct_sec {
    z-index: 2;
    background-image: url('../images/our-prdct-top-img.png'), url("../images/bottom-shape.svg");
    background-repeat: no-repeat;
    background-position: top center, bottom -2px center;
    background-size: 100% auto;
    background-color: var(--primary);
    padding-bottom: 260px;
    padding-top: 30px;
}
.product_box {
    background: #FFFFFF;
    border-radius: 30px;
    padding-top: 10px;
}
.product_box .image {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
    border-bottom-right-radius: 20px;
    padding: 20px;
}
.product_box h3 {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    border-bottom: 1px solid #EAEAEA;
    border-bottom-left-radius: 20px;
    color: var(--primary);
    text-align: center;
    padding: 17px  10px;
}
.product_box h3:hover {
    color: var(--secondary);
}
.product_box h3 a {
    color: inherit;
    display: block;
}
.product_box .prdct-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 20px 30px;
    margin: 20px 0;
    aspect-ratio: 6/4;
}
.product_box .prdct-img a img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all 0.4s;
}
.product_box:hover .prdct-img img {
    transform: scale(0.9);
}
.product_box p {
    padding: 30px;
    padding-top: 0;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
}
.our_prdct_sec .col-lg-8>.row>.col-lg-6:nth-child(2n + 2) {
    transform: translateY(80px);
}
.inner_banner_sec {
    background-image: url(../images/our-product-bg.png);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}
.inner_banner_wrap .title h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary);
}
.inner_banner_wrap .title h2:after {
    content: "";
    height: 3px;
    width: 100px;
    background-color: var(--secondary);
    display: inline-block;
    transform: translateY(-8px);
    margin-left: 20px;
}
.product_list_wrap .product_name_wrap {
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #EBECEC;
    background-color: #F4F5F5;
    backdrop-filter: blur(17px);
    position: sticky;
    top: 120px;
}
.product_list_sec {
    padding-top: 50px;
}
.product_ul li {
    margin-bottom: 5px;
    position: relative;
    width: fit-content;
}
.product_ul li:last-child {
    margin-bottom: 0px;
}
.product_ul li:before {
    position: absolute;
    content: "";
    width: 18px;
    height: 2px;
    background-color: var(--secondary);
    top: 0;
    bottom: 0;
    margin: auto;
    right: -25px;
    opacity: 0;
    transform: translateX(-30%);
    transition: all 0.2s;
}
.product_ul li a {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    transition: all 0.5s;
}
.product_ul li.active a {
    color: var(--secondary);
}
.product_ul li.active::before {
    opacity: 1;
    transform: translateX(5%);
}
.product_ul li:hover a {
    color: var(--secondary);
}
.product_ul li:hover:before {
    opacity: 1;
    transform: translateX(5%);
}
.product_content_wrap .product_list_box {
    border-radius: 20px;
    border: 2px solid #F4F5F5;
    padding: 10px;
    background-color: var(--white);
    transition: all 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product_list_box .image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}
.product_list_box .image a {
    aspect-ratio: 6/4;
    display: block;
    width: 100%;
    text-align: center;
    height: 100%;
    padding: 0px 20px;
}
.product_list_box .image img {
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product_list_box .image img:hover {
    transform: scale(1.1);
}
.product_list_box .content {
    border-radius: 12px;
    background-color: #F4F5F5;
    padding: 12px;
    position: relative;
    margin-top: auto;
}
.product_list_box .content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font2);
    transition: all 0.5s;
    margin-bottom: 0px;
}
.product_list_box .content a.km-btn {
    width: fit-content;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font1);
    transition: all 0.5s;
    opacity: 0;
}
a.km-btn svg {
    margin-left: 10px;
}
.product_list_box .content a.km-btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.product_list_box:hover {
    border: 2px solid var(--primary);
}
.product_list_box .km-box {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}
.product_list_box:hover .km-box {
    background: #FFFFFF33;
    backdrop-filter: blur(2px)
}
.product_list_box:hover .content a.km-btn {
    opacity: 1;
}
section.loaction_section {
    background: #F6F6F6;
}
section.loaction_section .top-img-wrp img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    z-index: 9;
}
.map_box div#counter {
    width: 305px;
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 48px;
}
.map_box div#counter h2.count,
.map_box div#counter span {
    font-weight: 700;
    font-size: 54px;
    font-family: var(--font2);
    margin-bottom: 8px;
}
.map_box div#counter span {
    color: var(--secondary);
}
.map_box div#counter p {
    font-size: 16px;
    line-height: 160%;
    color: var(--text);
    text-transform: none;
}
section.loaction_section .map_box {
    background-color: var(--white);
    position: relative;
    padding-bottom: 80px;
    padding-top: 32px;
}
section.loaction_section .map_box .map>img {
    width: 1050px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}
.location .pin {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    height: 18px;
    width: 22px;
    background: #8E929A;
    position: relative;
    cursor: pointer;
    transition: all 0.4s;
}
.location .pin:hover {
    background: var(--secondary);
    transform: scale(1.25);
}
html .tooltip .tooltip-arrow::before {
    display: none;
}
html .tooltip-inner {
    font-family: var(--font1);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    min-width: 103px;
}
.location .pin:before {
    content: "";
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: var(--white);
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
}
.location .pin:hover::before {
    opacity: 1;
    visibility: visible;
}
section.loaction_section .bg-image {
    position: absolute;
    bottom: 45px;
    right: 0;
}
.metal_procesing {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.metal_procesing .machine {
    width: 197px;
    max-width: 100%;
}
.manufacture_wrp {
    position: relative;
    flex: 1;
}
.manufacture_wrp .roller {
    position: absolute;
    bottom: -70px;
    left: 19px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 90px;
    border: 3px solid #8E929A4D;
    padding: 11px;
    border-radius: 50px 0 0px 50px;
    overflow: hidden;
}
.manufacture_wrp .roller .circle {
    height: 38px;
    width: 38px;
    min-width: 38px;
    display: block;
    border-radius: 50%;
    background: linear-gradient(90deg, #40444E 50%, #737373 50%);
    animation: roller-rotate 6s linear infinite;
}
@keyframes roller-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.manufacture_wrp .metal_stick {
    height: 14px;
    background-image: url("../images/metal-stick.png");
    background-position: 0 0;
    animation: marquee 80s linear(0 0%, 0.31 107.06%) infinite;
}
@keyframes marquee {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 2000%;
    }
}
html.sticky header {
    background: var(--primary);
    padding: 20px 0;
}
.logo-image a {
    display: block;
    max-width: 250px;
}
html.sticky .logo-image a {
    max-width: 210px;
}
.footer_top .container {
    padding-left: 145px;
}
.our_prdct_sec .title {
    padding-left: 30px;
}
section.our_prdct_sec:before {
    content: "";
    width: 1px;
    background: #e5e5e5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 430px;
    right: 0;
    z-index: -2;
    height: 280px;
}
.navbar-toggle {
    display: none;
}
body:not(.home) {
    padding-top: 100px;
}
.footer_top ul.contact-info li p {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    max-width: 260px;
    width: 100%;
}
/* Home Page in Pricing Sec */
.price_sec {
    background-color: #F6F6F6;
    padding-top: 50px;
}
.price_wrap {
    position: relative;
    z-index: 2;
}
.price_sec:before,
.price_sec:after {
    position: absolute;
    content: "";
    height: 50%;
    width: 50%;
    background-repeat: no-repeat;
}
.price_sec:before {
    background-image: url(../images/price-bg-1.png);
    background-position: left;
    top: 100px;
}
.price_sec:after {
    background-image: url(../images/price-bg-2.png);
    background-position: right;
    bottom: 0;
    right: 130px;
}
.price_sec .title h2 {
    font-size: 50px;
    font-weight: 300;
    color: var(--primary);
    font-family: var(--font2);
    margin-bottom: 28px;
}
.price_sec .title p {
    font-size: 16px;
    font-weight: 400;
    color: #3B4051;
    text-align: center;
    margin-bottom: 40px;
}
.price_wrap .price_box {
    background-color: var(--white);
    border-radius: 30px;
    padding: 40px 30px 30px;
    max-width: 727px;
    width: 100%;
    margin: 0px auto 20px;
}
.price_box h3 {
    font-size: 26px;
    font-weight: 600;
    font-family: var(--font2);
    color: var(--primary);
}
/* About us */
.mission_vision_sec {
    padding-top: 30px;
}
.mission_vision_wrap .content p {
    color: #3B4051;
    line-height: 160%;
}
.mission_vision_wrap .content p:nth-child(1) {
    font-weight: 600;
}
.mission_vision_box h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font2);
    color: var(--primary);
    margin-right: 15px;
    margin-bottom: 0px;
}
.mission_vision_box .content:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, #FF2424 4.33%, rgba(255, 36, 36, 0) 100%);
    top: 0;
    left: 0;
}
.mission_vision_box .content p {
    font-weight: 500 !important;
    margin-left: 30px;
    max-width: 555px;
    width: 100%;
    color: #3B4051;
}
/* Our usp Page */
content .our_usp_sec {
    padding-top: 50px;
}
.our-usp-ul ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}
.our-usp-ul ul li:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 25px;
    background-image: url('data:image/svg+xml,<svg width="22" height="26" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.60156 15.1C7.60156 15.1 8.70156 15.1 9.80156 17.3C9.80156 17.3 13.2957 11.8 16.4016 10.7" stroke="%23FF2424" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M20.8 13.1016V9.90832C20.8 8.10432 20.8 7.20231 20.3555 6.61382C19.911 6.02532 18.9059 5.73962 16.8958 5.16821C15.5224 4.77782 14.3118 4.30749 13.3445 3.87812C12.0257 3.29271 11.3664 3 10.9 3C10.4336 3 9.77426 3.29271 8.45548 3.87812C7.48823 4.30749 6.27762 4.77781 4.90426 5.16821C2.89412 5.73962 1.88904 6.02532 1.44452 6.61382C1 7.20231 1 8.10432 1 9.90832V13.1016C1 19.2894 6.56905 23.0019 9.3534 24.4713C10.0212 24.8238 10.3551 25 10.9 25C11.4449 25 11.7788 24.8238 12.4466 24.4713C15.2309 23.0019 20.8 19.2894 20.8 13.1016Z" stroke="%231F232E" stroke-width="2" stroke-linecap="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
}
.our_usp_wrap .image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 244px;
    top: -124px;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg width="476" height="244" viewBox="0 0 476 244" fill="none" xmlns="http://www.w3.org/2000/svg"><foreignObject x="-18.4609" y="-19" width="513" height="282"><div xmlns="http://www.w3.org/1999/xhtml" style="backdrop-filter:blur(9.5px);clip-path:url(%23bgblur_0_847_348_clip_path);height:100%;width:100%"></div></foreignObject><path data-figma-bg-blur-radius="19" d="M156.167 123.679L0.539062 182.72V62.3991L156.167 0L475.539 123.679V244L156.167 123.679Z" fill="%23FF2424"/><defs><clipPath id="bgblur_0_847_348_clip_path" transform="translate(18.4609 19)"><path d="M156.167 123.679L0.539062 182.72V62.3991L156.167 0L475.539 123.679V244L156.167 123.679Z"/></clipPath></defs></svg>');
}
.our_usp_wrap .image {
    max-width: 475px;
    position: relative;
}
.our-usp-image>img {
    padding-bottom: 50px;
}
.our_usp_wrap .exptext {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0px 4px 44px 0px #00000014;
    padding: 0px 43px;
    position: absolute;
    bottom: 70px;
    left: 50px;
}
.exptext h3 {
    font-size: 174px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font1);
    line-height: 115%;
    position: relative;
}
.exptext h3:before {
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.85547 2V18" stroke="%23EA5921" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.85547 10H17.8555" stroke="%23EA5921" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: cover;
    top: 0;
    bottom: 0;
    right: 50px;
    margin: auto;
}
.exptext span {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font1);
    transform: rotate(180deg);
    writing-mode: vertical-lr;
}
/* Manufacturing Process Page */
.mp_wrap {
    counter-reset: img-box;
}
.mp_wrap .mp_box {
    margin-bottom: 30px;
    position: relative;
    transition: all 0.5s;
}
.mp_wrap .mp_box:hover .icon_box {
    background: linear-gradient(90deg, rgba(255, 36, 36, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
}
.mp_wrap .mp_box:hover .icon_box .icon {
    background-color: var(--secondary);
}
.mp_wrap .mp_box:before {
    position: absolute;
    content: "";
    counter-increment: img-box;
    content: counter(img-box);
    font-size: 74px;
    font-weight: 500;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    font-family: var(--font2);
    right: 0;
    bottom: 15px;
}
.mp_wrap .mp_box:last-child {
    margin-bottom: 0px;
}
.mp_box .icon_box {
    margin-left: 62px;
    background: linear-gradient(90deg, rgba(31, 35, 46, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 26px 0px;
    transition: all 0.5s;
}
.mp_box .icon_box .icon {
    height: 130px;
    width: 130px;
    background-color: var(--white);
    border: 1px solid #0000001A;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
    margin-left: -62px;
    transition: all 0.5s;
}
.mp_box .icon_box .icon img {
    transform: rotate(-45deg);
    transition: all 0.5s;
}
.mp_box:hover .icon img {
    filter: brightness(0) invert(1);
}
.mp_box .icon_box .icon svg {
    transform: rotate(-45deg);
    transition: all 0.5s;
}
.mp_box:hover .icon svg {
    filter: brightness(0) invert(1);
}
.mp_box .icon_box h3 {
    font-size: 34px;
    font-weight: 500;
    color: var(--font2);
    color: var(--primary);
    margin-left: 70px;
}
.fw-500 {
    font-weight: 500 !important;
}
html .btn.whatsapp_btn:hover {
    background: #25d366;
}
section.product_detail_section {
    padding-top: 70px;
    background-image: url(../images/product-detail-bg.png);
    background-repeat: no-repeat;
    background-position: 0px -18px;
}
.product-gallery {
    padding-right: 80px;
}
.product_g_big {
    background: var(--white);
    padding: 100px 54px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 2px solid var(--primary);
}
.product_g_thumbs .item {
    height: 126px;
    background: #F4F5F5;
    margin-left: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 13px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.product_g_thumbs .owl-item.active.current .item {
    border: 1px solid #1F232E;
}
.product_g_thumbs .owl-item .item:after {
    content: '';
    position: absolute;
    width: 63px;
    height: 63px;
    background: var(--secondary);
    bottom: 0;
    right: 0;
    transform: translate(100px, 100px) rotate(0deg);
    transition: all 0.5s;
}
.product_g_thumbs .owl-item.active.current .item:after {
    transform: translate(33px, 33px) rotate(45deg);
}
.product_g_thumbs {
    transform: translateX(-7px);
}
.breadcrumb-item+.breadcrumb-item::before {
    width: 4px;
    height: 11px;
    background-image: url('data:image/svg+xml,<svg width="5" height="10" viewBox="0 0 5 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1C1 1 4 3.946 4 5C4 6.0541 1 9 1 9" stroke="%23FF2424" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
    margin-right: 17px;
    margin-left: 7px;
}
.breadcrumb-item+.breadcrumb-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary);
}
.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}
.breadcrumb a:hover {
    color: var(--secondary);
}
.product-title h2 {
    font-size: 51px;
    margin-bottom: 40px;
}
.product-title h2:after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--secondary);
    display: inline-block;
    transform: translateY(-13px);
    margin-left: 20px;
}
.product_slider_col {
    position: sticky;
    top: 120px;
}
.product-detail {
    padding-top: 40px;
}
.product-detail table {
    width: 100%;
}
.product-detail table thead th {
    background: #F4F5F5;
    font-weight: 600;
    text-transform: uppercase;
}
.product-detail table tr>* {
    padding: 9.5px 18px;
    border: 1px solid #1F232E26;
    color: var(--primary);
    font-size: 15px;
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.product-detail h3 {
    font-family: var(--font1);
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
}
.product-detail ul {
    margin-bottom: 30px;
}
.product-detail ul li {
    padding-left: 30px;
    position: relative;
}
.product-detail ul li::before {
    width: 21px;
    height: 16px;
    content: '';
    left: 0;
    top: 5px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg width="25" height="15" viewBox="0 0 25 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.4001 0.5C16.0843 2.75468 18.8106 7.32697 24.2422 7.57865C21.7685 7.78839 16.5369 9.46629 15.4001 14.5" stroke="%2304233A" stroke-width="1.5"/><line y1="7.45007" x2="21" y2="7.45007" stroke="%2304233A" stroke-width="1.5"/></svg>');
}
.product-detail ul li {
    margin: 0px 0 10px;
    color: #595959;
    font-size: 15px;
    line-height: 140%;
}
.inquery-modal .modal-content {
    padding: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 0 0 var(--primary);
    background: #41454D;
}
.inquery-modal .modal-content form h2 {
    margin-bottom: 20px;
    font-size: 30px;
    text-transform: uppercase;
    font-family: var(--font1);
}
.inquery-modal .form-field {
    margin-bottom: 14px;
}
.form-control {
    font-size: 14px;
    line-height: 43px;
    padding: 0 15px;
}
.inquery-modal .btn-close {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 40px;
    height: 40px;
    opacity: 1;
    padding: 0;
    box-shadow: none;
    transition: all 0.4s;
    filter: invert(1);
}
.inquery-modal .form-submit {
    text-align: center;
}
.inquery-modal:before {
    content: "";
    display: block;
    width: 178px;
    height: 98px;
    background-image: url(../images/title-img.svg);
    left: 0px;
    bottom: 0px;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 1;
}
html .btn {
    font-size: 14px;
    letter-spacing: 1px;
}
.inquery-modal.modal {
    background: #1F232E !important;
}
.inquery-modal.modal .modal-dialog {
    max-width: 660px;
}
.wight_calc_wrp {
    max-width: 760px;
    margin: 0 auto;
    border: 2px solid #F4F5F5;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 4px 34px 0px #0000000D;
}
.wight_calc_wrp h2 {
    font-size: 26px;
    margin-bottom: 30px;
}
.shape-img-wrp {
    background: #F4F5F5;
    width: fit-content;
    margin: 0 auto;
    padding: 26px 50px;
    border-radius: 12px;
    margin-bottom: 22px;
    margin-top: 22px;
}
.input-group {
    gap: 22px;
}
.input-group .form-control,
.input-group select.form-select {
    border-radius: 0.375rem !important;
}
.result_wrp {
    padding-top: 40px;
}
.result_wrp h4 {
    font-size: 18px;
    margin-bottom: 14px;
    text-align: left;
}
.wight_calc_wrp h3.box-title {
    text-align: left;
    margin-bottom: 30px;
}
.wight_calc_wrp .form-control {
    line-height: 50px;
    border-radius: 9px;
}
.result_wrp .table-responsive td {
    text-align: left;
    padding: 10px 18px;
    border: 1px solid #1F232E26
}
.result_wrp .table-responsive tr:first-child td {
    font-weight: 600;
}
.calc_form_sec {
    padding-top: 50px;
}
.wight_calc_wrp .form-control:focus {
    box-shadow: unset;
    border-color: var(--primary);
}
html .btn:hover {
    background: var(--primary);
    color: var(--white);
}
html .btn.btn-dark {
    background: var(--primary);
}
html .btn-dark.btn:hover {
    background: #1f232ed1;
}
.btn-lg {
    height: 48px;
}
.speakers_box {
    min-height: 330px;
    padding: 24px;
    text-align: center;
    border-left: 1px solid #B5B5C180;
    border-top: 1px solid #B5B5C180;
}
.speakers_box .image {
    margin-bottom: 28px;
    position: relative;
    padding-top: 100%;
    transition: all 0.4s;
    overflow: hidden;
}
.speakers_box .image img {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
.speakers_box h6 {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    line-height: 110%;
    margin-bottom: 6px;
}
.speakers_box p {
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}
.our_team_sec .row .col-6:nth-last-child(-n + 5) .speakers_box {
    border-bottom: 1px solid #B5B5C180;
}
.speakers_box:hover img {
    transform: scale(1.1);
}
body:has(.our_team_sec) .inner_banner_sec {
    background-size: 510px;
}
.speakers_box .image:after {
    content: '';
    position: absolute;
    width: 63px;
    height: 63px;
    background: var(--secondary);
    bottom: 0;
    right: 0;
    transition: all 0.5s;
    clip-path: polygon(100% 12%, 12% 100%, 100% 100%);
    transform: translateX(70px);
    transition: all 0.4s;
}
.speakers_box:hover .image:after {
    transform: translateX(0px);
}
/* applicative-sector page */
.ap_wrap .ap_box {
    background-color: #F4F5F5;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 380px;
}
.ap_wrap .ap_box:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(31, 35, 46, 0.8) 0%, rgba(31, 35, 46, 0) 100%);
    z-index: 2;
    opacity: 0;
    transition: all 0.5s;
}
.ap_wrap .ap_box:hover:before {
    opacity: 1;
}
.ap_box h3 {
    text-align: center;
    padding: 32px 20px 0px;
    margin-bottom: 0px;
    line-height: normal;
}
.ap_box h3 a {
    text-align: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 26px;
}
.ap_wrap .ap_box:hover h3 a {
    color: var(--white);
    position: relative;
    z-index: 10;
}
.ap_box .image {
    position: absolute;
    bottom: 0;
    height: 230px;
    width: 100%;
    border-radius: 250px 250px 24px 24px;
    overflow: hidden;
    transition: all 0.5s;
}
.ap_box img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.ap_box:hover .image {
    height: 100%;
    border-radius: 0px;
}
/* Quality-assurance Page */
.qa_sec {
    padding-bottom: 150px;
}
.qa_wrap .content p {
    font-weight: 500 !important;
    padding-left: 30px;
    margin-bottom: 50px;
    max-width: 555px;
    width: 100%;
    color: #3B4051;
    position: relative;
}
.qa_wrap .content:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, #FF2424 4.33%, rgba(255, 36, 36, 0) 100%);
    top: 0;
    left: 0;
}
.qa_sec .qa-carousel {
    min-width: calc(100% + 30vw);
    width: 100%;
}
.qa-carousel .item img {
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
section.qa_sec {
    overflow: hidden;
}
.qa-carousel .owl-nav button span,
.qa-carousel .owl-nav button.owl-prev {
    display: none;
}
.qa-carousel .owl-nav button.owl-next {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    right: 26%;
    background-image: url('data:image/svg+xml,<svg width="19" height="17" viewBox="0 0 19 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.7168 8.20898L1.86755 8.91609" stroke="%23200F3B" stroke-width="2" stroke-linecap="round"/><path d="M11.6473 1.9646C11.6473 1.9646 17.2007 6.65453 17.2007 8.209C17.2007 9.76348 11.6473 14.4533 11.6473 14.4533" stroke="%23200F3B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%) translateX(100%);
}
.footer_bottom div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.laxraj-love svg,
.laxraj-love .fa {
    color: var(--secondary);
    margin: 0 3px;
    font-size: 10px;
    animation: pound .35s infinite alternate;
    -webkit-animation: pound .35s infinite alternate;
    width: 12px;
    height: auto;
}
@keyframes pound {
    to {
        transform: scale(1.1)
    }
}
.laxraj-love a {
    text-decoration: none;
    color: #fff;
    position: relative;
}
.laxraj-love a:hover {
    color: var(--secondary);
}
.scrollToTop {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 40px;
    border-radius: 55px;
    right: 18px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    background: var(--primary);
    z-index: 9;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8) translateY(40px);
}
.sticky .scrollToTop {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.sticky .scrollToTop:hover {
    background: var(--secondary);
    color: #fff;
}
.sidebar-left {
    width: 100%;
    margin-top: 30px;
    position: sticky;
    top: 120px;
}
.sidebar-widget {
    width: 100%;
    margin-bottom: 40px;
}
.sidebar-widget h6 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.sidebar-widget-card {
    width: 100%;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #EBECEC;
    background-color: #F4F5F5;
}
.sidebar-widget-card h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 10px;
    margin-top: 20px;
}
.sidebar-widget-card h5:first-child {
    margin-top: 0px;
}
.sidebar-widget-card li a {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.5s;
}
.sidebar-widget-card li a:hover {
    color: var(--secondary);
}
.sidebar-widget-card li+li {
    margin-top: 8px;
}
.sidebar-widget-card li.active a {
    color: var(--secondary);
}
@media(max-width: 767px) {
    .sidebar-widget h6 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .sidebar-widget-card {
        padding: 20px;
    }
    .sidebar-widget-card h5 {
        font-size: 16px;
    }
    .sidebar-widget-card li a {
        font-size: 14px;
    }
    .sidebar-widget-card li+li {
        margin-top: 6px;
    }
    .sidebar-widget {
        margin-bottom: 20px;
    }
}
.alloy_sec {
    padding-top: 30px;
}
.alloy_table table thead th {
    background: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
}
.alloy_table table {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.alloy_table table a {
    color: var(--secondary);
}
.alloy_table table tr>* {
    padding: 5px 10px;
    border: 1px solid #1F232E26;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}
.alloy_table table thead tr>* {
    padding: 9.5px 18px;
    border: 1px solid #DDDDDD85;
    color: var(--white);
    font-size: 15px;
}
.alloy_table h3 {
    font-family: var(--font1);
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--secondary);
}
.alloy_table tbody tr:nth-child(even) {
    background-color: #ffe9e9;
}
.alloy_table ul {
    margin-bottom: 30px;
}
.alloy_table ul li {
    padding-left: 30px;
    position: relative;
}
.alloy_table ul li::before {
    width: 21px;
    height: 16px;
    content: '';
    left: 0;
    top: 5px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg width="25" height="15" viewBox="0 0 25 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.4001 0.5C16.0843 2.75468 18.8106 7.32697 24.2422 7.57865C21.7685 7.78839 16.5369 9.46629 15.4001 14.5" stroke="%2304233A" stroke-width="1.5"/><line y1="7.45007" x2="21" y2="7.45007" stroke="%2304233A" stroke-width="1.5"/></svg>');
}
.alloy_table ul li {
    margin: 0px 0 10px;
    color: #595959;
    font-size: 15px;
    line-height: 140%;
}
.pro-imgs {
    display: flex;
    gap: 10px;
	margin-bottom: 20px;
}
.pro-imgs > * {
	flex-grow: 1;
	padding:5px;
	box-shadow: 1px 1px 5px 1px #ddd;
	border-radius: 10px;
	text-align: center;
}





/* Infrastructure Page css */
.grid-sizer,
.grid-item {
    float: left;
    width: 25%;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    transition: all 0s;
}
.gallery .grid-item {
    padding: 3px;
}
.gallery-box {
    position: relative;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-box .img {
    overflow: hidden;
    position: relative;
}
.gallery-box .img:before {
    content: "";
    display: block;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
    z-index: 1;
}
.gallery-box:hover .img:before {
    opacity: 0.7;
}
.gallery-box .img:after {
    content: "";
    display: block;
    background: url("../images/zoom-in.png") no-repeat center center;
    filter: brightness(0) invert(1);
    transform: scale(1.5);
    background-size: 40px auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
    z-index: 1;
}
.gallery-box:hover .img:after {
    opacity: 1;
    transform: scale(1);
}
.gallery-box .img img {
    display: block;
    transition: all 0.5s;
}
.gallery-box:hover img {
    -webkit-transform: scale(1.3) rotate(10deg);
    transform: scale(1.3) rotate(10deg);
}
@media (max-width:767px) {
    .grid-sizer,
    .grid-item {
        width: 50%;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .grid-sizer,
    .grid-item {
        width: 33.33%;
    }
}
/* Infrastructure Page css */
/* Certificate Start */
.certificate-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.certificate-list .item {
    width: 25%;
    padding: 0 30px 0 15px;
    margin-bottom: 50px;
    position: relative;
}
.certificate-list .item::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: 15px 15px -15px 30px;
    background: #efefef;
    z-index: -1;
    border-radius: 0;
}
.certificate-list .img {
    /*height: 350px;*/
    height: auto;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #eee;
    background: #fff;
}
.certificate-list .img a {
    display: block;
    height: 100%;
    position: relative;
}
.certificate-list .img a:before {
    content: "";
    display: block;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
    z-index: 1;
}
.certificate-list .img:hover a:before {
    opacity: 0.7;
    background: linear-gradient(280deg, rgba(255, 36, 36, 1) 0%, rgba(31, 35, 46, 1) 100%);
    ;
}
.certificate-list .img a:after {
    content: "";
    display: block;
    background: url("../images/eyes.svg") no-repeat center center;
    filter: brightness(0) invert(1);
    transform: scale(1.5);
    background-size: 40px auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
    z-index: 1;
}
.certificate-list .img:hover a:after {
    opacity: 1;
    transform: scale(1);
}
.certificate-list .img img {
    display: block;
    transition: all 0.5s;
}
.certificate-list .img:hover img {
    transform: scale(1.1);
}
/* Certificate End */





iframe#\:1\.container,.VIpgJd-ZVi9od-aZ2wEe-wOHMyf.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    display: none;
}
.skiptranslate.goog-te-gadget {
    font-size: 0;
    display: flex !important;
}
.skiptranslate.goog-te-gadget a {
    display: none;
}
.skiptranslate {
    display: none !important;
}
body.loaded {
    top: 0 !important;
}
#google_translate_element select {
    border: 1px solid #989390;
    padding: 6px 28px 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    width: 134px;
    margin: 0 0 0  20px;
    font-family: 'Montserrat';
    font-weight: 500;
    background-image: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 1.5C9 1.5 6.054 4.5 5 4.5C3.9459 4.5 1 1.5 1 1.5" stroke="%23151515" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: 93% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
nav.nav-bar {
    display: flex;
    width: 100%;
    margin-right: 0;
}