* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #002b44;
    --white: #fff;
    --black: #000;
}

body {
    overflow-x: hidden;
    font-family: "Nunito", serif;
    position: relative;
    overflow-x: hidden;
}

img {
    width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

span {
    display: block;
}

.discount {
    background-color: var(--bg_color);
    color: var(--white);
    font-size: 15px;
}

.margin {
    margin: 60px 0;
}

.top_call a {
    color: var(--white);
    font-weight: bold;
}

.head_text {
    top: 15%;
    left: 5%;
}

.cleaner {
    color: var(--bg_color);
}

.main_banner {
    width: 65%;
}

.navbar_n {
    position: relative;
}

.logo img {
    width: 140px;
}

.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);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 10px;
    color: var(--black);
    cursor: pointer;
}

.nab_bar li a {
    color: var(--black);
    padding: 10px 20px;
    display: inline-block;
}

.nab_bar li {
    position: relative;
}

.droupdown {
    position: absolute;
    background-color: var(--white);
    left: 0;
    top: 60px;
    width: 290px;
    display: none;
    max-height: 300px;
    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;
}
.droupdown li a:hover{
    background-color: var(--bg_color);
    color: var(--white);
}

.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;
}

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%;
}

.banner_btn .all_btn {
    background-color: var(--white);
    color: var(--black);
}

