* {
    --primary-font: "Work Sans", sans-serif;
    --green: #00674E;
    --orange: #fe650a;
    --lgreen: #DAE9E5;
    --lgreen2: #F8F8FB;
    --gray: #4B4B4B;
    --black1: #131126;
    --gap: 6rem;
}

html {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: var(--primary-font);
    scroll-behavior: smooth;
}

a {
    cursor: pointer !important;
    transition: all 0.3s;
}

/* Gap */
.sec-padd-t {
    padding-top: var(--gap);
}

.sec-padd-b {
    padding-bottom: var(--gap);
}

.sec-padd {
    padding: var(--gap) 0 var(--gap) 0;
}

/* Gap end */
h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.6rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    color: var(--orange);
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 400;
}

img {
    max-width: 100%;
}

/* header */
.web_header {
    background: var(--bs-white);
    -webkit-box-shadow: rgb(0 0 0 / 41%) 0px 0px 2px 0px;
    box-shadow: rgb(0 0 0 / 41%) 0px 0px 2px 0px;
    position: sticky;
    top: 0;
    z-index: 99;
}

.web_header .navbar-expand-lg {
    padding: 0.8rem 0;
    padding-top: 1rem;
}

.web_header .navbar-brand img {
    height: 4.5rem;
}

.web_header .navbar-nav {
    gap: 3rem;
}

.web_header .navbar-nav li a {
    font-size: 1.7rem;
    color: var(--bs-black);
}

.web_header .navbar-nav li a.active {
    color: var(--green);
/*     font-weight: 600; */
}

.web_header .navbar-nav li a:hover {
    color: var(--green);
}

.web_header .navbar-nav .dropdown-item, .web_header .navbar-nav .dropdown-menu li a {
    font-size: 1.6rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--bs-border-color-translucent);

}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 0;
}

.web_header .navbar-nav .dropdown-item:active {
    background: var(--lgreen2);
}
.schedule{
	list-style:none;
	margin-bottom:0; 
}

.web_header .navbar-nav button, .schedule li button {
    background: var(--green);
    color: var(--bs-white);
    padding: 0.8rem 1.4rem;
    border: none;
    outline: none;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.web_header .navbar-nav button:hover {
    background: var(--green);
}


/* end header */
.banner_home {
    padding: 15rem 0;
}

.banner_sec {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner_sec::after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--bs-black);
    opacity: 0.6;
}

