@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --first_color: #1a7730;
  --second_color: #f4e107;
  --third_color: #065c7e;

  --bgcolor: aliceblue;

  --headingcolor: #323130;
}

body {
  overflow-y: scroll;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: var(--bgcolor);

  border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--first_color);
  border-radius: 100px;
}



p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 15px;
  color: #525252;

}

.svg-inline--fa {
  box-sizing: content-box;
  display: var(--fa-display, inline-block);
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
  width: var(--fa-width, 1.25em);
  color: black;
}


a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

section {
  padding: 60px 0;
  /* min-height: 100vh;*/
}

.my-btn1 {
  background-color: var(--third_color) !important;
  color: white;
}

.my-btn1:hover {
  background: var(--second_color) !important;
  color: var(--third_color);
}

.my-btn {
  width: fit-content !important;
  background-color: var(--first_color) !important;
  color: white;
  padding: 15px 20px !important;
  border-radius: 13px !important;
}

.my-btn:hover {
  background: var(--third_color) !important;
  color: white;
}

.nav-link {
  font-size: 17px;
  font-weight: 500;
  padding: 0px 13px !important;
  color: black;
}

.headerh5 {
  font-size: 1.25rem;
  padding: 8px 19px;
  border-radius: 19px;
  margin-bottom: 10px;
  color: var(--third_color);
}

.section {
  padding: 60px 0;
}

.section-header {
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 30px;
  align-items: center;
  max-width: 70%;
  text-align: center;
}

.section-header h2 {
  font-weight: 700;
  color: var(--headingcolor);
}

.text-justify {
  text-align: justify !important;
}


/* ------------------universal css-------------------- */

/* ------------------header css-------------------- */

.header-top {
  background: #d1eaff;
  /* color: white; */
  padding: 6px 0;
  font-size: 15px;
}

.header-top a i:hover {
  color: var(--third_color) !important;
}

.nav-link .icon {
  transition: transform 0.3s ease;
  margin-left: 3px;

}

.dropdown-toggle.collapsed .icon::before {
  content: "+";
}

.dropdown-toggle:not(.collapsed) .icon::before {
  content: "-";
}

.dropdown-toggle::after {
  display: none !important;
}

.navbar-toggler {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  flex-shrink: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .navbar-collapse.collapse:not(.show) {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    width: 215px;
    height: 100%;
    z-index: 9999;
    padding: 25px;
    transform: translateX(-215px);
    transition: 0.5s ease-in-out;
    display: block;
  }

  .navbar-collapse.show {
    transform: translateX(0px);
  }

  .nav-overlay {
    position: absolute;
    background: #0000007d;
    width: 96vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateX(-100vw);
    transition: 0.5s ease-in-out;
    display: block;
  }

  .nav-overlay.active {
    transform: translateX(0);
  }
}

.navbar-brand img {
  width: 125px;
  filter: drop-shadow(0px 1px 0px grey);
}

#mainHeader {
  transition: all 0.3s ease-in-out;
  background-color: var(--bgcolor);
}

/* ------------------header css-------------------- */


/* ------------------footer css-------------------- */
.footer {
  padding-top: 80px;
}


@media only screen and (max-width:768px) {
  .single_footer {
    margin-bottom: 30px;
  }

  .navbar-brand img {
    width: 100px;
    filter: drop-shadow(0px 1px 0px grey);
  }

  .banner {
    padding-top: 40px !important;
  }

  h1 {
    /* font-family: fantasy; */
    font-weight: 500 !important;
    font-size: 32px !important;
    letter-spacing: 1px !important;
    text-align: center !important;
    color: #313131;
    line-height: 38px !important;
  }

  .headerh5 {
    font-size: 1rem;
    line-height: 24px;
    padding: 0px 19px;
    border-radius: 19px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: center;
    color: var(--third_color);
  }

  .my-btn {
    width: fit-content !important;
    background-color: var(--first_color) !important;
    color: white;
    padding: 10px 9px !important;
    border-radius: 7px !important;
  }

  .section {
    padding: 45px 0 !important;
  }

  .growth-description .card img {
    width: 57px;
  }

  .growth-description .card {
    display: flex;
    align-items: center;
    margin-bottom: 20px !important;
    justify-content: center !important;
    height: 200px !important;
    box-shadow: 2px 2px 6px #00000014;
    background: white;
  }

  .section-header {

    padding-bottom: 6px !important;
    max-width: 100% !important;
  }

  .aboutus h3 {
    font-size: 26px !important;
    text-transform: uppercase !important;
    color: var(--first_color);
    font-weight: 300 !important;
  }

  .services .card {
    height: 280px !important;
    margin-bottom: 20px !important;
  }




















}

.single_footer h4 {
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 20px;
}

.single_footer h4::after {
  content: "";
  display: block;
  height: 2px;
  width: 50%;
  background-color: black;
  margin-top: 20px;
}

