* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #fcaf3f;
    --bg_blue: #022a5a;
    --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: 90px;
    position: relative;
    z-index: 9;
    background: #FFF;
    border-radius: 0px 0px 150px 150px;
}

.logo_head {
    position: absolute;
    width: 100%;
    z-index: 999;
    padding: 0 10px;
}

.nav_bg {
    background-color: var(--white);
    height: 68px;
    padding-right: 0;
}

.navbar_n {
    margin-top: -57px;
}

.search i {
    margin-right: 5px;
}

.search a {
    color: var(--bg_blue);
    background: var(--bg_color);
    padding: 26px 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;
}

@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_color);
    color: var(--white);
}

.banner_text {
    color: var(--white);
    z-index: 99;
    position: relative;
}

.ab_text ul li
 {
    list-style: disc;
}
.ab_text ul {
    padding-left:15px;
    
}
.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(--bg_color);
}



.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: 22px 30px;
    color: var(--bg_blue);
    font-weight: 600;
    background-color: var(--bg_color);
    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: 110px;
    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;
}

.test_item img {
    margin: auto;
    border: 1px solid #797979;
    padding: 10px 30px;
    border-radius: 50px;
    height: 50px;
    object-fit: contain;
}

.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_color);
    display: block;
}

.big_head {
    font-size: 35px;
    font-weight: 600;
}






@import "https://unpkg.com/open-props@2.0.0-beta.5" layer(library);
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300..700&display=swap");