.all_btn {
    background-color: var(--bg_color);
    padding: 10px 30px;
    border-radius: 4px;
    display: inline-block;
    color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.all_btn i {
    margin-left: 5px;
    transform: rotate(-30deg);
    transition: ease-in-out .3s;
}

.all_btn:hover i {
    transform: rotate(0deg);
}

.cleaner {
    font-size: 25px;
    font-weight: bold;
    margin: 10px 0;
}

.discover {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
}





/* 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 */


.small_head {
    font-size: 20px;
    font-weight: bold;
    color: var(--bg_color);
}

.big_head {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 15px;
}

.category_item {
    margin: 8px;
}

.category_item a {
    color: var(--black);
    font-weight: 600;
}

.category_item img {
    background-color: #f4f6f8;
    object-fit: contain;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.hot_text {
    position: absolute;
    top: 8%;
    width: 100%;
    color: var(--white);
    padding: 10px 20px;
}

.hot_small_head {
    font-size: 18px;
}

.hot_big_head {
    font-size: 30px;
    font-weight: bold;
}

.hot_text a {
    color: var(--white);
    text-decoration: underline;
    font-size: 15px;
    font-weight: 600;
}

.hot_text a i {
    font-size: 14px;
    margin-right: 8px;
}

.ab_item {
    position: relative;
    float: left;
    width: 40%;
    padding: 30px;
    margin-right: 30px;
}

.ab_bg {
    position: absolute;
    top: 0;
    z-index: -1;
    width: auto;
}

.ab_home {
    display: flex;
}

.ab_item:after {
    content: '';
    display: block;
    position: absolute;
    left: 10%;
    right: 0;
    top: 10%;
    right: 0px;
    bottom: 0px;
    background-image: url(../img/ab-bg.webp);
    background-repeat: repeat;
    z-index: -1;
}

.ab_item::before {
    content: "";
    width: 90%;
    height: 90%;
    position: absolute;
    left: 0;
    top: 0;
    border: 8px solid var(--bg_color);
}

.pro_item {
    margin: 8px;
}

.pro_item img {
    border-radius: 8px;
    margin-bottom: 8px;
}

.pro_item a {
    color: var(--black);
}

.pro_item span {
    font-weight: bold;
    font-size: 16px;
}

.product {
    background-color: #f4f6f8;
}

.pro_right img {
    height: 500px;
    object-fit: cover;
}

.werk_bg {
    padding: 80px 0 100px;
    color: var(--white);
    background-color: #000000ab;
}

.werk_bg .small_head {
    color: var(--white);
}

.werk_bg .big_head {
    color: var(--white);
}

.werk_btn a {
    background-color: var(--white);
    color: var(--black);
}

.nsectetur ul {
    padding-left: 0;
}

.nsectetur .nsec li {
    margin: 10px 0;
}


/* #Progress
    ================================================== */

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px #0000004a;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.3);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: rgb(0, 0, 0);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap i {
    position: absolute;
    left: 37%;
    top: 32%;
}


/* #Progress
    ================================================== */





.progress-bar {
    margin: 25px 0 10px;
    overflow: hidden;
    text-align: left;
    display: flex;
}

.progress-title-holder {
    padding-bottom: 7px;
    position: relative;
    margin: 5px 0;
    font-family: Montserrat, sans-serif;
    font-size: 2e;
    line-height: 15px;
    font-weight: 400;
    color: #2e2e2e;
}

.progress-title {
    z-index: 100;
    font-weight: bold;
    font-size: 16px;
    float: left;
}

.progress-number-wrapper {
    width: 100%;
    z-index: 10;
}

.progress-number-mark {
    margin-bottom: 4px;
    border-radius: 3px;
    background-color: var(--bg_color);
    padding: 0 8px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.progress-number-wrapper,
.progress-number-mark {
    font-size: 11px;
    line-height: 24px;
    height: 24px;
    letter-spacing: 0px;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
    color: var(--white);
}

.down-arrow {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid var(--bg_color);
    position: absolute;
    left: 50%;
    top: 100%;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.progress-content-outter {
    height: 8px;
    background-color: #E1E1E0;
}

.progress-content {
    height: 21px;
    background-color: var(--bg_color);
    width: 0%;
}

.wrapper {
    text-align: left;
}

.progress_box {
    padding: 60px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    z-index: 3;
    margin-top: -200px;
    background-color: var(--white);
}

.progress_text {
    font-size: 18px;
    line-height: 33px;
    margin-bottom: 20px;
}

.always_text {
    background-color: #eeeeee;
    padding: 20px;
    margin: 30px 0;
    font-size: 18px;
    font-weight: bold;
}

.you_tube a {
    background-color: var(--white);
    color: var(--black);
    width: 100px;
    height: 100px;
    justify-content: center;
    font-size: 40px;
    display: flex;
    align-items: center;
    animation-timing-function: ease-in-out;
    position: relative;
    z-index: 9;
    border-radius: 50%;
}

.you_tube {
    width: 100px;
    height: 100px;
    margin: auto;
    position: relative;
    background-color: var(--white);
    border-radius: 50%;
}

.you_tube::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--white);
    animation-duration: 2s;
    animation-name: ctaPulse;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    border-radius: 50%;
}

.you_tube::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--white);
    animation-duration: 2.5s;
    animation-name: ctaPulse;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    border-radius: 50%;
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        opacity: .9;
    }

    10% {
        transform: scale(1);
        opacity: .8;
    }

    20% {
        transform: scale(1.2);
        opacity: .7;
    }

    30% {
        transform: scale(1.2);
        opacity: .6;
    }

    40% {
        transform: scale(1.3);
        opacity: .8;
    }

    60% {
        transform: scale(1.4);
        opacity: .6;
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

.ct-counter-inner {
    box-shadow: 0 5px 20px #66666630;
    padding: 30px 65px 35px 25px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin: 15px 0;
    background-color: var(--white);
}

.ct-counter-icon {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 60px;
}

.inner-icon i {
    color: var(--white);
    position: relative;
    z-index: 9;
}

.inner-icon {
    position: absolute;
    right: -43px;
    font-size: 26px;
    top: 11px;
}

.ct-counter-icon:before {
    content: "";
    width: 100px;
    height: 100px;
    left: 0;
    position: absolute;
    background-color: #002b445d;
    left: -13px;
    top: -13px;
    border-radius: 50% 0 50% 50%;
}

.ct-counter-icon:after {
    content: "";
    width: 80px;
    height: 80px;
    position: absolute;
    background-color: var(--bg_color);
    top: -5px;
    border-radius: 50% 0 50% 50%;
    left: -2px;
}

.ct-counter-inner span {
    font-size: 35px;
    font-weight: bold;
}

.ct-counter-inner p {
    margin-bottom: 0;
    font-size: 18px;
}

.testmontal {
    padding: 70px 0;
    background-position: right;
}

.test_m {
    width: 90px;
    border-radius: 50%;
    border: 2px dotted #000;
    padding: 5px;
    display: inline-block !important;
    margin-right: 10px;
}

.name {
    font-size: 18px;
    font-weight: bold;
}

.name_box {
    display: inline-block;
    vertical-align: middle;
}

.test_item {
    position: relative;
    padding: 30px 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px #66666630;
    margin: 8px 10px;
}

.coma {
    position: absolute;
    width: 50px;
    right: 20px;
    top: 20px;
}

.test_slider .slick-dots {
    flex-direction: column;
    margin: 0;
    position: absolute;
    top: 13px;
    left: -15px;
}

.test_slider .slick-dots li button {
    border-radius: 7px;
    background-color: #676767;
    font-size: 0;
    padding: 10px 4px;
    margin: 2px 0;
    border: none;
}

.test_slider {
    padding-left: 5%;
}


.test_slider .slick-dots li.slick-active button {
    background-color: var(--bg_color);
    border-radius: 7px;
    padding: 18px 4px;
}

.client_item {
    padding: 10px;
}

.client_item img {
    height: 100px;
    object-fit: contain;
}

.what_item {
    text-align: center;
    padding: 30px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.what_item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    transition: ease-in-out .5s;
    z-index: -1;
}

.what_item:hover::after {
    height: 100%;
}

.what_item:hover .what_head,
.what_item:hover p {
    color: var(--white);
}

.what_item img {
    width: 60px;
    margin-bottom: 15px;
}

.what_item p {
    transition: ease-in-out .5s;
}

.what_head {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
    color: var(--bg_color);
    transition: ease-in-out .5s;
}

.input_box input,
select,
textarea {
    width: 100%;
    padding: 10px;
    outline: none;
    border-radius: 2px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.input_box {
    margin-bottom: 15px;
}

.contact_us form {
    background-color: var(--bg_color);
    padding: 50px;
    border-radius: 5px;
}

.input_box .all_btn {
    border: none;
    background-color: var(--white);
    color: var(--bg_color);
}

.contact_box ul {
    margin-top: 10px;
}

.contact_box ul li {
    color: var(--bg_color);
    margin: 10px 0;
    display: flex;
    align-items: baseline;
    font-size: 16px;
    font-weight: 600;
}

.contact_box ul li i {
    margin-right: 5px;
}

.contact_box ul li a {
    color: var(--bg_color);
}

.soacl_media {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.soacl_media a {
    display: block;
    color: var(--white);
    font-size: 16px;
    background-color: var(--bg_color);
    padding: 4px 8px;
    border-radius: 50%;
}



.right_hight {
    font-size: 23px;
    margin-bottom: 8px;
}

.blog_right ul li a {
    font-size: 15px;
    color: #fff;
    display: block;
    padding: 8px 13px;
    background: #2d2f8f;
    margin-bottom: 3px;
    transition: .3s;
}

.blog_right ul li a:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.head_pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog_text {
    text-align: left;
    padding: 17px;
}

.blog_item {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 10px;
}

.blog_head {
    font-size: 19px;
    margin-bottom: 6px;
    color: #000000;
    font-weight: bold;
}

.blog_text a {
    font-size: 18px;
    display: block;
    color: #2d2f8f;
    font-weight: 600;
    margin-top: 9px;
}

.booking {
    font-size: 20px;
    color: #fff;
}

.b-date {
    color: var(--bg_color);
    margin-bottom: 5px;
}


.down_banner {
    position: relative;
}

.down_banner .small_head {
    color: var(--white);
}

.down_text {
    position: absolute;
    top: 10%;
    left: 2%;
    width: 45%;
    color: var(--white);
}

footer {
    background-color: var(--bg_color);
    padding-top: 50px;
}

.foot_logo img {
    width: 180px;
    margin-bottom: 15px;
    background-color: var(--white);
    padding: 5px;
    border-radius: 5px;
}

.foot_logo p {
    color: var(--white);
}

.foot_head {
    font-weight: 600;
    color: var(--white);
    font-size: 18px;
}

.foot_nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #4b4b4b;
}

.foot_nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 0;
}



.foot_nav ul li a {
    color: var(--white);
    font-size: 14px;
    padding: 0 10px;
    border-right: 1px solid var(--white);
}

.foot_nav ul li a:hover {
    color: var(--bs-orange);
}

.foot_nav ul li:last-child a {
    border-right: none;
}

.foot_nav ul {
    margin-bottom: 0;
}

.copyright {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #383838;
}

.copyright p a {
    color: var(--white);
    text-decoration: underline !important;
}

.copyright p {
    margin-bottom: 0;
    padding: 10px;
    color: #fff;
}






.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;
}