.single_footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single_footer ul li a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 36px;
  font-size: 15px;
  text-transform: capitalize;
}

.single_footer_address ul li {
  color: #fff;
}

.single_footer_address ul li span {
  font-weight: 400;
  color: #fff;
  line-height: 28px;
}

.contact_social ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

/*START NEWSLETTER CSS*/
.subscribe {
  display: block;
  position: relative;
  margin-top: 15px;
  width: 100%;
}

.subscribe__input {
  background-color: #d6d6d6;
  border: medium none;
  border-radius: 5px;
  color: #333;
  display: block;
  font-size: 15px;
  font-weight: 500;
  height: 60px;
  letter-spacing: 0.4px;
  margin: 0;
  padding: 0 150px 0 20px;
  text-align: center;
  text-transform: capitalize;
  width: 100%;
}

@media only screen and (max-width:768px) {
  .subscribe__input {
    padding: 0 50px 0 20px;
  }
}

.subscribe__btn {
  background-color: transparent;
  border-radius: 0 25px 25px 0;
  color: #01c7e9;
  cursor: pointer;
  display: block;
  font-size: 20px;
  height: 60px;
  position: absolute;
  right: 41px;
  top: 38px;
  width: 60px;
}

.subscribe__btn i {
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width:768px) {
  .subscribe__btn {
    right: 0px;
  }
}

