* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #f58733;
    --white: #fff;
    --black: #000;
    --gray_black: rgb(104 99 101);
}

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: #f58733;
    color: var(--white);
    font-size: 15px;
    position: relative;
    padding: 6px 0;
}

.margin {
    margin: 70px 0;
}

.top_ccontact a {
    color: var(--white);
    font-weight: bold;
    position: relative;
    z-index: 9;
    font-size: 14px;
}

.top_call {
    position: relative;
    z-index: 9;
    font-size: 14px;
}

.top_call a {
    color: var(--white);
}

.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: 190px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    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;
}

#myHeader.sticky .logo img {
    width: 140px;
}

@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;
}

.socal_media a {
    color: #fff;
    font-size: 13px;
    padding: 0 5px;
}

.socal_media a:last-child {
    border: none;
}


nav {
    position: relative;
    z-index: 9;
}

.discount::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 90%;
    background-image: url(../img/square-line.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.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(--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%;
}


/* 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 */


.all_btn {
    position: relative;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--gray_black) 0%, var(--bg_color) 100%);
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background: linear-gradient(90deg, var(--bg_color) 0%, var(--gray_black) 100%);
    transition: ease-in-out .5s;
    border-radius: 5px;
}

.all_btn:hover::after {
    background: linear-gradient(90deg, var(--bg_color) 0%, var(--gray_black) 100%);
    width: 100%;
    left: 0;
}

.support {
    background: #f9f9f9;
    padding: 70px 0;
}

.sup_box {
    display: flex;
    gap: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px;
    align-items: flex-start;
    transition: ease-in-out .5s;
    border-bottom: 5px solid var(--white);
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}


.sup_box .img {
    width: 90px;
    height: 90px;
    background-color: #383335;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
}

.sup_box span {
    font-size: 22px;
    font-weight: 700;
}

.sup_box:hover {
    border-bottom: 5px solid var(--gray_black);
}

.sup_box:hover span {
    color: var(--gray_black);
}

.why_choose {
    padding: 92px 0 19px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.small_head {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg_color);
    display: block;
    font-family: "Outfit", sans-serif;
}

.big_head {
    font-size: 40px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    margin-bottom: 10px;
    display: block;
}

.why_choose .img {
    position: relative;
}

.why-choose-us-right-box {
    margin-top: 35px;
}

.why-choose-us-icon3 {
    float: left;
    margin-right: 18px;
}

.why-choose-us-icon3 img {
    display: inline-block;
    font-size: 40px;
    padding: 10px;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    background: #383335;
    color: #fff;
}

.why-choose-us-title2 {
    margin-bottom: 20px;
    display: block;
}

.why-choose-us-title2 span {
    display: block;
    font-weight: 700;
    font-size: 20px;
}

.style-five.rs-video {
    position: absolute;
    top: 45%;
    left: 50%;
}

