* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #ffb100;
    --white: #fff;
    --black: #000;
    --gray_black: #1d448b;
}

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(--black);
    color: var(--white);
    font-size: 15px;
    position: relative;
}

.margin {
    margin: 70px 0;
}

.top_ccontact a {
    color: var(--white);
    font-weight: bold;
    position: relative;
    z-index: 9;
}

.top_call {
    position: relative;
    z-index: 9;
}

.top_call a {
    color: var(--white);
}

.top_call i,
.top_ccontact i {
    background-color: var(--bg_color);
    padding: 8px;
    margin-right: 8px;
    border-radius: 50%;
}

.socal_media i {
    background-color: var(--gray_black);
}

.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: 175px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    z-index: 99;
    padding-bottom: 40px;
}




.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 {
    margin-top: 0px;
}

@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;
}

.socal_media a:last-child {
    border: none;
}

header {
    margin-top: -40px;
}

nav {
    position: relative;
    z-index: 9;
}

.logo_head::after {
    content: "";
    background-image: url(../image/img/logo-bg.png);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
}

.logo {
    margin-top: -55px;
}

.discount::after {
    content: "";
    width: 30%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bg_color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}

.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 */


.wpo-work-icon-wrap {
    width: 167px;
    height: 167px;
    background: #e8f3fd;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin: 0 auto 25px;
}

.wpo-work-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: #ffb100;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
}

.wpo-work-icon-thumb {
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    right: 30px;
    bottom: 20px;
    box-shadow: 0 5px 18.8px 1.2px rgba(99, 102, 187, .1);
    z-index: -1;
}

.wpo-work-icon-thumb span {
    font-family: Futura PT;
    font-size: 40px;
    font-size: 2.2222222222rem;
    font-weight: 900;
    color: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #8188a9;
}

.small_head {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--bg_color);
}

.big_head {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Lexend", sans-serif;
}

.work_head {
    display: block;
    font-weight: 800;
    font-size: 23px;
    color: var(--gray_black);
}

.all_btn {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 23px;
    border-radius: 5px;
    transition: ease-in-out .5s;
    position: relative;
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: var(--bg_color);
    transition: ease-in-out .5s;
    border-radius: 5px;
}

.all_btn:hover::after {
    height: 100%;
    width: 100%;
    left: 0;
}

.all_btn:hover {
    color: var(--black);
}

.ab_home {
    display: flex;
}

.ab_img {
    width: 48%;
    float: left;
    position: relative;
    padding-bottom: 100px;
    padding-right: 100px;
    margin-right: 30px;
    margin-bottom: 10px;
}

.img_1 img {
    border-radius: 15px;
}

.img_2 img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 250px;
    border-radius: 15px;
}

.img_3 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.experience {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--bg_color);
    display: flex;
    gap: 20px;
    border-radius: 50px;
    padding: 15px 28px;
    align-items: anchor-center;
}

.experience span {
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 29px;
}

.experience p {
    margin-bottom: 0;
    font-weight: 700;
}

.client_item {
    margin: 20px 10px;
}

.client_item img {
    width: auto;
}

.pro_item {
    margin: 10px;
    padding-bottom: 50px;
}

.pro_text {
    position: absolute;
    background-color: var(--bg_color);
    bottom: 0;
    padding: 45px;
}

.pro_text a {
    color: var(--black);
    font-size: 25px;
    font-weight: 900;
}

.pro_text i {
    position: absolute;
    right: -30px;
    top: 20%;
    background-color: var(--white);
    padding: 20px;
}

.pro_item:hover i {
    background-color: var(--black);
    color: var(--white);
}

.why_choose {
    background-color: var(--black);
    color: var(--white);
    position: relative;
}

.why_text {
    padding: 40px 0;
    padding-left: 40px;
    position: relative;
    z-index: 9;
}

