/* @import 'font.css'; */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&display=swap'); */


:root {
    --primary: #ab0524;
    --secondary: #e2b131;
    --white: #fff;
    --black: #000;
    --light: #F5F5F5;
    --dark: #202020;
    --back: #eeeeee;
    --gray: #dadada;
    --gray_text: #828282;
    --light_gray_text: #c5c5c5;
    --near-black: #282b2d;
    --dark-back: #4b4b4b;

    --font-awesome: "Font Awesome 6 free";
    --transition-05s: all ease-in-out .5s;
    --transition-08s: all ease-in-out .8s;


    --main-color: 76, 168, 214;
    /* rgba(76, 168, 214, 1) #4CA8D6 */
    --second-color: 171, 5, 36;
    /* rgba(187, 187, 187, 1) #BBBBBB */
    --third-color: 223, 223, 223;
    /* rgba(223, 223, 223, 1) #DFDFDF */
    /* --fourth-color: 26, 26, 26; /* rgba(26, 26, 26, 1) */
    --white-color: 255, 255, 255;
    --black-color: 0, 0, 0;
    --tw-primary-color: #ec3900;
}

body {
    background-color: var(--white);
    font-family: "Rubik", sans-serif;
    /* font-family: "Antonio", sans-serif; */
    font-size: 16px;
    color: var(--black);
    line-height: 1.2;
}

main {
    min-height: 80vh;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
ol {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
    font-weight: 300 !important;
}

img {
    object-fit: cover;
}

svg:focus {
    outline: 0;
    border: 0;
}

.spaceing_top {
    padding-top: 80px;
}

.spaceing_bottom {
    padding-bottom: 80px;
}

.btn {
    display: inline-block;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 8px;
    line-height: 1;
}

.form-control {
    border: 0;
    outline: 0;
    box-shadow: none;
    min-height: 42px;
    padding: 10px;
}

.form-control:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}




/* COMMON CSS */


.common_sub_title {
    font-size: 25px;
    line-height: 25px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 30px;
    display: block;
}

.common_title {
    font-size: 35px;
    line-height: 36px;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
}

.common_title span {
    font-size: 35px;
    line-height: 36px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 800;
    display: inline-block;
    margin-right: 10px;
}

.common_para {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark);
    margin-bottom: 8px;
}

.common_para:last-child {
    margin-bottom: 20px;
}

.common_btn {
    background: var(--primary);
    color: var(--white);
    border: 0;
}

.common_btn:hover {
    background: var(--black);
    color: var(--white);
    border: 0;
}




/* HEADER */

.topbar {
    background: var(--primary);
    padding: 12px 0;
}

.topbar_right {
    display: flex;
    justify-content: end;
    gap: 25px;
}

.top_con_list {
    display: flex;
    justify-content: end;
}

.top_con_list .top_con_item {
    padding: 0 10px;
}

.top_con_list .top_con_item:last-child {
    padding-right: 0;
}

.top_con_list .top_con_link {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
}

.top_con_list .top_con_link i {
    font-size: 15px;
    color: var(--white);
    margin-right: 5px;
}

.topbar .social_nav {
    display: flex;
    justify-content: end;
}

.topbar .social_nav .social_item {
    padding: 0 10px;
}

.topbar .social_nav .social_item:last-child {
    padding-right: 0;
}

.topbar .social_nav .social_link i {
    font-size: 15px;
    color: var(--white);
    margin-right: 4px;
}

.topbar .social_nav .social_link:hover i {
    color: var(--secondary);
}

header .navbar-brand {
    padding: 0;
}

.header_btn {
    background: var(--primary);
    color: var(--white);
    border: 0;
    padding: 12px 16px;
}

.header_btn:hover {
    background: var(--black);
    color: var(--white);
    border: 0;
}

.search_btn {
    padding: 6px;
    font-size: 18px;
    margin: 0 20px;
}

header nav.navbar.bg-light {
    background-color: var(--white) !important;
    padding: 10px 0 !important;
}

header .navbar-nav .nav-item .nav-link {
    padding: 10px 10px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    color: var(--black);
    position: relative;
    margin-right: 5px;
    transition: all .3s ease;
}

header .navbar-nav .nav-item .nav-link:hover,
header .navbar-nav .nav-item .nav-link.active {
    color: var(--black);
    transition: all .3s ease;
}

header .navbar-nav .nav-item .nav-link span {
    position: relative;
    z-index: 2;
}

header .navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    left: 0%;
    bottom: 0px;
    width: 100%;
    background: var(--primary);
    opacity: 1;
    z-index: 1;
    transition: all .3s ease;
}

header .navbar-nav .nav-item .nav-link:hover:before,
header .navbar-nav .nav-item .nav-link.active:before {
    content: '';
    height: 8%;
}

header .navbar-nav .dropdown-toggle::after {
    z-index: 2;
    position: relative;
}

header .navbar-nav .dropdown-item.active,
header .navbar-nav .dropdown-item:active,
header .navbar-nav .dropdown-item:hover,
header .navbar-nav .dropdown-item:hover {
    color: #000;
    text-decoration: none;
    background-color: var(--primary);
}

header .navbar-nav .dropdown-menu {
    padding: 5px 0 !important;
}

header .navbar-nav .dropdown-item {
    padding: 8px 20px !important;
}


