* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #193455;
    --bg_blue: #4a97c8;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Inter", 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;
    color: #555;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.margin {
    margin: 70px 0;
}

.logo img {
    width: 280px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 999;
}


.search i {
    margin-right: 5px;
}

.search a {
    color: var(--white);
    background: var(--bg_color);
    padding: 11px 9px 11px 11px;
    border-radius: 50%;
}

.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(--black);
    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;
    border-top: 1px solid #e1e1e1;
    /*background-color: var(--bg_color);*/
}

/*nav::after {*/
/*    content: "";*/
/*    width: 40%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*    background-color: var(--bg_blue);*/
/*    clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);*/
/*}*/

.top_bg {
    position: relative;
}

.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;
}


.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;
}
.contact_icon i{
    font-size:30px;
}



/* 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;
}
.head_item img{
    width:100%;
}

.banner_img {
    display: flex;
    justify-content: center;
}

.top_head {
    border-bottom: 1px solid #d6d6d6;
    padding: 5px 0;
    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: 0px 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;
    font-size: 14px;
    position: relative;
    align-items: center;
    z-index: 9;
}

.top_details ul li a {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.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: 36px;
}

.all_btn {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 12px 25px;
    position: relative;
    border-radius: 3px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.all_btn::after {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--white);
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    width: 100%;
    background-color: var(--bg_blue);
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.small_head {
    font-size: 25px;
    color: #1E1E1E;
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.big_head {
    font-size: 35px;
    display: block;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color:#1E1E1E;
}

.why_box img {
    width: 55px;
    margin-bottom: 20px;
}

.why_box span {
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.why_box {
    border: 1px solid #b5b5b5;
    border-right: none;
    padding: 25px;
    margin-top: 30px;
    transition: ease-in-out .5s;
    min-height: 353px;
}

.what_we_do .col-md-6:last-child .why_box {
    border-right: 1px solid #b5b5b5;
}

.why_box:hover {
    border-bottom: 1px solid #b91111;
}

.product .pro_item {
    position: relative;
    margin: 8px;
    text-align: left;
}

.pro_item {
    position: relative;
}

.pro_head {
    position: absolute;
    bottom: 0%;
    left: 0%;
    background-color: var(--white);
    padding: 20px 25px;
    font-size: 25px;
    color: var(--black);
    font-weight: 600;
    transition: ease-in-out .5s;
}

.product_item .pro_item .pro_head {
    font-size: 16px;
    padding: 10px 25px;
}

.pro_item:hover .pro_head {
    left: 5%;
    bottom: 5%;
    color: var(--bg_color);
}

.ab_img {
    float: left;
    width: 47%;
    margin-right: 40px;
}

.ab_img .img_1 {
    margin-top: 40px;
}

.ab_img img {
    border-radius: 5px;
}

.why_item {
    text-align: left;
    padding: 32px;
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.15);
    background-color: var(--white);
    margin: 12px 0;
    margin-right: 15px;
}

.why_item span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.why_bg::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--bg_color);
    border-right: 0;
    opacity: 1;
    border-radius: var(--border-radius-sm);
    transition: ease-in-out .5s;
}

.why_bg {
    position: relative;
}

.why_bg p {
    margin-bottom: 0;
}

.why_bg .icon-bx {
    background: var(--bg_color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    position: absolute;
    z-index: 4;
    opacity: 1;
    min-width: 70px;
    height: 60px;
    display: flex;
    color: #fff;
    right: 0;
    top: 30%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: all 0.8s;
}

.why_bg:hover::after {
    width: 80%;
}

.dz-title {
    display: block;
    font-weight: 800;
    font-size: 18px;
}

.counter {
    background-color: #1e1d23;
    color: var(--white);
    overflow: hidden;
}

.count_contant {
    padding: 80px 0;
    padding-right: 60px;
}
.count_contant .small_head{
    color:#fff;
}
.about-contact {
    display: flex;
    align-items: center;
    width: 100%;
}

.count_contant p {
    color: #969696;
    font-size: 14px;
}

.about-contact i {
    width: 90px;
    min-width: 90px;
    height: 90px;
    color: #fff;
    background: var(--bg_color);
    display: inline-block;
    text-align: center;
    font-size: 45px;
    line-height: 90px;
    margin-right: 20px;
    border-radius: 5px;
}

.about-contact .number {
    font-size: 36px;
    display: block;
    font-weight: 600;
}

.media-full {
    width: 50vw;
    height: 100%;
    border-left: 5px solid var(--bg_color);
    /* overflow: hidden; */
    position: relative;
}

