/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap');

:root {
    --primary: #5b8056;
    --lgreen: #b5cd33;
    --dgreen: #0f411c;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #333;
    --pfont: 'lato', sans-serif;
}

body {
    font-family: var(--pfont);
    color: var(--bs-gray);
    font-weight: 450;
}

p {
    font-family: var(--pfont);
    font-weight: 400;
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--pfont);
}

.bg-lgreen {
    background: var(--lgreen) !important;
}

.bg-dgreen {
    background: var(--dgreen) !important;
}

.text-dgreen {
    color: var(--dgreen) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}

.btn-primary:focus {
    color: #fff;
    background-color: var(--primary);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);

}

.btn-primary {
    color: var(--light);
    background-color: var(--primary);
    border: 0;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 9%;
}

#header-carousel .carousel-item img.b_p_home_ban {
    object-fit: cover;
    height: 700px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    /* background-color: var(--primary);
    border: 15px solid var(--primary); */
}

.c_hb_prod {
    width: 80%;
}

.c_hb_prod_mar {
    width: 104%;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item .c_infi {
        position: relative;
        min-height: 520px;
    }

    .c_hb_prod {
        width: 70%;
    }

    #header-carousel .carousel-item img.b_p_home_ban {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
    }

    .c_hb_prod_mar {
        width: 80%;
    }

    /* .h_ban_part1 img{
        float: right;
    } */
}



#header-carousel .carousel-item img.c_imge {
    object-fit: cover;
    height: 700px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 260px;
    }

    #header-carousel .carousel-item img.c_imge {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
    }

}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
/* .feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
} */

.feature-item {
    background-color: #253028;
}

.feature-item1 {
    background-color: #253028;
}

.feature-item2 {
    background-color: #253028;
}

.feature-item:hover img,
.feature-item1:hover img,
.feature-item2:hover img {
    transform: scale(1.2);
}

.feature-item img,
.feature-item1 img,
.feature-item2 img {
    transition: transform 3s ease;
    z-index: 1;
}

.c_images {
    z-index: 1;
    bottom: -100%;
}

.c_images:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: -1;
}

.c_prod {
    background-color: #dfd9d9;
}

.c_prods {
    background-color: #f3f3f3;
}

/* .c_prods{
    background-color: #d3c9c9;
}
.c_prods img{
    height: 150px;
} */
.c_prod img {
    height: 200px;
}

/* .c_product{
    z-index: 1;
    bottom: -100%;
}
.c_product:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: -1;
} */
/* .feature-item:hover .c_product , .feature-item1:hover .c_product{
    top: 0;
} */
.feature-item:hover .c_images,
.feature-item1:hover .c_images,
.feature-item2:hover .c_images {
    top: 0;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

.bg_img_01 {
    /* background-image: url("../img/Shutterstock-EbwSIk4ae5.jpg"); */
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.bg_img_01:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #5b8056;
    z-index: -1;
}

.size_lg {
    font-size: 45px !important;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

.c_about {
    background-color: #5b8056;

}

/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}

.c_blog {
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.c_bigimage::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 68%);
    z-index: -1;
}

.c_blog::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.c_img {
    height: 200px;
}

.object-cover {
    object-fit: cover !important;
}

.h_colr {
    background-color: #F1F1F1;
}

.h_our .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.h_our.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    color: var(--light);
    font-size: 30px;
}

.h_our.owl-carousel .owl-nav button.owl-next {
    position: relative;
    float: right;
    color: var(--light);
    font-size: 30px;
}

/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}

/***** Contact Us ***/
.form-control {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background-color: transparent;
    font-size: .9rem;
    padding-left: 0px;
}

/* .form-control2{
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    background-color: transparent;
    font-size: .9rem;
    padding-left: 0px;
} */
.form-control:focus-visible {
    box-shadow: none;
    outline: 0px;
    border-bottom: 1px solid #000;

}

/* .form-control:focus-visible{
    box-shadow: none;
    outline: 0px;
} */
/* .form-control4{
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    background-color: transparent;
    font-size: .9rem;
    padding-left: 0px;
}
.form-control4:focus{
    outline: 0;
} */
a:focus {
    outline: 0;
}

