* {

    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: var(--white);
    color: var(--black);
}

:root {
    --white: #fdfdfa;
    --black: #000;
    --primary: #2b2666;
}

.img:hover img {
    /* transform: scale(1.1); */
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

@keyframes elementor-animation-wobble-horizontal {
    16.65% {
        transform: translateX(8px)
    }

    33.3% {
        transform: translateX(-6px)
    }

    49.95% {
        transform: translateX(4px)
    }

    66.6% {
        transform: translateX(-2px)
    }

    83.25% {
        transform: translateX(1px)
    }

    100% {
        transform: translateX(0)
    }
}

.dark-mode-toggle {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    display: inline-block;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: 50%;
    /* border: .2rem solid var(--grey--dark); */
    position: fixed;
    right: 10px;
    top: 45%;
    background-color: #000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 999;
}

.dark-mode-toggle:focus {
    outline: none;
    border-color: var(--primary);
}

:root[data-theme="dark"] .dark-mode-toggle__text:before {
    content: "deactivate ";
}

:root[data-theme="light"] .dark-mode-toggle__text:before {
    content: "activate ";
}

.dark-mode-toggle__icon {
    display: block;
    background: #fff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    position: relative;
    transition: width 0.3s, height 0.3s;
    z-index: 1;
    transform: rotate(-20deg);
}

.dark-mode-toggle__icon:before {
    z-index: 0;
    content: "";
    position: absolute;
    display: block;
    border-right: none;
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    top: 50%;
    left: 50%;
    transition: opacity 0.3s, background-image 03s;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: spin__rays 4s linear infinite;
    background-image: linear-gradient(0deg,
            transparent 46%,
            #fff 46%,
            #fff 54%,
            transparent 54%),
        linear-gradient(90deg,
            transparent 46%,
            #fff 46%,
            #fff 54%,
            transparent 54%),
        linear-gradient(45deg,
            transparent 47%,
            #fff 47%,
            #fff 53%,
            transparent 53%),
        linear-gradient(135deg,
            transparent 47%,
            #fff 47%,
            #fff 53%,
            transparent 53%);
}

.dark-mode-toggle__icon:after {
    content: "";
    position: absolute;
    display: block;
    background: #000;
    border-radius: 0.7rem;
    width: 1.4rem;
    height: 1.4rem;
    top: 50%;
    left: 200%;
    transform: translateY(-50%);
    transition: left 0.3s;
}

/* .dark-mode-toggle:hover .dark-mode-toggle__icon {
    background: var(--primary);
} */


:root[data-theme="light"] .dark-mode-toggle__icon:after {
    left: 40%;
}

:root[data-theme="dark"] .dark-mode-toggle__icon {
    width: 1.3rem;
    height: 1.3rem;
}

:root[data-theme="dark"] .dark-mode-toggle__icon:before {
    opacity: 1;
}

@keyframes spin__rays {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

/* Hide only visually, but have it available for screenreaders */
.hidden--visually {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}










@font-face {
    font-family: 'Archivo';
    src: url('../font/Archivo-SemiBold.woff2') format('woff2'),
        url('../font/Archivo-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rounded Mplus 1c';
    src: url('../font/RoundedMplus1c-Regular.woff2') format('woff2'),
        url('../font/RoundedMplus1c-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




img {
    width: 100%;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
    font-family: "Archivo", sans-serif;
}

ul {
    padding-left: 0;
}

a {
    text-decoration: none;
    font-family: "Archivo", sans-serif;
    transition: ease-in-out .5s;
}

span {
    display: block;
    font-family: 'Rounded Mplus 1c';
}

p {
    font-size: 16px;
    line-height: 30px;
}


.img:hover img {
    /* transform: scale(1.1); */
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}




.top_contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
}

.contact-list-one {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 10px;
}

.contact-list-one li {
    position: relative;
    font-size: 13px;
    line-height: 25px;
    color: var(--white);
    font-weight: 400;
   padding-left: 30px;
    padding-right: 20px;
    border-right: 1px solid #6f6f6f
}

.contact-list-one li i {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

.contact-list-one li:last-child {
    border: none;
}

.contact-list-one li a {
    color: var(--white);
}

.contact-list-one li a:hover {
    color: var(--primary);
}


.socal_media {
    display: flex;
    gap: 20px;
    justify-content: right;
}

.socal_media a {
    color: var(--white);
    font-size: 18px;
}

.nav_bar .nav_bar_nav {
    display: flex;
}


#myHeader.sticky {
    position: fixed;
    background-color: #000;
    width: 100%;
    top: 0;
    z-index: 9999;
    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;
}

#myHeader.sticky .nav_bar_n {
    border-radius: 0;
    box-shadow: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .top_1 {
    display: none;
}

#myHeader.sticky .logo {
    margin-top: 0;
}


.togal {
    background: #ffffff;
    width: 37px;
    height: 33px;
    cursor: pointer;
    display: none;
    order: 3;
}

.btn-icon {
    width: 100%;
    height: 31px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #ffffff;
}

.btn-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000000;
    transition: .35s ease-in-out;
}

.open .btn-icon span:nth-of-type(1) {
    transform: translateY(10px) rotate(315deg);
}

.open .btn-icon span:nth-of-type(2) {
    width: 0;
    left: 50%;
}

.open .btn-icon span:nth-of-type(3) {
    transform: translateY(-11px) rotate(-315deg);
    ;

}




.nav_bar_n {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99;
    z-index: 99;
    background-color: #fff;
}

nav {
    border-top: 1px solid #ffffff33;
    border-bottom: 1px solid #ffffff33;
    background-color: #fff;
}

.nav_bar .nav_bar_nav li a {
    color: #000;
    padding: 15px 6px;
    transition: ease-in-out .3s;
}

.nav_bar .nav_bar_nav li {
    padding: 25px 15px;
}

.nav_bar_nav li {
    position: relative;
}

.nav_bar_nav li a:hover {
    color: var(--primary);
}

.nav_bar_nav .droupdown {
    position: absolute;
    background-color: #fff;
    width: 250px;
    height: 500px;
    overflow: auto;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transition: ease-in-out .5s;
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 30%;
    color: #000;
    cursor: pointer;
}

.nav_bar_nav .droupdown li {
    padding: 0;
}

.nav_bar_nav li:hover .droupdown {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.nav_bar_nav .droupdown li a {
    display: block;
    padding: 10px 15px;
    transition: ease-in-out .5s;
    color: #000;
}

.nav_bar_nav .droupdown li a:hover {
    background-color: var(--primary);
    color: #fff;
}

.nav_bar_nav {
    margin-bottom: 0;
}

.logo img {
    padding: 2px 0px;
    width: 175px;
}


.slick-nav.next-arrow.slick-arrow {
    position: absolute;
    left: 1%;
    top: 45%;
    color: #fff;
    z-index: 9;
    border: 1px solid #fff;
    padding: 5px 12px;
    transform: rotate(45deg);
    cursor: pointer;
    transition: ease-in-out .5s;
}

.slick-nav.prev-arrow.slick-arrow i,
.slick-nav.next-arrow.slick-arrow i {
    transform: rotate(-45deg);
}

.slick-nav.prev-arrow.slick-arrow {
    position: absolute;
    right: 1%;
    top: 45%;
    color: #fff;
    z-index: 9;
    border: 1px solid #fff;
    padding: 5px 12px;
    transform: rotate(45deg);
    cursor: pointer;
    transition: ease-in-out .5s;
}

.slick-nav.prev-arrow.slick-arrow:hover,
.slick-nav.next-arrow.slick-arrow:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}


.head_banner .slick-slide.slick-current.slick-active .small_line {
    animation: 1.5s linear 0s alternate headerline;
}

.head_banner .slick-slide.slick-current.slick-active .big_line {
    animation: 2s linear 0s alternate headerline;
}

.head_banner .slick-slide.slick-current.slick-active p {
    animation: 3s linear 0s alternate headerline;
    transition-delay: .2s;
}

.head_banner .slick-slide.slick-current.slick-active .all_btn {
    animation: 4s linear 0s alternate headerline;
    transition-delay: .2s;
}

.head_banner .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;
    }
}

