* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #bb2b2b;
    --bg_color_2: #212149;
    --white: #fff;
    --black: #000;
}

body {
    overflow-x: hidden;
    font-family: "Vollkorn", serif;
    position: relative;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

p {
    font-size: 15px;
    line-height: 28px;
    font-family: "Nunito", sans-serif;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}



.discount {
    background-color: var(--bg_color);
    color: var(--white);
    font-size: 15px;
}

.margin {
    margin: 70px 0;
}

.top_call a {
    color: var(--white);
    font-weight: bold;
}

.head_text {
    top: 15%;
    left: 5%;
}



.main_banner {
    width: 65%;
}

.logo img {
    width: 300px;
    position: relative;
    z-index: 9;
    background-color: #fff;
}


.search i {
    margin-right: 5px;
}

.search a {
    color: var(--black);
}

.nab_bar {
    display: flex;
    justify-content: center;
}

.navbar_n {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    z-index: 5;
    padding: 7px 10px;
    border-radius: 8px;
    justify-content: space-between;
    z-index: 999;
}

#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: var(--white);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .head_bg {
    display: none;
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 19px;
    color: var(--blackb);
    cursor: pointer;
    font-size: 13px;
}

.nab_bar li a {
    color: var(--black);
    padding: 15px 15px;
    display: inline-block;
}
.nab_bar li a:hover{
    color: var(--bg_color);
}

.nab_bar li {
    position: relative;
}

.droupdown {
    position: absolute;
    background-color: var(--bg_color_2);
    left: 0;
    top: 60px;
    width: 290px;
    display: none;
    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;
    color: var(--white);
    padding: 10px 15px;
    font-size: 14px;
}

.droupdown li a:hover {
    background-color: var(--white);
    color: var(--black);
}

.head_item {
    position: relative;
}

header img {
    border-radius: 8px;
}

.head_text {
    position: absolute;
}

.banner_bid_head {
    font-size: 45px;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 10px;
}

.banner_small_head {
    color: var(--white);
    font-size: 20px;
}

.split_slideshow .slick-slide.slick-current.slick-active .main_small_head {
    animation: 1.5s linear 0s alternate headerline;
}

.split_slideshow .slick-slide.slick-current.slick-active .main_head {
    animation: 2s linear 0s alternate headerline;
}

.split_slideshow .slick-slide.slick-current.slick-active p {
    animation: 3s linear 0s alternate headerline;
    transition-delay: .2s;
}

.split_slideshow .slick-slide.slick-current.slick-active .banner_btn {
    animation: 4s linear 0s alternate headerline;
    transition-delay: .2s;
}


@keyframes headerlineimg {

    0%,
    25% {
        transform: translateX(50%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes headerline {

    0%,
    25% {
        transform: scale(50%);
    }

    75%,
    100% {
        transform: scale(100%);
    }
}

.head_text {
    width: 55%;
}



.nab_bar_nab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}




/* 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;
}

/* Search Style */
.logo_head {
    position: relative;
    z-index: 99;
    padding: .5% .5% 0;
}

.all_nav {
    position: relative;
}


.socal_media a {
    padding: 0px 12px;
    color: var(--white);
    font-size: 13px;
    border-right: 1px solid #bbbbbb;
}
.socal_media a:hover{
    color: var(--bg_color);
}

.socal_media a:last-child {
    border: none;
}


.slideshow .slick-nav.next-arrow.slick-arrow {
    left: 0;
    right: auto;
}

.slideshow .slick-nav.prev-arrow.slick-arrow {
    right: 0;
    left: auto;
}

.head_bg {
    position: relative;
    background-color: var(--bg_color_2);
    padding: 8px;
    border-radius: 5px;
}


.head_con {
    display: flex;
    justify-content: space-between;
    color: var(--white);
    flex-wrap: wrap;
    gap: 0 50px;

}

.top_email {
    position: relative;
    z-index: 9;
    font-size: 14px;
}

.top_email img {
    width: 35px;
}

.gst {
    font-size: 16px;
    font-weight: 600;
}

.top_email i {
    margin-right: 5px;
    color: var(--Sky-blue);
}

.top_email a {
    color: #fff;
}
.top_email a:hover{
    color: var(--bg_color);
}

.head_num a {
    color: var(--bg_color);
    font-size: 22px;
}

.head_num span {
    color: var(--black);
    font-size: 13px;
    display: block;
}

.head_num i {
    margin-right: 5px;
    color: var(--black);
}
.in_about {
    width: 50%;
    float: left;
    padding-right: 15px;
}

.head_num {
    text-align: right;
}

.rew_item {
    align-items: start;
    gap: 15px;
    justify-content: center;
    border-right: 1px solid #adadad;
}

.rew_item p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 28px;
}

.rew_item img {
    width: 40px;
}

.rew_item span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: var(--bg_color);
}