.banner_sec .banner-content {
    position: relative;
    z-index: 1;
    color: var(--bs-white);
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.banner_sec .banner-content h1 {
    margin-bottom: 2rem;
}

.banner_sec .banner-content h2 {
    font-weight: 400;
    margin-bottom: 3rem;
    font-size: 3rem;
}

.bg-green {
    background: var(--green);
}

.circle_move {
    animation: rotate 20s linear infinite;
}

.left_logo {
    display: flex;
    flex-wrap: wrap;
    align-self: baseline;
    height: 100%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.icon_text {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.icon_text h3 {
    color: var(--bs-white);
    font-size: 3.5rem;
    font-weight: 500;
    width: 60%;
    text-align: center;
}

.heading {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.contain_logo {
    display: flex;
    align-items: end;
}

.icon_text img {
    height: 6rem;
}

.card_img img {
    border-radius: 0.6rem;
    margin-bottom: 2.6rem;
}

.card_img h2 {
    color: var(--bs-white);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.card_img p {
    color: var(--bs-white);
    font-weight: 300;
}
.icon_card a{
	color:#4B4B4B;
}
.icon_card {
    background: var(--lgreen2);
    padding: 2rem 3rem;
    padding-bottom: 6rem;
    border-radius: 0.6rem;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
    height: 100%;
}

.icon_card::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 0 50% 50% 0;
    background: var(--lgreen);
    transform: rotate(10px);
    z-index: 0;
    opacity: 0;
    transition: all 0.3s;
}

.icon_card:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 1;
}

.icon_card img {
    height: 8rem;
    position: relative;
    z-index: 1;
}

.icon_card .icon_content {
    margin-top: 2rem;
    z-index: 1;
    position: relative;
}

.icon_card .icon_content h3 {
    color: var(--gray);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.icon_card .icon_content h4 {
    font-weight: 400;
    color: var(--gray);
    font-size: 1.7rem;
    margin-bottom: 2rem;
}

.icon_card .icon_content p {
    font-weight: 300;
}

.link_end {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 1;
}

.link_end img {
    height: auto;
}

.green_card {
    background: var(--green);
    color: var(--bs-white);
    padding: 4rem;
    height: 100%;
    border-radius: 0.6rem;
}

.career_sec p+p {
    margin-top: 2rem;
    font-weight: 300;
}

.mail_box {
    background: var(--bs-white);
    padding: 0.5rem;
    border-radius: 4rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--bs-black);
    justify-content: center;
    margin-top: 4rem;
}

.mail_box p {
    margin: 0 auto;
}

.mail_box img {
    margin-left: auto;
    height: 5rem;
}

.rounded_img,
.news_card img {
    border-radius: 0.6rem;
}

.news_card .tag {
    border-radius: 0.6rem;
    color: var(--black1);
    font-size: 1.4rem;
    margin: 1.8rem 0;
}

.news_card h2 {
    font-size: 1.8rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 2.6rem;
}

.news_card .box_link {
    border: 1px solid var(--green);
    width: 4rem;
    height: 4rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.news_card .box_link:hover {
    background: var(--green);
}

.news_card .box_link:hover img {
    filter: brightness(0) invert(1);
}

.contact_home h4 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact_home h3 {
/*     color: var(--green); */
    font-size: 2.2rem;
    margin: 2rem 0;
    font-weight: 400;
}

.btn_c {
    pointer-events: auto;
    cursor: pointer;
    background: var(--green);
    border: none;
    padding: 1.5rem 3rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    font-weight: 400;
    border: 2px solid;
    border-radius: 0.6rem;
    overflow: hidden;
    color: #fff;
}

.btn_c span {
    position: relative;
    /* mix-blend-mode: difference; */
}


.btn_c img {
    filter: brightness(0) invert(1);
    height: 1.2rem;
    margin-left: 5px;
}

.btn_c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orange_btn::before {
    content: '';
    background: var(--orange);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.btn_c:hover::before {
    transform: translate3d(0, -100%, 0);
}

.top_footer {
    background: url(../images/query_bg.webp) center center / cover no-repeat;
    padding: 3rem 0;
}

.top_f {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    color: var(--bs-white);
}

.top_f p,
.top_f b {
    margin-bottom: 0;
    font-size: 2.4rem;
    font-weight: 300;
}

.top_f b {
    font-weight: 300;
}

.top_f p span {
    font-weight: 500;
    margin: 0 1rem;
}

.top_f p img {
    height: 5rem;
}

.main-footer {
    background: var(--green);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer_link {
    border-top: 1px solid var(--bs-white);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer_logo {
    height: 8rem;
}

.footer_link ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 4rem;
    align-items: center;
    color: var(--bs-white);
    margin: 0;
}

.footer_link {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.last_footer {
    text-align: center;
}

.last_footer p {
    margin-bottom: 0;
    padding: 1rem 0;
}

.footer_a a {
    color: var(--bs-white);
}

.footer_a a:hover {
    color: var(--orange);
}

footer .footer_social {
    gap: 1.5rem;
}

.footer_social li a {
    background: var(--bs-white);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_social li:nth-child(3) a img {
    height: 2rem;

}

.footer_social li:last-child a img {
    height: 2rem;

}

.footer_social li a img {
    height: 2.4rem;
    width: auto;
}

.footer_social li a:hover {
    background: var(--orange);
}

.footer_social li a:hover img {
    filter: brightness(0) invert(1);
}

.footer_contact,
.footer_contact ul {
    list-style: none;
    padding-left: 0;
}

.footer_contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--bs-white);
    margin-bottom: 0.5rem;
}

.footer_contact li ul {
    display: flex;
    gap: 2rem;
}

.footer_contact li {
    font-weight: 300;
}

.footer_contact li span {
    min-width: 2rem;
}

.form_modal .modal-header {
    background: url(../images/bg-header.webp) center right / cover no-repeat;
    color: var(--bs-white);
}

.form_modal .btn-close {
    position: absolute;
    z-index: 1;
    right: -1rem;
    top: -1rem;
    background-color: var(--bs-white);
    opacity: 1;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 3px solid var(--green);
    box-shadow: none !important;

}

.form_modal .modal-header {
    padding: 3rem 4rem;
    background-color: transparent;

}

.modal-content {
    border-radius: 1.8rem;
}

.form_modal .modal-header h3 {
    text-transform: uppercase;
    font-weight: 500;
}

.form_modal .modal-header p {
    font-weight: 300;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.modal-width {
    width: 80%;
}

.form_modal .modal-body {
    padding: 3rem 4rem;
}

.form_modal form input,
.form_modal form select,
.form_modal form textarea {
    width: 100%;
    font-size: 1.6rem;
    color: var(--bs-black);
    border: none;
    border-bottom: 1px solid #BFBFBF;
    padding: 1rem 0;
    box-shadow: none !important;
    outline: none !important;
}

.form_modal form input[type="submit"] {
    background: var(--orange);
    color: var(--bs-white);
    width: 200px;
    margin: 0 auto;
    padding: 1.3rem 1rem;
    display: inline-block;
    border-radius: 0.5rem;
    transition: all 0.3s;
    font-size: 1.8rem;
}

.form_modal form input[type="submit"]:hover {
    background: var(--green);
}



/* service page */
.service_group {
    background: var(--green);


}

.service_group .group_p img {
    height: 10rem;
}

.service_group .group_p {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service_group ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
    overflow-x: auto;
}


.service_group ul li {
    color: var(--bs-white);
    margin-right: 1rem;
    padding-right: 1rem;
    position: relative;
    min-width: max-content;
}

.service_group ul li a {
    color: var(--bs-white);
	font-weight:300;
}

.service_group ul li a.active {
    font-weight: 500;
}

.service_group ul li::after {
    content: "";
    position: absolute;
    right: -1rem;
    height: 100%;
    width: 1px;
    background: var(--bs-white);
}

.service_group ul li:last-child::after {
    width: 0;
}

.service_group ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.contain_img img:first-child {
    margin-left: 4rem;
}

.contain_img img:last-child {
    margin-top: -3rem;
}

.content_sec {
    padding: 3rem 0;
    color: var(--bs-white);

}

.content_sec p {
    font-weight: 300;
    margin-bottom: 0;
}

.benifit_sec {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card_main {
    box-shadow: 0px 0px 10px 0px #0000000D;
    background: var(--bs-white);
    border-radius: 2rem;
    padding: 3rem 2rem;
}

.card_main .card-icon {
    border: 1px solid #00674E80;
    box-shadow: 0px 8px 20px 0px #0092FC1F;
    width: 8rem;
    height: 8rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bs-white);
    margin-bottom: 2rem;
}

.card_main .card-content h3 {
    font-weight: 500;
    color: var(--bs-black);
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
}

/* Card container for the flip effect */


.card_main {
    /* width: 300px; */
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card_main:hover {
    transform: rotateY(180deg);
    /* Flip effect */
}

/* Styles for the card front and back */


.back-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    backface-visibility: hidden;
}


/* Style for the icon */


/* Back side of the card */
.back-card {
    transform: rotateY(180deg);
    background-color: var(--green);
    display: block;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

/* List items for the back */


.back-card li {
    margin-bottom: 10px;
    color: var(--bs-white);
}
.back-card p{
	 color: var(--bs-white);
}

.circle_arrow .swiper-button-next,
.circle_arrow .swiper-button-prev {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    background: var(--green);
}

.circle_arrow .swiper-button-next::after,
.circle_arrow .swiper-button-prev::after {
    background: url(../images/services/slider-arrow.svg) center center / contain no-repeat;
    color: transparent;
}

.circle_arrow .swiper-button-prev::after {
    transform: rotate(180deg);
}

.top_right {
    padding-top: 8rem;
    margin-top: -6rem;
}

.top_right .swiper-button-next,
.top_right .swiper-button-prev {
    top: 3rem;

}

.top_right .swiper-button-prev {
    left: auto;
    right: 7rem;
}

.card_border {
    height: 100%;
    border-radius: 1.4rem;
    border: 2px solid var(--green);
    overflow: hidden;
}

.card_border h3 {
    background: var(--green);
    color: var(--bs-white);
    padding: 2rem;
    font-weight: 500;
    font-size: 2rem;
}

.card_border p {
    padding: 2rem;
}
.info_sec h4{
	font-weight: 600;
    margin: 2rem 0;
    font-size: 1.8rem;
}
/* respnsive view  */

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        left: -50%;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        top: 140%;
		 width: max-content;
    }
	.card_border h3{
		min-height:130px;
	}
}

@media (max-width:992px) {
    .web_header .navbar-brand img {
        height: 4rem;
    }

    .navbar-toggler {
        box-shadow: none !important;
        outline: none !important;

    }

    .navbar-toggler span {
        width: 3rem;
        height: 3rem;
    }

    .banner_home {
        padding: 10rem 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url(../images/cross.svg) !important;
        transition: all 0.0s !important;
    }

    #navbarSupportedContent {
        position: fixed;
        top: 64px;
        left: 0px;
        width: 78%;
        box-shadow: 4px 6px 18px -8px rgb(24 24 24 / 20%);
        -webkit-box-shadow: 4px 6px 18px -8px rgb(24 24 24 / 20%);
        -moz-box-shadow: 4px 6px 18px -8px rgb(24 24 24 / 20%);
        height: 100%;
        z-index: 999;
        transition: 0.0s ease-in-out !important;
        transition: 2.0s ease !important;
        transform: translateX(-35ch);
        transition-property: transform !important;
        transition-duration: 0.2s !important;
        transition-delay: 0.01s !important;
        background: var(--lgreen2);
    }

    .navbar-expand-lg .navbar-collapse.show {
        transform: translateX(0ch) !important;
    }

    .navbar-expand-lg .navbar-nav li {
        width: 100%;
        display: block;
    }

    .web_header .navbar-nav {
        gap: 0rem;
    }

    .navbar-expand-lg .navbar-nav .nav-item,
    .navbar-expand-lg .navbar-nav li:last-child {
        border-top: 1px solid #BFBFBF;

    }

    .navbar-expand-lg .navbar-nav li a {
        padding: 1.5rem 1rem;
    }

    .navbar-expand-lg .navbar-nav li:last-child {
        margin-left: 2rem;
        margin-top: 2rem;
        border: none;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu,
    .navbar-expand-lg .navbar-nav .dropdown li:last-child a {
        border: none;
    }

    .navbar-expand-lg .navbar-nav .dropdown li:last-child {
        margin-left: 0;
        margin-top: 0;
    }

    .web_header .navbar-nav .dropdown-item {
        font-size: 1.5rem;
    }

    .navbar-expand-lg .navbar-nav .dropdown li a {
        padding: 1.5rem 1rem;
    }
}

@media (max-width:767px) {
    * {
        --gap: 4rem;
    }

    .heading {
        font-size: 3rem;
    }

    .footer_link {
        display: grid;
    }

    p {
        font-size: 1.5rem;
    }

    .banner_home {
        padding: 6rem 0;
    }

    .banner_sec .banner-content {
        width: 100%;
    }

    .banner_sec .banner-content h2 {
        font-size: 2.4rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3,
    .top_f p {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.8rem;
    }

    h5 {
        font-size: 1.6rem;
    }

    h6 {
        font-size: 1.4rem;
    }

    .left_logo {
        flex-wrap: nowrap;
    }

    .contain_logo img {
        width: 16rem;
    }

    .icon_text h3 {
        font-size: 3rem;
    }

    .icon_text img {
        height: 5rem;
    }


    .card_img {
        margin-top: 1rem;
    }

    .green_card {
        padding: 4rem 2rem;
    }

    .mail_box {
        gap: 0.2rem;
    }

    .mail_box img {
        height: 3.5rem;
    }

    .career_sec .row,
    .contact_home .row,
    .info_sec .row {
        flex-direction: column-reverse;
    }

    .news_home .news_card {
        margin-top: 1.5rem;
    }

    .form_modal .modal-header {
        padding: 2rem 2rem;
    }

    .form_modal .modal-body {
        padding: 3rem 2rem;
    }

    .modal-width {
        width: 100%;
    }

    .top_f {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .top_f p {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .top_f p b {
        display: block;
        text-align: center;
    }

    .top_f p img {
        height: 4rem;
    }

    .top_f p span {
        margin: 0;
    }

    .footer_logo {
        height: 7rem;
    }

    .footer_contact li ul {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer_contact li,
    .footer_a a {
        font-size: 1.5rem;
    }

    footer .footer_a {
        gap: 3rem;
    }

    .footer_social li a {
        height: 3.8rem;
        width: 3.8rem;
    }

    .last_footer p {
        font-size: 1.4rem;
    }

    .service_group ul li a {
        font-size: 1.5rem;
    }

    .form_modal .btn-close {
        right: 0;
        top: 0;
    }

    .service_group ul li {
        margin-right: 0.5rem;
        padding-right: 0.5rem;
    }

    .service_group .group_p img {
        height: 7rem;
    }

    .contain_img img:first-child {
        margin-left: 2rem;
        height: 2.5rem;
    }

    .top_right {
        padding-top: 7rem;
        margin-top: -3rem;
    }

    .card-slider .card_main {
        width: 95%;
        margin: 0 auto;
    }
}