* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #e8312d;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Archivo", 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;
    font-family: "IBM Plex Sans", 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: 90px;
    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 .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;
    background-color: var(--bg_color);
}

.nav_bg {
    background-color: var(--white);
    position: relative;
    border-radius: 30px 0 0 0;
    padding-left: 20px;
}

.nav_bg::after {
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--white);
}

.top_bg {
    position: relative;
}

.top_bg::after {
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--white);
}

.main_banner {
    position: relative;
}

.head_bg {
    background: #09082cc7;
    padding: 0 0 0 5%;
}

.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;
}

.baner_head {
    font-size: 41px;
    font-weight: 700;
}

.small_baner_head {
    font-size: 30px;
    display: block;
    color: var(--bg_color);
}


.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;
}

.socal_media {
    display: flex;
    gap: 2px;
    color: var(--black);
    position: relative;
    z-index: 99;
    align-items: center;
}

.socal_media a {
    color: var(--white);
    padding: 5px 8px;
    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;
    align-items: center;
    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;
}

.social {
    display: flex;
    align-items: center;
    color: var(--white);
    gap: 0 10px;
    justify-content: right;
}

.social p {
    margin-bottom: 0;
}

.all_btn {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    border: none;
}

.all_btn:hover::after {
    width: 100%;
    height: 100%;
    bottom: 0;
    border-radius: 5px;
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn i {
    margin-left: 5px;
}

.all_btn::after {
    content: "";
    background-color: var(--rofiex-black2, #222222);
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 27px;
    height: 27px;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.banner_img {
    margin-left: -110px;
}

.ab_img {
    width: 50%;
    float: left;
    padding-right: 40px;
}

.small_head {
    display: block;
    font-size: 20px;
    color: var(--bg_color);
    font-weight: 600;
}

.small_head i {
    margin-right: 5px;
}

.big_head {
    display: block;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-box_icon {
    width: 130px;
    height: 130px;
    line-height: 130px;
    background-color: var(--white);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 0px 77px 10px rgba(170, 170, 170, 0.13);
    margin: 0 auto 20px auto;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    position: relative;
}

.process-box-wrap {
    position: relative;
}

.process-box-wrap:after {
    content: "";
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    height: 36px;
    width: 96px;
    position: absolute;
    top: 30px;
    right: -48px;
}

.process-box-wrap:last-child::after {
    display: none;
}

.process-box_title {
    font-size: 22px;
    display: block;
    font-weight: 600;
}


.process-box-wrap:nth-child(even):after {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.process-box-wrap:hover .process-box_icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.process-box-wrap:hover .process-box_icon {
    background-color: var(--bg_color);
}

.pro_num {
    display: block;
    font-size: 18px;
    color: var(--bg_color);
}

.pro_head {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
    transition: ease-in-out .5s;
}

.pro_text a {
    background-color: var(--white);
    padding: 10px 20px;
    color: var(--bg_color);
    display: inline-block;
    border-radius: 5px;
}

.pro_item {
    position: relative;
    margin: 8px;
    padding: 30px;
    text-align: left;
}

.pro_item img {
    width: 100%;
}

.pro_item::after {
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #f6f6f6;
    z-index: -2;
    transition: ease-in-out .5s;
}

.pro_item::before {
    content: "";
    width: 100%;
    height: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000;
    z-index: -1;
    transition: ease-in-out .5s;
}

.pro_text {
    padding: 15px 0 8px;
}

.pro_item:hover::before {
    height: 50%;
}

.pro_item:hover .pro_head {
    color: var(--white);
}

.pro_item a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slick-dots li button {
    border: none;
    font-size: 0;
    background-color: var(--black);
    padding: 6px;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background-color: var(--bg_color);
    padding: 8px;
}

.testimoinal {
    position: relative;
    color: var(--white);
}

.cs_testimonial_1_thumb {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 44%;
    background-size: cover;
    background-position: left center;
}

.test_box {
    padding: 100px 0;
}

.stars {
    width: 100px;
    margin-bottom: 10px;
}

.test_item p {
    font-style: italic;
}

.name_box .name {
    display: block;
    font-size: 23px;
    font-weight: 600;
    color: var(--bg_color);
}

.name_box img {
    border-radius: 50%;
    border: 2px solid var(--bg_color);
    width: 70px;
}

.test_box li button {
    background-color: var(--white);
}

.cs_testimonial_1_quote_wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    width: 120px;
    left: -40px;
    border: 3px solid var(--bg_color);
    border-radius: 50%;
    padding: 7px;
}

.cs_testimonial_1_quot {
    background-color: var(--bg_color);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cs_testimonial_1_quot i {
    font-size: 50px;
}

.count-icon img {
    width: 70px;
}

.coount_num {
    font-size: 45px;
    font-weight: 900;
    margin-top: 8px;
}

.count-title {
    font-size: 18px;
    font-weight: 600;
}

.client_item {
    padding: 0 10px;
}

.client_item img {
    margin: auto;
}

.why_item img {
     width: 60px; 
}

.why_item span {
    display: block;
    font-size: 23px;
    font-weight: 700;
    margin: 8px 0;
}

.why_choose {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.why_box {
    margin-left: 31%;
    width: 54%;
}

.contact form input,
select,
textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    margin: 8px 0;
    font-size: 14px;
    outline: none;
}

.contact-info_title {
    font-weight: 600;
    font-size: 16px;
    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_icon i {
    color: var(--bg_color);
    font-size: 25px;
}

.contact-info {
    margin: 30px 0;
}

.contact_details {
    padding-left: 50px;
}

.contact_details .socal_media a {
    color: var(--black);
    border: 1px solid var(--black);
    padding: 6px 10px;
    border-radius: 2px;
}

.contact_details .socal_media {
    gap: 2px;
}

.contact_details .socal_media a:hover {
    background-color: var(--bg_color);
    color: var(--white);
    border: 1px solid var(--bg_color);
}

.contact_details .contact-info:first-child {
    margin-top: 0;
}

footer {
    background-color: var(--black);
}

.cs_footer_contact_card_icon {
    background-color: var(--white);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg_color);
    font-size: 20px;
}

.cs_footer_contact_card {
    color: var(--white);
}

.cs_semibold a {
    font-size: 28px;
    color: var(--white);
    font-weight: 600;
}

.foot_logo img {
    background-color: var(--white);
    padding: 15px 12px;
}

.foot_logo {
    text-align: center;
}

footer .socal_media {
    justify-content: end;
}

footer .socal_media a {
    background: var(--white);
    border-radius: 50%;
    color: var(--bg_color);
    font-size: 16px;
    padding: 8px 12px;
}

footer .socal_media {
    gap: 8px;
}

.foot_head {
    color: var(--white);
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.foot_nav ul li a {
    display: block;
    color: var(--white);
    padding: 6px 0;
    font-size: 14px;
}

.foot_bg {
    background-color: #090d25;
    margin-bottom: 40px;
}

.foot_nav ul {
    height: 200px;
    overflow: auto;
}

.gallery ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery ul li {
    width: 22%;
}

.gallery ul {
    height: 200px;
    overflow: auto;
}

.foot_nav_2 {
    padding-left: 100px;
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #757575;
    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) {
    .header-contact {
        display: none;
    }

    .why_box {
        margin-left: 18%;
        width: 70%;
    }
}




@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: 200px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 50%;
    }

}


@media only screen and (max-width: 767px) {
    .banner_img {
        margin-left: 0;
    }

    .baner_head {
        font-size: 30px;
    }

    .small_baner_head {
        font-size: 20px;
    }

    .head_bg {
        padding: 0 0 0 0%;
    }

    .banner_text {
        padding: 7% 2% 4%;
    }

    .ab_img {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }

    .cs_testimonial_1_thumb {
        display: none;
    }

    .count-area-content {
        margin-bottom: 40px;
    }

    .coount_num {
        font-size: 32px;
    }

    .why_box {
        margin-left: 0%;
        width: 100%;
    }

    .why_choose {
        padding: 44px 0;
    }

    .contact_details {
        padding-left: 0px;
        margin-top: 40px;
    }

    .foot_logo {
        text-align: left;
        margin: 12px 0;
    }

    footer .socal_media {
        justify-content: left;
    }

    .foot_nav_2 {
        padding-left: 0px;
    }

    .foot_bg {
        padding: 20px 0;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 600px) {
    .process-box-wrap:after {
        display: none;
    }

    .top_head .social {
        justify-content: center;
    }

    .margin {
        margin: 40px 0;
    }

    .big_head {
        font-size: 27px;
    }

    .small_head {
        font-size: 18px;
    }

    .top_details ul {
        gap: 6px;
    }

    .logo img {
        width: 70px;
    }

    .foot_logo img {
        padding: 0;
        border-radius: 5px;
    }

    .cs_semibold a {
        font-size: 20px;
    }

    .top_bg::after,
    .nav_bg::after {
        display: none;
    }
}