* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #113258;
    --bg_color-2: #2796dc;
    --white: #fff;
    --black: #000;
}

body {
    font-family: "Nunito", sans-serif;
    position: relative;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

.img::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #fff;
    transition: 1s;

}

.img:hover::after {
    animation: mymove 1s;
    left: 0;
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.margin {
    margin: 70px 0;
}



.top_call i,
.top_ccontact i {
    background-color: var(--bg_color);
    margin-right: 8px;
    border-radius: 50%;
}

.top_ccontact {
    display: flex;
    gap: 0 20px;
}

.head_text {
    top: 15%;
    left: 5%;
}

.cleaner {
    color: var(--bg_color);
}

.main_banner {
    width: 65%;
}

.logo img {
    width: 180px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 99;
}

.search i {
    margin-right: 5px;
}

.search a {
    color: var(--black);
}

.nab_bar {
    display: flex;
    justify-content: center;
}

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

#myHeader.sticky .discount {
    display: none;
}

#myHeader.sticky .top_head {
    display: none;
}

#myHeader.sticky .logo {
    margin-top: 0;
    padding: 8px 0;
}

#myHeader.sticky .logo img {
    width: 160px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 30%;
    color: var(--black);
    cursor: pointer;
}

.nab_bar li a {
    color: var(--black);
    padding: 24px 20px;
    display: inline-block;
}

.nab_bar li {
    position: relative;
}


nav {
    position: relative;
    background-color: var(--white);
}


.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;
    color: var(--black);
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.banner_small_head {
    color: var(--white);
    font-size: 20px;
}

header .slick-slide.slick-current.slick-active .banner-top-title {
    animation: 2s linear 0s alternate headerline;
}

header .slick-slide.slick-current.slick-active .banner_head {
    animation: 2s linear 0s alternate headerline;
}

header .slick-slide.slick-current.slick-active p {
    animation: 3s linear 0s alternate headerline;
    transition-delay: .2s;
}

header .slick-slide.slick-current.slick-active .banner_btn {
    animation: 4s linear 0s alternate headerline;
    transition-delay: .2s;
}

header .slick-slide.slick-current.slick-active img {
    animation: 4s linear 0s alternate headerimg;
    transition-delay: .2s;
}

@keyframes headerline {

    0%,
    25% {
        transform: translateY(-20%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.head_text {
    width: 55%;
}


/* Search Style */
#search {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
    top: 0
}

.form_box {
    margin: auto;
    width: 60%;
    display: flex;
    padding-top: 10%;
    justify-content: center;
}

.form_box input {
    width: 100%;
    padding: 12px;
    border-radius: 5px 0px 0px 5px;
    border: none;
    outline: none;
}

.form_box button {
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 20px;
    color: var(--black);
    cursor: pointer;
    background-color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
}


.head_banner .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    left: 40%;
    position: absolute;
    bottom: 20px;
    gap: 8px;
}

.head_banner .slick-dots li button {
    border-radius: 7px;
    background-color: var(--white);
    font-size: 0;
    padding: 4px 10px;
    margin: 2px 0;
    border: none;
}

.head_banner .slick-dots li.slick-active button {
    background-color: var(--white);
    border-radius: 7px;
    padding: 4px 20px;
}

/* Search Style */

.top_head {
    background-color: var(--bg_color);
    padding: 8px 0;
    position: relative;
}


.socal_media {
    display: flex;
    gap: 10px;
    color: var(--black);
    align-items: center;
    position: relative;
    z-index: 99;
}

.socal_media a {
    border-radius: 50%;
    color: var(--white);
    padding: 5px 10px;
}

.socal_media span {
    font-weight: 600;
    color: var(--white);
}


.top_details ul {
    display: flex;
    justify-content: end;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 20px;
}

.top_details ul li a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.top_details ul li a i {
    margin-right: 5px;
}

header {
    position: relative;
}

header:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #0a194a;
    opacity: .9;
}

.head_banner {
    z-index: 9;
}


.banner-top-title {
    display: inline;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}


.banner-top-title span {
    padding: 5px;
    position: relative;
    z-index: 9;
    margin-left: 15px;
}


.logo {
    position: relative;
    margin-top: -70px;
}