/*** Testimonial ***/
.owl-item.active.center .testimonial-item {
    box-shadow: 0 0 15px #5b8056;
    transition: .5s;
    margin: 40px 0px 0px 0px;
    padding: 30px !important;
}

.owl-item.active.center .testimonial-item img {
    height: 90px !important;
    width: 90px !important;
}

.owl-item.active.center .testimonial-item p {
    font-size: 14px;
}

.owl-item.active.center .testimonial-item h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.owl-item.active.center .testimonial-item span {
    font-size: 14px;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

/* .owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #000000 !important;
} */

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: #5b8056;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

}

@media (min-width: 768px) {
    .c_border::before {
        position: absolute;
        content: '';
        background-color: var(--light);
        height: 204px;
        width: 1px;
        left: -32px;
    }

    .c_borders::before {
        position: absolute;
        content: '';
        background-color: #000;
        height: 100%;
        width: 2px;
        right: 97%;
    }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer {
    background-color: var(--dark);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary);
}

.c_images img {
    height: 60px;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: var(--dark);
}

.copyright a:hover {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-item.active.center {
    transform: scale(1.2);
}

.c_border {
    position: relative;
}

.h_bg_back {
    top: -20%;
    right: 0;
    z-index: -1;
    opacity: 0.1;
    transform: rotate(227deg);
}

.h_bg_about {
    background: url('../img/banner/bannner_01 (1).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /* background-position: right; */
}

.h_bg_about h1 {
    font-size: 55px;
}

/* .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
} */
.navbar-nav .dropdown-menu ul ul {
    padding: 10px 0 10px 0;
    z-index: 99;
    background: var(--bs-white);
    top: 0;
    left: 100%;
    visibility: hidden;
    display: none;
    width: 100%;
}

.navbar-nav .dropdown-menu ul li:hover ul {
    display: block;
    visibility: visible;
}

.navbar-nav .dropdown-menu ul li:hover ul li a {
    color: var(--dark);
}

.navbar-nav .dropdown-menu ul li ul li a {
    padding: 0.25rem 1rem;
    display: block;
}

.form01 {
    background-color: var(--primary) !important;
}

/* .msform{
     border-radius: 0;
    box-sizing: border-box;
    width: 80%;
    margin: 10px 10%;
    position: relative;
    color: #2C3E50;
} */
.msform .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='green'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.msform .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:focus {
    box-shadow: none;
}

.msform1 {
    color: #2C3E50;
}

/* .form-control:focus-visible{
    border: none;
    border-bottom: 2px solid #000;
    border-radius: 0;
    background-color: transparent;
    font-size: .9rem;
    padding-left: 0px;
    box-shadow: none;
} */
.form-control:focus {
    /* padding: 0px !important; */
    background: transparent;

}

.form-floating>label {
    font-size: 15px;
    font-weight: 300;
}

.form-floating>.form-control {
    /* height: 50px; */
}

.form-control:read-only {
    background-color: transparent;
    opacity: 1;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-bottom: 0;
    padding-top: 25px;
}

.c_mission {
    background-color: #79a95d;
}

.c_switches {
    border-radius: 50%;
    border: 2px solid #919191;
    margin-right: 19px;
    padding: 21px;
}
.c_switches2 {
    border-radius: 50%;
    border: 2px solid #919191;
    margin-right: 19px;
    padding: 15px;
}

.c_switches img {
    height: 60px;
    width: 60px;
    object-fit: contain;

}
.c_switches2 img {
    height: 40px;
   width: 40px;
    object-fit: contain;

}

.bg_green {
    color: #358e12;
}

.bg_green1 {
    background-color: #358e12;
}

.bg_green3 {
    background-color: rgb(255, 255, 255);
}

/* .c_switches{
    border-radius: 50%;
    border: solid;
} */


.c_product img {

    padding-top: 40px;
}

.prod_box {
    background: #f6f2f2;
}

.prod_box1 {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 50px 0px 0px 50px;
}

.prod_box1 img {
    width: 100%;
    height: 112px;
    object-fit: contain;
}

.right_button {
    bottom: 40%;
    right: 17px;
    left: unset;
    width: 140px;
    transform: rotate(90deg);
    transform-origin: right;
    position: fixed;
    background: var(--primary);
    border: 0;
    border-radius: 30px;
    z-index: 99;
}

@media (min-width:1500px) {
    .c_blog .py-5 {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

.c_contact {
    background-color: #F2F2F2;
}

.c_form .c_getcontact input {
    min-height: 47px;
    padding: 6px 16px;
    border: 1px solid #000;
}

.c_forms button {
    min-height: 47px;
    padding: 6px 16px;
    border-radius: 0px;
}

.c_vision {
    background-color: #F2F2F2;
}

.c_vision p {
    height: 200px;
    padding: 15px 20px;
}

.c_step1 {
    background-color: #157558;
    width: 61%;
}

.c_step2 {
    background-color: #157375;
    width: 61%;
}

.c_step3 {
    background-color: #477515;
    width: 61%;
}

.c_person {
    bottom: -17px;
}

@media (min-width:768) {
    .c_vision p {
        height: 235px;
    }

    .c_maps img {
        margin-left: 153px;
    }

    .c_careerss li {
        padding-left: 159px
    }
}

.c_career .form-control {
    border: none;
    /* border: 1px solid #030a02; */
    border-radius: 0;
    background-color: #ffffff;
    font-size: .9rem;
    padding-left: 0px;
    box-shadow: none;
}

.form-control.c_sign {
    border: none;
    border-bottom: 2px solid #D3D3D3;
    border-radius: 0;
    background-color: #d3d3d336;
    font-size: .9rem;
    padding-left: 0px;
    box-shadow: none;
}

.btn-outline-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.c_icon img {
    width: 59px;
}

.c_vision h3 {
    font-weight: 600 !important;
}

.h_bg_panter {
    background: url('../img/banner/c partner Bannner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: right;
}

.h_bg_bread {
    background: url('../img/banner/Enhance_P_Banner_01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: right;
}

.h_bg_enhance {
    background: url('../img/banner/bannner_02 (1).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: right;
}

.h_bg_marvel {
    background: url('../img/banner/bannner_06 (1).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: right;
}

.h_bg_conceled {
    background: url('../img/banner/bannner_03 (3).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: right;
}

.h_bg_access {
    background: url('../img/banner/bannner_04 (3).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: right;
}

.h_bg_blog {
    background: url('../img/banner/bannner_05 (3).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: right;
}

.h_bg_panter h1 {
    font-size: 55px;
}

.c_career {
    background-color: #f6f6f6;
}

/* .bg_offwhite{
    background-color: #b9b9b936;
    } */
.c_map ul {
    padding-top: 9px;
    line-height: 0rem;
    margin-left: 128px;
}
.accordion-button{
    background-color: #a4d19e;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #5b8056;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.c_careerss li {
    padding-left: 0px
}

.c_banner h1 {
    font-weight: 400;
    position: absolute;
    top: 40px;
    width: 100%;
    float: left;
}

h1.b_p_ban {
    font-size: 20px;
    top: 23px;
}

.c_images_thank img {
    height: 80px;
}
.c_imge2{
    right: 0;
    top: 30%;
}

@media (min-width:768px) {
    .c_banner h1 {
        font-weight: 400;
        position: relative;
        width: unset;
        /* font-size: 40px; */
    }

    h1.b_p_ban {
        font-size: 40px;
    }

    .h_bg_about img {
        float: right;
        width: 60%;
    }

    .h_bg_enhance img {
        float: right;
        width: 60%;
    }

    .h_bg_marvel img {
        float: right;
        width: 60%;
    }

    .h_bg_conceled img {
        float: right;
        width: 60%;
    }

    .h_bg_access img {
        float: right;
    }

    .h_bg_blog img {
        float: right;
        width: 60%;
    }
    .navbar-nav .dropdown-menu ul ul {
        position: absolute;
    }
}