.inner_header img {
    height: 350px;
    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: 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) {}



@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;
    }

    .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 #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: #000;
    }

    .top_btn {
        display: none;
    }

    .col-md-4.top_call.text-center {
        display: none;
    }

    .progress_box {
        margin-top: 0;
    }

    .ab_item {
        width: 60%;
    }

    .inner_hrad {
        font-size: 25px;
    }

    .inner_header img {
        height: 225px;
    }
}



@media only screen and (max-width: 600px) {
    .banner_bid_head {
        font-size: 25px;
    }

    .big_head {
        font-size: 26px;
    }

    .small_head {
        font-size: 17px;
    }

    .ab_item {
        width: 100%;
        margin-right: 0;
    }

    .down_text {
        width: 80%;
        position: relative;
        color: var(--black);
    }

    .down_banner .small_head {
        color: var(--black);
    }
}

@media only screen and (max-width: 500px) {
    .ct-counter-inner {
        margin: 5px;
    }

    .testmontal {
        padding: 32px 0;
    }

    .margin {
        margin: 40px 0;
    }

    .progress_box {
        padding: 22px;
    }

    .contact_us form {
        padding: 25px;
    }

    .banner_btn {
        display: none;
    }

    .banner_bid_head {
        font-size: 22px;
    }

    .ab_item {
        margin-bottom: 20px;
    }

    .werk_btn {
        margin-bottom: 20px;
    }

    .hot_big_head {
        font-size: 22px;
    }

    .cleaner {
        font-size: 20px;
    }

    .big_head {
        font-size: 22px;
    }
}