.logo_head:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 21%;
    background-color: var(--white);
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    content: "";
    z-index: 2;
    filter: drop-shadow(0px 10px 25px rgba(165, 165, 165, 0.3));
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);

}

.logo_head::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 21.1%;
    background-color: var(--bg_color);
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    content: "";
    z-index: 1;
    filter: drop-shadow(0px 10px 25px rgba(165, 165, 165, 0.3));
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

.top_search {
    position: relative;
    z-index: 9;
}

.box_item {
    box-shadow: 0px 0px 20px -3px rgba(197.00000000000003, 191.00000000000003, 191.00000000000003, 0.75);
    padding: 30px;
    position: relative;
    padding-top: 70px;
    transition: ease-in-out .5s;
}

.box_item span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin: 8px 0;
}

.box_item img {
    position: absolute;
    top: -20px;
    padding: 10px;
    width: 80px;
    background-color: var(--bg_color);
}

.box_item::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    transition: ease-in-out .5s;
    z-index: -1;
}

.box_item:hover::after {
    width: 100%;
}

.box_item:hover {
    color: var(--white);
    left: auto;
    right: 0;
}

.ab_home {
    display: flex;
}

.small_head {
    display: block;
    font-size: 23px;
    color: var(--bg_color);
    font-weight: 800;
}

.big_head {
    font-weight: 700;
    font-size: 40px;
    display: block;
}

.all_btn {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 10px 25px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    background-color: var(--bg_color-2);
    transition: ease-in-out .5s;
    border-radius: 5px;
}

.all_btn:hover::after {
    width: 0;
}

.ab_img {
    width: 50%;
    float: left;
    padding-right: 50px;
}

.count-area-content {
    display: flex;
    align-items: anchor-center;
    gap: 15px;
    text-align: left;
}

.count_img img {
    background-color: var(--bg_color-2);
    padding: 12px;
    width: 57px;
    border-radius: 10px;
}

.num_item {
    font-size: 40px;
    font-weight: 800;
}

.count-title {
    font-size: 15px;
    font-weight: 500;
}

.count-area-content {
    background-color: #cfcfcf40;
    padding: 22px 17px 55px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: ease-in-out .5s;
}

.count-area-content::after {
    content: "";
    width: 60px;
    height: 60px;
    background-color: var(--bg_color-2);
    position: absolute;
    bottom: -21px;
    right: -17px;
    border-radius: 50%;
    transition: 0.3s;
}

.count-area-content::before {
    content: "";
    width: 61px;
    height: 61px;
    position: absolute;
    bottom: -21px;
    right: -16px;
    transform: scale(1.1);
    border-radius: 50%;
    border: 5px solid var(--white);
    transition: 0.3s;
}

.count-area-content:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.product {
    background-color: #cfcfcf40;
    padding: 60px 0;
}

.pro_item {
    background-color: var(--white);
    text-align: left;
    position: relative;
    margin: 8px;
}

.pro_item img {
    width: 100%;
}

.pro_item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bg_color);
    transition: ease-in-out .5s;
}

.pro_item:hover::after {
    height: 100%;
}

.pro_item:hover {
    color: var(--white);
    transition: ease-in-out .5s;
}

.pro_item:hover a {
    color: var(--white);
}

.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 8px 0;
}

.pro_text {
    padding: 30px;
    z-index: 9;
    position: relative;
}

.pro_head {
    font-size: 22px;
    display: block;
    font-weight: 700;
}

.pro_text a {
    color: var(--black);
    font-weight: 700;
}

.pro_item img {
    position: relative;
    z-index: 1;
}

.why_choose {
    padding-left: 5%;
}

.why_text ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.why_text ul li {
    padding: 15px;
    margin: 10px 0;
    background-color: #cfcfcf40;
    width: 48%;
    border-radius: 8px;
    overflow: hidden;
}

.why_text ul li:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.why_text ul li span {
    font-size: 19px;
    font-weight: 700;
    display: block;
    margin: 8px 0;
}

.why_text ul li img {
    width: 80px;
    margin-bottom: 12px;
}

.why_text ul li:first-child {
    background-color: var(--bg_color);
    color: var(--white);
}

.why_head_line {
    background-color: #cfcfcf40;
    padding: 10px;
    margin: 8px 0;
    font-weight: 700;
}

.why_head_line img {
    margin-right: 8px;
}

