* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #ef2241;
    --bg_blue: #185baf;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Rubik", sans-serif;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

.img::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #fff;
    transition: 1s;

}


@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.margin {
    margin: 70px 0;
}

.logo img {
    width: 250px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 999;
}

.navbar_n {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.search i {
    margin-right: 5px;
}

.search a {
    color: var(--white);
    background: var(--bg_blue);
    padding: 10px;
    border-radius: 50%;
}

.nab_bar {
    display: flex;
    justify-content: center;
}

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: #fff;
}

#myHeader.sticky .top_head {
    display: none;
}

#myHeader.sticky .top_logo {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 32%;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
}

.nab_bar li a {
    color: var(--white);
    padding: 18px 20px;
    display: inline-block;
    font-size: 16px;
}

.nab_bar li {
    position: relative;
    z-index: 9;
}


nav {
    position: relative;
    background-color: var(--bg_color);
}

.top_icon {
    border: 1.5px solid #bd231a;
    padding: 8px 12px;
    border-radius: 50%;
}

.t_details span {
    display: block;
    font-size: 12px;
    color: #898989;
}


.main_banner {
    position: relative;
}


.droupdown {
    position: absolute;
    background-color: #000;
    border-top: 2px solid var(--bg_color);
    padding: 10px 0;
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 490px;
    overflow: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.droupdown li {
    padding: 0;
}

.droupdown li a {
    display: block;
    padding: 8px 15px;
    color: var(--white);
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.banner_text {
    color: var(--white);
    z-index: 99;
    position: relative;
}


.nav_contact i {
    background-color: var(--bg_color);
    padding: 12px;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 5px;
    color: var(--white);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner_pera {
    margin: 15px 0;
}

.head_item img {
    width: 100%;
}


/* Search Style */
#search {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;

}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
    top: 0
}

.form_box {
    margin: auto;
    width: 60%;
    display: flex;
    padding-top: 10%;
    justify-content: center;
}

.form_box input {
    width: 100%;
    padding: 12px;
    border-radius: 5px 0px 0px 5px;
    border: none;
    outline: none;
}

.form_box button {
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 20px;
    color: var(--black);
    cursor: pointer;
    background-color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
}


.head_banner .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    left: 40%;
    position: absolute;
    bottom: 20px;
    gap: 8px;
}

.head_banner .slick-dots li button {
    border-radius: 7px;
    background-color: var(--white);
    font-size: 0;
    padding: 4px 10px;
    margin: 2px 0;
    border: none;
}

.head_banner .slick-dots li.slick-active button {
    background-color: var(--white);
    border-radius: 7px;
    padding: 4px 20px;
}

.head_banner {
    background-size: cover;
    background-position: center center;
}

/* Search Style */
.top_details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top_details ul {
    display: flex;
    margin-bottom: 0;
    gap: 5px 20px;
}


.top_details a,
.top_details i {
    color: var(--black);
}

.top_details .socal_media a {
    border: 1.5px solid #bd231a;
    padding: 8px 12px;
    border-radius: 50%;
}

.socal_media {
    display: flex;
    gap: 5px 15px;
}

.all_btn {
    background-color: var(--bg_blue);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--white);
    position: relative;
    border: none;
    overflow: hidden;
    display: inline-block;
}

