* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #000;
}

.section_padding {
  padding: 30px 15px;
}
.page_padding {
  padding: 30px 0px;
}
/* navigation start */

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: calc(100% - 16rem);
  max-width: 100%;
  margin: 0 auto;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: hsl(333, 71%, 50%);
  height: 100%;
}
.brand img {
  width: auto;
  height: 100%;
  object-fit: contain;
  padding: 5px 0px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background-color: hsl(206, 5%, 100%);
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.menu-item {
  position: relative;
  display: inline-block;
  margin-left: 1.5rem;
}

.menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  text-transform: capitalize;
  color: #000;
  transition: all 0.3s ease-in-out;
}

.menu-link > i.bx {
  font-size: 1.35rem;
  line-height: 1.5;
  color: inherit;
}

.menu-link:hover {
  outline: none;
  color: #247145;
  text-decoration: none;
}

.menu-dropdown:hover > .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu {
  position: absolute;
  top: 2.35rem;
  left: -5rem;
  min-width: 22rem;
  height: auto;
  padding: 0 0rem 0rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  border-radius: 0 0 0.25rem 0.25rem;
  border-top: 2px solid #000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background-color: hsl(206, 5%, 100%);
  transition: all 0.3s ease-in-out;
}

.submenu-item {
  display: block;
  padding: 0px;
}

.submenu-link {
  font-size: 15px;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  color: #000;
  /* transition: background, 0.3s ease-in-out; */
  width: 100%;
  position: relative;
  padding: 10px 15px;
  display: flex;
}

.submenu-link:hover {
  outline: none;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(115, 163, 67, 1) 0%,
    rgba(36, 113, 69, 1) 100%
  );
  text-decoration: none;
}

.burger {
  position: relative;
  display: none;
  cursor: pointer;
  user-select: none;
  width: 1.6rem;
  height: 1.15rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 1rem;
  background: #000;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}
header .navbar {
  padding: 0;
}
header .navbar .menu {
  margin: 0px;
}

/* navigation end */

/* Hero Section Start */

.hero {
  background: url("../images/bg-banner.jpg") center center/cover no-repeat;
  padding: 0px 0px 0px;
  color: #fff;
  height: 90vh;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  margin: auto;
  height: 100%;
  align-items: center;
  flex-wrap: wrap;
}

.hero .left {
  width: 60%;
  padding: 0px 20px 0px 0px;
}

.hero .left h1 {
  font-size: 75px;
  font-weight: 600;
  line-height: 1.2;
  font-family: "DM Sans", sans-serif;
}

.hero .left span {
  display: block;
  font-weight: 700;
}

.hero .left p {
  margin: 40px 0;
  font-size: 22px;
  font-weight: 500;
}

.hero .btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 20px 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero .btn i {
  font-size: 18px;
}

.hero .right {
  width: 40%;
  padding-left: 40px;
}

.hero .form-card {
  background: #fff;
  color: #000;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 80%;
  text-align: center;
}

.hero .form-card h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.hero .form-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

.hero .phone a {
  color: #247145;
  font-weight: bold;
  text-decoration: none;
}

.hero .form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.hero .form-card input,
.hero .form-card textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}
.hero .form-card input:focus-visible,
.hero .form-card textarea:focus-visible,
.hero .form-card button:focus {
  outline: 1px solid #247145;
}

.hero .form-card button {
  padding: 12px;
  background: linear-gradient(
    90deg,
    rgba(115, 163, 67, 1) 0%,
    rgba(36, 113, 69, 1) 100%
  );
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}
.hero .form-card button:hover{
  background: linear-gradient(
    90deg,
    rgb(131, 187, 75) 0%,
    rgb(47, 141, 88) 100%
  );
}
/* Hero Section End */

/* We Provide Section Start */
.we_provide_section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, #f4f4f6 65%);
  padding-bottom: 60px;
}
.section_title h2 {
  font-size: 55px;
  font-weight: 700;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  font-family: "DM Sans", sans-serif;
}

.section_title h2 span svg {
  position: absolute;
  top: 62%;
  left: 42%;
  width: calc(45% + 0.75em);
  height: calc(100% + 0.75em);
  transform: translate(-50%, -50%);
  overflow: visible;
}
.section_title h2 span svg path {
  stroke: #247145;
  stroke-width: 6;
  fill: none;
  stroke-dasharray: 1500;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* animation-iteration-count: infinite; */
  animation: fusion-title-highlight 10s infinite;
}