.subscribe__btn:hover i {
  color: #ff3666;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}

/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
.social_profile {
  margin-top: 40px;
}

.social_profile ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.social_profile ul li {
  float: left;
}

.social_profile ul li a {
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  margin: 0px 5px;
  font-size: 18px;
  color: #fff;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  border: 1px solid rgb(0 0 0);
}

@media only screen and (max-width:768px) {
  .social_profile ul li a {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width:480px) {
  .social_profile ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.social_profile ul li a:hover {
  background: #454545;
  border: 1px solid #000000;
  color: #fff;
  border: 0px;
}

/*END SOCIAL PROFILE CSS*/
.copyright {

  padding-top: 40px;
  color: #fff;
  font-size: 15px;

  text-align: center;
}

.copyright a {
  color: #3f3f3f;
  transition: all 0.2s ease 0s;
}

.copyright a:hover {
  color: #606060;
}


/* ------------------footer css-------------------- */



/* ------------------banner css-------------------- */
.banner {
  display: flex;
  align-items: center;
  padding-top: 100px;
  background-image: url('img/bg/blog_bg_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bgcolor);
}

.header-descrption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  /* font-family: fantasy; */
  font-weight: 700;
  font-size: 47px;
  letter-spacing: 2px;
  text-align: center;
  color: #313131;
}


/* ------------------banner css-------------------- */


/* ------------------partners css-------------------- */

.partners .card {
  border: none;
  box-shadow: 0px 1px 4px #0000004d;
}


/* ------------------partners css-------------------- */

/* ------------------growth-description css-------------------- */

.growth-description {
  background-color: var(--bgcolor);
}


.growth-description .card {
  height: 245px;
  box-shadow: 2px 2px 6px #00000014;
  background: white;
}

/* ------------------growth-description css-------------------- */


/* ------------------about us css-------------------- */
.aboutus {
  background-image: url('img/bg/process_bg_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.aboutus h3 {
  font-size: 33px;
  text-transform: uppercase;
  color: var(--first_color);
  font-weight: 300;
}

/* ------------------about us css-------------------- */

/* ------------------services css-------------------- */

.services .card {
  height: 350px;
  font-size: 14px;
  /* background: #32e2200a; */
  box-shadow: 1px 1px 20px 1px #0000001c;
  transition: all 0.5s ease;
}

.services .card:hover {
  transform: scale(1.05);
  transition: all 0.5s ease;
}



/* ------------------services css-------------------- */


.form {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: var(--first_color);
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #f4e107);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: var(--first_color);
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: var(--first_color);
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: var(--first_color);
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: var(--first_color);
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, var(--first_color), #f4e107);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid var(--first_color);
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}


.footer {
  position: relative !important;
  background-color: var(--bgcolor);
}



@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {


  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}

/*-------------------------------------------------------about Us page*/
.about-banner {
  display: flex;
  align-items: center;
  background-image: url('img/bg/hero_bg_20_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.ecommerce-banner {
  padding: 58px 0;
  display: flex;
  align-items: center;
  background-image: url(img/bg/download_bg_8-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {

  .h3,
  h3 {
    font-size: 37px;
    font-weight: 900;
    color: #000000ba;
  }
}

.banner-links {
  background: #ebd803a1;
  width: fit-content;
  padding: 16px;
  color: var(--third_color);
}

.banner-links a {
  color: var(--third_color);
  font-weight: 600;
}



.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: #02597b00 !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #1a7730 !important;
  background-color: #1a773000 !important;
}

.dropdown-menu {
  width: max-content;
  padding: 18px 0;
  box-shadow: 0px 6px 20px #00000026;
  border: none;
}


.dropdown-item {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 10px 15px !important;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 500;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}

.dropdown-heading {
  font-size: 14px;
  text-align: left;
  /* border-bottom: 1px solid #00000059; */
  /* padding-bottom: 9px; */
  color: var(--first_color);
}

.dropdown-menu svg {
  width: 25px;
  margin-right: 10px;
}


.why-choose-section {
  padding: 80px 0;
  position: relative;
}

.why-main-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.main-circle {
  background: #efefef;
  width: 465px;
  height: 465px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  text-align: center;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); */
}

.main-circle h2 {
  position: absolute;
  left: -75px;

  background: linear-gradient(135deg, #54cc38 0%, #cbbb13 100%);
  color: #fff;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-circle p {
  margin-top: 20px;
  font-size: 19px;
  letter-spacing: 1px;
  line-height: 43px;
  color: #444;
  max-width: 250px;
}

.feature-item {
  position: absolute;
  display: flex;
  align-items: center;
  width: 220px;
}

.feature-icon::after {
  content: '';
  position: absolute;
  left: 89px;
  width: 51px;
  height: 2px;
  background: #00000045;
}

.feature-icon {
  position: absolute;
  left: -152px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1c003 0%, #24e915 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  z-index: 1;
}

.feature-text {
  margin-left: 5px;
}

.feature-text strong {
  font-size: 14px;
}

.feature-text p {
  font-size: 13px;
  margin: 0;
}

.feature-1 {
  top: -4px;
  left: 75%;
}

.feature-2 {
  top: 116px;
  right: -92px;
}

.feature-3 {
  bottom: 123px;
  right: -100px;
}

.feature-4 {
  bottom: -3px;
  left: 78%;
}



.why-main-wrapper::before {
  content: '';
  position: absolute;
  /* top: -39px; */
  left: -137px;
  background-image: url(img/who.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.main {}

.ecommerce-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.ecommerce-title {
  font-weight: 700;
  margin-bottom: 30px;
}


.ecommerce-list {
  padding-left: 20px;
  margin-top: 25px;
}

.ecommerce-list li {
  margin-bottom: 20px;
  list-style: disc !important;
}

.ecommerce-list strong {
  font-size: 16px;
}

.services-sidebar a {
  display: block;
  padding: 10px 15px;
  margin-bottom: 5px;
  text-decoration: none;
  background-color: #f1f1f1;
  color: #333;
  border-radius: 4px;
}

.services-sidebar a.active {
  background-color: #1a7730;
  color: #fff;
  font-weight: 600;
}


.accordion-body ul li a {
  color: black;
  font-weight: 700;
}

.faq-section .accordion {
  width: 100%;
}



.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:before {
  content: "";
  position: absolute;
  /*   right: 0.75rem; */
  right: 0.75rem;
  top: 1.25rem;
  height: 2px;
  width: 1rem;
  background-color: var(--headingcolor);
}

.accordion-button.collapsed:after {
  content: "";
  position: absolute;
  /*   right: 1.1875rem; */
  right: 1.1875rem;
  top: 0.8125rem;
  height: 1.0625rem;
  width: 0.125rem;
  border-style: none;
  background-color: var(--headingcolor);
}

.faq-section .accordion-button h5 {
  /* color: #7dbc9e; */
  color: var(--headingcolor);
  margin-right: 13px;
  font-size: 15px;
  line-height: 20px;
}

.accordion-body {
  background-color: var(--bgcolor);
  font-size: 14px;
  color: #3d3d3d;
}

/* button:focus:not(:focus-visible) {
    outline: 0;
} */

/* list */
ul {
  list-style-type: none;
  list-style-type: disc;
  /* Default bullet points for ul */
  margin-left: 20px;
}

ul li {
  margin-bottom: 5px;
}

.accordion-body ol {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
}

.accordion-body ol>li {
  counter-increment: step-counter;
  /* Increment custom counter */
  margin-bottom: 10px;
}

.accordion-body ol>li::before {
  content: "Steps " counter(step-counter) ": ";
  /* Custom prefix */
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  /*   .faq-section .accordion {
    width: 50%;
    margin: 0 auto;
  } */

  .accordion-button:before {
    right: 0.75rem;
  }

  .accordion-button.collapsed:after {
    right: 1.1875rem;
  }

  .faq-section .accordion-button h5 {
    margin-right: 0px;
  }
}

/*--------------------------------------------------------------------------------------------*/

@media screen and (max-width: 786px) {
  .why-main-wrapper::before {
    display: none;
    content: '';
    position: absolute;
    /* top: -39px; */
    left: -137px;
    background-image: url(img/who.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
}



@media screen and (max-width: 1200px) {
  .header-top {
    display: none;
  }

  .main-circle {
    background: #efefef;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    margin: auto;
    position: relative;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    text-align: center;
    /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); */
  }

  .why-main-wrapper::before {
    left: -45px;
  }

  .feature-1 {
    top: -16px;
    left: 74%;
  }

  .feature-2 {
    top: 79px;
    right: -70px;
  }

  .feature-3 {
    bottom: 120px;
    right: -73px;

  }

  .main-circle p {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 29px;
    color: #444;
    max-width: 250px;
  }

  .main-circle h2 {
    position: absolute;
    left: -77px;
    background: linear-gradient(135deg, #54cc38 0%, #cbbb13 100%);
    color: #fff;
    border-radius: 50%;
    width: 130px;
    height: 130px;
  }

}



@media screen and (max-width: 992px) {
  .why-main-wrapper::before {
    display: none !important;
  }

  .nav-link {

    margin: 8px 0;
  }

  .my-btn {
    padding: 13px 12px !important;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    padding: 11px 7px;
}

.dropdown-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 3px 9px !important;
}

  .dropdown-menu .row {
    display: block !important;
  }

  .dropdown-menu .row svg{
    display: none !important;
  } 

  .dropdown-menu .col-6 {
    width: 100% !important;
  }

  .main-circle h2 {
    position: absolute;
    left: -137px;
    background: linear-gradient(135deg, #54cc38 0%, #cbbb13 100%);
    color: #fff;
    border-radius: 50% 50%;
    width: 150px;
    height: 150px;
  }

  .main-circle h2 {
    font-size: 15px;
  }

  .main-circle {
    background: #f5f5f5;
    width: 300px;
    height: 300px;
    border-radius: 68%;
  }

  .feature-1 {
    top: -37px;
    left: 37%;
    z-index: 1;
  }

  .feature-2 {
    top: 10px;
    right: -129px;
  }

  .feature-3 {
    bottom: 41px;
    right: -135px;
  }

  .feature-4 {
    bottom: -26px;
    left: 37%;
    z-index: 1;
  }

  .main-circle p {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 21px;
    color: #444;
    max-width: 250px;
  }

}

@media (max-width: 768px) {

  .about-banner {
    padding-top: 54px;
  }

  .feature-item {
    position: static;
    margin: 20px auto;
    flex-direction: column;
    text-align: right;
  }

  .feature-text {
    margin-left: 0;
    margin-top: 10px;
  }

  .feature-icon {
    position: absolute;
    left: 73%;
  }

  .feature-icon::after {
    display: none;
  }

  .main-circle {
    background: #f5f5f5;
    width: 300px;
    height: 300px;
    border-radius: 68%;
    margin-top: 122px;
  }

  .main-circle h2 {
    font-size: 15px;
    top: -91px;
    left: inherit;
  }
}

@media (max-width: 576px) {
  .feature-text p {
    font-size: 13px;
    margin: 0;
    width: 150px;
  }

  .feature-item {
    position: static;
    margin: 20px auto;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    width: 300px;
  }

  .feature-icon {
    position: absolute;
    left: 10%;
  }

  .feature-text {
    margin-left: 95px;
    margin-top: 10px;
  }

  .feature-text p {
    font-size: 13px;
    margin: 0;
    width: 190px;
  }

  .feature-icon {
    position: absolute;

    width: 60px;
    height: 60px;
  }



}


#news-slider {
  margin-top: 50px;
}

.post-slide {
  background: #fff;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0px 10px 18px -6px #bbcbd8;
}

.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.post-slide .post-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.post-slide:hover .post-img img {
  transform: scale(1.05);
}

.post-slide .over-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 92, 126, 0.4);
  /* #065c7e with transparency */
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.post-slide:hover .over-layer {
  opacity: 1;
}

.post-slide .over-layer i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
}

.post-content {
  padding: 15px;
}

.post-title a {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  text-decoration: none;
}

.post-title a:hover {
  color: #448e3a;
  /* Primary green on hover */
}

.post-description {
  font-size: 14px;
  color: #777;
  margin: 10px 0;
  line-height: 1.5;
}

.post-date {
  font-size: 13px;
  color: #aaa;
}

.post-date i {
  margin-right: 5px;
}

.read-more {
  float: right;
  background: #448e3a;
  /* Green button */
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}

.read-more:hover {
  background: #065c7e;
  /* Blue on hover */
}

.blog {
  background-color: var(--bgcolor);
}


.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  display: none !important;
}

.page-title {
  color: #065c7e;
  font-weight: bold;
}

.section-title {
  color: #448e3a;
  margin-top: 30px;
  font-weight: 600;
}

.terms-section {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.terms-section p {
  line-height: 1.7;
}

.contact-email {
  color: #065c7e;
  font-weight: 500;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}