@media(max-width: 500px) {
    .topbar {
        display: none;
    }
}




/* BANNER */

.banner {
    position: relative;
}

.banner .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.banner_item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 94vh;
    display: flex !important;
    justify-content: start;
    align-items: center;
    position: relative;
    padding-bottom: 100px;
}

@media(min-width: 1600px) {
    .banner_item {
        min-height: 60vh;
    }
}

@media(min-width: 1400px) {
    .banner_item {
        min-height: 60vh;
    }
}

.banner_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}

.banner_item h1 {
    font-size: 55px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.banner_item p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 22px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.banner_item .banner_btn {
    background: var(--white);
    color: var(--black);
    position: relative;
    z-index: 1;
}

.banner_item .banner_btn:hover {
    background: var(--primary);
    color: var(--white);
}

.banner_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.banner_bottom li {
    display: flex;
    align-items: end;
}

.ban_box {
    border-right: 1px solid #bbbdbf;
    display: block;
    background: rgb(255 255 255 / 90%);
    padding: 20px 25px;
    overflow: hidden;
    transition: all .6s ease 0s;
}

.banner_bottom li:last-child .ban_box {
    border-right: 0;
}

.ban_box h3 {
    color: var(--black);
    font-size: 20px;
    margin: 0;
    padding-bottom: 10px;
    font-weight: 500;
}

.ban_box h5 {
    color: var(--dark-back);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.ban_box .txt {
    color: var(--gray);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.ban_box .top {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ban_box .bottom {
    height: 0px;
    overflow: hidden;
}

.ban_box:hover {
    padding: 25px 25px;
    background: rgba(171, 5, 35, 0.7);
}

.ban_box:hover .top h3 {
    color: var(--white);
}

.ban_box:hover .top h5 {
    color: var(--gray);
    margin-bottom: 10px;
}

.ban_box:hover .bottom {
    height: 80px;
    overflow: hidden;
}

.ban_box .arrow {
    width: 45px;
    height: 45px;
    border: 1px solid #999;
    background: transparent;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.ban_box:hover .arrow {
    border: 1px solid var(--white);
    background: var(--white);
}


@media(max-width: 991px) {
    .banner_bottom {
        position: relative;
    }

    .ban_box {
        border-bottom: 1px solid #bbbdbf;
        border-right: 0;
    }

    .banner_item {
        min-height: 55vh;
        padding-bottom: 0;
    }

    .banner_item h1 {
        font-size: 32px;
    }
}

@media(max-width: 767px) {
    .banner_item p {
        display: none;
    }
}



/* TANK */

.tank_text {
    margin-bottom: 30px;
    padding-left: 30px;
}

.tank_text h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    margin-bottom: 10px;
}

.tank_text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--near-black);
    text-align: left;
}

.tank .nav.nav-pills .nav-item {
    width: 16.666%;
    padding: 0 10px;
}

.tank .nav.nav-pills .nav-item:first-child {
    padding-left: 0;
}

.tank .nav.nav-pills .nav-item:last-child {
    padding-right: 0;
}

.tank .nav.nav-pills .nav-item .nav-link {
    background: var(--white);
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 0px;
    display: flex;
    flex-flow: column;
    width: 100%;
    overflow: hidden;
}

.tank .nav.nav-pills .nav-item .nav-link.active {
    background: var(--light);
}

.tank .nav.nav-pills .nav-item .nav-link img {
    width: 100%;
    height: 115px;
    aspect-ratio: 12/8;
}

.tank .nav.nav-pills .nav-item .nav-link span {
    display: block;
    text-align: center;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    white-space: nowrap;
    padding: 15px;
}

.tank .tab_in {
    background: var(--light);
    padding: 35px;
}

.tank .tab_in h3 {
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.tank .tab_in p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: var(--dark-back);
    margin-bottom: 10px;
}

.tank .tab_in .common_btn {
    margin-top: 10px;
}

@media(max-width: 991px) {

    .tank .nav-pills {
        overflow: auto;
        flex-wrap: nowrap;
    }

    .tank .nav-pills::-webkit-scrollbar {
        height: 4px;
        display: none;
    }

    .tank .nav.nav-pills:hover .nav-pills::-webkit-scrollbar {
        display: block;
    }

    .tank .nav-pills::-webkit-scrollbar-track {
        border-radius: 5px;
    }

    .tank .nav-pills::-webkit-scrollbar-thumb {
        background: #b4b4b4;
        border-radius: 10px;
    }

    .tank .nav.nav-pills .nav-item {
        width: 45%;
    }

    .tank .nav.nav-pills .nav-item .nav-link img {
        height: 65px;
    }
}



/* CHOOSE */

.choose {
    background: var(--back);
}

.choose_text {
    margin-bottom: 30px;
    text-align: center;
}

.choose_text {
    margin-bottom: 50px;
    text-align: center;
}

.choose_text h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 10px;
}

.choose_text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--near-black);
    text-align: center;
}

.choose_box_text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.choose_box_text p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--near-black);
    margin-bottom: 20px;
}

.choose_img {
    padding: 25px;
}

/* TESTIMONIAL */

.testimonial_text {
    margin-bottom: 30px;
    text-align: left;
    padding-right: 130px;
}

.testimonial_text h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    margin-bottom: 10px;
}

.testimonial_text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--near-black);
    text-align: left;
}