.reward {
    margin: 40px 0;
}

.split_slideshow {
    padding: 0 .5%;
}

.banner_item img {
    border-radius: 7px;
}

.reward .col-lg-3:last-child .rew_item {
    border-right: none;
}

.main_img {
    width: 50%;
    float: left;
    position: relative;
    padding-right: 10%;
    margin-bottom: 45px;
}

.main_img .img-2 img {
    position: absolute;
    bottom: -50px;
    right: 2%;
    width: 400px;
}

.small_head {
    display: block;
    font-size: 20px;
    color: var(--bg_color);
    font-weight: 600;
}

.big_head {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pro_img {
    margin: 20px 0;
    text-align: left;
}

.pro_img .star {
    width: 80px;
}

.pro_img .img {
    background-color: #f1f1f1;
    padding: 30px 20px;
    border-radius: 8px;
}

.pro_head {
    display: block;
    font-size: 15px;
    margin: 8px 0;
    font-weight: 700;
    font-family: 'Nunito';
}

.pro_img a {
    color: var(--bg_color);
    font-weight: 600;
}

.pro_img a i {
    margin-left: 5px;
}

.count-digit {
    font-size: 50px;
    font-weight: 800;
}

.count-area-content {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    justify-content: center;
}

.count-area {
    padding: 30px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}

.num_item {
    font-size: 30px;
}

.count-title {
    font-weight: 600;
}

.energency_bg {
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 70px 20px;
    background-position: center;
}

.energency_text {
    color: #fff;
}

.energency_text span {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.energency_text p {
    font-size: 30px;
    margin: 15px 0;
    font-weight: 900;
}

.energency_text p a {
    color: #fff;
}

.all_btn {
    color: #fff;
    background-color: var(--bg_color);
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
}

.all_btn:hover {
    background-color: var(--bg_color_2);
    color: #fff;
}

.client_item {
    padding: 25px;
}

.clients .big_head {
    border-right: 1px solid #bbbbbb;
}

.pro_item {
    margin: 8px;
}

.products_s {
    padding: 0px .5%;
}

.pro_bg {
    background-color: var(--bg_color_2);
    border-radius: 8px;
    padding: 40px 0;
}

.products_s .pro_head {
    color: #fff;
}

.why_item img {
    width: 80px;
}

.why_head {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
    color: var(--bg_color);
    transition: .5s;
}

.why_item {
    text-align: left;
    padding: 20px;
    height: 373px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.why_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    background-color: var(--bg_color);
    z-index: -1;
    transition: ease-in-out .5s;
}

.why_item:hover::after {
    left: 0;
}

.why_item:hover .why_head,
.why_item:hover p {
    color: #fff;
}

.test_item {
    margin: 20px;
}

.test_bg {
    text-align: left;
    display: flex;
    gap: 20px;
}

.test_bg img {
    border-radius: 50%;
    width: 280px;
}
.ab_text ul li {
    position: relative;
    list-style: circle;
    margin: 8px 0;
}

.Name {
    display: block;
    font-weight: 600;
    margin-top: 10px;
    font-size: 18px;
    color: var(--bg_color);
}

.test_contant {
    position: relative;
}

.test_contant img {
    width: 50px;
    position: absolute;
    right: 0;
    bottom: -10px;
    transform: rotate(180deg);
}

.contact form input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    outline: none;
    border: none;
    border-radius: 5px;
}

.contact form {
    padding: 60px 10%;
    background-color: var(--bg_color_2);
    border-radius: 8px 8px 0 0;
}

.contact form button {
    width: 100%;
}

.contact form .big_head {
    color: #fff;
}

.con_bg {
    background-color: var(--bg_color_2);
    color: #fff;
    border-radius: 8px;
    padding: 50px 10px;
}

.contact_details {
    padding: 0 .5%;
    margin-bottom: 50px;
}

.what_num a {
    color: #fff;
    font-size: 35px;
}

.what_num a i {
    margin-right: 8px;
    font-size: 25px;
}

.con_adderss a {
    color: #fff;
    display: flex;
    word-wrap: break-word;
    gap: 10px;
    font-size: 16px;
}

.con_adderss {
    display: flex;
    gap: 10px;
    word-break: break-word;
    font-family: 'Nunito';
    margin: 10px 0;
    align-items: start;
    font-size: 15px;
}

.con_adderss i {
    background-color: var(--bg_color);
    padding: 9px;
    border-radius: 50%;
    font-size: 12px;
}

.what_num {
    border-right: 1px solid #989898;
}

.mati_item {
    margin: 5px;
    overflow: hidden;
    position: relative;
}

.mati_item img {
    border-radius: 5px;
    background-color: #f1f1f1;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mati_item:hover img {
    transform: scale(1.1);
}

.map {
    padding: 0 .5%;
}

.map iframe {
    border-radius: 8px;
}


footer {
    padding: 0 .5% 8px;
    font-family: 'Nunito';
}

.foot_bg {
    background-color: #000;
    padding: 60px 0 40px;
    border-radius: 8px;
    color: #fff;
}

.foot_socal{
    display: flex;
    border-bottom: 1px solid #434343;
    padding: 0px 0 20px;
    margin-bottom: 20px;
    gap: 6px;
}
.foot_socal a{
    background-color: #0c1719;
    border: 1px solid #434343;
    color: #fff;
    border-radius: 50px;
    padding: 6px 10px;
}
.foot_socal a:hover{
    color: var(--bg_color);
    border: 1px solid var(--bg_color);
}

.foot_logo img {
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    width: 200px;
}

.foot_logo p {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 25px;
}

.foot_head {
    font-size: 22px;
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
}

.foot_nav ul li a {
    color: #aaaaaa;
    padding: 5px 0;
    font-size: 14px;
    display: block;
}
.foot_nav ul li a:hover{
    color: var(--bg_color);
}

.foot_nav ul {
    height: 230px;
    overflow: auto;
}

.foot_location {
    background-color: #0c1719;
    border: 1px solid #434343;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 8px;
}

.foot_location a {
    color: #fff;
}

.lock_head {
    display: block;
    border-bottom: 1px solid #434343;
    padding-bottom: 20px;
    font-size: 18px;
    margin-bottom: 15px;
}

.foot_location p {
    margin-bottom: 0;
    font-size: 14px;
    color: #aaaaaa;
}

.lock_head i {
    margin-right: 15px;
}

.copyright-area {
    text-align: center;
    margin-top: 5px;
}

.copyright-area p {
    margin-bottom: 0;
    background-color: #1e1e1e;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
}

.copyright-area a {
    color: #fff;
    text-decoration: underline !important;
}














.ab_item {
    width: 50%;
    float: left;
    padding-right: 30px;
}

.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: #023153;
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;

}

