* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #f0d5c0;
    --bg_blue: #d76934;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Rubik", sans-serif;
}

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;

}


@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;
}

.logo img {
    width: 126px;
    position: relative;
    z-index: 9;
    border-radius: 5px;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 999;
    padding: 0 10px;
    border-top: 3px solid #d76934;
}

.nav_bg {
    background-color: var(--white);
    height: 72px;
    padding-right: 0;
}

.navbar_n {
    margin-top: -57px;
}

.search i {
    margin-right: 5px;
}

.search a {
    color: var(--white);
    background: var(--bg_blue);
    padding: 27px 18px;
}

.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: #fff;
}

#myHeader.sticky .top_head {
    display: none;
}

#myHeader.sticky .top_logo {
    display: none;
}

#myHeader.sticky .logo img {
    width: 100px;
}

#myHeader.sticky .navbar_n {
    margin-top: -30px;
}

#myHeader.sticky .header-contact {
    margin-top: -30px;
}



@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 32%;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
}

.nab_bar li a {
    color: var(--black);
    padding: 20px 20px;
    display: inline-block;
    font-size: 16px;
}

.nab_bar li {
    position: relative;
    z-index: 9;
}


nav {
    position: relative;
}


.top_bg {
    padding-left: 145px;
}

.main_banner {
    position: relative;
}


.droupdown {
    position: absolute;
    background-color: #000;
    border-top: 2px solid var(--bg_color);
    padding: 10px 0;
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 490px;
    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: 8px 15px;
    color: var(--white);
}

.droupdown li a:hover {
    background-color: var(--bg_blue);
    color: var(--white);
}

.banner_text {
    color: var(--white);
    z-index: 99;
    position: relative;
}


.nav_contact i {
    background-color: var(--bg_color);
    padding: 12px;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 5px;
    color: var(--white);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: -57px;
}

.banner_pera {
    margin: 15px 0;
}

.head_item img {
    width: 100%;
}


/* 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;
}

.head_banner {
    background-size: cover;
    background-position: center center;
}

/* Search Style */




@keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


.head_item.slick-slide.slick-current.slick-active .banner_text {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
}


.banner_img {
    display: flex;
    justify-content: center;
}

.top_head {
    padding-left: 5px;
    position: relative;
}

.socal_media {
    display: flex;
    gap: 2px;
    color: var(--black);
    position: relative;
    z-index: 99;
    align-items: center;
}

.socal_media a {
    color: var(--black);
    padding: 8px 12px;
    font-size: 18px;
    background-color: var(--white);
}



.socal_media span {
    color: var(--white);
    font-size: 14px;
}

.socal_media span i {
    margin-right: 5px;
}

.top_details ul {
    display: flex;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 14px;
    position: relative;
    align-items: center;
    z-index: 9;
}


.top_details ul li i {
    margin-right: 5px;
}

.header-contact,
.search {
    position: relative;
    z-index: 9;
}

.social {
    display: flex;
    align-items: center;
    color: var(--black);
    gap: 0 10px;
    justify-content: right;
}

.top_bg p {
    margin-bottom: 0;
}

.social p {
    margin-bottom: 0;
}

.top_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.top_details span {
    display: block;
}

.top_details img {
    width: 30px;
}

.top_head {
    position: absolute;
    top: 100%;
    z-index: 1;
    background: var(--bg_blue);
    opacity: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.top_details {
    color: var(--white);
}

.top_details a {
    color: var(--white);
    font-size: 16px;
}

.header-contact .all_btn {
    padding: 25px 30px;
    color: var(--white);
    font-weight: 600;
    background-color: var(--bg_blue);
    border-radius: 0;
}

.fast_item {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 18px;
    border-radius: 5px;
}

.fast_item p {
    font-size: 13px;
    line-height: 20px;
}

.fast_item span {
    display: block;
    font-weight: 600;
}

.fastest_box {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 9;
}

.fastest {
    margin-bottom: 40px;
    padding-left: 3%;
    margin-top: -170px;
    z-index: 9;
    position: relative;
    background-position: center center;
    padding-top: 80px;
}

.fast_bg {
    position: absolute;
    top: 0;
    left: 0;
}

.fast_bg img {
    height: 100%;
}

.client_slider {
    margin-top: 80px;
}

.fast_text {
    position: relative;
    z-index: 9;
    padding-top: 60px;
}

.fast_text span {
    font-size: 30px;
    font-weight: 600;
}


.ab_img_1 {
    width: 35%;
    float: left;
    margin-right: 30px;

}

.ab_img_2 {
    width: 20%;
    float: right;
    margin-top: 200px;
    margin-left: 30px;
}

.ab_home {
    display: flex;
}

.small_head {
    font-size: 22px;
    color: var(--bg_blue);
    display: block;
}

.big_head {
    font-size: 35px;
    font-weight: 600;
}

.kitchens {
    position: relative;
}

.kit {
    text-align: center;
}

.kit_pogition {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}



@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0)
    }

    50% {
        transform: rotateX(0deg) translateY(-20px)
    }

    to {
        transform: rotateX(0deg) translateY(0)
    }
}