@keyframes fusion-title-highlight {
  0% {
    stroke-dasharray: 0 1500;
    opacity: 1;
  }
  15% {
    stroke-dasharray: 1500 1500;
  }
  85% {
    opacity: 1;
  }
  90% {
    stroke-dasharray: 1500 1500;
    opacity: 0;
  }
  100% {
    stroke-dasharray: 0 1500;
    opacity: 0;
  }
}
.services-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.services-container .service-card {
  background: white;
  margin-top: 50px;
  padding: 30px 30px;
  text-align: center;
  border-radius: 16px;
  /* margin-bottom: 20px; */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 30%;
  transition: transform 0.3s ease;
}

.services-container .service-card:hover {
  transform: translateY(-5px);
}

.services-container .icon i {
  color: #418b4b;
  font-size: 100px;
  margin-bottom: 20px;
}

.services-container h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}

.services-container p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* We Provide Section End */

/* consulting section start */
.consultancy-section {
  background: #fff;
}

.consultancy-section .content-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #f4f4f6;
  border-bottom-right-radius: 120px;
  border-top-left-radius: 120px;
  margin-top: 80px;
}
.consultancy-section .content-wrapper .all_service_btn {
  border-top: 1px dashed;
  border-color: gray;
  margin-top: 30px;
  text-align: center;
}
.consultancy-section .content-wrapper a .btn {
  background: linear-gradient(
    90deg,
    rgba(115, 163, 67, 1) 0%,
    rgba(36, 113, 69, 1) 100%
  );
  color: #fff;
  border: none;
  padding: 12px 20px 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.consultancy-section .image-container {
  width: 50%;
  padding-right: 100px;
}

.consultancy-section .image-container img {
  max-width: 100%;
  border-top-left-radius: 120px;
  border-bottom-right-radius: 120px;
  object-fit: cover;
  height: auto;
  position: relative;
  top: -14vh;
}

.consultancy-section .text-content {
  width: 50%;
  padding: 30px;
}

.consultancy-section .text-content h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
  line-height: 1.4;
  font-family: "DM Sans", sans-serif;
}

.consultancy-section .feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.consultancy-section .feature .icon i {
  width: 40px;
  height: 40px;
  background: #418b4b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultancy-section .feature strong {
  margin-bottom: 5px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.consultancy-section .feature div {
  color: #000;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
}

/* consulting section end */

/* Partner Section Start */
.authorities-section {
  text-align: center;
  background-color: #fff;
  padding-bottom: 30px;
}

.authorities-section h2 {
  font-size: 24px;
  margin-bottom: 40px;
  color: #000;
}

.authorities-section .authorities-grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.authorities-section .authority-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgb(209 209 209 / 50%);
  transition: transform 0.3s ease;
  width: 22%;
  margin-top: 25px;
}

.authorities-section .authority-card:hover {
  transform: translateY(-5px);
}

.authorities-section .authority-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Partner Section End */

/* Counter Section Start */
.counter_wrapper {
  background: linear-gradient(
    180deg,
    rgb(115, 163, 67) 0%,
    rgb(36, 113, 69) 100%
  );
}
.counter-section {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.counter-section .items {
  width: 33.33%;
}
.counter-section .items .content {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 35px 55px 35px 55px;
}
.counter-section .items .content .number {
  font-size: 70px;
  font-weight: 800;
  font-family: "DM Sans";
}
.counter-section .items .content h3 {
  font-weight: 500;
  font-size: 24px;
  padding-bottom: 12px;
  padding-top: 3px;
}
.counter-section .items .content .description {
  font-size: 18px;
}
/* Counter Section End */

/* Footer Section Start */

.footer_wrapper {
}
.footer_section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0px 30px 0px;
  /* border-bottom: 1px solid #2f78446b; */
}
.footer_section .items:nth-of-type(1) {
  width: 40%;
}
.footer_section .items:nth-of-type(2) {
  width: 30%;
}
.footer_section .items:nth-of-type(3) {
  width: 30%;
}
.footer_section .items .content {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}
.footer_section .items .content h3 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer_section .items .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer_section .items:nth-of-type(3) .content {
  padding-right: 0px;
}
.footer_section .items .content .logo {
  width: 200px;
  margin-bottom: 15px;
}
.footer_section .items .content ul li {
  list-style: none;
  padding: 5px 0px;
}
.footer_section .items .content .social_media span {
  margin-right: 10px;
}
.footer_section .items .content .social_media span a i {
  font-size: 25px;
  color: #277345;
}
.footer_section .items .content ul li a {
  color: #434343;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.footer_section .items .content ul li a:hover {
  color: #000;
  text-decoration: none;
  padding-left: 7px;
}