.why_img video {
    border-radius: 8px;
}

.why_img {
    position: relative;
    padding-bottom: 30px;
}

.why_img::after {
    content: "";
    width: 90%;
    height: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 3px solid #2796dc;
    border-bottom: 3px solid #2796dc;
}


.video__play-btn {
    padding-bottom: 70px;
}

.video__play-btn a {
    border-radius: 50%;
    display: inline-block;
    line-height: 86px;
    text-align: center;
    height: 75px;
    width: 75px;
    background-color: var(--white);
    position: relative;
}

.video__play-btn a i {
    margin-left: 5px;
    font-size: 30px;
    color: var(--bg_color);
    position: relative;
    z-index: 1;
}

.video__play-btn a::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: scale(1.3);
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.408);
    animation: borderanimate2 2s linear infinite;
}

.video__play-btn a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: scale(1.3);
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.408);
    animation: borderanimate2 2.5s linear infinite;
}

@keyframes borderanimate2 {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.you_bg {
    background-color: #081e41b3;
    padding: 100px 10px;
    color: var(--white);
}

.you_tube .row {
    border-radius: 15px;
    overflow: hidden;
}

.you_bg .big_head {
    margin-bottom: 15px;
}

.testminal {
    padding: 80px 0;
}

.test_item {
    margin: 8px;
}

.test_text {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.test_text::after {
    content: "";
    width: 35px;
    height: 25px;
    position: absolute;
    left: 5%;
    top: 100%;
    background-color: var(--white);
    clip-path: polygon(50% 100%, 0 0, 100% 0);

}

.test_text .star {
    width: 100px;
}

.arrow {
    width: 50px;
    margin-bottom: 15px;
}

.test_name {
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin-top: 40px;
}

.name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--bg_color);
}

.test_name img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.testminal {
    padding-right: 5%;
}

.quality_item {
    background-color: #cfcfcf40;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: ease-in-out .5s;
}

.quality_item span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin: 8px 0;
}

.quality_item img {
    background-color: var(--bg_color);
    border-radius: 50%;
    padding: 9px;
    width: 60px;
}

.quality_item::after {
    content: "";
    width: 60px;
    height: 60px;
    background-color: var(--bg_color);
    position: absolute;
    bottom: -21px;
    right: -17px;
    border-radius: 50%;
    transition: 0.3s;
}

.quality_item::before {
    content: "";
    width: 61px;
    height: 61px;
    position: absolute;
    bottom: -21px;
    right: -16px;
    transform: scale(1.1);
    border-radius: 50%;
    border: 5px solid var(--white);
    transition: 0.3s;
}

.quality_item:hover {
    background-color: var(--bg_color);
    color: var(--white);
    transition: ease-in-out .5s;
}

.contact_us {
    background-position: center center;
    max-height: 590px;
    margin-bottom: 140px;
}

.contact_bg {
    background-color: rgba(8, 30, 65, 0.908);
    padding-top: 70px;
    max-height: 590px;
}

.contact_details {
    color: var(--white);
}

.contact_details .small_head {
    color: var(--white);
}