.ab_home {
    display: flex;
}

.ab_img {
    padding-right: 30px;
    position: relative;
    float: left;
    width: 48%;
    margin-right: 60px;
        margin-bottom:30px;
}

.ab_img img {
    height: 500px;
    object-fit: cover;
}

.experiences {
    background-color: #fff;
    position: absolute;
    right: -30px;
    top: 50%;
    text-align: center;
    padding: 40px 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 170px;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}

.ab_img::after {
    content: "";
    width: 95%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 25px;
    border: 3px solid #f4972f;
    z-index: -1;
}

.experiences span {
    background-color: #f4972f;
    display: inline-block;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    padding: 15px;
    margin-bottom: 10px;
}

.experiences p {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #0C0A0A;
    margin: 0;
    margin-top: 12px;
}

@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0)
    }

    50% {
        transform: rotateX(0deg) translateY(-20px)
    }

    to {
        transform: rotateX(0deg) translateY(0)
    }
}


.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro_text {
    padding: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: var(--white);
    margin-top: -30px;
    margin-left: 20px;
    z-index: 9;
    position: relative;
}

.pro_head {
    font-size: 18px;
    font-weight: 600;
    display: block;
    color: var(--gray_black);
}

.pro_item {
    margin: 10px;
    text-align: left;
}

.pro_text a {
    color: #000;
    display: block;
    margin-top: 15px;
}

.consider {
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.consider_item {
    display: flex;
    align-items: center;
    gap: 0 80px;
    flex-wrap: wrap;
}

.con_test {
    width: 45%;
    background-color: #e3e3e3;
    color: var(--black);
    padding: 30px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.con_test:hover {
    background-color: var(--bg_blue);
    color: var(--white);
}

.con_test:hover::after {
    background-color: var(--bg_blue);
}

.con_test::after {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: 100%;
    top: 30%;
    background-color: #e3e3e3;
    clip-path: polygon(100% 50%, 0% 100%, 0 0);
}

.consider_box {
    padding: 0 12%;
    position: relative;
}

.consider_box::after {
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #000;
}

.con_img {
    width: 45%;
}

.con_img img {
    width: 250px;
}

.consider_item:nth-child(even) .con_test {
    order: 2;
}

.consider_item:nth-child(even) .con_test::after {
    left: auto;
    right: 100%;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}


.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: var(--bg_blue);
    padding: 30px 35px;
    color: #fff;
}

.contact_box li {
    margin-bottom: 25px;
}

.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;
}

.contact_box .socal_media a {
    color: #fff;
    font-size: 18px;
    background-color: transparent;
}

.socal_media {
    display: flex;
    gap: 12px;
}

.co_bg {
    position: absolute;
    left: 0;
    width: auto;
    z-index: -1;
    animation-name: rightToLeft;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}



.all_btn {
    background-color: var(--bg_blue);
    padding: 15px 30px;
    border-radius: 4px;
    display: inline-block;
    color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    border: none;
}

.all_btn::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--black);
    transition: ease-in-out .5s;
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn:hover::after {
    width: 100%;
}


.video-right-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-vedio-button {
    display: flex;
    justify-content: center;
}