.footer_section .items .content ul li p {
  display: flex;
  color: #000;
  font-weight: 500;
}
.footer_section .items .content ul li p span:first-child {
  margin-top: 5px;
  margin-right: 10px;
  color: #277345;
}

.footer_bottom {
  background: #efefef;
}
.footer_bottom_section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  padding: 17px 0px;
  font-size: 14px;
  font-weight: 500;
}
.footer_bottom_section .right a {
  color: #000;
  text-decoration: none;
}
.footer_bottom_section .right a:hover {
  color: #247145;
  text-decoration: none;
}

/* Footer Section End */

/* Services Page Css Start */
.service_page_services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, #f4f4f6 65%);
  margin-top: -50px;
  padding-bottom: 60px;
}
.services-section {
  background-color: #fff8dc;
  border-bottom-left-radius: 100% 175%;
  border-bottom-right-radius: 100% 175%;
  padding: 100px 20px 170px;
  text-align: center;
  position: relative;
  max-width: 80%;
  margin: auto;
  margin-top: -80px;
}

.services-section::after {
  position: absolute;
  content: "";
  z-index: 9;
  bottom: 0px;
  width: 100%;
  left: 0;
  background-color: #fff;
  height: 50px;
}

.services-section .services-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-section .services-icon i {
  width: 65px;
  height: 65px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  color: #247145;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  transition: 0.3s ease-in-out;
}
.services-section .services-icon i:hover {
  background: #247145;
  color: #fff;
}

.services-section .services-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.services-section .services-content .title {
  margin-bottom: 30px;
}
.services-section .services-content p {
  font-size: 22px;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.5;
}
.services-section .services-content .sub_title {
  margin-bottom: 15px;
}

.services-section .services-btn {
  background: linear-gradient(
    90deg,
    rgba(115, 163, 67, 1) 0%,
    rgba(36, 113, 69, 1) 100%
  );
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.services-section .services-btn:hover {
  background: linear-gradient(
    90deg,
    rgb(131, 187, 75) 0%,
    rgb(47, 141, 88) 100%
  );
}

/* Common Section Start */

.common-wrapper {
  padding: 60px 20px;
  background: linear-gradient(
    180deg,
    rgb(115, 163, 67) 0%,
    rgb(36, 113, 69) 100%
  );
}

.common-wrapper .common-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.common-wrapper .common-section .left-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  color: #fff;
}

.common-wrapper .common-section .left-content h3 {
  font-size: 48px;
  margin: 0 0 20px;
  font-weight: 700;
}

.common-wrapper .common-section .subheading {
  font-size: 26px;
  margin-bottom: 20px;
}

.common-wrapper .common-section .left-content hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 20px 0;
  width: 100px;
}

.common-wrapper .common-section .testimonial {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}

.common-wrapper .common-section .author {
  margin-top: 20px;
  font-weight: 600;
}

.common-wrapper .common-section .location {
  font-size: 12px;
  color: #ddd;
}

.common-wrapper .common-section .right-form {
  flex: 1;
  min-width: 320px;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.common-wrapper .common-section .form-box {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #333;
}

.common-wrapper .common-section .form-box h3 {
  margin-bottom: 5px;
}

.common-wrapper .common-section .contact-text {
  font-size: 13px;
  margin-bottom: 5px;
}

.common-wrapper .common-section .phone {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
.common-wrapper .common-section .phone i {
  color: #000;
}
.common-wrapper .common-section .phone a {
  color: #247145;
  font-weight: bold;
  text-decoration: none;
}

.common-wrapper .common-section form input,
.common-wrapper .common-section form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.common-wrapper .common-section form input:focus-visible,
.common-wrapper .common-section form textarea:focus-visible {
  outline: 1px solid #247145;
}

.common-wrapper .common-section form button {
  background: linear-gradient(
    180deg,
    rgb(115, 163, 67) 0%,
    rgb(36, 113, 69) 100%
  );
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.common-wrapper .common-section form button:focus-visible,
.common-wrapper .common-section form button:focus {
  outline: 1px solid #247145;
}

.common-wrapper .common-section .note {
  font-size: 10px;
  margin-top: 10px;
  color: #878787;
  font-weight: 500;
}
/* Common Section End */

/* Services Page Css End */

/* Licensing Section Start */
.licensing_section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  padding: 60px 0px;
}
.licensing_section .left {
  width: 50%;
  padding-right: 80px;
}
.licensing_section .left h3 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 700;
}
.licensing_section .left p {
  font-size: 18px;
  margin-bottom: 30px;
}
.licensing_section .right {
  width: 50%;
  padding-left: 60px;
}
.licensing_section .right .image img {
  width: 100%;
  border-radius: 8px;
}

.licending_wrapper {
  background-color: #f8f9fc;
}
.license-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 5px 0px 60px;
  flex-wrap: wrap;
}

