* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #0d49e2;
    /* --bg_color-2: #e44612; */
    --white: #fff;
    --black: #000;
}

body {
    font-family: "League Spartan", 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;

}


@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
    font-family: "League Spartan", sans-serif;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.margin {
    margin: 70px 0;
}

.logo img {
    width: 300px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 999;
}


.search i {
    margin-right: 5px;
}

.search a {
    color: var(--bg_color);
}

.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 .logo img {
    width: 250px;
}

#myHeader.sticky nav {
    padding: 0 0;
}

#myHeader.sticky .top_head {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 32%;
    color: var(--black);
    cursor: pointer;
    font-size: 14px;
}

.nab_bar li a {
    color: var(--black);
    padding: 28px 20px;
    display: inline-block;
    font-size: 16px;
}

.nab_bar li {
    position: relative;
    z-index: 9;
}


nav {
    position: relative;
    border-bottom: 1px solid #717171;
}

.main_banner {
    position: relative;
}

.head_bg {
    background: #090d259e;
    padding: 8% 5% 8%;
}

.droupdown {
    position: absolute;
    background-color: #000;
    padding: 20px 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;
    border-left: 5px solid #fff;
    position: relative;
    padding: 40px 30px;
}

.banner_text::after {
    content: "";
    width: 80%;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
}

.banner_text::before {
    content: "";
    width: 60%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
}

.baner_head {
    font-size: 45px;
    font-weight: 600;
    font-family: "Merriweather", serif;
}

.small_baner_head {
    font-size: 30px;
    display: block;
    color: #3bfaf2;
}

.nav_contact {
    color: var(--black);
    font-size: 18px;
}

.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: 15px;
}

.banner_pera {
    margin: 15px 0;
}