.style-five.rs-video .animate-border .video-vemo-icon {
    background: var(--gray_black);
    color: #fff;
    font-size: 25px;
    width: 65px;
    height: 65px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.style-five.rs-video .animate-border .video-vemo-icon:before {
    content: "";
    border: 2px solid #fff;
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    animation: zoomBig 3.25s linear infinite;
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

.style-five.rs-video .animate-border .video-vemo-icon:after {
    content: "";
    border: 2px solid #fff;
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    animation: zoomBig 3.25s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

@keyframes zoomBig {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
    }

    40% {
        opacity: .5;
        border-width: 2px;
    }

    65% {
        border-width: 1px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 1px;
    }
}

.product {
    background-color: #242333;
    padding: 50px 0;
    color: var(--white);
}

.pro_item {
    position: relative;
    margin: 8px;
    padding-bottom: 25px;
}

.pro_item img {
    height: 370px;
}

.pro_head {
    position: absolute;
    background-color: #f58733;
    bottom: 0;
    left: 3%;
    color: var(--black);
    font-size: 20px;
    padding: 15px 20px;
    width: 94%;
    text-align: center;
    font-weight: 600;
    transition: ease-in-out .5s;
}

.pro_item:hover .pro_head {
    background-color: var(--bg_color);
    color: var(--white);
}

.ab_img {
    width: 50%;
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
    padding-left: 22px;
    padding-right: 50px;
    position: relative;
}

.ab_img::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0px;
    height: 220px;
    width: 4px;
    background-color: var(--gray_black);
    transition: all 500ms ease;
}

.ab_img::after {
    content: '';
    width: 4px;
    height: 100px;
    background-color: #000000;
    position: absolute;
    bottom: -13px;
    right: 5%;
    transition: all 500ms ease;
}

.ab_home {
    display: flex;
    position: relative;
}

.img_1::before {
    content: '';
    width: 100px;
    height: 4px;
    background-color: #000000;
    position: absolute;
    bottom: -13px;
    right: 5%;
    transition: all 500ms ease;
}

.ab_img img {
    border-radius: 5px;
}

.ab_img:hover::before {
    height: 300px;
}

.ab_img:hover::after {
    height: 200px;
}

.ab_img:hover .img_1::before {
    width: 200px;
}

.shape-2 {
    background-image: url(../img/patten.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 150px;
    height: 150px;
    position: absolute;
    top: -20px;
    left: 50px;
    animation: shape-position-change 2s linear infinite alternate;
}

@keyframes shape-position-change {
    0% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(20px);
    }
}

.design {
    padding: 80px 0;
    position: relative;
    color: var(--white);
}

.design::after {
    content: "";
    width: 65%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #000000b8;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

.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(--black);
    background-position: center;
    border-radius: 8px;
}

.num_item {
    font-size: 40px;
    font-weight: 800;
}

.count-title {
    font-size: 18px;
}

.count_img img {
    background-color: #3b3638;
    padding: 8px;
    width: 54px;
}

.what_box {
    width: 49%;
}

.what_box .we_icon {
    background-color: var(--black);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.what_box span {
    display: block;
    font-weight: 700;
    font-size: 22px;
    margin: 5px 0;
}




/* progress-bar */
.progress-bar {
    margin: 20px 0 10px;
    overflow: hidden;
    /*padding-left:20px;
  padding-right: 25px; /* Separate bars from container */
    padding-right: 38px;
}

.progress-title-holder {
    padding-bottom: 7px;
    position: relative;
    margin: 5px 0;
    line-height: 15px;
    font-weight: 400;
    color: #fff;
    font-size: 15px;
    text-align: left;
}

.progress-title {
    z-index: 100;
    font-weight: bold;
}

.progress-number-wrapper {
    width: 100%;
    z-index: 10;
}

.progress-number-mark {
    margin-bottom: 4px;
    border-radius: 3px;
    background-color: #f58733;
    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-family: Open Sans, sans-serif;
    font-size: 11px;
    line-height: 24px;
    height: 24px;
    letter-spacing: 0px;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
    color: #ffffff;
}

.down-arrow {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #25d366;
    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: 12px;
    background-color: #E1E1E0;
}

.progress-content {
    height: 21px;
    background-color: #f58733;
    width: 0%;
}

/* progress-bar */

.test_bg {
    padding: 70px 0;
    background-color: #95ca4f63;
}

.test_item {
    position: relative;
    margin: 10px;
    margin-top: 40px;
    text-align: left;
    height: 344px;
    padding-top: 70px;
    background-color: var(--white);
    padding: 35px;
    padding-top: 50px;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.test_item .img_t img {
    position: absolute;
    left: 7%;
    top: -40px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #95ca4f;
}

.name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--bg_color);
}

.contact form input,
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 3px;
    outline: none;
    background-color: #fff;
}

.contact form {
    background-color: var(--gray_black);
    padding: 30px;
}

.contact form button {
    border: none;
    width: 100%;
}