.license-section .license-card {
  background: #fff;
  padding: 30px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 31%;
  transition: 0.3s ease;
}

.license-section .license-card .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.license-section .license-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.license-section .license-logo {
  width: 260px;
  margin-bottom: 20px;
  object-fit: cover;
  height: 100px;
}

.license-section .license-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.license-section .license-card p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

/* Licensing Section End */

/* Message Section Start */
.message_section {
  max-width: 850px;
  padding-top: 80px;
  padding-bottom: 65px;
  margin: auto;
  text-align: center;
}
.message_section h3 {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.message_section p:nth-of-type(1) {
  margin-bottom: 5px;
  font-size: 18px;
}
.message_section p:nth-of-type(2) {
  margin-bottom: 20px;
  font-size: 15px;
}
/* Message Section End */

/* Get Touch Section Start */
.get_touch_wrapper {
  background: linear-gradient(
    180deg,
    rgb(115, 163, 67) 0%,
    rgb(36, 113, 69) 100%
  );
}
.get_touch_section {
  color: #fff;
  max-width: 950px;
  margin: auto;
  text-align: center;
  padding: 80px 0px;
}
.get_touch_section h3 {
  font-size: 48px;
  font-weight: 700;
}
.get_touch_section a .btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 20px 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 1px solid #000;
}
.get_touch_section a .btn:hover {
  background: transparent;
}

.get_touch_section .mail_number span {
  font-size: 26px;
}
.get_touch_section .mail_number span:nth-of-type(1) {
  margin-right: 30px;
}
.get_touch_section .mail_number span a {
  color: #fff;
}
/* Get Touch Section End */

/* Contact us page start */

.contact-section {
  padding: 50px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, #f4f4f6 65%);
}

.contact_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  max-width: 1140px;
}

.contact_wrapper .contact-info {
  width: 38%;
}
.contact_tile h3 {
  margin: 0px auto 50px auto;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
}
.contact-info .boxes {
  margin-bottom: 30px;
}

.contact-info .boxes .title h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contact-info .boxes .details p {
  display: flex;
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 500;
}
.contact-info .boxes .details p a {
  color: #247145;
}
.contact-info .boxes .details p a:hover {
  color: #000;
}
.contact-info .boxes .details p .icon i {
  color: #418b4b;
  margin-right: 12px;
  margin-top: 5px;
}

.contact_wrapper .contact-form {
  width: 58%;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact_wrapper .contact-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact_wrapper .form-group {
  margin-bottom: 15px;
  width: 100%;
}
.contact_wrapper .form-group textarea{
  height: 80px;
}

.contact_wrapper .form-group:nth-of-type(1), .contact_wrapper .form-group:nth-of-type(2)  {
  margin-bottom: 15px;
  width: 48%;
}

.contact_wrapper .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact_wrapper .form-group .checkbox_label{
  margin-bottom: 15px;
}

.contact_wrapper .form-group input[type="text"],
.contact_wrapper .form-group input[type="email"],
.contact_wrapper .form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact_wrapper .form-group input[type="checkbox"] {
  margin-right: 6px;
}

.contact_wrapper .recaptcha-box {
  background: #f0f0f0;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
}

.contact_wrapper .submit-btn {
  background: linear-gradient(
    90deg,
    rgba(115, 163, 67, 1) 0%,
    rgba(36, 113, 69, 1) 100%
  );
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.contact_wrapper .form-group input[type="text"]:focus-visible,
.contact_wrapper .form-group input[type="email"]:focus-visible,
.contact_wrapper .form-group textarea:focus-visible,
.contact_wrapper .submit-btn:focus-visible,
.contact_wrapper .submit-btn:focus{
  outline: 1px solid #247145;
}

.contact_wrapper .submit-btn:hover {
  background: linear-gradient(
    90deg,
    rgb(131, 187, 75) 0%,
    rgb(47, 141, 88) 100%
  );
}
/* Contact us page end */