.contact_details ul li {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact_details ul li .icon {
    background-color: var(--bg_color-2);
    width: 50px;
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 4px;
}

.contact_details ul li span {
    display: block;
}

.contact_details ul li a {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.contact_details ul li {
    margin: 40px 0;
}

.contact_us form {
    background-color: var(--bg_color-2);
    padding: 35px;
    border-radius: 5px;
}

.contact_us form input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: none;
    margin: 8px 0;
    outline: none;
    border-radius: 5px;
}

.contact_us form button {
    border: none;
}

.contact_us form .all_btn::after {
    background-color: var(--bg_color);
}

footer {
    background-position: center;
}

.foorer_bg {
    background-color: rgba(8, 30, 65, 0.83);
    padding-top: 70px;
}

.foot_logo img {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 10px;
    width: 180px;
}

.foot_logo {
    color: var(--white);
}

.foot_logo p {
    font-size: 14px;
}

.foot_head {
    color: var(--white);
    font-size: 25px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.foot_nav ul li a {
    color: var(--white);
    display: block;
    margin: 16px 0;
}

.foot_nav ul li a:hover {
    color: var(--bg_color-2);
}

.foot_nav ul {
    max-height: 258px;
    overflow: auto;
}

.foot_socal.contact_details ul li {
    margin: 15px 0;
}

.foot_socal.contact_details ul li .icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.foot_socal .socal_media {
    margin-top: 35px;
}

.foot_socal .socal_media a {
    border-radius: 50%;
    border: 1px solid #8a8a8a;
}
.foot_socal .socal_media a:hover{
    background-color: var(--bg_color-2);
     border: 1px solid var(--bg_color-2);
}

.copyright p {
    margin-bottom: 0;
}

.copyright {
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    padding: 10px 0;
    border-top: 1px solid #8a8a8a;
}















.ab_text h2,
.ab_text h3 {
    font-size: 25px;
}


.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: var(--black);
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.ab_item {
    width: 47%;
    float: left;
    margin-right: 40px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;

}

.inner_header {
    position: relative;
}

.inner_header img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background-color: #0a194abd;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 50%;
    z-index: 9;
    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: 1024px) {
    .logo_head:before{
        width: 25%;
    }
    .logo_head::after{
        width: 25.1%;
    }
}


@media only screen and (max-width: 991px) {
    .logo_head:before {
        width: 26%;
    }

    .nab_bar li a {
        padding: 24px 14px;
    }

    .logo_head::after {
        width: 26.1%;
    }

    .ab_img {
        width: 60%;
    }

    .count-area-content {
        margin-bottom: 10px;
    }
}


@media only screen and (max-width: 800px) {
    .logo {
        margin-top: 0px;
    }

    .logo_head::after {
        display: none;
    }

    .logo_head:before {
        display: none;
    }
}


@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(--bg_color);
        margin: 3px 0;
    }

    .toggle.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle.active .line2 {
        opacity: 0;
    }

    .toggle.active .line3 {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .nab_bar {
        position: absolute;
        flex-direction: column;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: var(--white);
        z-index: 9999;
        display: none;
    }


    .nab_bar li {
        border-bottom: 1px solid #e2e2e2;
    }

    .nab_bar li a {
        color: #000;
        padding: 10px 25px;
        display: block;
    }

    .droupdown {
        position: revert;
        width: 100%;
        background-color: #0a194a;
    }

    .clk_btn {
        position: absolute;
        right: 0;
        top: 0;
        color: var(--white);
        cursor: pointer;
        width: 47px;
        height: 46px;
        line-height: 37px;
        background: #000;
        text-align: center;
    }

    .droupdown li {
        padding: 0 !important;
    }

    .droupdown li a {
        color: #fff;
    }



    .col-md-4.top_call.text-center {
        display: none;
    }



    .inner_hrad {
        font-size: 25px;
    }

    .inner_header img {
        height: 230px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 56%;
    }

}

@media only screen and (max-width: 767px) {
    .ab_img {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }

    .box_item {
        margin-top: 25px;
    }

    .big_head {
        font-size: 28px;
    }

    .small_head {
        font-size: 20px;
    }

    .count-area-content {
        gap: 6px;
    }

    .count-title {
        font-size: 16px;
    }

    .num_item {
        font-size: 32px;
    }

    .testminal .small_head {
        margin-top: 30px;
    }

    .contact_bg {
        max-height: 100%;
        padding-bottom: 30px;
    }

    .contact_us {
        max-height: 100%;
    }

    .contact_us {
        margin-bottom: 50px;
    }

    .testminal {
        padding-right: 0%;
        padding: 50px 0;
    }

    .why_choose {
        padding-left: 0%;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 600px) {
    .margin {
        margin: 35px 0;
    }

    .top_head .socal_media {
        justify-content: center;
    }

    .top_details ul {
        justify-content: center;
    }

    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 17px;
    }

    .logo img {
        width: 155px;
    }
}


@media only screen and (max-width: 500px) {
    .count-area-content {
        flex-direction: column;
        text-align: center;
    }

    .why_text ul li {
        width: 100%;
        margin: 3px 0;
    }

    .top_search {
        display: none;
    }

    .top_details ul li a {
        font-size: 14px;
    }

    .num_item {
        font-size: 25px;
    }

    .pro_text {
        padding: 16px;
    }

    .pro_head {
        font-size: 19px;
    }

    .you_bg {
        padding: 70px 10px 35px;
    }

    .contact_us form {
        padding: 20px;
    }
}