/* 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 {
    background-color: var(--bg_color);
    position: relative;
}

.social {
    background: #090d25;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 100%, 100% 100%, 0 100%, 0 50%);
    clip-path: polygon(0 0, 84% 0, 100% 100%, 100% 100%, 0 100%, 0 50%);
    padding-left: 30px;
    margin-left: -20px;
}

.socal_media {
    display: flex;
    gap: 2px;
    color: var(--black);
    position: relative;
    z-index: 99;
    align-items: center;
}

.socal_media a {
    color: var(--white);
    padding: 12px 5px;
    font-size: 14px;
}

.socal_media a:hover {
    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: 20px;
    color: var(--white);
    font-size: 14px;
    position: relative;
    z-index: 9;
}

.top_details ul li a {
    color: var(--white);
}

.top_details ul li i {
    margin-right: 5px;
}

.header-contact,
.search {
    position: relative;
    z-index: 9;
}

.all_btn {
    background: var(--bg_color);
    border-radius: 0;
    color: var(--white);
    display: inline-block;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    overflow: hidden;
    padding: 12px 38px;
    position: relative;
    transition: all .8s;
    border: none;
}

.all_btn::after {
    background: #3bfaf2;
    border-radius: 0;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .4s ease-in-out 0s;
    width: 10px;
}

.all_btn:hover::after {
    height: 100%;
    left: 0;
    right: auto;
    width: 100%;
}

.all_btn:hover {
    color: var(--black);
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn i {
    font-size: 14px;
    transform: rotate(-40deg);
    margin-left: 4px;
    transition: all .4s ease-in-out 0s;
}

.all_btn:hover i {
    transform: rotate(0deg);
}

.small_head {
    font-size: 20px;
    display: inline-block;
    color: var(--bg_color);
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 10px;
    z-index: 9;
}

.small_head::after {
    background: var(--bg_color);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 63px;
    z-index: -1;
}

.small_head::before {
    background: #fff;
    border: 1px solid var(--bg_color);
    border-radius: 50%;
    bottom: -3px;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    width: 8px;
}

.big_head {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ab_img {
    float: left;
    margin-right: 40px;
    width: 40%;
}

.offering_box img {
    width: 60px;
    margin-bottom: 15px;
}

.offering_box span {
    display: block;
    font-size: 25px;
    font-weight: 600;
}

.offering {
    padding: 60px 0;
    background-color: #d0d0d076;
}

.offering_box {
    background-color: var(--white);
    padding: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: ease-in-out .5s;
    border-radius: 8px;
    height: 379px;
}

.offering_box:hover {
    transform: scale(1.1);
}

.product {
    background-color: #141422;
    padding: 70px 0;
}

.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 10px 0;
}

.pro_text {
    margin: 0 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px;
    background-color: #20202D;
    color: #fff;
    margin-top: -25px;
    position: relative;
    z-index: 9;
    border-radius: 10px;
}

.pro_text span {
    font-size: 25px;
    display: block;
    font-weight: 600;
}

.pro_text a {
    border: 1px solid #777777;
    color: var(--white);
    padding: 5px 17px 4px;
    display: inline-block;
    border-radius: 15px;
    margin-top: 10px;
}

.pro_item {
    margin: 10px;
    text-align: left;
}

.pro_item img {
    border-radius: 10px;
}

.pro_text a:hover {
    background-color: #3bfaf2;
    color: var(--black);
    border: 1px solid #3bfaf2;
}

.slick-dots {
    display: flex;
    justify-content: center;
}

.slick-dots button {
    border: none;
    font-size: 0;
}

.slick-dots li button {
    padding: 3px 20px;
    margin: 2px;
    border-radius: 5px;
}

.slick-dots li.slick-active button {
    background-color: var(--bg_color);
}

.product .big_head {
    color: var(--white);
}


.testimonial {
    background-color: #f3f3f3;
    padding: 70px 0;
    position: relative;
}

.testimonial::after {
    content: "";
    width: 60%;
    height: 90%;
    position: absolute;
    left: 0;
    top: 5%;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
}

.name_box img {
    border-radius: 50%;
    width: 80px;
}

.name_box .name {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.stars {
    width: 100px;
}

.test_bg {
    position: relative;
    z-index: 9;
    padding-right: 80px;
}


.count_bg {
    background-color: #141422;
    margin: 20px;
    border-radius: 15px;
    padding: 80px 20px 100px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.count_box {
    position: relative;
    z-index: 9;
}

.count_bg .small_head {
    color: var(--white);
}

.count_bg .big_head {
    position: relative;
    z-index: 9;
}

.coount_num {
    font-size: 45px;
    font-weight: 600;
}

.count-area-content img {
    width: 70px;
}

.funfact__shape-one {
    position: absolute;
    top: 60px;
    left: -45px;
}

.funfact__shape-two {
    position: absolute;
    top: 0px;
    left: 150px;
    z-index: 1;
}

.funfact__shape-three {
    position: absolute;
    right: -171px;
    bottom: -35px;
}

.funfact__shape-four {
    position: absolute;
    right: 71px;
    bottom: -19px;
    z-index: 1;
}

.funfact__shape-five {
    position: absolute;
    top: -330px;
    right: -190px;
    z-index: 1;
}

.funfact__shape-six {
    position: absolute;
    left: -61px;
    bottom: -93px;
    animation: zumpBottom 2s linear infinite;
}

@keyframes zumpBottom {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    50% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}


.why_img {
    padding: 15px;
    background: #ddd;
    border: 1px solid var(--bg_color);
}

.index__why-left {
    width: 48%;
    margin: 15px 0;
}

.index__why-content {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contolll__service-ithumb {
    background: rgb(3, 44, 91);
    padding: 10px;
    border-radius: 50px;
    display: inline-block;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contolll__service-ileft {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.index__why-left img {
    width: 50px;
}

.contolll__service-stitle {
    font-size: 20px;
    color: #333333;
    font-weight: 700;
}

.contact-info_icon {
    color: var(--white);
    text-align: center;
    font-size: 28px;
    position: relative;
    background-color: var(--bg_color);
    padding: 18px 22px 13px;
    display: block;
    border-radius: 50%;
}

.contact-info_title {
    font-weight: 600;
    font-size: 18px;
    display: block;
    line-height: 26px;
    color: rgb(74, 74, 74);
    margin-bottom: 5px;
}

.media-body a {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}

.contact-info {
    margin: 30px 0;
}

.contact form input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid transparent;
    background-color: var(--white);
    outline: none;
}

.contact form {
    background-color: #F3F3F3;
    padding: 40px 60px 60px 60px;
}

footer {
    background-color: #141422;
    padding-top: 60px;
    position: relative;
    color: var(--white);
    z-index: 9;
    overflow: hidden;
}

footer .social-media {
    display: flex;
    margin-top: 30px;
}

footer .social-media li a i {
    color: #ffffff;
    font-size: 15px;
    width: 45px;
    border: 1px solid #444;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 14px;
    padding: 0;
    transition: 0.5s ease-in-out;
}

footer ul.social-media li a i {
    border: 1px solid #ffffff;
}

.get-in-touch span {
    display: block;
}

.foot_logo img {
    background-color: var(--white);
    border-radius: 5px;
    padding: 0 8px;
    margin-bottom: 10px;
    width: 220px;
}

.get-in-touch {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.get-in-touch i {
    background-color: var(--bg_color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    color: #fff;
    font-size: 20px;
}

.footer_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: zumpBottom 2s linear infinite;
}

.foot_contact .get-in-touch i {
    background-color: var(--white);
    color: var(--bg_color);
}

.foot_head {
    font-size: 25px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.foot_logo a {
    display: block;
    color: var(--white);
    margin: 10px 0;
}

.foot_contact .get-in-touch span,
.foot_contact .get-in-touch a {
    color: var(--white);
}

.foot_contact .get-in-touch i {
    background-color: var(--white);
    color: var(--bg_color);
}

.foot_logo ul {
    height: 215px;
    overflow: auto;
}

footer ul.social-media li a i {
    border: 1px solid #ffffff;
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #757575;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
}

.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) {
    .top_address {
        display: none;
    }

    .header-contact {
        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: var(--bg_color);
    }

    .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: 380px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 66%;
    }

}


@media only screen and (max-width: 767px) {
    .baner_head {
        font-size: 25px;
    }

    .small_baner_head {
        font-size: 20px;
    }

    .big_head {
        font-size: 28px;
    }

    .ab_img {
        margin-right: 0px;
        width: 100%;
        margin-bottom: 15px;
    }

    .pro_text span {
        font-size: 20px;
    }

    .testimonial .img {
        position: relative;
        z-index: 99;
    }

    .testimonial::after {
        width: 90%;
    }

    .count-area-content {
        margin-top: 30px;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }

    .inner_header img {
        height: 228px;
    }

}

@media only screen and (max-width: 600px) {
    .offering {
        padding: 30px 0;
    }

    .margin {
        margin: 40px 0;
    }

    .count-area-content img {
        width: 50px;
    }

    .coount_num {
        font-size: 35px;
    }
    #myHeader.sticky .logo img {
    width: 206px;
}
}

@media only screen and (max-width: 500px) {
    .testimonial::after {
        width: 100%;
    }

    .big_head {
        font-size: 24px;
    }

    .index__why-left {
        width: 100%;
        margin: 6px 0;
    }

    .contact form {
        padding: 29px 20px 35px 20px;
    }

    .contact-info_icon {
        font-size: 15px;
        padding: 9px 12px 7px;
    }

    .banner_text {
        padding: 24px 14px;
    }

    .logo img {
        width: 205px;
    }
}