.contact label {
    color: #fff;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.details_box .icon img {
    width: 50px;
    position: absolute;
    left: 20px;
}

.details_box {
    display: flex;
    gap: 10px;
    background-color: #f6f7f8;
    padding: 25px;
    position: relative;
    padding-left: 70px;
    margin-bottom: 20px;
}

.details_box span {
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.details_box a {
    color: var(--black);
}

.details_box p {
    margin-bottom: 4px;
    font-size: 16px;
    word-break: break-all;
}
.bordered-img {
    width: 70%;
    border: 5px solid #81c243;
    border-radius: 50%;
    padding: 5px;
    overflow: hidden;
    margin: auto;
    margin-bottom: .8rem;
}

.feat-txt2{
    color: black;
    font-weight: 800;
    font-size: 18px;
    text-align: center;
    line-height: 1.23;
    text-transform: uppercase;
}
.bordered-img img {
    width: 100%;
    margin: 0;
        border-radius: 50%;
}



footer {
    background-color: var(--black);
    padding-top: 50px;
    color: var(--white);
}

.foot_logo img {
    width: 172px;
    margin-bottom: 9px;
    background-color: white;
}

.foot_logo p {
    font-size: 14px;
    color: #c8c8c8;
}

.foot_head {
    font-size: 25px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.foot_nav ul li a {
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    color: #c8c8c8;
    padding-left: 35px;
    position: relative;
    display: block;
    margin: 10px 0;
}

.foot_nav ul li a::before {
    content: '';
    width: 14px;
    height: 2px;
    background-color: #c8c8c8;
    position: absolute;
    top: 9px;
    left: 6px;
    transition: all .5s;
}

.foot_nav ul li a:hover::before {
    left: 12px;
    background-color: var(--gray_black);
}

.foot_nav ul {
    height: 230px;
    overflow: auto;
}

.foot_contact ul li a {
    color: #c8c8c8;
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    padding: 10px 0;
    margin-top: 70px;
    border-top: 1px solid #414141;
}

.copyright p {
    margin-bottom: 0;
}

.copyright p a {
    color: var(--white);
    text-decoration: underline;
}









.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: 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;
    }
}






@media only screen and (max-width: 991px) {
    .top_search {
        display: none;
    }

    .nab_bar li a {
        padding: 24px 14px;
    }

    .ab_img {
        width: 58%;
    }

    .count-area-content {
        margin-bottom: 25px;
    }

    .content {
        width: 60%;
    }

    .design::after {
        width: 78%;
    }

    .details_box {
        margin-top: 20px;
    }
}



@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: var(--gray_black);
    }

    .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: 225px;
    }

    .navbar_n {
        order: 3;
    }

}

@media only screen and (max-width: 767px) {
    .top_ccontact {
        display: none;
    }

    .logo img {
        width: 110px;
    }

    .support {
        padding: 36px 0;
    }

    .big_head {
        font-size: 33px;
    }

    .small_head {
        font-size: 17px;
    }

    .pro_item img {
        height: auto;
    }

    .ab_img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .count-area-content {
        gap: 16px;
    }

    .count_img img {
        padding: 14px;
        width: 70px;
    }

    .num_item {
        font-size: 32px;
    }

    .count-title {
        font-size: 16px;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }

}



@media only screen and (max-width: 600px) {
    .big_head {
        font-size: 26px;
    }

    .pro_head {
        font-size: 18px;
        padding: 8px 20px;
    }

    .design::after {
        width: 100%;
    }

    .content {
        width: 99%;
    }

    .product {
        padding: 22px 0;
    }

    .margin {
        margin: 30px 0;
    }

    .design::after {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .test_bg {
        padding: 40px 0;
    }

    .why_choose {
        padding: 30px 0 19px;
    }
}


@media only screen and (max-width: 500px) {
    .count-area-content {
        flex-direction: column;
        text-align: center;
    }
}