.inner_header {
    position: relative;
    padding: 0 .5%;
}

.inner_header img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.inner_header::after {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.719) 32%, rgb(0 0 0 / 4%) 59%);
    position: absolute;
    left: .5%;
    top: 0;
    height: 100%;
    width: 99.5%;
    border-radius: 8px;
}

.inner_header .inner_text {
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 40px;
    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) {
    .logo img {
        width: 264px;
    }

    .head_num {
        display: none;
    }

    .nab_bar_nab {
        padding: 0 0px;
    }
}

@media only screen and (max-width: 991px) {
    .main_img {
        width: 60%;
    }
}

@media only screen and (max-width: 900px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: #000;
        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 #818181;
    }

    .nab_bar li a {
        color: #000;
    }

    .droupdown {
        position: revert;
        width: 100%;
    }

    .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;
    }

    .navbar_n {
        order: 3;
    }
    .nab_bar li a {
        padding: 11px 15px;
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .main_img {
        width: 100%;
    }

    .count-digit {
        font-size: 35px;
        font-weight: 800;
    }

    .count-area-content {
        margin: 15px 0;
    }

    .energency_text {
        margin: 40px 0;
    }

    .energency_bg {
        padding: 28px 17px;
    }
    .ab_item {
        width: 100%;
        padding-right: 0px;
    }
    .inner_header img{
        height: 230px;
    }
    .inner_hrad{
        font-size: 25px;
    }
    .in_about {
        width: 100%;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 600px) {
    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 18px;
    }

    .what_num {
        margin: 30px 0;
    }

    .what_num a {
        font-size: 23px;
    }

    .energency_text span {
        font-size: 23px;
    }

    .energency_text p {
        font-size: 22px;
    }

    .main_img {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 500px) {
    .test_bg {
        flex-direction: column;
    }

    .test_bg .img img {
        width: 100px;
    }

    .map iframe {
        height: auto !important;
    }

    .contact_details {
        margin-bottom: 20px;
    }

    .contact form {
        padding: 30px 6%;
    }

    .margin {
        margin: 40px 0;
    }

    .top_email_1 {
        display: none;
    }

    .head_con {
        justify-content: center;
    }

    .gst {
        margin-bottom: 10px;
    }

    .logo img {
        width: 200px;
    }

}