* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #ffcc00;
    --white: #fff;
    --black: #000;
}

body {
    overflow-x: hidden;
    font-family: "Nunito", sans-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;
}

.margin {
    margin: 70px 0;
}



.top_call i,
.top_ccontact i {
    background-color: var(--bg_color);
    margin-right: 8px;
    border-radius: 50%;
}

.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: 150px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 99;
}

.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);
    padding-bottom: 5px;
}

#myHeader.sticky .discount {
    display: none;
}



@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 20px;
    display: inline-block;
}

.nab_bar li {
    position: relative;
}


nav {
    position: relative;
    z-index: 9;
}


.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(--bg_color);
    color: var(--black);
}

.banner_small_head {
    color: var(--white);
    font-size: 20px;
}

header .slick-slide.slick-current.slick-active .banner-top-title {
    animation: 2s linear 0s alternate headerline;
}

header .slick-slide.slick-current.slick-active .banner_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%;
}


/* 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 */

.top_head {
    background-color: var(--black);
    padding: 8px 0;
    position: relative;
}

.top_head::before {
    content: "";
    width: 35%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    border-radius: 0 50px 0 0;
}

.socal_media {
    display: flex;
    gap: 10px;
    color: var(--black);
    align-items: center;
    position: relative;
    z-index: 99;
}

.socal_media a {
    background-color: var(--black);
    border-radius: 50%;
    color: var(--white);
    padding: 5px 10px;
}

.socal_media span {
    font-weight: 600;
}


.top_details ul {
    display: flex;
    justify-content: end;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 20px;
}

.top_details ul li a {
    color: var(--white);
    font-weight: 600;
}

.top_details ul li a i {
    margin-right: 5px;
}

header {
    position: relative;
    padding: 60px 0;
}

header:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #0a194a;
    opacity: .9;
}

.head_banner {
    z-index: 9;
}


.banner-top-title {
    background-color: var(--white);
    display: inline;
    padding: 5px 20px;
    position: relative;
    margin-bottom: 18px;
    font-size: 16 px;
    font-weight: 600;
    color: var(--black);
}

.banner-top-title::after {
    content: "";
    width: 55%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bg_color);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.banner-top-title span {
    padding: 5px;
    position: relative;
    z-index: 9;
    margin-left: 15px;
}

.banner_text {
    color: var(--white);
}

.banner_head {
    display: block;
    font-size: 60px;
    margin-top: 20px;
    font-weight: 900;
}

.banner_head samp {
    color: var(--bg_color);
    font-weight: 900;
}


.all_btn {
    background-color: var(--bg_color);
    padding: 16px 30px;
    color: var(--black);
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    background-color: #0a194a;
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0;
}

.all_btn:hover {
    color: var(--white);
}


.card_item {
    position: relative;
    padding: 20px 20px 20px 100px;
    background-color: #0a194a;
    color: var(--white);
    border-radius: 10px;
    height: 300px;
}

.card_item img {
    width: 42px;
}

.card_item .icon {
    background-color: var(--bg_color);
    position: absolute;
    left: 10px;
    padding: 18px;
    border-radius: 50%;
}

.card_item span {
    font-size: 22px;
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.ab_home {
    display: flex;
}

.ab_img {
    width: 50%;
    float: left;
    padding-right: 100px;
    position: relative;
    margin-right: 30px;
    margin-bottom: 20px;
}

.ab_img .img-2 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    max-width: 250px;
    overflow: hidden;
}

.ab_img .img-2 {
    border-radius: 100px;
    border: 20px solid var(--white);
}

.ab_img .img-1 img {
    border-radius: 100px;
}