.all_btn::after {
    content: "";
    width: 0%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    transition: ease-in-out .5s;
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn:hover::after {
    width: 100%;
}

.ab_img {
    width: 45%;
    float: left;
    padding-right: 80px;
    margin-right: 40px;
    position: relative;
}

.main_head {
    padding: 0 15%;
}

.small_head {
    display: inline-flex;
    border-style: solid;
    border-width: 1px;
    border-color: var(--bg_blue);
    padding: 3px 20px;
    color: var(--bg_color);
    border-left: none;
    border-right: none;
    font-size: 18px;
}

.big_head {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Courgette", cursive;
}

.ab_text {
    text-align: left;
}

.ab_home {
    background-repeat: no-repeat;
    background-position: right bottom;
}

.ab_img .img-2 {
    position: absolute;
    top: 20%;
    right: 0;
    border: 5px solid #fff;
    border-radius: 5px;
    animation: up-down linear 6s;
    animation-iteration-count: infinite;
}

.ab_img .img-1 img {
    width: 100%;
    border-radius: 5px;
}

.img-line {
    position: absolute;
    right: 6%;
    bottom: 2%;
    z-index: -1;
}

@keyframes up-down {
    0% {
        top: 20%;
    }

    50% {
        top: 30%;
    }

    100% {
        top: 20%;
    }
}

.ab_img::after {
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 5%;
    top: 10%;
    border: 8px solid var(--bg_color);
    z-index: -1;
}

.sld-wrp {
    background-color: var(--white);
    padding: 50px;
    text-align: left;
    margin-top: 35px;
    border-radius: 5px;
}

.product {
    background-color: #000;
    padding: 120px 0;
    background-position: center top;
    background-size: cover;
}

.slider-nav img {
    width: 45px;
}

.slide-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #cecece;
    padding: 20px;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.pro_item {
    position: relative;
}

.slide-btn::after {
    content: "";
    width: 7px;
    height: 90%;
    position: absolute;
    left: 100%;
    top: 5%;
    background-color: var(--bg_color);
}

.pro_item.slick-slide.slick-current.slick-active .slide-btn::after {
    content: "";
    width: 35px;
    height: 90%;
    position: absolute;
    left: 100%;
    top: 5%;
    background-color: var(--bg_color);
    clip-path: polygon(12% 0, 100% 50%, 12% 100%, 0 100%, 0 0);
}

.pro_item {
    padding-right: 62px;
    margin: 8px 0;
}

.pro_item {
    padding-right: 50px;
}

.pro_text .pro_head {
    font-size: 30px;
    font-weight: 600;
    color: var(--bg_color);
}

.slider-for .img img {
    height: 100%;
}

.pro_text .pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

.product .big_head {
    color: var(--white);
}

.product .small_head {
    color: var(--white);
}

.providing {
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.providing_box {
    padding: 70px 0 0;
    background-color: #000000c7;
    position: relative;
}

.providing_text {
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    border-left: 8px solid var(--bg_color);
    padding-left: 20px;
}

.bg_line {
    position: absolute;
    right: 0;
    top: 0;
}

.providing .img {
    padding: 0 96px;
}

.providing .img img {
    animation: left_right linear 5s;
    animation-iteration-count: infinite;
}


@keyframes left_right {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(50px);
    }

    100% {
        transform: translateX(0);
    }
}

.why_img .img_1,
.why_img .img_2 {
    padding: 10px;
    border: 2px solid var(--bg_blue);
    margin: 8px;
}

.why_img .img_1 {
    margin-top: 100px;
}

.why_choose .icon img {
    width: 130px;
}

.why_choose ul li span {
    display: block;
    font-size: 23px;
    font-weight: 600;
}

.why_choose ul li {
    margin: 15px 0;
}

.pro_slider_item {
    position: relative;
    margin: 8px;
    padding-bottom: 60px;
    text-align: left;
}

.pro_slider_item img {
    height: 500px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}

.pro_slider_text {
    width: 85%;
    position: absolute;
    bottom: 0px;
    left: 0;
    background-color: var(--bg_blue);
    z-index: 9;
    color: var(--white);
    padding: 20px;
    border-radius: 0 20px 20px 20px;
    transition: ease-in-out .5s;
}

.pro_slider_text a {
    color: var(--white);
}

.pro_slider_text span {
    font-size: 22px;
    display: block;
}

.pro_slider_text .pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro_slider_item:hover .pro_slider_text {
    background-color: var(--bg_color);
}

.product_sl {
    background-position: center center;
}

.pro_bg {
    background-color: #000000b9;
    padding: 80px 0;
}

.img_map img {
    height: 489px;
    width: 100%;
    object-fit: contain;
}

.video video {
    /* height: 500px; */
    width: 100%;
    object-fit: cover;
}

.test_item .img img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    margin: auto;
    border: 1px solid var(--bg_color);
    position: relative;
    z-index: 9;
    padding: 5px;
}

.test_box {
    background-color: var(--bg_blue);
    padding: 25px 30px;
    padding-top: 50px;
    color: var(--white);
    border-radius: 0 120px 0 120px;
}

.test_box .name {
    display: block;
    font-size: 22px;
}

.test_line {
    border: 1px solid var(--bg_color);
    border-radius: 0 120px 0 120px;
    padding: 10px;
    margin: 0 10px;
    margin-top: -50px;
    position: relative;
}

.stars {
    position: absolute;
    left: 35%;
    background-color: var(--bg_color);
    bottom: -20px;
    padding: 8px 25px;
    border-radius: 0 50px 0 50px;
}

.test_item {
    margin: 20px 0px;
    position: relative;
}

.test_item::after {
    content: "";
    width: 100%;
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
}

.contact form input,
textarea,
select {
    width: 100%;
    padding: 15px;
    margin: 8px 0;
    border: none;
    outline: none;
    background-color: #f6f6f6;
    font-size: 14px;
}

.contact_box {
    background-color: #f6f6f6;
    margin: 10px 0;
    padding: 30px 35px;
    position: relative;
}

.contact_box a {
    display: block;
    color: #747474;
    font-size: 18px;
    margin: 7px 0;
}

.contact_box a:hover {
    color: var(--bg_color);
}

.contact_box span {
    display: block;
    font-weight: 600;
    font-size: 17px;
}

.contact_box p {
    color: #747474;
    margin-bottom: 0;
    margin-top: 5px;
}

.contact_box i {
    position: absolute;
    right: 8%;
    top: 7%;
    color: #d3d1d1;
    font-size: 50px;
}

.contact {
    background-repeat: no-repeat;
    background-position: bottom right;
}

.bg-mountain {
    width: 100%;
}

.truck {
    position: relative;
    overflow: hidden;
}

.truck_img {
    position: absolute;
    bottom: 12%;
    z-index: 9;
    right: 0;
    animation: left_right2 linear 15s;
    animation-iteration-count: infinite;
    width: 550px;
}


