* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #7b4c9b;
    --white: #fff;
    --black: #000;
    --gray_black: #282c2f;
}

body {
    overflow-x: hidden;
    font-family: "Nunito", serif;
    position: relative;
    overflow-x: hidden;
}

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;

}

.img:hover::after {
    animation: mymove 1s;
    left: 0;
}

@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;
}


.discount {
    background-color: var(--gray_black);
    color: var(--white);
    font-size: 15px;
}

.margin {
    margin: 70px 0;
}

.top_ccontact a {
    color: var(--white);
    font-weight: bold;
}

.top_ccontact {
    display: flex;
    gap: 0 20px;
}

.head_text {
    top: 15%;
    left: 5%;
}

.cleaner {
    color: var(--bg_color);
}

.main_banner {
    width: 65%;
}



.logo img {
    width: 200px;
    position: relative;
    z-index: 9;
    margin-top: -40px;
}

.logo_head {
    position: relative;
}

.logo::after {
    content: "";
    width: 22%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -30px;
    background-color: var(--gray_black);
    transform: skew(-25deg);
    filter: drop-shadow(0px 10px 25px rgba(165, 165, 165, 0.3));
}



.search i {
    margin-right: 5px;
}

.search a {
    color: var(--black);
}

.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: var(--white);
}

#myHeader.sticky .discount {
    display: none;
}

#myHeader.sticky .logo img {
    margin-top: 0;
    width: 130px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 30%;
    color: var(--black);
    cursor: pointer;
}

.nab_bar li a {
    color: var(--black);
    padding: 24px 25px;
    display: inline-block;
}

.nab_bar li {
    position: relative;
}

.socal_media a {
    padding: 0px 12px;
    color: #fff;
    font-size: 13px;
    border-right: 1px solid #5b5b5b;
}

.socal_media a:last-child {
    border: none;
}

.droupdown {
    position: absolute;
    background-color: var(--white);
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 450px;
    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: 10px 15px;
}

.droupdown li a:hover {
    background-color: var(--gray_black);
    color: var(--white);
}

.head_item {
    position: relative;
}

.head_item img {
    width: 100%;
}

.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;
}

header .slick-slide.slick-current.slick-active .banner_small_head {
    animation: 1.5s linear 0s alternate headerline;
}

header .slick-slide.slick-current.slick-active .banner_bid_head {
    animation: 2s linear 0s alternate headerline;
}

header .slick-slide.slick-current.slick-active p {
    animation: 3s linear 0s alternate headerline;
    transition-delay: .2s;
}

header .slick-slide.slick-current.slick-active .banner_btn {
    animation: 4s linear 0s alternate headerline;
    transition-delay: .2s;
}

header .slick-slide.slick-current.slick-active img {
    animation: 4s linear 0s alternate headerimg;
    transition-delay: .2s;
}

@keyframes headerline {

    0%,
    25% {
        transform: translateY(-20%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.head_text {
    width: 55%;
}


.all_btn {
    background-color: var(--bg_color);
    padding: 15px 30px;
    border-radius: 4px;
    display: inline-block;
    color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    border: none;
}

.all_btn::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--black);
    transition: ease-in-out .5s;
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn:hover::after {
    width: 100%;
}


.card_item img {
    width: 50px;
}

.card_head {
    display: block;
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}

.card_item {
    overflow: hidden;
    padding: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    border-radius: 5px;
    text-align: left;
    height: 284px;
}

.card_item::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--gray_black);
    z-index: -1;
    transition: ease-in-out .5s;
}

.card_item:hover::after {
    width: 100%;
}

.card_item:hover {
    color: var(--white);
}