.cta-vedio-button a {
    position: relative;
    background-color: var(--bg_blue);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-vedio-button a i.fas.fa-play {
    color: #ffffff;
    font-size: 28px;
}

.cta-vedio-button a::before {
    position: absolute;
    content: '';
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed var(--bg_blue);
}

.cta-vedio-button a:after {
    content: '';
    position: absolute;
    border: 30px solid var(--bg_blue);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    animation: cta-anim 1.5s linear infinite;
    opacity: 0;
}

@keyframes cta-anim {
    0% {
        transform: scale(.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(.9);
    }

}

.videos {
    background-attachment: fixed;
    padding: 15% 0;
    background-size: cover;
    position: relative;
    z-index: 9;
}

.videos::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00000082;
    z-index: -1;
}

.solutions {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.why_list li {
    padding-left: 70px;
    position: relative;
    margin: 50px 0;
}

.why_icon {
    background-color: var(--bg_color);
    position: absolute;
    left: 0;
    padding: 15px;
    border-radius: 50%;
    transition: ease-in-out 0.3s;
}

.why_icon:hover {
    background-color: var(--bg_blue);
}

.testmoinal {
    position: relative;
    padding: 100px 0px 100px;
    background-color: #f9f9f9;
    background-position: center center;
    background-repeat: no-repeat;
}

.test_box {
    background-color: var(--white);
    position: relative;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.author-image {
    position: absolute;
    right: 10%;
    top: -40px;
}

.name_box .name {
    display: block;
    font-weight: 600;
    font-size: 20px;
}

.test_item {
    margin: 0px 20px;
}
.test_item {
    padding:40px 20px;
}

.designation {
    display: block;
    margin: 10px 0;
    color: var(--bg_blue);
}

.star img {
    width: 90px;
    margin: 20px 0;
}

.test_box:before {
    position: absolute;
    content: '';
    left: 30px;
    right: 30px;
    bottom: -15px;
    height: 50px;
    z-index: -1;
    border-radius: 50px;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.test_box:hover::before {
    background-color: var(--bg_blue);
}


footer {
    position: relative;
    background-color: #222222;
    color: #fff;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 9;
}

.foot_logo img {
    width: 170px;
}

footer::after {
    content: "";
    width: 70%;
    height: 170px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bg_blue);
    z-index: -1;
}

footer .socal_media {
    justify-content: end;
}

footer .socal_media a {
    border-radius: 5px;
}

.foot_head {
    display: block;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gallery_item {
    padding: 10px;
}

.gallery_item img {
    border-radius: 5px;
}

.foot_nav ul li a {
    color: #fff;
    display: block;
    padding: 6px 0;
}

.foot_nav ul {
    max-height: 230px;
    overflow: auto;
}

.foot_contact li a {
    color: #fff;
}

.foot_contact li {
    margin: 20px 0;
}

.foot_contact li i {
    color: var(--bg_blue);
    margin-right: 8px;
}

.foot_contact li img {
    width: 30px;
    margin-right: 8px;
}


.copy_right {
    padding: 18px 0;
    background-color: #000;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}










.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: 330px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background: linear-gradient(90deg, #090d25 29.03%, rgba(31, 33, 45, 0));
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 60%;
    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: 992px) {
    .consider_box {
        padding: 0 2%;
    }

    .con_test {
        width: 43%;
    }

    .con_img {
        width: 43%;
    }

    footer .socal_media {
        justify-self: left;
    }

    .gallery_slider {
        margin: 20px 0;
    }

    footer::after {
        display: none;
    }

    .nab_bar li a {
        padding: 20px 15px;
    }
}



@media only screen and (max-width: 850px) {
    .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(--bg_blue);
        height: 300px !important;
        overflow: auto;
    }

    .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: 200px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 50%;
    }



}



@media only screen and (max-width: 800px) {
    .top_head {
        display: none;
    }

    .logo img {
        width: 100px;
    }

    .navbar_n,
    .header-contact {
        margin-top: -28px;
    }


}

@media only screen and (max-width: 768px) {
    .fast_text span {
        font-size: 22px;
    }

    .client_slider {
        margin-top: 13px;
    }

    .fast_bg {
        display: none;
    }

    .fastest {
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 20px;
    }

    .fast_text {
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .ab_img {
        width: 100%;
        margin-bottom: 40px;
    }

    .con_test,
    .con_img {
        width: 41%;
    }

    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 18px;
    }

    .testmoinal {
        padding: 37px 0 22px;
    }

    .contact_box {
        margin-bottom: 20px;
    }

    .fastest_box {
        flex-direction: column;
    }

    .fast_item img {
        width: 100%;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
    .pro_head{
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {

    .con_test,
    .con_img {
        width: 100%;
        margin: 10px 0;
    }

    .consider_item:nth-child(even) .con_test {
        order: inherit;
    }

    .consider_box::after {
        display: none;
    }

    .con_test::after {
        display: none;
    }

    .experiences {
        right: 0;
    }

    .margin {
        margin: 40px 0;
    }

    .header-contact .all_btn {
        display: none;
    }

    .search a {
        padding: 10px 11px;
        border-radius: 2px;
    }
}