.media-full img {
    height: 100%;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.count_img {
    position: relative;
}

.count-area {
    position: absolute;
    height: 100%;
    left: -60px;
    top: 12%;
    z-index: 99;
}

.count-area-content {
    background-color: var(--white);
    color: var(--black);
    display: flex;
    gap: 0 20px;
    align-items: center;
    padding: 10px 30px;
    margin: 25px 0;
    border-radius: 5px;
}

.count-area-content img {
    width: 50px;
}

.product_boxz_item {
    background: #f8f8f8;
    padding: 31px;
}
.product_boxz_item span{
    display: block;
    font-size: 22px;
    margin: 6px 0;
    font-weight: 600;
}
.product_boxz_item img{
    width:50px;
}
.coount_num {
    font-size: 40px;
    font-weight: 600;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.testmoinal {
    position: relative;
    z-index: 9;
     overflow: hidden;
}

.test_item {
    background-color: var(--bg_color);
    padding: 30px;
    color: var(--white);
    margin: 0 8px;
    position: relative;
}
.test_item p{
    color:#fff;
}

.clients img {
    margin: auto;
}
.client_slider .img{
    padding:60px;
}

.name_box img {
    width: 80px;
    border-radius: 50%;
    border: 3px solid var(--bg_blue);
}

.name_box .name {
    display: block;
    font-size: 20px;
    font-weight: 800;
}

.testmoinal .media-full {
    margin-left: -100px;
    z-index: -1;
    border: none;
}

.test_bg {
    padding: 60px 0;
}

.quote {
    position: absolute;
    right: 5%;
    bottom: 5%;
    opacity: .5;
}

.quote i {
    font-size: 80px;
}

.contact form {
    background-color: var(--bg_color);
    padding: 30px;
}

.contact form input,
textarea,
select {
    width: 100%;
    padding: 15px;
    outline: none;
    border: none;
    margin: 10px 0;
    background-color: #ffffff38;
    color: var(--white);
}

.contact form select option {
    color: var(--black);
}

.contact form input::placeholder,
.contact form textarea::placeholder {
    color: #fff;
}

.contact_box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.contact_box .icon i {
    width: 65px;
    height: 65px;
    color: #fff;
    background: var(--bg_color);
    display: inline-block;
    text-align: center;
    font-size: 26px;
    line-height: 65px;
    margin: 10px;
}

.contact_box .icon {
    position: relative;
}

.contact_box .icon::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--bg_blue);
    border-right: 0;
    opacity: 1;
    transition: ease-in-out .5s;
}

.contact_box .icon:hover::after {
    width: 70%;
}

.contact_box a {
    color: #3b3b3b;
    font-size: 20px;
    font-weight: 600;
}

.contact_box span {
    display: block;
    font-size: 18px;
}

.contact_box p {
    margin-bottom: 0;
    font-weight: 600;
    color: #3b3b3b;
}

footer {
    color: #000;
    padding-top: 50px;
    z-index: 9;
    position: relative;
    background-size: cover;
}
footer p{
    color:#eaeaea;
}
footer:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffffffe6;
      z-index: -1;
    transition: 1s;
}
.foot_logo img {
    width: 240px;
    margin-bottom: 15px;
}

.foot_logo p {
    font-size: 13px;
}

.foot_head {
    font-size: 30px;
    display: block;
    font-weight: 800;
    margin-bottom: 20px;
}

.foot_nav ul li a {
    color: #000;
    display: block;
    margin: 10px 0;
}

.foot_nav ul {
    max-height: 220px;
    overflow: auto;
}
.foot_nav_pro ul li{
    width:48%;
}
.foot_nav_pro ul{
    display:flex;
    flex-wrap: wrap;
}

.foot_contact .contact_box .icon i {
    width: 44px;
    height: 44px;
    color: #fff;
    background: var(--bg_color);
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    margin: 0;
}

.foot_contact .contact_box a {
    color: #000;
    font-size: 18px;
}

.foot_contact .contact_box p {
    color: #000;
    font-weight: 400;
}

.foot_contact .contact_box span {
    font-size: 14px;
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #757575;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--black);
}

.copy_right p a {
    color: var(--block);
}

        
.tabs__btn.active {
    color: #193455;
    border-bottom: 1px solid #193455;
}

.tabs__btn:hover {
    color: #193455;
    border-bottom: 1px solid #193455;
}
.tabs__body {
    display: none;
    font-size: 18px;
}

.tabs__body.active {
    display: block;
}
.tabs__btn {
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid #b7b7b7;
    color: #b5b5b5;
    cursor: pointer;
}




.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) {
    .nab_bar li a {
        padding: 20px 14px;
    }

    .social {
        justify-content: center;
    }

    .top_bg p {
        text-align: center;
    }

    .about-contact .number {
        font-size: 28px;
    }

    .about-contact i {
        width: 75px;
        height: 75px;
        font-size: 32px;
        line-height: 75px;
    }

    .toggle {
        position: relative;
        z-index: 99;
    }
    .waviy{
        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(--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%;
    }

    .top_details ul li:first-child {
        display: none !important;
    }
     .logo img {
        width: 172px;
    }
    .top_details span {
        display: none;
    }

}

@media only screen and (max-width: 767px) {
    .top_bg .col-lg-8 p {
        display: none;
    }

    .ab_img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 20px;
    }

    .why_box {
        border: 1px solid #b5b5b5;
        margin-top: 5px;
    }

    .why_bg {
        margin: 1px 0;
    }

    nav {
        padding: 8px 0;
    }

    .search {
        order: 2;
    }

    .pro_head {
        font-size: 16px;
        padding: 10px 25px;
    }

    .count_contant {
        padding: 44px 0;
        padding-right: 0;
    }

    .media-full {
        width: 100%;
    }

    .testmoinal .media-full {
        margin-left: 0;
    }

    .contact_details {
        margin-top: 20px;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
}


@media only screen and (max-width: 600px) {
    .margin {
        margin: 30px 0;
    }

    .coount_num {
        font-size: 25px;
    }

    .count-area-content {
        gap: 0 10px;
        margin: 11px 0;
    }

    .count-area {
        left: 0;
        top: 5%;
    }
    .top_details ul li:nth-child(2) {
        display: none !important;
    }
    .foot_nav_pro ul li{
        width:100%;
    }
}

@media only screen and (max-width: 550px) {
    .pro_head {
        position: relative;
    }

    .product_item .pro_item .pro_head {
        text-align: left;
        padding: 10px 12px;
    }
    .client_slider .img {
        padding: 24px;
    }
        .count-area {
        left: 0;
        top: -20px;
    }
}