.small_head {
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.big_head {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}


.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro_text {
    padding: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: var(--white);
    margin-top: -30px;
    margin-left: 20px;
    z-index: 9;
    position: relative;
}

.pro_head {
    font-size: 20px;
    font-weight: 600;
    display: block;
    color: var(--gray_black);
}

.pro_item {
    margin: 10px;
    text-align: left;
}

.pro_text a {
    color: var(--gray_black);
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
}

.pro_text a i {
    font-size: 15px;
    margin-left: 10px;
}

.consider {
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.consider_item {
    display: flex;
    align-items: center;
    gap: 0 80px;
    flex-wrap: wrap;
}

.con_test {
    width: 45%;
    background-color: #e3e3e3;
    color: var(--black);
    padding: 30px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.con_test::after {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: 100%;
    top: 30%;
    background-color: #e3e3e3;
    clip-path: polygon(100% 50%, 0% 100%, 0 0);
}

.consider_box {
    padding: 0 12%;
    position: relative;
}

.consider_box::after {
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #000;
}

.con_img {
    width: 45%;
}

.con_img img {
    width: 250px;
}

.consider_item:nth-child(even) .con_test {
    order: 2;
}

.consider_item:nth-child(even) .con_test::after {
    left: auto;
    right: 100%;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}





.contact {
    position: relative;
    padding: 60px 0;
}

.contact form input,
.contact form select,
.contact form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px 20px;
    background-color: #f3f3f4;
    font-size: 14px;
    border: none;
    outline: none;
}
.popup-onload form input,
.popup-onload form select,
.popup-onload form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px 20px;
    background-color: #f3f3f4;
    font-size: 14px;
    border: none;
    outline: none;
}
.contact_box {
    background-color: var(--gray_black);
    padding: 30px 35px;
    color: #fff;
    margin-left: 30px;
}

.contact_box li {
    margin-bottom: 25px;
}

.contact_box li samp {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 5px;
    display: block;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.contact_box li a {
    color: #fff;
    display: block;
}

.socal_media a {
    color: #fff;
    font-size: 18px;
}

.socal_media {
    display: flex;
    gap: 12px;
}

.co_bg {
    position: absolute;
    left: 0;
    width: auto;
    z-index: -1;
    animation-name: rightToLeft;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


@keyframes rightToLeft {
    0% {
        transform: translateX(-50px)
    }

    50% {
        transform: translateX(-10px)
    }

    to {
        transform: translateX(-50px)
    }
}

.testimonial {
    background-color: var(--gray_black);
    padding: 60px 0;
}

.test_item {
    background-color: var(--white);
    padding: 30px;
    margin: 8px;
    border-radius: 5px;
    height: 280px;
}

.test_item img {
    width: 60px;
}

.test_item .name {
    font-size: 20px;
    display: block;
    color: var(--gray_black);
    font-weight: 600;
}

.test_line {
    color: var(--white);
}

.test_line .big_head {
    font-size: 35px;
}


.counter {
    background-position: center;
    background-size: cover;
}

.count_bg {
    padding: 60px 0 100px;
    background-color: #000000bb;
}

.count-digit {
    font-size: 40px;
    display: block;
    font-weight: 800;
    font-family: "Anton", sans-serif;
    letter-spacing: 3px;
}

.count-area-content {
    border-right: 1px solid #b3b3b3;
}

.count-area .col-lg-3:last-child .count-area-content {
    border: none;
}

.count_img {
    display: inline-block;
    color: #fff;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 62px;
    margin: 0 auto 6px;
    text-align: center;
    background-color: var(--bg_color);
}

.count-area-content img {
    transition: ease-in-out .5s;
}

.num_item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    margin: 10px 0;
    color: var(--white);
}

.count-area-content:hover img {
    transform: rotateY(360deg);
}

.count-title {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
}


.do_head{
    text-align: center;
    display: block;
    background-color: var(--bg_color);
    color: var(--white);
    padding: 8px;
    font-size: 20px;
    margin-bottom: 10px;
}
.do ul{
    padding-left: 20px;
}
.do{
    border: 1px solid #000;
    padding: 15px;
    height: 400px;
}
.do ul li{
    list-style: circle;
    margin: 10px 0;
    font-weight: 600;
}

footer {
    background-color: var(--gray_black);
    color: var(--white);
    padding-top: 60px;
}

.foot_head {
    font-size: 25px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.foor_nav ul li a {
    color: var(--white);
    display: block;
    padding: 6px 0;
}

.foot_logo img {
    width: 150px;
    margin-bottom: 10px;
}

.foot_logo p {
    font-size: 14px;
}

.foor_nav ul {
    height: 250px;
    overflow: auto;
}

.foot_contact ul li a {
    color: var(--white);
}

.foot_contact ul li {
    margin: 20px 0;
    font-size: 15px;
}

.foot_contact ul li i {
    margin-right: 10px;
}


.copyright {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #383838;
}

.copyright p {
    margin-bottom: 0;
    padding: 10px;
    color: #fff;
}

.copyright p a {
    color: var(--white);
    text-decoration: underline !important;
}











.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: var(--gray_black);
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.ab_item {
    width: 50%;
    float: left;
    margin-right: 20px;
}

.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: 350px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.719) 32%, rgb(0 0 0 / 4%) 59%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 45%;
    z-index: 99;
    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;
    }
}