@layer demo {
    .navbar {
        min-block-size: var(--nav-block-size);
        display: grid;
        position: fixed;
        inset-block-start: 0;
        inset-inline: 0;
        background-color: white;
        z-index: var(--layer-3);
        place-items: center end;
        padding-block: var(--size-3);
        padding-inline: var(--size-5);

        @media (width >=600px) {
            padding-inline: 6dvi;
        }
    }

    .nav-cta-btn {
        font-size: var(--font-size-1);
        font-weight: var(--font-weight-7);
        inline-size: max-content;
        white-space: nowrap;
        text-decoration: none;
        padding-block: var(--size-3);
        padding-inline: var(--size-7);
        border: var(--border-size-2) solid transparent;
        color: black;
        position: relative;
        isolation: isolate;

        background: linear-gradient(white, white) padding-box,
            var(--brand-gradient) border-box;
        border-radius: var(--radius-6);
        overflow: hidden;

        &::before {
            content: "";
            display: block;
            position: absolute;
            inset: 0;

            background: var(--brand-gradient);
            mix-blend-mode: screen;
        }

        &:hover {
            color: white;

            &::before {
                background: var(--brand-gradient) padding-box,
                    var(--brand-gradient) border-box;
                background-repeat: no-repeat;
                background-size: contain;
                mix-blend-mode: normal;
                z-index: -1;
            }
        }
    }

    .section {
        --section-block-size: max(400px, 100dvb);
        display: grid;
        background-color: white;
        min-block-size: var(--section-block-size);
        position: relative;
        block-size: 100%;
        display: grid;

        >* {
            grid-area: 1/1;
        }
    }

    .section-wrapper {
        position: relative;
        display: grid;

        @media (width >=960px) {
            grid-template-columns: 1fr 1fr;
        }

        @media (width < 960px) {
            padding-block-start: calc(var(--nav-block-size) + var(--size-7));
            padding-block-end: var(--size-7);
        }
    }

    .video {
        display: block;
        inline-size: 100%;
        block-size: 100%;
        object-fit: cover;
        position: relative;
        z-index: -1;
    }

    .content-wrapper {
        display: grid;

        @media (width < 960px) {
            gap: var(--size-7);
        }
    }

    .meta {
        display: grid;
        gap: var(--size-3);
    }

    .content {
        display: grid;
        inline-size: 100%;
        place-items: center;
        padding-block: var(--size-7);
        padding-inline: var(--size-5);

        @media (width >=960px) {
            padding: var(--size-10);
            min-block-size: 100cqb;
            place-items: center end;
        }

        @media (width < 960px) {
            gap: var(--size-5);
        }
    }

    .mobile-visual {
        inline-size: 100%;
        aspect-ratio: var(--ratio-square);

        @media (width >=960px) {
            display: none;
        }
    }

    .headline {
        display: block;
        font-size: 30px;
        font-weight: 600;
        text-wrap: pretty;

        @media (width < 960px) {
            font-size: var(--font-size-6);
        }
    }

    .desc {
        font-size: var(--font-size-4);
        line-height: 1.5;
        max-inline-size: 40ch;
        text-wrap: pretty;

        @media (width < 960px) {
            font-size: var(--font-size-3);
        }
    }

    .visual {
        display: grid;
        position: sticky;
        block-size: var(--section-block-size);
        inset-block-start: 0;
        container-type: size;

        @media (width < 960px) {
            display: none;
        }
    }

    .video-visual {
        inline-size: 100%;
        block-size: var(--section-block-size);
        display: block;
        position: sticky;
        inset-block-start: 0;
        isolation: isolate;
        filter: hue-rotate(210deg);
    }

    .card-wrapper {
        container-type: size;
        display: grid;
        place-items: center;
        overflow: clip;

        >* {
            grid-area: 1/1;
        }
    }

    .card {
        aspect-ratio: var(--ratio-square);
        inline-size: 70cqi;
        border-radius: var(--radius-3);
        scale: 0.4;
    }

    .card-img {
        display: block;
        inline-size: 100%;
        block-size: 100%;
        object-fit: cover;
    }

    .card-1 {
        scale: 1;
    }

    .card-2 {
        translate: -35cqi 30cqb;
        opacity: 0.3;
    }

    .card-3 {
        translate: 0cqi 50cqb;
        opacity: 0.5;
    }

    .card-4 {
        translate: 45cqi 40cqb;
        opacity: 0.5;
    }

    .content-1 {
        --_text-gradient: linear-gradient(227deg, #1400c7 0%, #00bbff 100%);
    }

    .content-2 {
        --_text-gradient: linear-gradient(227deg, #28dc28 0%, #00bbff 100%);
    }

    .content-3 {
        --_text-gradient: linear-gradient(227deg, #1400c7 0%, #b800b1 100%);
    }

    .content-4 {
        --_text-gradient: linear-gradient(227deg, #b800b1 0%, #f50000 100%);
    }

    .text-highlight {
        background: var(--_text-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }
}

@supports (animation-timeline: scroll()) {
    body {
        timeline-scope: --content-1, --content-2, --content-3, --content-4;
    }

    .section {
        view-timeline-name: --section;
    }

    .content-1 {
        view-timeline-name: --content-1;
    }

    .content-2 {
        view-timeline-name: --content-2;
    }

    .content-3 {
        view-timeline-name: --content-3;
    }

    .content-4 {
        view-timeline-name: --content-4;
    }

    .card {
        animation-timing-function: linear;
        animation-fill-mode: forwards;
    }

    .card-1 {
        animation-timeline: --content-1;
        animation-name: slide-up-first-card;
    }

    .card-2 {
        animation-timeline: --content-2;
        animation-name: slide-up-card;
    }

    .card-3 {
        animation-timeline: --content-3;
        animation-name: slide-up-card;
    }

    .card-4 {
        animation-timeline: --content-4;
        animation-name: slide-up-card;
    }

    .video-visual {
        animation-timeline: --section;
        animation-range-end: exit 110%;
        animation-name: update-hue;
        animation-timing-function: step-end;
        animation-fill-mode: forwards;
    }

    @keyframes update-hue {
        0% {
            filter: hue-rotate(210deg);
        }

        25% {
            filter: hue-rotate(150deg);
        }

        45% {
            filter: hue-rotate(300deg);
        }

        60% {
            filter: hue-rotate(4deg);
        }
    }

    @keyframes slide-up-first-card {
        50% {
            translate: 0;
            opacity: 1;
        }

        90% {
            translate: 0 -50cqi;
            scale: 0.6;
        }

        100% {
            translate: 0 -100cqi;
            opacity: 0;
        }
    }

    @keyframes slide-up-card {
        50% {
            opacity: 1;
            translate: 0;
            scale: 1;
        }

        90% {
            opacity: 0.5;
            scale: 0.6;
            translate: 0 -50cqb;
        }

        100% {
            translate: 0 -100cqi;
            opacity: 0;
        }
    }
}

.video-visual img {
    max-width: 270px;
    opacity: .5;
    margin-top: 100px;
}

.why_choose video {
    width: 100%;
    /* height: 450px; */
}

.agn_choose img {
    width: 60px;
}

.agn_choose {
    background: linear-gradient(90deg, rgba(246, 246, 246, 0.4) 0%, #F0F0F0 100%);
    padding: 20px;
}

.agn_choose:hover {
    background: linear-gradient(90deg, rgb(252 175 63) 0%, #01295a 100%);
    color: var(--white);

}

.agn_choose span {
    display: block;
    font-weight: 600;
    font-size: 20px;
}

.agn_choose p {
    font-size: 12px;
}

.why_video {
    padding-right: 40px;
}

.testimoinal {
    color: var(--white);
    padding: 80px 0;
}

.test_item_bg .img img {
    margin: 10px auto;
    border-radius: 50%;
    border: 2px solid var(--bg_color);
    padding: 5px;
}

.test_item_bg .name {
    display: block;
    font-size: 20px;
    color: var(--bg_color);
}

.contant_test {
    background-color: #02102d;
    padding: 30px;
    border: 1px solid #2a2a2a;
    position: relative;
    margin-top: 50px;
    border-radius: 5px;
}

.contant_test::after {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    left: 45%;
    top: -40px;
    background-color: #02102d;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);

}

.contant_test p {
    font-size: 14px;
}

.test_item_bg {
    margin: 10px;
}


.what_we_do {
    background-color: #fdfdfd;
    background-position: center;
    padding: 60px 0;
    position: relative;
}

.what_box {
    margin: 30px 0;
    padding-top: 11px;
    position: relative;
}

.what_box p {
    font-size: 13px;
    line-height: 24px;
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.what_box img {
    width: 40px;
}

.what_box span {
    font-size: 20px;
    display: block;
    font-weight: 600;
    margin: 10px 0;
}

.what_pera {
    border: 1px solid #a5a5a5;
    padding: 15px;
    margin-top: 15px;
    position: relative;
}

.what_box_left {
    text-align: right;
    position: relative;
}

.what_box_left img {
    margin-right: 20px;
}

.what_box_left .what_pera::after {
    content: "";
    width: 50%;
    height: 1px;
    position: absolute;
    left: 100%;
    top: -1px;
    background-color: #a5a5a5;
}

.what_box_left .what_pera::before {
    content: "";
    width: 1px;
    height: 66px;
    position: absolute;
    right: -1px;
    bottom: 100%;
    background-color: #a5a5a5;
}

.what_box_right .what_pera::after {
    content: "";
    width: 50%;
    height: 1px;
    position: absolute;
    right: 100%;
    top: -1px;
    background-color: #a5a5a5;
}

.what_box_right .what_pera::before {
    content: "";
    width: 1px;
    height: 66px;
    position: absolute;
    left: -1px;
    bottom: 100%;
    background-color: #a5a5a5;
}

.what_box_right img {
    margin-left: 20px;
}

.what_box_left::after {
    content: "";
    width: 30%;
    height: 1px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #a5a5a5;
}

.what_box_right::after {
    content: "";
    width: 30%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #a5a5a5;
}

.what_we_do .img {
    padding: 20px;
    position: relative;
    z-index: 9;
}

.what_we_do .img img {
    border-radius: 10px;
}

.contact {
    padding: 120px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 20px 0;
}

.contact input,
select,
textarea {
    width: 100%;
    padding: 12px 20px;
    background-color: #f1f1f1;
    border: none;
    font-size: 15px;
    margin: 9px 0;
    border-radius: 30px;
}

.contact_detail li {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 18px;
}

.contact_detail li p {
    margin-bottom: 0;
}

.contact_detail li i {
    margin-right: 10px;
    background-color: var(--bg_blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50px;
}

.contact_detail li a {
    color: var(--black);
}

.contact_detail img {
    width: 80%;
}

.contact_detail {
    padding-left: 100px;
}

.contact .container {
    padding: 0 5%;
}

.all_btn {
    padding: 15px 35px;
    color: var(--white);
    border-radius: 50px;
    background-color: var(--bg_blue);
    border: none;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    transition: ease-in-out .5s;
}

.all_btn:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

footer {
    background-size: cover;
    background-position: center;
}

.foot_bg {
    padding-top: 80px;
    background-color: #01295ae1;
}

.foot_contct ul li {
    color: var(--white);
    margin: 20px 0;
}

.foot_contct ul li a {
    color: var(--white);
}

.foot_socal {
    display: flex;
    justify-content: right;
}

.foot_logo {
    text-align: center;
}

.foot_logo img {
    width: 100px;
    background-color: var(--white);
    border-radius: 5px;
}

.foot_socal ul li a {
    color: var(--white);
    display: block;
    margin: 15px 0;
}

.foot_socal ul li a:hover {
    color: var(--bg_color);
}

.foot_socal ul li i {
    margin-right: 8px;
}

.foot_contct li {
    display: flex;
    align-items: center;
}

.foot_contct li p {
    margin-bottom: 0;
}

.foot_contct li i {
    margin-right: 8px;
}

.foot_contct ul li a:hover {
    color: var(--bg_color);
}

.line {
    border-bottom: 1px solid #2e4e74;
    padding-bottom: 20px;
}

.foot_nav ul {
    display: flex;
    margin-top: 30px;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.foot_nav ul li a {
    padding: 20px 20px;
    display: block;
    color: var(--white);
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #2e4e74;
    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: 991px) {
    .contact_detail {
        padding-left: 17px;
    }

    .foot_nav ul li a {
        padding: 20px 8px;
    }
}



@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(--bg_color);
        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: 767px) {
    .what_box_left .what_pera::after {
        display: none;
    }

    .fastest {
        margin-top: -23px;
    }

    .logo_head {
        padding: 0 0px;
    }

    .top_head {
        position: relative;
    }

    .top_bg {
        padding-left: 0px;
    }

    .logo_head {
        position: relative;
    }

    .big_head {
        font-size: 26px;
    }

    .why_text {
        margin-top: 20px;
    }

    .contact_detail {
        margin-top: 20px;
    }

    .foot_socal {
        justify-content: left;
    }

    .foot_logo {
        text-align: left;
    }
    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
}


@media only screen and (max-width: 650px) {
    .ab_img_1 {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .top_details li:first-child {
        display: none !important;
    }

    .fast_text {
        padding-top: 0;
    }

    .small_head {
        font-size: 20px;
    }

    .big_head {
        font-size: 22px;
    }

    .testimoinal {
        padding: 35px 0;
    }

    .margin {
        margin: 35px 0;
    }

    .contact {
        padding: 62px 0;
    }

    .foot_bg {
        padding-top: 24px;
    }

    .fastest_box {
        flex-wrap: wrap;
        display: none;
    }

    .fastest {
        margin-top: -43px;
        padding-top: 48px;
        margin-bottom: 55px;
    }

    .fast_text span {
        font-size: 20px;
    }

    .client_slider {
        margin-top: 30px;
    }
}


@media only screen and (max-width: 550px) {
    .logo img {
        width: 70px;
    }

    .header-contact .all_btn {
        padding: 11px 23px;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

    .search a {
        padding: 14px 18px;
    }

    .header-contact {
        margin-top: -31px;
    }

    .toggle {
        margin-top: 30px;
    }

    .what_we_do {
        padding: 18px 0;
    }

    .video-visual img {
        opacity: 0;
    }

    .section {
        padding: 0 2%;
    }

    .top_details a {
        font-size: 14px;
    }

    .why_video {
        padding-right: 0;
    }
}