@keyframes left_right2 {
    0% {
        left: 100%;
    }

    /* 50% {
        left: 70%;
    } */

    100% {
        left: -50%;
    }

}


footer {
    background-position: center;
}

.foot_bg {
    padding-top: 60px;
    color: var(--white);
    background-color: #0000005b;
}

.foot_logo img {
    width: 210px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
}

.foot_logo p {
    font-size: 14px;
}

.foot_head {
    font-size: 24px;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.foot_nav ul li a {
    color: var(--white);
}

.foot_nav ul li i {
    margin-right: 7px;
    color: var(--bg_color);
}

.foot_nav ul li {
    margin: 14px 0;
    font-size: 15px;
}

.foot_nav ul {
    max-height: 250px;
    overflow: auto;
}

.foot_contact ul li a {
    color: var(--white);
}

.foot_contact ul li i {
    margin-right: 8px;
    color: var(--bg_color);
}

.foot_contact ul li {
    margin: 12px 0;
    font-size: 14px;
}

.foot_contact .socal_media {
    gap: 8px;
    margin-top: 15px;
}

.foot_contact .socal_media a {
    background-color: var(--bg_color);
    padding: 5px 10px;
    border-radius: 50%;
    color: var(--white);
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #2e4e74;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}














.ab_text h2,
.ab_text h3 {
    font-size: 25px;
}


.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: var(--black);
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.ab_item {
    width: 47%;
    float: left;
    margin-right: 40px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;

}

.inner_header {
    position: relative;
}

.inner_header img {
    height: 330px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background: #000000e6;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 60%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 35px;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.brade_crom {
    display: flex;
}

.brade_crom a {
    color: #fff;
}

.brade_crom span {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}


.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}






@media only screen and (max-width: 1024px) {
    .nab_bar li a {
        padding: 27px 10px
    }
}

@media only screen and (max-width: 991px) {
    .header-contact .all_btn {
        display: none;
    }

    .nab_bar li a {
        font-size: 15px;
    }

    .ab_img {
        width: 58%;
    }

    .ab_img .img-2 img {
        width: 150px;
    }

    .main_head {
        padding: 0 0%;
    }

    .slide-btn {
        font-size: 16px;
        padding: 15px;
    }

    .sld-wrp {
        padding: 5px;
    }

    .slider-nav {
        margin-bottom: 15px;
    }

    .pro_item.slick-slide.slick-current.slick-active .slide-btn::after {
        width: 100%;
        height: 40px;
        left: 0%;
        top: 100%;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
    }

    .providing_text {
        font-size: 30px;
    }

    .providing .img {
        padding: 0 60px;
    }

    .truck_img {
        width: 250px;
    }
}


@media only screen and (max-width: 800px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
        margin: 0 0 0 auto;
    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: var(--white);
        margin: 3px 0;
    }

    .toggle.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle.active .line2 {
        opacity: 0;
    }

    .toggle.active .line3 {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .nab_bar {
        position: absolute;
        flex-direction: column;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: var(--white);
        z-index: 9999;
        display: none;
    }


    .nab_bar li {
        border-bottom: 1px solid #e2e2e2;
    }

    .nab_bar li a {
        color: #000;
        padding: 10px 25px;
        display: block;
    }

    .droupdown {
        position: revert;
        width: 100%;
        background-color: var(--bg_color);
        height: 300px !important;
        overflow: auto;
    }

    .clk_btn {
        position: absolute;
        right: 0;
        top: 0;
        color: var(--white);
        cursor: pointer;
        width: 47px;
        height: 46px;
        line-height: 37px;
        background: #000;
        text-align: center;
    }

    .droupdown li {
        padding: 0 !important;
    }

    .droupdown li a {
        color: #fff;
    }



    .col-md-4.top_call.text-center {
        display: none;
    }



    .inner_hrad {
        font-size: 25px;
    }

    .inner_header img {
        height: 200px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 50%;
    }


}

@media only screen and (max-width: 767px) {
    .logo_head {
        position: relative;
    }

    .ab_img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .small_head {
        font-size: 16px;
        padding: 3px 10px;
    }

    .big_head {
        font-size: 25px;
    }

    .product {
        padding: 60px 0;
    }

    .pro_item {
        padding-right: 10px;
    }

    .margin {
        margin: 30px 0;
    }

    footer {
        background-size: cover;
    }

    .ab_item {
        width: 100%;
        margin-right: 00px;
    }

    .top_details ul {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .pro_text .pro_head {
        font-size: 20px;
        margin-top: 15px;
        display: block;
    }

    .sld-wrp {
        margin: 0 3px;
    }

    .providing_text {
        position: relative;
        z-index: 9;
        margin-bottom: 10px;
    }

    .top_details {
        justify-content: center;
    }

    .top_details a {
        font-size: 13px;
    }

    .big_head {
        font-size: 20px;
    }

    .pro_slider_item img {
        height: 380px;
    }

    .providing .img {
        padding: 0 32px;
    }

    .providing_text {
        font-size: 24px;
    }

    .providing_box {
        padding: 40px 0;
    }

    .inner_header img {
        height: 174px;
    }

    .truck_img {
        width: 150px;
    }
}