.client-testimonial-carousel .slick-dots,
.client-testimonial-carousel2 .slick-dots {
    text-align: center;
    margin-top: 25px;
    bottom: -40px;
}

.client-testimonial-carousel .slick-dots li,
.client-testimonial-carousel2 .slick-dots li {
    margin: 5px;
    height: 0px;
    transition: .2s;
}

.client-testimonial-carousel .slick-dots li button,
.client-testimonial-carousel2 .slick-dots li button {
    height: 5px;
    background: var(--primary) !important;
    width: 20px;
    display: inline-block;
    transition: .2s;
    border-radius: 2px;
}

.client-testimonial-carousel2 .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.client-testimonial-carousel .slick-dots li.slick-active,
.client-testimonial-carousel2 .slick-dots li.slick-active {
    background: var(--black) !important;
    width: 30px;
}

.client-testimonial-carousel .slick-dots li.slick-active button {
    background: var(--black) !important;
    width: 30px;
}

.client-testimonial-carousel2 .slick-dots li.slick-active button {
    background: var(--black) !important;
    width: 10px;
}

.client-testimonial-carousel2 .slick-dots li {
    width: 10px;

}

.slick-dots li button:before {
    display: none;
    content: '•';
}

.single-testimonial-item {
    position: relative;
    border: 1px solid #e8e8e8;
    margin: 0px 8px;
    padding: 20px;
    font-style: italic;
    padding-left: 85px;
}

.single-testimonial-item:before {
    font-family: "Font Awesome 5 Free";
    content: "\f10e";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    font-size: 20px;
    color: var(--primary);
    line-height: 30px;
    margin-top: -15px;
}

.single-testimonial-item:after {
    background: #ddd;
    content: "";
    height: 70%;
    left: 60px;
    position: absolute;
    top: 10%;
    width: 1px;
}

.single-testimonial-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    min-height: 44px;
    color: var(--primary);
}

.single-testimonial-item h3 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
    color: var(--dark-back);
}

.single-testimonial-item p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 110px;
}

@media(max-width: 575px) {

    .single-testimonial-item {
        margin: 0px;
    }
}


/* NEWS */

.news {
    background: var(--back);
}

.news_text {
    margin-bottom: 35px;
}

.news_text h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 10px;
}

.news_text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--near-black);
    text-align: center;
}


.news_box {
    background: var(--white);
    box-shadow: 2px 2px 12px rgb(121 121 121 / 40%);
    padding: 85px 25px 25px;
    margin-top: 25px;
    position: relative;
}

.news_box h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 45px;
}

.news_box p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: var(--near-black);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 70px;
}


.news_date {
    position: absolute;
    top: -25px;
    left: 25px;
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
}

.news_box:hover .news_date {
    background: var(--black);
}

.news_date_top {
    display: block;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news_date_bottom {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}



/* FOOTER */

.footer {
    background: var(--dark);
    padding: 60px 0 40px;
}

.footer h5 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
}

.foot_left {
    margin-right: 20px;
}

.footer .social_nav {
    display: flex;
    justify-content: start;
}

.footer .social_nav .social_item {
    padding: 0 8px;
}

.footer .social_nav .social_item:first-child {
    padding-left: 0;
}

.footer .social_nav .social_item:last-child {
    padding-right: 0;
}

.footer .social_nav .social_link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .social_nav .social_link i {
    font-size: 15px;
}

.footer .social_nav .social_item:hover .social_link {
    background: var(--primary);
    color: var(--white);
}

.foot_logo img {
    width: 140px;
    margin-bottom: 20px;
}

.foot_list .foot_item {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 15px;
}

.foot_list .foot_item:last-child {
    margin-bottom: 0;
}

.foot_list .foot_link {
    font-size: 15px;
    color: var(--white);
}

.foot_list .foot_link:hover {
    color: var(--white);
    text-decoration: underline;
}

.foot_list .foot_item span {
    color: var(--white);
    font-weight: 600;
    margin-right: 4px;
}

.foot_list .foot_item i {
    font-size: 16px;
    color: var(--white);
    margin-right: 8px;
}

.copyright {
    background: var(--black);
    padding: 20px;
}

.copyright_in {
    display: flex;
    justify-content: space-between;
}

.copyright_left {
    display: flex;
}

.copyright_left_item {
    color: var(--gray);
    font-size: 14px;
    padding: 0 5px;
    border-right: 1px solid #fff;
}

.copyright_left_item:first-child {
    padding-left: 0;
}

.copyright_left_item:last-child {
    padding-right: 0;
    border-right: 0;
}

.copyright_left_item a {
    color: var(--gray);
    font-size: 14px;
}

.copyright_left_item:hover a {
    text-decoration: underline;
}


.copyright_right {
    display: flex;
}

.copyright_right_item {
    color: var(--gray);
    font-size: 14px;
    padding: 0 5px;
    border-right: 1px solid #fff;
}

.copyright_right_item:first-child {
    padding-left: 0;
}

.copyright_right_item:last-child {
    padding-right: 0;
    border-right: 0;
}

.copyright_right_item a {
    color: var(--gray);
    font-size: 14px;
}

.copyright_right_item:hover a {
    text-decoration: underline;
}


/* banner Start */