#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter:alpha(opacity=70);
    -moz-opacity:0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    z-index: 100;
    display: none;
}
.cnt223 a{
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #7b4c9b;
    padding: 9px 12px;
    color:#fff;
}
.popup-onload{
    width: 100%;
    margin: 0 auto;
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    background: #00000069;
    height: 100%;
}
.cnt223{
    max-width: 600px;
    margin: 100px auto;
    background: #fff;
    position: relative;
    z-index: 103;
    padding: 15px 35px;
    border-radius: 5px;
    box-shadow: 0 2px 5px #000;
}
.cnt223 p{
    clear: both;
    color: #555555;
    /* text-align: justify; */
    font-size: 20px;
    font-family: sans-serif;
}
.cnt223 p a{
    color: #d91900;
    font-weight: bold;
}
.cnt223 .x{
    float: right;
    height: 35px;
    left: 22px;
    position: relative;
    top: -25px;
    width: 34px;
}
.cnt223 .x:hover{
    cursor: pointer;
}
.cnt223 .big_head{
    font-size:25px;
}









@media only screen and (max-width: 991px) {
    .top_ccontact a:first-child {
        display: none;
    }

    .top_search {
        display: none;
    }

    .logo img {
        width: 150px;
    }

    .logo::after {
        width: 25%;
    }

    .con_test {
        width: 43%;
    }

    .con_img {
        width: 40%;
    }

    .consider_box {
        padding: 0 0;
    }
}


@media only screen and (max-width: 767px) {
    .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(--black);
        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%;
    }

    .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: #000;
    }

    .top_btn {
        display: none;
    }

    .col-md-4.top_call.text-center {
        display: none;
    }

    .progress_box {
        margin-top: 0;
    }



    .inner_hrad {
        font-size: 25px;
    }

    .inner_header img {
        height: 225px;
    }

    .top_search {
        display: none;
    }

}



@media only screen and (max-width: 767px) {
    .top_ccontact {
        justify-content: end;
        display: none;
    }

    .top_call .socal_media {
        justify-content: end;
    }
    .logo img {
    margin-top: 0px;
}
}



@media only screen and (max-width: 600px) {
    .socal_media a {
        font-size: 14px;
    }

    .socal_media {
        gap: 5px;
    }

    .logo::after {
        width: 40%;
    }

    .big_head {
        font-size: 26px;
    }

    .margin {
        margin: 37px 0;
    }

    .test_line .big_head {
        font-size: 24px;
    }

    .count-area-content {
        margin-top: 30px;
    }

    .contact_box {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
    .cnt223 {
        max-width: 100%;
    }
    .popup-onload form input, .popup-onload form select, .popup-onload form textarea {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px 16px;
        background-color: #f3f3f4;
        font-size: 14px;
        border: none;
        outline: none;
    }
}


@media only screen and (max-width: 550px) {
    .con_test {
        width: 93%;
        margin: 0 0 0 auto;
    }

    .consider_item:nth-child(even) .con_test {
        order: 1;
    }

    .consider_item:nth-child(even) .con_img {
        order: 2;
    }

    .consider_box::after {
        left: 0;
    }

    .consider_item:nth-child(odd) .con_test::after {
        left: auto;
        right: 100%;
        clip-path: polygon(0 50%, 100% 100%, 100% 0);
    }
    
}