.why_text ul li {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.why_text ul li .icon img {
    width: 50px;
}

.why_text ul li .icon {
    background-color: var(--bg_color);
    border: 3px solid var(--white);
    border-radius: 50%;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content_head {
    font-size: 23px;
    font-weight: 600;
    display: block;
}

.why-choose-one__shape-5 {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 342px;
    height: 342px;
    background-color: #ffb300e5;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
}

.why-choose-one__shape-4 {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 480px;
    height: 466px;
    background-image: linear-gradient(90deg, rgba(251, 175, 43, 0) 0%, #ffb300e5 100%);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
}

.why-choose-one__shape-3 {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 263px;
    height: 240px;
    background-color: #ffb300e5;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 1;
}

.why-choose-one__shape-2 {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 410px;
    height: 370px;
    background-image: linear-gradient(90deg, rgba(251, 175, 43, 0) 0%, #ffb300e5 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 1;
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}




@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}



.testmoinal {
    padding: 60px 0;
    color: var(--white);
}

.test_item {
    background-color: var(--white);
    padding: 25px;
    color: var(--black);
    margin: 10px;
    position: relative;
    border-radius: 5px;
    min-height: 348px;
}

.test_bg {
    position: relative;
    z-index: 9;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.name {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.designation {
    color: var(--bg_color);
    font-size: 18px;
}

.test_item::after {
    content: "";
    background-image: url(../image/img/earth.png);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
}

.author img {
    border-radius: 50%;
}

.stars {
    width: 100px;
}

.testmoinal .small_head {
    color: var(--white);
}


.count-area {
    color: var(--black);
    background-position: center;
    border-radius: 8px;
}

.num_item {
    font-size: 40px;
    font-family: "Cal Sans", sans-serif;
    margin: 10px 0;
}

.count-title {
    font-size: 18px;
}

.count_img img {
    background-color: var(--bg_color);
    padding: 15px;
    width: 80px;
}

.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;
}

.we_items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.what_text {
    padding-left: 5%;
}

.contact form {
    background-color: var(--white);
}

.contact form {
    margin-top: -80px;
}

.contact {
    margin-top: 150px;
}

.contact form input,
textarea,
select {
    width: 100%;
    padding: 12px 25px;
    background: #f7f4f4;
    border-radius: 30px;
    color: #232323;
    border: 1px solid rgba(35, 35, 35, 0.12);
    margin: 10px 0;
    outline: none;
}

.input_felds {
    padding: 30px 40px;
}

.consultant {
    background-color: var(--bg_color);
    padding: 30px 40px;
    position: relative;
}

.consultant p {
    font-size: 20px;
    font-weight: 600;
}

.consultant img {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
}

.consultant .big_head {
    font-size: 30px;
    color: var(--black);
}

.contact form .all_btn {
    width: 100%;
    border: none;
}

.contact_details {
    color: var(--white);
    padding: 60px 0;
}

.address {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.add_icon {
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 2px;
    color: var(--black);
}

.add_a span {
    display: block;
    font-size: 20px;
    font-weight: 800;
}

.add_a a {
    color: var(--white);
}

.address {
    margin: 30px 0;
}

.contact_details .socal_media a {
    background-color: var(--bg_color);
    color: var(--black);
    padding: 7px 11px;
    font-size: 18px;
    border-radius: 3px;
}

.contact_details .socal_media a i {
    background-color: var(--bg_color);
}

.contact_details .socal_media {
    margin-top: 50px;
}




footer {
    background-color: #040021;
    padding-top: 60px;
    color: #fff;
}

.foot_head {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.foot_contact li a {
    color: #fff;
}

.foot_contact li i {
    margin-right: 5px;
}

.foot_contact li {
    margin: 20px 0;
    display: flex;
}

.foot_nav ul li a {
    color: #fff;
}

.foot_nav ul li {
    width: 50%;
    margin: 8px 0;
}

.foot_nav ul {
    display: flex;
    flex-wrap: wrap;
}

.foot_nav_2 ul li a {
    color: #fff;
}

.foot_nav_2 ul li {
    margin: 8px 0;
}

.foot_logo {
    position: relative;
    background-color: #ff9f14;
    padding: 15px 0;
    text-align: center;
}

.foot_logo::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 45px;
    background: #ff9f14;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    top: -44px;
    left: 0;
}

.foot_logo::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 45px;
    background: #ff9f14;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    top: -44px;
    right: -34px;
}

.head_icon {
    display: flex;
    gap: 6px;
}

.head_icon a {
    background-color: var(--bg_color);
    color: var(--black);
    padding: 7px 11px;
    border-radius: 50%;
}

.foot_logo img {
    width: 150px;
}

.copy_right {
    margin-top: 60px;
}

.copy_right {
    background-color: #fff;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--black);
}

.copy_right p a {
    color: #000;
    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(--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;
        margin-top: -42px;
}

.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_ccontact {
        display: none;
    }

    .logo {
        margin-top: 0;
    }

    .ab_img {
        width: 55%;
    }

    .nab_bar li a {
        padding: 24px 10px;
    }

    .img_2 img {
        max-width: 200px;
    }

    .what_box {
        width: 100%;
    }
}



@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) {
    .ab_img {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .big_head {
        font-size: 26px;
    }

    .contact form {
        margin-top: 0;
    }

    .count-area-content {
        margin-bottom: 20px;
    }
    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 600px) {
    .margin {
        margin: 33px 0;
    }

    .logo_head::after {
        display: none;
    }

    .logo img {
        width: 140px;
    }
}

@media only screen and (max-width: 500px) {
    .foot_nav ul li {
        width: 100%;
    }

    .top_search {
        display: none;
    }

    .foot_logo::before {
        right: 0;
    }

    .why_choose {
        overflow: hidden;
    }

    .why_text {
        padding: 30px 0;
        padding-left: 0;
    }

    .why-choose-one__shape-2 {
        width: 220px;
        height: 223px;
    }

    .why-choose-one__shape-3 {
        width: 160px;
        height: 175px;
    }

    .why-choose-one__shape-4 {
        width: 250px;
        height: 240px;
    }

    .why-choose-one__shape-5 {
        width: 200px;
        height: 200px;
    }

    .num_item {
        font-size: 30px;
    }

    .count_img img {
        padding: 9px;
        width: 62px;
    }

    .count-title {
        font-size: 15px;
    }

    .pro_text {
        padding: 35px;
    }

    .why_text ul li {
        margin: 25px 0;
    }

    .why_text ul li .icon {
        width: 96px;
        height: 73px;
    }

    .img_2 img {
        max-width: 162px;
    }
}