.banner-section {
    --banner-hvh: 88vh;
    --banner-hhp: 100%;
    min-height: var(--banner-hvh);
    height: var(--banner-hhp);
}

.banner-section.banner-inner-page {
    --banner-hvh: 50vh;
}

.banner-section>*:first-child,
.banner-slider>*:first-child>*,
.banner-slider>*:first-child>*>*,
.banner-slider>*:first-child>*>*>*,
.banner-slider>*:first-child>*>*>*>* {
    min-height: var(--banner-hvh);
    height: var(--banner-hhp);
}

.banner-bg {
    position: absolute;
    inset: 0px;
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg img {
    width: 100%;
    height: 100%;
}

.banner-bg::after {
    content: '';
    position: absolute;
    display: inline-block;
    inset: 0px;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), 0.4);
}

.banner-inner-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(var(--black-color), 0.6) no-repeat center center / cover;
    width: 100%;
    overflow: hidden;
    padding: 50px 0px;
}

.banner-section .banner-inner-section .row {
    justify-content: center;
}

.banner-box {
    text-align: center;
}

.banner-SubTitle,
.banner-box>span {
    /* text-transform: capitalize; */
    color: rgba(var(--white-color), 1);
    font-size: 30px;
    line-height: 1;
    display: block;
    margin-bottom: 16px;
    position: relative;
    z-index: 9;
}

.banner-title,
.banner-box h1 {
    --efs-bth: 60px;
    color: rgba(var(--white-color), 1);
    margin-bottom: 12px;
    font-size: var(--efs-bth);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    z-index: 9;
    position: relative;
}

.banner-box .common-bgBtn {
    margin-top: 30px;
}

/* banner end */

/* Product-list start */
.common-section .tank_text {
    padding: 0px;
}

.common-section .tank_text h2 {
    font-size: 38px;
    color: rgba(var(--second-color), 1);
    text-transform: uppercase;
}

.pro-MainBox {
    position: relative;
    text-align: left;
    background: rgba(var(--white-color), 1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 4px 4px 6px -1px rgba(var(--black-color), 0.175);
    margin-bottom: 2rem;
    height: 100%;
}

.pro-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: rgba(var(--second-color), 0.3);
    transition: var(--transition-05s);
}

.pro-img img {
    transform: scale(1);
    transition: var(--transition-05s);
    width: 100%;
    height: 300px;
    object-fit: fill;
}

.pro-MainBox:hover .pro-img img {
    transform: scale(1.05);
}

/* .pro-txtBox {
    padding: 34px 20px 24px;
} */
.innhead {
    padding: 10px;
    color: rgba(var(--white-color), 1);
    background-color: var(--primary);
    text-align: center;
}

.innhead h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.pro-boxTitle,
.pro-txt h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 300;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    font-size: 23px;
}

.pro-boxTitle a,
.pro-txt h4 a {
    color: rgba(var(--black-color), 1);
    transition: var(--transition-05s);
}

/* .pro-boxTitle a:hover,
.pro-txt h4 a:hover {
    color: var(--primary);
} */

.pro-txt {
    padding: 10px;
}

.pro-txt ul li {
    display: flex;
    align-items: baseline;
    gap: 30px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    justify-content: space-between;
    text-align: right;
}

.pro-txt ul li span {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    font-size: 15px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: row-reverse;
}

/* Product-list end */

.modal1 {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 19999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal1 .slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 50%;
}

.modal1 .slider-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 10px;
    transition: transform 0.3s ease-in-out;
}

.modal1 .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

.modal1 .prev-btn,
.modal1 .next-btn {
    position: absolute;
    top: 50%;
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.prev-btn {
    left: 10px;
    transform: translateY(-50%);
}

.modal1 .next-btn {
    right: 10px;
    transform: translateY(-50%);
}

.modal1 .slider-img {
    max-width: 100%;
    height: auto;
}

.inventory .row {
    gap: 24px 0px;
}

.inventory .tank_text h2 {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 40px;
    font-weight: 700;
}

.inventory .tank_text h4 {
    color: rgba(var(--black-color), 1);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: capitalize;
}

.innernavpagi .pagination {
    justify-content: center;
}

.innernavpagi .pagination .page-link:focus {
    z-index: 3;
    color: rgba(var(--black-color), 1);
    background-color: transparent;
    outline: 0;
    box-shadow: none;
}

.innernavpagi .pagination .page-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.innerleftbox h4 {
    font-weight: 500;
    font-size: 25px;
    color: #000;
    margin-bottom: 0.5rem;
}

.innerleftbox h3 {
    text-transform: uppercase;
}

.gallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 10px;
}

.gallery__item {
    align-items: center;
    display: flex;
    position: relative;
    justify-content: center;
}

.gallery__item>img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery__item--hor {
    grid-column: span 2;
}

.gallery__item--vert {
    grid-row: span 2;
}

.gallery__item--lg {
    grid-column: span 2;
    grid-row: span 2;
}

/* accordion */

.FAQsTxt-accordion {
    margin: 20px 0px;
}

.FAQsTxt-accordion .accordion-item {
    border-radius: 0px !important;
    border: none;
    overflow: hidden;
}

.FAQsTxt-accordion .accordion-item {
    margin-bottom: 15px;
    background: rgba(var(--main-color), 0);
}

