* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #467c38;
    --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: 100px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 99;
}


.search i {
    margin-right: 5px;
}

.search a {
    color: var(--black);
}

.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;
}


#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;
}

.nab_bar li {
    position: relative;
}


nav {
    position: relative;
    background-color: var(--white);
}

.droupdown {
    position: absolute;
    background-color: var(--white);
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 450px;
    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: 10px 15px;
    color: var(--black);
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}


/* 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;
}

/* Search Style */

.top_head {
    background-color: var(--black);
    padding: 12px 0 8px;
    position: relative;
}


.socal_media {
    display: flex;
    gap: 10px;
    color: var(--black);
    position: relative;
    z-index: 99;
    align-items: center;
    justify-content: end;
}

.socal_media a {
    color: var(--white);
    padding: 0px 5px;
    font-size: 14px;
}

.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 {
    position: relative;
}

.header-contact a {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
}

.out_m {
    margin: 0 5px;
    border-radius: 5px;
}

.head_item img {
    border-radius: 5px;
}

.top_head {
    margin-top: 5px;
}

.cus_box {
    display: flex;
    gap: 20px;
    height: 135px;
    align-items: start;
    background-color: var(--bg_color);
    padding: 15px;
    color: var(--white);
}

.cus_box img {
    width: 70px;
}

.cus_box span {
    font-size: 18px;
    display: block;
    font-weight: 600;
}

.ab_img {
    width: 50%;
    float: left;
    margin-bottom: 10px;
    padding-right: 15px;
}

.ab_home {
    display: flex;
}

.ab_img img {
    border: 1px solid #cecece;
    border-radius: 5px;
}

.img_1 img:first-child {
    margin-bottom: 10px;
}

.product .samll_head {
    color: var(--white);
}

.samll_head {
    display: block;
    font-size: 25px;
    font-weight: 600;
    color: var(--bg_color);
}

.big_head {
    font-size: 40px;
    font-weight: 600;
    display: block;
    margin-bottom: 10pxs;
}

.pro_box {
    position: relative;
    border: 1px solid #adadad;
    border-radius: 5px;
    height: 308px;
    padding: 18px 5px 10px;
    transition: ease-in-out .5s;
}

.pro_box:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #e2e2e2;
}

.pro_box:hover .pro_head {
    color: var(--black);
}

.pro_box img {
    margin: auto;
}

.pro_box a {
    color: #000;
}

.pro_head {
    font-size: 20px;
    color: var(--white);
    display: block;
    margin: 8px 0;
    font-size: 16px;
}

.pro_box img {
    border-radius: 5px;
}

.product {
    background-color: #204f72;
    padding: 80px 0;
    color: var(--white);
}

.client_item img {
    width: 120px;
    margin: auto;
}

.count_box:nth-child(1) {
    border-right: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
}

.count_box:nth-child(2) {
    border-bottom: 1px solid #c8c8c8;
}

.count_box:nth-child(3) {
    border-right: 1px solid #c8c8c8;
}

.count-area-content {
    padding: 30px;
}

.coount_num {
    font-size: 45px;
    font-weight: 600;
}

.count_box:nth-child(1) .count-area-content {
    padding-left: 0;
}

.count_box:nth-child(2) .count-area-content {
    padding-right: 0;
}

.count_box:nth-child(3) .count-area-content {
    padding-left: 0;
}

.count_box:nth-child(4) .count-area-content {
    padding-right: 0;
}

.count-area {
    background-attachment: fixed;
}

.count_bg {
    background-color: #000000ca;
    padding: 80px 0;
    color: var(--white);
}

.count_text {
    padding-right: 50px;
}

.pro_item {
    margin: 10px;
    background-color: #000;
    border-radius: 8px;
}

.name_box .name {
    display: block;
    font-size: 19px;
    font-weight: 600;
}

.name_box img {
    border-radius: 50%;
}

.star {
    width: 100px;
    margin-bottom: 10px;
}

.test_item {
    border: 1px solid #000;
    margin: 8px;
    padding: 20px;
    border-radius: 8px;
    height:250px;
}

.contact-information .socal_media a {
    color: #000;
    border: 1px solid;
    padding: 10px 11px 8px;
    border-radius: 24px;
}

.contact-information .socal_media {
    justify-content: left;
}

.contact-information .socal_media a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}


