* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
 
}

html {
  scrollbar-gutter: stable;
}

:root {
    --primary-color: #166534;
    --secondary-color: #fff;
    --body-color: #F3F3F3;
}
.green_text{
        color: #2db67c;
}


.cards {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 800px;
}

.card-image {
    flex: 0 0 150px; /* Image width */
    background-color: #ddd;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
    padding: 16px;
}

.card-content h2 {
    margin: 0 0 16px 0;
    font-size: 1.5em;
}

.card-content p {
    margin: 0 0 16px 0;
    color: #555;
}

.card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.card-button:hover {
    background-color: #0056b3;
}

.menu_in a{
    text-decoration:none;
    font-size:38px;
    color:#055131
}

#openMenu {
  font-size: 20px;
  padding: 10px 15px;
  cursor: pointer;
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar */
#sidebar2 {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #166534;
  color: #fff;
  transition: 0.3s;
  padding: 15px;
  z-index:99;
}

#sidebar2.active {
  left: 0;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#closeMenu {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.img_pro img{
    width:30px;
    height:30px;
    border-radius:50%;
    object-fit: cover;
}

/* Menu */
.menu2 {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.menu2 li {
  margin-bottom: 10px;
}

.menu2 a,
.menu-item2 {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  text-decoration: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

/* Submenu */
.submenu2 {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding-left: 10px;
}

.submenu2 a {

  margin-top: 4px;
}

/* Active */
.has-sub.active .submenu2 {
  max-height: 200px;
}

.has-sub.active span {
  transform: rotate(90deg);
}

.row {
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
}

.menu{
    list-style: none;
    gap: 20px;
}

.menu li{
    position: relative;
}

.submenu{
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    min-width: 280px;
    display: none;
    z-index:99;
}

.submenu li{
    padding: 8px 15px;
}

.submenu li a{
    text-decoration: none;
    color: #333;
}

/* show dropdown */
.dropdown:hover .submenu{
    display: block;
}

.submenu{
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.dropdown:hover .submenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

p{
        color: #a39f9f;
    font-size: 17px;
}

.heading_title h3 {
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;

}
.heading_title h3 span {
    color: #2db67c;
}

.top_section{
    background-color: #2bae77;
    padding: 7px 0px;
    overflow: hidden;
}

.top_text{
    overflow: hidden;
}

.top_scroller{
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.top_scroller__track{
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 100%;
    animation: topTicker 30s linear infinite;
    will-change: transform;
}

.top_scroller__group{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.top_scroller__item{
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 44px;
    margin-right: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2px;
}

.top_scroller__item::after{
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%);
}

.top_scroller__group .top_scroller__item:last-child::after{
    display: none;
}

.top_scroller:hover .top_scroller__track{
    animation-play-state: paused;
}

@keyframes topTicker{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

a.ht-btn {
    padding: 11px 24px;
    background: #166534;
    color: #ffffff;
    text-transform: capitalize;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 21px;
}

a.ht-btn.ht-btn--secondary {
    background: transparent;
    color: #166534;
    border: 1px solid #166534;
}

.header_profile_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header_profile_link .img_pro img {
    width: 42px;
    height: 42px;
    border: 2px solid #d8eedd;
    box-shadow: 0 6px 16px rgba(22, 101, 52, 0.12);
}

.desktop_header{
    padding:20px 0px;
}

.logo_wrapper img{
    width:190px;
}

.right_ul ul {
    list-style-type: none;
    gap: 26px;
    margin-bottom: 0px;
}

.right_ul ul li a {
 font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

.bg_color{
    background-color:azure;
}

.banner_img {
    --banner-height: 80vh;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: var(--banner-height);
    min-height: var(--banner-height);
    background-image: var(--banner-poster);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #dfeee8;
    overflow: hidden;
    border-radius: 30px;
}

.banner-pack.owl-carousel,
.pack.owl-carousel,
.packss.owl-carousel {
    display: block;
}

.banner-pack:not(.owl-loaded) .item:not(:first-child),
.pack:not(.owl-loaded) .item:not(:first-child),
.packss:not(.owl-loaded) .item:not(:first-child) {
    display: none;
}

.banner_sec .container-fluid{
    padding-left: 0px;
    padding-right: 0px;
}

.banner_sec .owl-stage-outer{
    overflow: hidden;
}

.banner_sec .owl-item{
    display: flex;
    justify-content: center;
    padding: 0px;
}

.banner_sec .banner_img{
    --banner-card-width: min(91.666667vw, 1760px);
    width: 91.666667%;
    max-width: 1760px;
    margin: 0 auto;
}

.banner_img img,
.banner_img video,
.banner_img iframe{
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    border-radius: 30px;
}

.banner_img img,
.banner_img video{
    object-fit: cover;
}

.banner_sec {
    padding:10px 0px;
}

.banner_img iframe {
    position: absolute;
    border: 0;
    pointer-events: none;
}

.banner_img--vimeo {
    background-color: #000;
}

.banner_vimeo_embed {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    border-radius: 30px;
}

.banner_vimeo_frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: calc(var(--banner-height) * 1.7778);
    min-height: calc(var(--banner-card-width) * 0.5625);
    max-width: none;
    max-height: none;
    border: 0;
    border-radius: 0;
    transform: translate(-50%, -50%);
    transform-origin: center;
}
.banner_text {
    position: absolute;
    content: "";
    width: min(50%, 640px);
    left: 35px;
    z-index: 99;
}

.banner_img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    z-index: 9;
    border-radius: 25px;
    background-image: linear-gradient(to bottom, #ffffff00, #2db67cba);
}

.banner_img_inner {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner_img_inner img{
     object-fit: cover;
    width: 100%;
    height: 400px;
    z-index: 1;
    border-radius: 30px;
}



.banner_text h1,
.banner_text h2,
.banner_text h3 {
    font-size: 43px;
    text-transform: capitalize;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 0;
}
.logo_btns button {
    padding: 16px 25px;
    background-color: #166534;
    border: none;
    border-radius: 26px;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}

.about_sec{
    padding: 65px 0px;
}

.icon_img{
    width: clamp(72px, 20%, 104px);
    flex: 0 0 clamp(72px, 20%, 104px);
    aspect-ratio: 1 / 1;
}

.icon_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon_text{
    width:80%;
   
}

.icon_text p {
    font-size: 14px;
    color: #7c7c7c;
}

.icon1{
    width:50%;
}

.icon_wrapper{
        padding: 20px 0px;
    border-top: 1px solid #f9ecec;
    border-bottom: 1px solid #f9ecec;
    margin-top: 26px;
}

.abt_img img{
    max-width: 400px;
    margin: auto;
    border-top-left-radius: 127px;
}


.year_ex{
    position: absolute;
    content:"";
    width:90%;
    top:10%;
    left:4%;
}

.year_ex h2 span{
     color: #2bae77;
    font-weight: 600;
    font-size: 57px;
}

.year_ex h2{
     font-weight: 300;
    margin-top: -17px;
}

.testimonial_sec{
padding: 0px 0px;
    background-image: url(../images/stu.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.testi_text {
    padding:50px;
    background-color: #fff;
}

.test_side img{
  max-height:450px;
  width: 100%;
  object-fit: cover;
}



.test img{
    width: 73px !important;
    height: 73px !important;
    border-radius: 50%;
    object-fit: contain;
    background-color: #b0ffdd;
    padding: 3px;
    margin-bottom: 18px;
}

.quotes i{
    color: #3bdd99;
    font-size: 60px;
}

.test_card{
 background-color: #c9ffe8;
    border-radius: 21px;
    padding: 15px;
}

.course_sec{
    padding: 60px 0px 0px;
    background-color: #caffe91c;
    position: static;
    top:0px;
}

.our_mentor{
    padding: 60px  0px;
    background-color: #ffffff; 
}

.cour_img{
    position: static;
       top: 50px;
    background: #ffffff;
    margin-top: 10px; 
}

.acc_sec {
    padding: 40px;
    background-color: #caffe91c;
}

.monter_bg2 {
    padding: 20px 20px 20px 20px;
    background-color: #caffe91c;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 10px;
}

.mins h4{
        font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 25px;
    color: #166534;
    font-weight: 300;
        text-align: start;
}

.monter_bg {
    padding: 60px 20px 0px 20px;
    background-color: #caffe91c;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 10px;
}
.card {
width: 95%;
    margin: 0 20px;
    box-sizing: border-box;
    background: #ffffff00;
    height: 249px;
    border-radius: 0px;
    background-color: #c2f7e1 !important;
    background-image: url(../images/grid.png);
    position: sticky;
    margin: auto;
    border-bottom: 1px solid #3fb67c;
    font-weight: medium;
    padding: 20px;
    color: #000000;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.history_title a {
    color: #000000;
    text-decoration: none;
}

.history_title a:hover,
.history_title a:focus {
    color: #000000;
    text-decoration: none;
}
.onex {
    top: 30px;
    position: sticky;
}

 .one {
    top: 50px;
    background: #ffffff;
    margin-top: 10px;
  }
  .two {
    top: 80px;
    background: #ffffff;
    margin-top: 10px;
  }
  .three {
    top: 110px;
    background: #ffffff;
    margin-top: 10px;
  }
  
  .four {
    top: 140px;
    background: #ffffff;
    margin-top: 10px;
  }

.why_sec{
    padding: 60px 0px  0px;
    background-color: #caffe91c;
  
}

.icon2{
    width:120px;
}


.teach{
    position: relative;
   max-width: 475px;
    margin: auto;
}


.tea1{
    position: absolute;
    content:"";
    top: 144px;
    left:10px;
    font-size:16px;
}

.tea2 h4{
    max-width: fit-content;
    font-size: 16px;
    padding: 11px;
    background-color: #6fefb9;
    border-radius: 19px;
    color: #000000;
}

.tea1 h4{
    max-width: fit-content;
    font-size: 16px;
    padding: 11px;
    background-color: #6fefb9;
    border-radius: 19px;
    color: #000000;
}

.tea3 h4{
    max-width: fit-content;
    font-size: 16px;
    padding: 11px;
    background-color: #6fefb9;
    border-radius: 19px;
    color: #000000;
}

.tea2{
    position: absolute;
    content:"";
    bottom:10px;
    right:10px;
     font-size:16px;
}

.tea3{
    position: absolute;
    content:"";
    top:10px;
   right:10px;
    font-size:16px;
}

.counter{
    padding:60px 0px;
}

.logo_menu a {
    color: #ffffff;
    text-decoration: none;
}

.footer_soss {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 52px;
    height: 52px;
    background-color: #166534;
    border: 1px solid #fff;
    padding: 0;
    border-radius: 37px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_sos1 {
    position: fixed;
    bottom: 10px;
    right: 73px;
    width: 52px;
    height: 52px;
    background-color: #166534;
    border: 1px solid #fff;
    padding: 0;
    border-radius: 37px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_soss i,
.footer_sos1 i {
    font-size: 24px;
    line-height: 1;
}

.floating{
  animation: float 3s ease-in-out infinite;
}

@keyframes float{
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(-15px);
  }
  100%{
    transform: translateY(0px);
  }
}

.count_box h3 {

    font-size: 54px;
    color: #198754;
    font-weight: 300;
    margin-bottom: -13px;

}

.js .count_box h3 {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .count_box h3.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.count_box p {
    margin-top: 6px;
    font-size: 15px;
    color:#166534;
    text-transform: capitalize;
}

.contact-uss {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.contact-icon {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #166534;
}
.contact-info{
Width:80%}

.contact-info h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
    line-height: 28px;
}

.contact-icon i {
    color: #fff;
}
.input-wrapper input {
    font-size: 14px;
    color: #0e0e0e;
    width: 100%;
    height: 49px;
    outline: none;
    border: 1px solid #5d54547d;
    padding: 10px 20px;
    border-radius: 10px;
    position: relative;
    background-color: #ffffff14;
    margin-top: 10px;
}

.input-wrapper label {
    color: #0e0e0e !important;
    text-transform: capitalize;
    z-index: 2;
    width: 100%;
    top: 14px;
    font-size: 14px;
    font-weight: 300;
    padding: 0 8px;
    background: #ffffff00;
}

.input-wrapper textarea {
    border: 1px solid #5d54547d;
    border-radius: 10px;
}

button {
    background-color:#166534;
    padding: 10px 20px;
    text-decoration: none;
    color: #ffffff ;
    font-size: 7px;
    font-weight: 200;
    border-radius: 19px;
    text-transform: uppercase;
    border: none;
}

.gal_pic img{
    width:100%;
    height:280px;
    object-fit: cover;
}

.title_box {
    margin-top: 10px;
}

.date_box {
    width: 120px;
    height: 79px;
    background-color: #2db67c;
    justify-content: center;
    color: #fff;
    display: flex;
    padding: 10px;
    justify-items: center;
    align-items: center;
}

.blog_boxs {
    border-top: 2px solid #2db67c;
}

.date p {
    font-weight: 700;
    color: #2db67c;
}

.date_box h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 0px;
}

.blog_heads h4 {
    font-size: 16px;
    font-weight: 700;
    width: 95%;
}

.blog_heads a {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #2db67c;
}

.blog_img img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.working-process .accordion-item {
    border: 1px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    border-radius: 30px;
    overflow: hidden;
    /* padding: 20px; */
    background-color: var(--body-color);
}

.working-process .accordion-item .accordion-button {
    background-color: var(--body-color);
    padding: 20px 40px;
    border-bottom: 1px solid var(--secondary-color);
}

.working-process .accordion-item .accordion-collapse.collapse.show, .working-process .accordion-item .accordion-collapse.collapse.show {
    background-color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}

.working-process .accordion-item .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    transition: all 0.2s ease-in-out;
        background-color: #166534 !important;
    box-shadow: none;
}

.working-process .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.working-process .accordion-item .accordion-collapse .accordion-body {
    padding: 20px 40px;
    color:#fff;
}

.working-process .accordion-item .accordian-numbers {
    font-size: 28px;
    padding-right: 20px;
}

.accordion-button::after {
    background-image: none;
  font-family: remixicon !important;
    content: "\f4b1";
    height: 35px;
    width: 35px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background-color: var(--body-color);
    color: #000000;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f1ae"; 
}

.working-process .accordion-item .collapsing {
    transition: all 0.3s ease-in-out;
  }


.testimonial_sec2 {
    padding: 0px 0px;

}


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

.abt_text ul li {
position: relative;
    padding-left: 25px;
    margin-top: 18px;
    color: cadetblue;
}

.abt_text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  background: #2db67c;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
}


.snip1360 {
  font-family: 'Quattrocento', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #141414;
  text-align: left;
  line-height: 1.4em;
  font-size: 16px;
  background-color: #ffffff;
}
.snip1360 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.snip1360 img {
  max-width: 100%;
  vertical-align: top;
}
.snip1360 figcaption {
  width: 100%;
  background-color: #ffffff;
  padding: 10px 25px 55px;
  position: relative;
}
.snip1360 figcaption:before {
  position: absolute;
  content: '';
  z-index: 2;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: -webkit-linear-gradient(top, transparent 0%, #ffffff 100%);
  background-image: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}
.snip1360 figcaption a {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  background-color: #cccccc;
  color: #000000;
  font-size: 0.8em;
  text-transform: uppercase;
  opacity: 0.65;
  width: 100%;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
}
.snip1360 figcaption a:hover {
  opacity: 1;
}
.snip1360 h2 {
margin: 0 0 10px;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.2em;
   
    text-transform: capitalize;
}
.snip1360 p {
  margin: 0 0 10px;
  font-size: 0.9em;
  letter-spacing: 1px;
  opacity: 0.9;
}

.limited-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;      /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow-y: auto;           /* Enable vertical scroll */
  max-height: calc(1.5em * 4); /* Adjust based on line-height */
  line-height: 1.5em;
}

/* Hide or make scrollbar transparent */

/* For WebKit browsers (Chrome, Safari) */
.limited-text::-webkit-scrollbar {
  width: 6px;
}

.limited-text::-webkit-scrollbar-track {
  background: transparent;
}

.limited-text::-webkit-scrollbar-thumb {
  background-color: transparent; /* makes it invisible */
}

/* For Firefox */
.limited-text {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}


.monter_bg3 {
    padding: 40px 20px 0px 20px;
    background-color: #2db67c;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 10px;
}




.card__content_sec {
  padding: 0px 18px;
}

.card {
  padding: 3rem 0;
}

.card__container {
  gap: 3rem 1.25rem;
}

.card__content {
  position: relative;
     background-color: #ffffff;
  padding: 2rem 1.5rem 1rem;
  border-radius: 1.75rem;
  box-shadow: 0 12px 24px hsla(var(--hue-color), 61%, 16%, 0.1);
  transition: .4s;
  height: 100%;
  display: flex;
  box-shadow: rgb(0 0 0 / 15%) 0px 3px 8px;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.card__content:hover {
  box-shadow: 0 16px 24px hsla(var(--hue-color), 61%, 16%, 0.15);
}

.card__header-img {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  object-fit: cover;
}

.card__header-circle {
  width: 40px;
  height: 40px;
  background-color: var(--first-color-lighter);
  border-radius: 50%;
  margin-bottom: var(--mb-1);
  place-items: center;
}

.card__header-subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  color: hsl(0deg 0% 0%);
  text-transform: uppercase;
  margin-bottom: var(--mb-0-25);
}

.card__header-title {
    font-size: var(--biggest-font-size);
    color: var(--title-color);
    margin-bottom: var(--mb-1);
    font-size: 15px;
    text-transform: capitalize;
    color: #8f8080;
    margin-top:10px;
    margin-bottom: 10px;
}
.card__pricing {
  position: absolute;
  background: linear-gradient(157deg, hsl(0deg 0% 0%) -12%, hsl(60.33deg 3.3% 15.39%) 109%);
  width: 60px;
  height: 88px;
  right: 1.5rem;
  top: -1rem;
  padding-top: 1.25rem;
  text-align: center;
}

.card__pricing-number {
  font-family: var(--pricing-font);
}

.card__pricing-symbol {
  font-size: var(--smaller-font-size);
}

.card__pricing-number {
  font-size: var(--h2-font-size);
}

.card__pricing-month {
  display: block;
  font-size: var(--tiny-font-size);
}

.card__pricing-number,
.card__pricing-month {
  color: #ffffff;
}

.card__pricing::after,
.card__pricing::before {
  content: '';
  position: absolute;
}

.card__pricing::after {
  width: 100%;
  height: 14px;
  background-color: #f0e9e9;
  left: 0;
  bottom: 0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.card__pricing::before {
  width: 14px;
  height: 16px;
  background-color: hsl(199.41deg 94.44% 7.06%);
  top: 0;
  left: -14px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.card__list {
  row-gap: .5rem;
  margin-bottom: var(--mb-2);
  padding-left: 0px;
}

.card__list-description {
  margin-bottom: 0px;
}

.card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 9px;
}

.card__list-icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-right: var(--mb-0-5);
}

.card__button {
    padding: 12px 24px;
  border: none;
  font-size: 12px;
  border-radius: -1.5rem;
  ;
  background: linear-gradient(157deg, hsl(0deg 0% 0%) -12%, hsl(199.41deg 94.44% 7.06%) 109%);
  color: #ffffff;
  cursor: pointer;
  transition: .4s;
}





/* footer */


.logoz {
    width: 187px;
    margin-bottom: 10px;
}


footer.nb-footer .footer-info-single p {
    font-size: 13px;
    line-height: 20px;
    color: #ffffff;
}

footer.nb-footer .about .social-media ul li a {
display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    font-size: 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

footer.nb-footer {
    background: #042840;
    border-top: 4px solid #0c7549;
    background-position: center;
        background: linear-gradient(to bottom, #2db67c, #055131), url(../images/slider-2.jpg);
}

footer.nb-footer .footer-info-single .title {
        color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    border-left: 4px solid #ffffff;
    padding-left: 5px;
}

footer.nb-footer .footer-info-single ul li a {
    display: block;
    color: #ffffff;
    font-size: 15px;
    padding: 2px 0;
    margin-top: 15px;
    text-decoration: none;
}

footer.nb-footer .about p {
font-size: 15px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

footer.nb-footer .footer-info-single p a {
    font-size: 13px;
    line-height: 20px;
    color: #ffffff;
    text-decoration: none;
}

.form-subscribe .form-control {
    background-color: hsl(0deg 0% 100%);
    padding-left: 24px;
    padding-right: 24px;
    letter-spacing: 1px;
    border: none;
    border-top-left-radius: 36px;
    border-bottom-left-radius: 36px;
}

.form-subscribe .btn {
    border-top-right-radius: 36px;
    border-bottom-right-radius: 36px;
      background: #000000;
    border-color: #000000;
    height: 46.5px;
}

footer.nb-footer .copyright p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #fff;
}

footer.nb-footer .copyright p a{
    margin: 0;
    padding: 0;
       font-size: 10px;
    color: #fff;
    text-decoration: none;
}

footer.nb-footer .copyright {
padding: 18px 0;
    color: #000;
    text-align: center;
}

.fixed_leafr {
    background-color: #004aad00;
    padding: 10px;
    border-radius: 7px;
    text-decoration: none;
    z-index: 9;
    color: #ff5c00;
    font-weight: 400;
}

.fixed_leafr a {
    color: #004aad;
    font-size: 17px;
    padding: 11px;
    /* display: flex; */
    border-radius: 22%;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
   width: 40px !important;
    height: 40px !important;
}

.footer_sos {
    position: fixed;
    bottom: 10px;
   left: 10px;
    background-color: #004aad;
    padding: 12px 20px;
    border-radius: 37px;
    z-index: 99;
}


.desktop_header{
    display: block;
}

.mobile_menu{
    display:none;
}



@media only screen and (max-width:765px) {

.mobile_menu{
    display: block;
}

.desktop_header{
    display: none;
}

    .working-process .accordion-item .accordion-collapse .accordion-body {
    padding: 20px 22px;
    color: #fff;
}

.working-process .accordion-item .accordion-button {
    background-color: var(--body-color);
    padding: 20px 20px;
    border-bottom: 1px solid var(--secondary-color);
}

.banner_text {
    position: absolute;
    content: "";
    width: 90%;
    left: 25px;
    z-index: 99;
}

.logo_btns button {
    padding: 16px 8px;
    background-color: #166534;
    border: none;
    border-radius: 26px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}

.banner_text h1,
.banner_text h2,
.banner_text h3 {
    font-size: 29px;
    text-transform: capitalize;
    font-weight: 500;
    color: #ffffff;
}

.banner_img {
    --banner-height: 66vh;
}

.banner_sec .banner_img{
    --banner-card-width: calc(100vw - 18px);
    width: calc(100% - 18px);
}

.abt_img img {
    max-width: 330px;
    margin: auto;
    border-top-left-radius: 127px;
}

.heading_title h3 {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.card {
    padding: 1rem 11px;
}

.about_sec {
    padding: 50px 0px;
}

.testi_text {
    padding: 16px;
    background-color: #fff;
}

.test_card {
    background-color: #c9ffe8;
    border-radius: 21px;
    padding: 15px;
    flex-direction: column;
}

.acc_sec {
    padding: 9px;
    background-color: #caffe91c;
}

.mins h4 {
    font-size: 20px;
    text-transform: capitalize;
    letter-spacing: 2px;
    line-height: 25px;
    color: #166534;
    font-weight: 300;
    text-align: start;
}

.banner_img_inner img {
    object-fit: cover;
    width: 100%;
    height: 303px;
    z-index: 1;
    border-radius: 30px;
}

}