.FAQsTxt-accordion .accordion-item .accordion-button {
    box-shadow: none !important;
    background: var(--primary);
    color: rgba(var(--white-color), 1);
    border-radius: 0px !important;
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
}

.FAQsTxt-accordion .accordion-button:not(.collapsed) {
    color: rgba(var(--white-color), 1);
    background: var(--primary);
    box-shadow: none !important;
}

.FAQsTxt-accordion .accordion-button::after {
    transform: rotate(-90deg);
    margin-top: -4px;
    filter: contrast(0) brightness(2);
}

.FAQsTxt-accordion .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
    transform: rotate(0deg);
}

.FAQsTxt-accordion .accordion-body {
    background: rgba(var(--main-color), 0);
    font-size: 17px;
    color: rgba(var(--black-color), 1);
    padding: 20px;
}

.FAQsTxt-accordion .accordion-body>p:last-child {
    margin-bottom: 0px;
}

.defaultul {
    list-style: square;
    padding-left: 2rem;
}

.defaultul li {
    margin-bottom: 0.5rem;
}

/* accordion */

/* contact us page css */

.iframe-box {
    height: 100%;
}

.iframe-box iframe {
    width: 100%;
    height: 310px;
    border-radius: 10px;
}

.contcommon-box .common-para p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: var(--dark-back);
    margin-bottom: 30px;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    border: 1px dotted var(--primary);
    border-radius: 10px;
    margin-bottom: 1rem;
    background-color: rgba(var(--white-color), 1);
    box-shadow: 4px 4px 6px -1px rgba(var(--black-color), 0.1);
}

.address-details li i {
    font-size: 20px;
    color: var(--primary);
}

.address-details li,
.address-details li a {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 4px;
    color: #000000;
    font-size: 18px;
}

.client-testimonial-carousel2 .item img {
    height: 60px;
    width: 100%;
    align-content: center;
    object-fit: contain;
}

.innerslidetitle h3 {
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding: 10px;
    background-color: #e4e4e4;
    border-radius: 10px;
}

.neheasd {
    background-color: #e4e4e4;
    color: var(--primary);
}

.pro-txt .inmidbtn li {
    justify-content: center;
}

.newboxsec .pro-img img {
    height: 350px;
}

.groupbtnsec .common_btn {
    width: 100%;
}

.innerleftbox p a {
    color: var(--primary);
}

.innerleftbox p a:hover {
    text-decoration: underline;
}

.secimg .gallery__item::before {
    content: '';
    background-color: #ab05247d;
    width: 100%;
    height: 23%;
    position: absolute;
    left: 0;
    bottom: 0;
    backdrop-filter: blur(1px);
    z-index: 1;
}

.secimg .gallery__item p {
    position: absolute;
    bottom: 0;
    color: #ffff;
    z-index: 9;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0.6rem;
    font-size: 15px;
}

/* service start */

.service-section.service-page .Service-SliderBox {
    box-shadow: 0px 0px 20px -5px rgba(var(--black-color), 0.2);
}

.Service-SliderBox {
    background: rgba(var(--white-color), 1);
    color: rgba(var(--black-color), 1);
    border-radius: 10px;
    overflow: hidden;
}

.Service-SliderImg {
    width: 100%;
    height: 300px;
}

.Service-SliderTxt {
    padding: 20px;
}

.Service-SliderTxt h5 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    text-transform: capitalize;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}

.Service-SliderTxt .common-para {
    line-clamp: 2;
    -webkit-line-clamp: 3;
    color: #000;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.Service-SliderTxt .common-bgBtn {
    padding: 10px 10px;
    padding-right: 40px;
    font-size: 16px;
}

.Service-SliderTxt .common-bgBtn>i {
    font-size: 14px;
    --ehw-cbi: 28px;
    margin-right: 14px;
}

.Service-SliderTxt .common-bgBtn>span {
    vertical-align: middle;
}

.ServiceBox-Slider.owl-carousel .owl-dots {
    gap: 12px;
    margin-top: 40px;
}

.ServiceBox-Slider.owl-carousel button.owl-dot {
    --ehw-ocbd: 18px;
}

.Service-SliderImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.date-post {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(var(--black-color), 0.8);
    font-size: 16px;
    margin-bottom: 20px;
}

.date-post li {
    border-right: 1px solid #adadad;
    padding-right: 15px;
}

.date-post li i {
    color: var(--primary);
    margin-right: 5px;
}

.blogDtl-box .date-post li i {
    vertical-align: text-top;
}

.date-post li:last-child {
    border-right: none;
    padding-right: 0px;
}

.date-post li {
    display: flex;
    align-items: baseline;
    gap: 0px;
}

/* service end */
/* 
.innerbox {
    padding: 3rem;
    background-color: #ffffff21;
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 30px;
    border-radius: 14px;
    border-left: 10px solid #ab0524;
    position: relative;
    z-index: 4;
} */

.banner_slider .right_nav.slick-arrow,
.banner_slider .left_nav.slick-arrow {
    position: absolute;
    top: 50%;
    right: 18%;
    background: rgb(255, 255, 255);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: .5s;
    margin-bottom: 1rem;
}

.banner_slider .left_nav.slick-arrow {
    top: 36%;
    z-index: 9;
}