.small_head {
    font-size: 22px;
    color: var(--bg_color);
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.small_head i {
    margin-right: 5px;
}

.big_head {
    font-size: 40px;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
}

.pattern {
    position: absolute;
    left: -30px;
    bottom: -20px;
    z-index: -1;
}

.product {
    padding: 70px 0;
    background-color: #0a194a;
    color: var(--white);
}

.pro_item {
    position: relative;
    margin: 8px;
    padding-bottom: 30px;
}

.pro_name {
    color: var(--black);
    font-size: 20px;
    background-color: var(--bg_color);
    padding: 10px 20px;
    font-weight: 700;
    position: absolute;
    bottom: 0;
    left: 2%;
}

.pro_item img {
    height: 350px;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid #00000014;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.choose-icon {
    width: 70px;
    height: 70px;
    line-height: 65px;
    background: #0a194a;
    border-radius: 15px;
    text-align: center;
    font-size: 40px;
}

.choose-icon img {
    width: 50px;
    filter: brightness(0) invert(1);
}

.choose-item-content {
    flex: 1;
}

.choose-item-content span {
    color: #0a194a;
    display: block;
    font-weight: 700;
    font-size: 22px;
}

.why_img img {
    border-radius: 80px;
}

.why_img_2 {
    margin-top: 170px;
}

.why_img {
    position: relative;
}

.why_img::before {
    content: "";
    position: absolute;
    border: 10px solid var(--bg_color);
    width: 250px;
    height: 500px;
    border-radius: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}



.cta-area {
    padding-top: 80px;
    padding-bottom: 180px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-area::before {
    content: "";
    position: absolute;
    background: rgba(0, 40, 58, 0.569);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
    z-index: -1;
}

.cta-border-btn {
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
}

.cta-border-btn i {
    margin-right: 15px;
    color: var(--bg_color);
}



.counter {
    margin-top: -100px;
    position: relative;
    z-index: 99;
}

.count-area {
    background-color: #0a194a;
    padding: 50px 15px 50px 30px;
    border: 10px solid var(--white);
    border-radius: 100px;
}

.content {
    width: 50%;
    position: relative;
    z-index: 9;
    margin: 0 0 0 auto;
}


.count-area-content {
    display: flex;
    flex-wrap: wrap;
    align-items: anchor-center;
    gap: 24px;
    text-align: left;
}

.count-area {
    color: var(--white);
    background-position: center;
}

.num_item {
    font-size: 40px;
    font-weight: 800;
}

.count-title {
    font-size: 18px;
}

.count_img img {
    background-color: var(--bg_color);
    padding: 13px;
    width: 70px;
    border-radius: 10px;
}

.contact form {
    background-color: var(--white);
    padding: 40px;
}

.contact form input,
textarea,
select {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 0;
    padding: 15px 15px;
    margin-bottom: 15px;
    outline: none;
}

.contact form button {
    border: none;
}

.contact {
    background-color: #0a194a;
    padding: 80px 0;
    position: relative;
    background-position: right;
}

.appointment {
    display: block;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact_detail {
    color: var(--white);
    padding-left: 30px;
}

.contact_detail ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.contact_detail li:not(:last-child):after {
    position: absolute;
    content: "";
    width: 2px;
    height: 57%;
    left: 29px;
    top: 74px;
    background-color: var(--bg_color);
}

.contact_detail li .icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    font-size: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: var(--bg_color);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-right: 26px;
    margin-left: 8px;
    color: #0a194a;
}

.contact_detail li .icon:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: "";
    opacity: .2;
    -webkit-transform: scale(1.36);
    -ms-transform: scale(1.36);
    transform: scale(1.36);
    background-color: #ffcc00;
}

.content_num span {
    font-size: 22px;
    font-weight: 700;
    display: block;
}

.content_num a {
    color: var(--white);
}

.content_num a:hover {
    color: var(--bg_color);
}

.content_num p {
    font-size: 18px;
}

.contact_detail li:not(:last-child) {
    margin-bottom: 50px;
}

.testimonial-content {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 25px;
}

.testimonial-author-img {
    width: 75px;
    height: 75px;
    position: relative;
}

.testimonial-author-img::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50px;
    border-right: none;
}

.testimonial-author-img img {
    border-radius: 50%;
}


.test_item {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50px 50px 50px 0;
    padding: 30px;
    position: relative;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    text-align: left;
    margin: 10px;
    min-height: 337px;
}

.name {
    font-size: 20px;
    font-weight: 700;
    display: block;
}



footer {
    background-color: #0a194a;
    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;
    background-color: var(--white);
    padding: 5px;
    border-radius: 5px;
}

.foot_logo p {
    font-size: 14px;
}

.foor_nav ul {
    height: 220px;
    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;
}















.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: 350px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background-color: #0a194abd;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 50%;
    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;
    }
}








@media only screen and (max-width: 992px) {
    .top_search .all_btn {
        display: none;
    }

    .nab_bar li a {
        padding: 24px 15px;
    }

    .banner_head {
        font-size: 50px;
    }

    .ab_img .img-2 {
        max-width: 210px;
    }

    .ab_img {
        width: 65%;
    }
}



@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(--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%;
        background-color: #0a194a;
    }

    .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: 300px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 56%;
    }

}


@media only screen and (max-width: 767px) {
    .socal_media {
        justify-content: center;
    }

    .top_details {
        position: relative;
        z-index: 9;
    }

    .socal_media span {
        color: var(--white);
    }

    .ab_img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .big_head {
        font-size: 30px;
    }

    .count-area-content {
        margin-bottom: 20px;
    }

    .contact form {
        margin-bottom: 20px;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
    }
        .inner_header img {
            height: 250px;
        }
}

@media only screen and (max-width: 600px) {
    .count-area-content {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (max-width: 550px) {
    .banner_head {
        font-size: 40px;
    }

    .margin {
        margin: 30px 0;
    }

    .num_item {
        font-size: 30px;
    }

    .counter {
        margin-top: -100px;
    }

    .top_details {
        display: none;
    }

    .contact_detail {
        padding-left: 0;
    }
}

@media only screen and (max-width: 500px) {
    .ab_img .img-2 {
        max-width: 170px;
    }

    .content_num a {
        word-break: break-all;
    }
}