@import 'font.css';

: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;
}

body {
    background-color: var(--white);
    font-family: 'Lama Sans';
    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;
}

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);
}


@media(max-width: 500px) {
    .topbar {
        display: none;
    }
}





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: 20px 12px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    color: var(--black);
    position: relative;
}

header .navbar-nav .nav-item .nav-link:hover,
header .navbar-nav .nav-item .nav-link.active {
    color: var(--white);
}

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%;
    height: 0%;
    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: 100%;
}

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: var(--white);
    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;
}

/* BANNER */

.banner {
    position: relative;
}

.banner .services-img {
    /* height: 611px; */
    width: 100%;
    height: 100%;
}

.banner .services-img ul {
    /* min-height: 350px; */
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner .services-img .single-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    position: absolute;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    padding: 50px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: qodef-animate-image-out 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 12;
}

.banner .services-img .single-img.active {
    animation: qodef-animate-image-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 15;
}

@keyframes qodef-animate-image-out {
    0% {
        transform: scale(1) translateZ(0);
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }

    100% {
        transform: scale(1);
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes qodef-animate-image-in {
    0% {
        transform: scale(1.05) translateZ(0);
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    100% {
        transform: scale(1);
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

.banner .services-list {
    height: 100%;
    background: #efefef;
}

ul.services_item {
    display: flex;
    flex-flow: column;
    /* justify-content: center; */
    height: 100%;
}

.banner .services-list ul li {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 20px;
    transition: 0.35s;
    background: #efefef;
    border-bottom: 1px solid #ddd;
}

.banner .services-list ul li.services_link.active {
    background: var(--primary);
}

.banner .services-list ul li:last-child {
    border-bottom: 0;
}

.banner .services-list ul li .services-content {
    transition: 0.35s;
}

.banner .services-list ul li .services-content h6 {
    margin-bottom: 0;
}

.banner .services-list ul li .services-content h6 a {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    display: block;
}

.banner .services-list ul li.active .services-content h6 a {
    color: var(--white);
}

.banner .services-list ul li .services-content span {
    color: var(--near-black);
    font-size: 15px;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.banner .services-list ul li.active .services-content span {
    color: var(--gray);
}

.banner .services-list ul li .services-content p {
    color: var(--near-black);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 90px;
    /* display: none;
    transform-origin: top;
    transition: 0.35s; */
}

.banner .services-list ul li.active p {
    /* display: block; */
    color: var(--light);
    /* animation: fade-down 0.45s linear; */
}

.banner .services-list ul li.active .details-btn a {
    background-color: var(--primary);
}

@keyframes fade-down {
    0% {
        opacity: 0;
        transform: scaleY(0);
        visibility: hidden;
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }
}


.single-img h1 {
    font-size: 55px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    z-index: 1;
    max-width: 55%;
}

.single-img p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 22px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    max-width: 58%;
}

.single-img .banner_btn {
    background: var(--white);
    color: var(--black);
    position: relative;
    z-index: 1;
}

.single-img .banner_btn:hover {
    background: var(--primary);
    color: var(--white);
}


@media(min-width: 1600px) {

    .banner .services-list ul li .services-content span {
        font-size: 16px;
    }

    .banner .services-list ul li .services-content p {
        font-size: 16px;
    }

    /* .banner .services-img {
        height: 615px;
    } */
}

/* @media (min-width: 1800px) {
    .banner .services-img {
        height: 616px;
    }
}

@media (min-width: 1920px) {
    .banner .services-img {
        height: 618px;
    }
} */



/* TANK */

.tank_text {
    margin-bottom: 30px;
}

.tank_text h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 10px;
}

.tank_text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--near-black);
    text-align: center;
}

.tank .nav.nav-pills .nav-item {
    width: 20%;
    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: 18px;
    display: flex;
    flex-flow: column;
    width: 100%;
}

.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 {
    margin-top: 20px;
    display: block;
    text-align: center;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    white-space: nowrap;
}

.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.nav-pills .nav-item {
        width: auto;
    }

    .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: center;
}

.testimonial_text h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 10px;
}

.testimonial_text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--near-black);
    text-align: center;
}

.client-testimonial-carousel .slick-dots {
    text-align: center;
    margin-top: 25px;
    bottom: -40px;
}

.client-testimonial-carousel .slick-dots li {
    margin: 5px;
    height: 0px;
    transition: .2s;
}

.client-testimonial-carousel .slick-dots li button {
    height: 5px;
    background: var(--primary) !important;
    width: 20px;
    display: inline-block;
    transition: .2s;
    border-radius: 2px;
}

.client-testimonial-carousel .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;
}

.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;
}