.banner_item:before {
    position: absolute;
    content: "";
    background: linear-gradient(273deg, rgba(203, 209, 209, 0) 16%, rgba(21, 21, 21, 0.5382528011204482) 43%, rgba(0, 0, 0, 0.9948354341736695) 100%, rgba(8, 6, 6, 0.8519782913165266) 100%);
    opacity: 0.729;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner_slider .right_nav.slick-arrow:hover,
.banner_slider .left_nav.slick-arrow:hover {
    background: #ab0524;
    transition: .5s;
    color: #fff;
}


.serviceDesc01 .subTitle {
    font-size: 14px;
    line-height: 17px;
}

.subTitle {
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1;
    margin: 0 0 15px;
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}

.offersec {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.left_bottomimg {
    position: absolute;
    left: -1px;
    bottom: 0;
}

.left_bottomimg img {
    height: 390px;
    opacity: 0.5;
}

.right_topimg {
    position: absolute;
    right: -1px;
    top: -10px;
}

.right_topimg img {
    height: 390px;
    transform: rotate(180deg);
    opacity: 0.5;
}

.singleService {
    position: relative;
    background: #f8f8f8;
    border-radius: 5px;
    margin: 10px;
}

.serviceThumb {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.serviceThumb img {
    max-width: 100%;
    height: 270px;
    width: 100%;
    border-radius: 8px;
}

.serviceContent {
    position: relative;
    padding: 40px 30px;
    z-index: 2;
}

.serConIcon {
    position: absolute;
    top: -50px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: #ab0524;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 6px solid #ffffff;

}

.serConIcon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.serviceContent h4 {
    font-size: 24px;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--primary);
}

.serviceContent .common-para p {
    color: rgba(var(--black-color), 0.8);
    margin-bottom: 10px;
}

.serviceContent h4 a {
    color: inherit;
    display: inline-block;
}

.serviceDesc01 h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgba(var(--black-color), 1);
    margin-bottom: 1rem;
}

.serviceDesc01 p {
    margin-bottom: 1.5rem;
}

.offer_slider .left_nav.slick-arrow,
.offer_slider .right_nav.slick-arrow {
    width: 40px;
    height: 40px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 70%;
    left: -51%;
    color: rgba(var(--white-color), 1);
    cursor: pointer;
    transition: .5s;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.offer_slider .right_nav.slick-arrow {
    left: -45%;
}


.offer_slider .right_nav.slick-arrow:hover,
.offer_slider .left_nav.slick-arrow:hover {
    background: #fff;
    transition: .5s;
    color: #ab0524;
    border: 1px solid #ab0524;
}

.btnLink {
    color: rgba(var(--black-color), 1);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    transition: var(--transition-05s);
    margin-top: 1rem;
}

.btnLink i {
    transition: var(--transition-05s);
    transform: rotate(320deg);
    color: rgba(var(--black-color), 1);
}

.btnLink:hover {
    color: var(--primary);
    transition: var(--transition-05s);
}

.btnLink:hover i {
    transition: var(--transition-05s);
    transform: rotate(360deg);
    color: var(--primary);
}





.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
    height: 515px;
}

.div1 {
    grid-column: span 2 / span 2;
    height: max-content;
}

.div2 {
    grid-column-start: 2;
    grid-row-start: 2;
    height: max-content;
}

.div3 {
    grid-column-start: 1;
    grid-row-start: 2;
    height: max-content;
}



.tank {
    position: relative;
}

.parent .div1 img {
    height: 300px;
}

.parent img {
    height: 200px;
    width: 100%;
    border-radius: 20px;
}

.newlistsec {
    position: relative;
    display: block;
    background-color: rgba(var(--white-color), 1);
    box-shadow: 0px 4px 15px 0px rgba(13, 66, 80, 0.08);
    padding: 33px 29px 31px;
    margin-left: 30px;
    border-radius: 10px;
}

.newlistsec .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.newlistsec .inner .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.newlistsec:hover .inner .icon-box {
    transform: scale(0.9);
}

.icon-box img {
    height: 90px;
    max-width: 100%;
}

.newlistsec .inner .text-box {
    position: relative;
    display: block;
    margin-left: 25px;
    flex: 1;
}

.newlistsec .inner .text-box h4 {
    color: var(--primary);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 14px;
}



.news-block {
    position: relative;
    border-radius: 15px;
    overflow: hidden
}

.news-block .inner-box {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .image-box .image a {
    display: block;
    width: 100%;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .image-box .image a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgb(23, 23, 23) 0%, rgb(23, 23, 23) 5%, rgba(23, 23, 23, 0) 70%, rgba(23, 23, 23, 0) 100%);
}

.news-block .image-box .image img {
    width: 100%;
    height: 420px;
}

.news-block .inner-box .content-box {
    position: absolute;
    z-index: 2;
    inset-inline-start: 20px;
    bottom: 30px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .inner-box .content-box .meta_title {
    display: inline-flex;
    padding: 0 15px;
    height: 28px;
    background: #fff;
    text-align: center;
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.news-block .inner-box .content-box .title {
    color: var(--primary);
    font-size: 22px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .inner-box .content-box .title a {
    color: rgba(var(--white-color), 1);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-block .inner-box .content-box .title a:hover {
    color: var(--primary);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-block .inner-box .content-box .post-date {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .7);
    position: relative;
    padding-left: 20px;
}

.news-block .inner-box .content-box .post-date::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .inner-box:hover .image-box .image {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.news-block .inner-box .image-box .image {
    margin-bottom: 0;
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}

.content-box .common-para p {
    color: rgba(var(--white-color), 0.7);
    margin-bottom: 1rem;
}


/* CTA start */

.common-section.cta-section {
    background: var(--white);
    position: relative;
    /* overflow: hidden; */
}

.incta {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.5;
}

.innerleftsec {
    position: absolute;
    right: 0;
    bottom: -40px;
    z-index: 1;
}

.innerleftsec img {
    height: 230px;
    width: 100%;
}

.CTAInner-section {
    width: 70%;
    margin: auto;
    position: relative;
    z-index: 999;

}

.common-box.cta-box .common-title {
    padding: 0px;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 24px;
}

.common-box.cta-box .common-para {
    color: rgba(var(--white-color), 1);
}

.cta-ImgTxt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-form {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    height: 45px;
    border: 1px solid rgba(var(--white-color), 0);
    background: rgba(var(--second-color), 0.15);
}

.cta-form .form-control,
.cta-form .form-control:hover,
.cta-form .form-control:focus {
    height: 100%;
    padding: 9px 15px;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    background: rgba(var(--second-color), 1);
    color: rgba(var(--white-color), 1);
}

.cta-form .form-control::placeholder {
    color: rgba(var(--white-color), 1);
}

.cta-form .cta-btn,
.cta-form .btn,
.cta-form button {
    white-space: nowrap;
    border: none;
    height: 100%;
    border-radius: 0px;
    background: rgba(var(--second-color), 1);
    color: rgba(var(--white-color), 1);
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition-05s);
}

.cta-form .cta-btn i,
.cta-form .btn i,
.cta-form button i {
    color: rgba(var(--white-color), 1);
}

.cta-ImgTxt .common-para p {
    color: var(--primary);
}

/* CTA end */


/* testimonial start */



.testi_slider .offer_item {
    margin: 10px;
}

.test-box {
    padding: 40px;
    background: rgb(241 241 241);
    box-shadow: 8px 7px 17px -17px rgba(var(--black-color), 0);
    border-radius: 15px;
    height: 100%;
    border-left: 8px solid #ab0524;
}

.test-icon {
    width: 40px;
    margin-bottom: 20px;
}

.test-box .common-para {
    color: rgba(var(--black-color), 0.9);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 300;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;

}

.TestUser-nameDes {
    text-align: right;
    color: rgba(var(--second-color), 1);
    margin-top: 30px;
}

.TestUser-nameDes h6 {
    font-size: 15px;
    text-transform: uppercase;
    color: rgba(var(--second-color), 1);
    margin-bottom: 2px;
}

.TestUser-nameDes span {
    color: rgba(var(--second-color), 0.6);
    font-size: 14px;
}


.testi_slider .left_nav.slick-arrow,
.testi_slider .right_nav.slick-arrow {
    width: 40px;
    height: 40px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -30%;
    right: 1%;
    color: rgba(var(--white-color), 1);
    cursor: pointer;
    transition: .5s;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    z-index: 99;
}

.testi_slider .left_nav.slick-arrow {
    right: 5%;
}

.testi_slider .left_nav.slick-arrow:hover,
.testi_slider .right_nav.slick-arrow:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: var(--transition-05s);
}

/* testimonial end */

.contentbox a {
    color: var(--primary);
}


.gallery__item {
    position: relative;
    width: 100%;
}

.gallery__item img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


p.leftbar {
    background: #ab05240d;
    padding: 10px;
    border-left: 3px solid #222220;
}

/*
    7.20. SERVICES FEATURE BOX
    ------------------------------------------------------------------------- */
.services-negative-top .col-md-4 {
    margin-top: -316px;
}

.custom-background .service-feature-box,
.parallax .service-feature-box {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: none;
}

.service-feature-box {
    box-shadow: 1px 0px 3px 0 #ddd;
    -webkit-box-shadow: 1px 0px 3px 0 #ddd;
    -moz-box-shadow: 1px 0px 3px 0 #ddd;
    border: 1px solid #eee;
    height: 100%;
    border-radius: 13px;
    overflow: hidden;
}

.service-feature-box .service-media {
    position: relative;
    overflow: hidden;
}

.service-feature-box .service-media img {
    width: 100%;
    transition: all 2s ease-in-out 0s;
    -webkit-transition: all 2s ease-in-out 0s;
    -moz-transition: all 2s ease-in-out 0s;
    -o-transition: all 2s ease-in-out 0s;
    height: 300px;
    opacity: 1;
}

.service-feature-box .service-media:hover img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);

    opacity: 0.7
}

.service-feature-box .service-media a {
    background-color: rgba(var(--second-color), 1);
    position: absolute;
    bottom: 0;
    right: 0;
    text-transform: capitalize;
}

.service-feature-box .service-media span {
    color: #fff;
    padding-left: 20px;
    font-weight: 400;
}

.service-feature-box .service-media i {
    background-color: #000000;
    padding: 5px 10px;
    font-size: 10px;
    line-height: 22px;
    margin-left: 20px;

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.service-feature-box .service-body {
    background-color: #fff;
    padding: 20px;
}

.custom-heading {
    position: relative;
    width: 100%;
    display: block;
    padding-top: 12px;
    text-transform: uppercase;
    margin-bottom: 1rem;

}

.custom-heading h4 {
    line-height: 22px;
    font-weight: 800;
    font-style: normal;
    color: var(--primary);
    font-size: 18px;
}

.custom-heading::after {
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 3px;
    left: 0;
    top: 0;
    background-color: rgba(var(--second-color), 0.3);
}

.service-body p {
    line-height: 22px;
    font-weight: normal;
    font-style: normal;
    color: #777;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.freightliner-premium-showcase {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgb(0 0 0 / 8%), 0 0 0 1px rgb(255 255 255 / 24%);
    max-width: 440px;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.freightliner-premium-showcase:hover {
    transform: translateY(-12px);
    box-shadow:
        0 48px 100px rgba(0, 0, 0, 0.082),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.vehicle-hero-section {
    position: relative;
    height: 320px;
    background: linear-gradient(172deg, #000000 -13%, #ab0524 121%);
    overflow: hidden;
}

.premium-truck-image {
    width: calc(100% - 40px);
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    margin: 20px 20px 0 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
}

.freightliner-premium-showcase:hover .premium-truck-image {
    transform: scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.vehicle-title-container {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0;
    background: linear-gradient(180deg, #000000 0%, rgb(0, 0, 0) 100%);
    padding: 20px 20px 20px;
}

.model-designation-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.8px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(153, 6, 6, 0.5);
    text-align: center;
}

.specifications-section {
    padding: 30px 20px;
    background: #ffffff;
}

.technical-details-grid {
    display: grid;
    gap: 16px;
}

.specification-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: rgb(0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.specification-detail-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    transition: left 0.5s ease;
}

.specification-detail-row:hover::before {
    left: 100%;
}

.specification-detail-row:hover {
    /* background: rgba(255, 255, 255, 0.03); */
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.spec-category-identifier {
    font-weight: 700;
    color: rgba(var(--second-color), 1);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    z-index: 1;
}

.spec-value-content {
    font-weight: 400;
    color: #ffffff;
    font-size: 13px;
    text-align: right;
    position: relative;
    z-index: 1;
    max-width: 60%;
}

.accent-indicator {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 32px;
    background: #ab0524;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 99;
}

.specification-detail-row:hover .accent-indicator {
    opacity: 1;
}

@media (max-width: 520px) {
    .freightliner-premium-showcase {
        margin: 10px;
        max-width: 100%;
        border-radius: 24px;
    }

    .vehicle-hero-section {
        height: 280px;
    }

    .premium-truck-image {
        height: 220px;
        margin: 15px 15px 0 15px;
        width: calc(100% - 30px);
    }

    .model-designation-text {
        font-size: 24px;
    }

    .vehicle-title-container {
        padding: 30px 20px 20px;
    }

    .specifications-section {
        padding: 30px 20px;
    }

    .specification-detail-row {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .spec-value-content {
        align-self: flex-end;
        text-align: right;
        max-width: 100%;
        font-size: 15px;
    }

    .spec-category-identifier {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .specifications-section {
        padding: 25px 15px;
    }

    .technical-details-grid {
        gap: 12px;
    }

    .specification-detail-row {
        padding: 16px 12px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.freightliner-premium-showcase {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.specification-detail-row:nth-child(1) {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.specification-detail-row:nth-child(2) {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.specification-detail-row:nth-child(3) {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.specification-detail-row:nth-child(4) {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.loading-shimmer {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 25%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.02) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.gm-style-iw {
    max-width: 400px !important;
    max-height: 300px !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.gm-style-iw-d {
    overflow: hidden !important;
}

.gm-style-iw .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px;

}

.gm-style-iw .heading h3 {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.gm-style-iw .heading img {
    width: 100%;
    height: 120px;
    border-radius: 0%;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: left;
}

.gm-style-iw-ch {
    display: none !important;
}

.gm-style-iw-chr {
    justify-content: end !important;
}

.deliveriessec .row {
    gap: 24px 0px;
}

/* 26.06.25 */

.input-container {
    display: flex;
}

::placeholder {
    color: #757575;
    opacity: 1;
}

.search-input {
    background: #ffffff;
    color: #212121;
    vertical-align: middle;
    font-size: 16px;
    line-height: 2;
    padding: 10px 20px;
    border: 0;
    outline: none;
    box-shadow: inset 0 -1px 1px -1px #CCCCCC, inset 0 1px 1px -1px #CCCCCC, inset 1px 0 1px -1px #CCCCCC;
}

.search-submit {
    background: var(--primary);
    color: #FFFFFF;
    vertical-align: middle;
    padding: 0 20px;
    border: 0;
    outline: none;
    cursor: pointer;
}

.search-submit:hover {
    background: var(--primary);
}

.search-submit i {
    font-size: 24px;
}


/* 15-07-2000 */

  /* Show dropdown menu on hover */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Optional: removes dropdown jump effect */
    }

    /* Optional: Prevent flashing on hover out */
    .dropdown-menu {
        transition: all 0.3s ease;
    }


    /* Add chevron to the nav-link */
.mobile-nav-item > a::after {
  content: "\f078"; /* Font Awesome down arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  margin-left: 8px;
  transition: transform 0.3s;
}

/* Rotate icon when active (submenu shown) */
.mobile-nav-item.active > a::after {
  transform: rotate(180deg);
}