.widget-title .con_head {
    color: #000;
    margin-bottom: 30px;
    font-size: 26px;
    display: block;
}

.get-in-touch {
    position: relative;
    display: flex;
    margin: 40px 0;
    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;
}

.contact-information .get-in-touch span {
    font-weight: 600;
    color: #000;
    display: block;
}

.contact-information .get-in-touch a {
    color: var(--black);
    font-size: 20px;
}

ul.social-media {
    display: flex;
    margin-top: 30px;
}

ul.social-media li {
    position: relative;
    margin-left: 0px;
}

ul.social-media li a {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

ul.social-media li a i {
    color: #ffffff;
    font-size: 12px;
    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;
}

.contact-information ul.social-media li a i {
    color: #000;
}

.content-info {
    border-left: 1px solid #d4d4d4;
    padding-left: 60px;
}

.content-info input,
select {
    width: 100%;
    height: 60px;
    border: 0;
    outline: none;
    padding-left: 20px;
    border: 1px solid #d4d4d4;
    margin-bottom: 20px;
}

.content-info textarea {
    width: 100%;
    border: 0;
    outline: none;
    padding-top: 15px;
    padding-left: 20px;
    border: 1px solid #d4d4d4;
    margin-bottom: 20px;
}

.all_btn {
    border: 1px solid #000;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    color: #000;
    font-weight: 600;
    background-color: transparent;
    transition: ease-in-out 0.3s;
}

.all_btn:hover {
    background-color: var(--bg_color);
    border-color: #b3d0de;
    color: var(--white);
}

.all_btn i {
    margin-left: 8px;
    transform: rotate(-45deg);
    transition: ease-in-out 0.3s;
}

.all_btn:hover i {
    transform: rotate(0deg);
}


footer {
    background-color: var(--black);
    padding-top: 60px;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

footer .row {
    align-items: center;
}

.foot_logo img {
    width: 150px;
    border-radius: 5px;
    padding: 5px;
}

.foot_logo {
    border-right: 1px solid #494949;
}

.foot_nav ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

.foot_nav ul li a {
    color: var(--white);
    padding: 0 13px;
    font-size: 14px;
}


.foot_cont ul li a {
    color: var(--white);
}

.foot_cont ul li {
    margin: 15px 0;
    font-size: 14px;
}

.foot_cont ul li i {
    margin-right: 8px;
}

footer .socal_media {
    width: 100%;
}

.foot_pro {
    padding: 40px 0 30px;
    border-top: 1px solid #494949;
}

.foot_pro ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.foot_pro ul li a {
    color: var(--white);
    font-size: 14px;
}

.foot_bg {
    position: absolute;
    bottom: 0;
    opacity: .7;
}

.copyright_area {
    margin-top: 30px;
    background-color: #000;
    position: relative;
    z-index: 9;
}

.copyright_area p {
    margin-bottom: 0;
    color: var(--white);
    padding: 10px;
    font-size: 15px;
}

.copyright_area p a {
    color: var(--white);
    text-decoration: underline !important;
}

.foot_text {
    padding: 30px 0;
    border-top: 1px solid #494949;
    position: relative;
    z-index: 9;
}

.foot_text p {
    color: var(--white);
    font-size: 14px;
}












.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: 300px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background-color: #0a194abd;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 50%;
    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;
    }

    .top_details li:last-child {
        display: none;
    }

    .cus_box {
        margin-bottom: 10px;
    }

    .ab_img {
        width: 57%;
        margin-bottom: 10px;
        padding-right: 15px;
    }
}

@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: #204f72;
    }

    .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: 230px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 56%;
    }

}


@media only screen and (max-width: 767px) {
    .ab_img {
        width: 100%;
        margin-bottom: 10px;
        padding-right: 0px;
    }

    .big_head {
        font-size: 25px
    }

    .samll_head {
        font-size: 20px;
    }

    .coount_num {
        font-size: 33px;
    }

    .count-area-content {
        padding: 15px;
    }

    .content-info {
        padding-left: 8px;
        margin-top: 25px;
    }

    .ab_text {
        margin-top: 20px;
    }
    .ab_item{
        width: 100%;
            margin-right:0px;
    }
}


@media only screen and (max-width: 767px) {
    .margin {
        margin: 40px 0;
    }

    .pro_head {
        font-size: 17px;
    }
    .product{
        padding: 40px 0;
    }
}