@keyframes headerimg {

    0%,
    25% {
        transform: translateY(-20%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.head_btn img {
    width: 35px;
    border-radius: 50%;
}

.head_btn {
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.head_btn a {
    color: #000;
}

.container-fluid {
    padding: 0 2%;
}

.banner_item img {
    border-radius: 30px;
    object-fit: cover;
}

.top_1 {
    background-color: var(--primary);
}

.manin_box {
    width: 50%;
    float: left;
}

.ab_img {
    position: relative;
    padding: 10px 60px;
}

.ab_img .img1 img {
    object-fit: cover;
    border-radius: 250px;
}

.ab_img .img2 img {
    position: absolute;
    right: 0;
    top: 16%;
    animation: rotated 15s infinite linear;
}

.ab_home {
    display: flex;
}

.margin {
    margin: 60px 0;
}

.big_head {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.samll_head {
    display: inline-block;
    border-radius: 30px;
    font-size: 20px;
    color: #994a27;
    font-weight: 900;
    line-height: 21px;
    position: relative;
}

.samll_head img {
    width: 50px;
    position: absolute;
    right: -33px;
    top: -27px;
}


@keyframes rotated {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}



.ser_b {
    padding: 60px 30px 20px;
    background-color: #f6f3ed;
    border-radius: 30px;
}

.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.img_nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.img_nav img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.pro_text {
    width: 53%;
    padding: 15px 0;
}

.pro_text a {
    color: #000;
    font-size: 14px;
}

.pro_text span {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.malti_item {
    margin-bottom: 20px;
}

.img_item img {
    height: 700px;
    object-fit: cover;
    border-radius: 30px;
}

.ser_b .big_head {
    margin-bottom: 30px;
}



#counter {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#counter li {
    flex: 1;
    text-align: center;
    font-size: 50px;
}

.count_box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    gap: 10px;
    color: var(--primary);
}

.count_box span {
    font-weight: 900;
}

.counter {
    border-top: 1px solid #e5e5e5;
    padding-top: 60px;
}

.vs-icon {
    background-color: #9a563a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 95px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    transition: all ease 0.4s;
}

.vs-icon img {
    width: 45px;
}

.service_style1 {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
}

.service_style2 {
    text-align: left;
}

.service-content {
    width: 80%;
}
.service-content p{
    font-size:14px;
    line-height: 27px;
}

.service-content span {
    font-size: 20px;
    color: var(--black);
    font-weight: 900;
}

.discover {
    padding: 60px 0;
    position: relative;
}

.dis_box {
    margin: 30px 0;
}

.discover::before,
.discover::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    border-radius: 0 200px 200px 0;
    background-image: linear-gradient(var(--gradient-direction, to right), rgb(254, 254, 254) 0%, #2b2666 100%);
    z-index: -1;
}

.discover::after {
    left: auto;
    right: 0;
    border-radius: 200px 0 0 200px;
    --gradient-direction: to left;
}

.img_vs {
    text-align: center;
}

.img_vs img {
    height: 450px;
    width: 300px;
    object-fit: cover;
}

.shape img {
    width: auto;
}

.shape {
    width: auto;
    margin-bottom: 30px;
}

.pro_item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pro_head {
    position: absolute;
    bottom: 0;
    color: #000;
    background-color: #fff;
    padding: 15px;
    font-weight: 900;
}

.pro_item img {
    height: 350px;
    object-fit: cover;
}

.why_choose {
    background-color: #09132D;
    padding: 80px 0;
    color: #fff;
}

.why_img {
    display: flex;
    align-items: center;
    gap: 20px;
}

.why_img .img img {
    border-radius: 150px;
    /*height: 550px;*/
    object-fit: cover;
}

.box_img {
    width: 45%;
}

.why_img .img {
    width: 55%;
}

.box_img img {
    border-radius: 50%;
    /*height: 280px;*/
    margin-bottom: 20px;
    object-fit: cover;
}

.box_img img:hover {
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.why_box ul li img {
    width: auto;
    margin-right: 10px;
}

.why_box ul {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #6b6b6b;
    margin-top: 60px;
    padding-top: 40px;
}

.why_box ul li {
    margin: 15px 0;
    width: 48%;
    font-size: 20px;
}


.test_item {
    text-align: left;
    margin: 15px 10px;
}

.quote {
    width: auto;
    margin-bottom: 15px;
}

.main_text {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.5s;
    background-color: #fff;
    height: 250px;
}

.main_text p {
    font-size: 15px;
    transition: 0.5s;
}

.testmonial {
    position: relative;
}

.main_text:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    left: 47px;
    bottom: -15px;
    background: #fff;
    transform: rotate(45deg);
    transition: 0.5s;
}

.test_item:hover .main_text {
    background-color: var(--primary);
}

.test_item:hover p {
    color: #fff;
}

.test_item:hover .main_text::before {
    background: var(--primary);
}

.test_img img {
    width: 70px;
    border-radius: 50%;
}

.test_img {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
    margin-left: 20px;
}

.test_name .name {
    font-size: 18px;
    font-weight: 600;
}



.down_banner img {
    border-radius: 25px;
}


.all_btn {
    background-color: #000;
    position: relative;
    color: #fff;
    display: inline-block;
    padding: 15px 35px;
    overflow: hidden;
    border: none;

}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn i {
    margin-left: 8px;
}

.all_btn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary);
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    left: 100%;
}

.all_btn:hover {
    color: #fff;
}


.contact {
    position: relative;
    padding: 60px 0;
}

.contact form input,
select,
textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px 20px;
    background-color: #f3f3f4;
    font-size: 14px;
    border: none;
    outline: none;
}

.contact_box {
    background-color: #09132D;
    padding: 30px 35px;
    color: #fff;
    margin-left: 30px;
}

.contact_box li {
    margin-bottom: 25px;
       display: flex;
        gap: 10px;
    
}

.contact_box li samp {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 5px;
    display: block;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.contact_box li a {
    color: #fff;
    display: block;
}

.client_item img {
    width: auto;
}




footer {
    background-color: #000;
    padding-top: 40px;
    margin-top: 60px;
}

.foot_head {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.ab_all_img_in img{
    max-width: 100%;
}

.foot_nav ul li a {
    color: #fff;
    display: block;
    font-weight: 300;
    padding: 8px 0;
    font-size: 14px;
}
.foot_nav ul li a i{
    margin-right:8px;
}
.foot_nav ul{
    max-height: 250px;
    overflow: auto;
}
.foot_nav_bar{
    margin-top: 50px;
}
.foot_nav_bar ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.foot_nav_bar ul li a{
    color: var(--white);
}

.foot_logo img {
    width: 150px;
    margin-bottom: 10px;
}

.foot_logo p {
    color: #fff;
    font-size: 14px;
}
.foot_socal .socal_media{
    justify-content: left;
}


.foot_socal ul li a {
    color: #fff;
    font-size: 14px;
}

.foot_socal ul li {
    margin: 25px 0;
    font-weight: 300;
    display: flex;
}

.foot_socal ul li i {
    margin-right: 10px;
}

.copy_right {
    background-color: var(--primary);
    padding: 10px;
    margin-top: 70px;
}

.copy_right p {
    margin-bottom: 0;
    color: #fff;
    font-size: 15px;
}

.copy_right p a {
    color: #fff;
    text-decoration: underline !important;
}



















.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.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: 45px;
    color: #fff;
}



@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.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 {
    position: relative;
}

.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;
}

.inner_header img {
    height: 350px;
    object-fit: cover;
}

.main_img {
    width: 50%;
    padding-right: 40px;
    float: left;
}

.share-btn-box {
    margin-top: 10px;
}

.social-share ul {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.social-share ul li button {
    border: none;
    background-color: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
}

.experience {
    padding: 80px 0;
    position: relative;
}

.experience::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0000009c;
}

.exp_box {
    background-color: #fff;
    width: 60%;
    margin: auto;
    text-align: center;
    padding: 40px 35px;
    position: relative;
    z-index: 9;
}

.exp_box p {
    color: #000;
}

.exp_box::after {
    content: "";
    width: 94%;
    height: 86%;
    position: absolute;
    left: 3%;
    top: 7%;
    border: 1px solid #e33b12;
}

button.slick-prev.slick-arrow {
    display: none !important;
}

button.slick-next.slick-arrow {
    display: none !important;
}





@media only screen and (max-width: 991px) {
    .nav_bar .nav_bar_nav li a {
        font-size: 14px;
    }

    .nav_bar .nav_bar_nav li {
        padding: 25px 9px;
    }

    .manin_box {
        width: 60%;
        overflow: hidden;
    }

    .img_nav img {
        width: 159px;
    }
}

@media only screen and (max-width: 950px) {
    .head_btn {
        display: none;
    }
}

@media only screen and (max-width: 900px) {
    .togal {
        display: block;
    }

    nav {
        padding-right: 8px;
    }

    .nav_bar {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        width: 100%;
        display: none;
    }

    .nav_bar .nav_bar_nav {
        flex-direction: column;
    }

    .nav_bar .nav_bar_nav li {
        padding: 11px 5px;
        border-bottom: 1px solid #b1b1b1;
    }

    .clk_btn {
        top: 10px;
        width: 45px;
        text-align: center;
    }

    .nav_bar_nav .droupdown {
        position: revert;
        width: 100%;
        display: none;

    }

    .nav_bar_nav .droupdown li {
        padding: 3px 5px;
    }

    .nav_bar_n {
        padding: 8px 30px;
    }
}



@media only screen and (max-width: 767px) {
    .manin_box {
        width: 100%;
        margin-bottom: 30px;
    }

    .discover::before,
    .discover::after {
        background-image: linear-gradient(var(--gradient-direction, to right), rgb(254, 254, 254) 0%, #0055083d 100%);
    }

    .contact_box {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .foot_logo {
        text-align: left;
    }


}

@media only screen and (max-width: 600px) {
    .contact-list-one li:last-child {
        display: none;
    }

    .counter {
        display: none;
    }

    .samll_head {
        font-size: 15px;
    }

    .big_head {
        font-size: 25px;
    }
    .img_item img{
        height: auto;
    }
    .main_img{
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }
    .inner_header img{
        height: 200px;
    }
    .inner_hrad{
        font-size: 25px;
    }
}
@media only screen and (max-width: 550px) {
    .why_box ul li{
        width: 100%;
        font-size: 15px;
    }
    .why_img .img img{
        height: auto;
    }
    .box_img img{
        height: auto;
    }
    .margin {
        margin: 30px 0;
    }
    .why_choose{
        padding: 30px 0;
    }
    .big_head {
        font-size: 20px;
    }
}
@media only screen and (max-width: 500px) {
    
    .pro_text{
        width: 100%;
        padding: 15px;
    }
    .img_nav img{
        width: 100%;
    }
}