 /* font-family: "Inter", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*font-weight: 400;*/
@font-face {
    font-family: 'Arial';
    src: url('../fonts/ArialMT.woff2') format('woff2'),
        url('../fonts/ArialMT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*font-weight: 700;*/
@font-face {
    font-family: 'Arial';
    src: url('../fonts/Arial-BoldMT.woff') format('woff2'),
        url('../fonts/Arial-BoldMT.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* font-weight: 400; */
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirRegular.woff2') format('woff2'),
        url('../fonts/AvenirRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* font-weight: 800; */
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirHeavy.woff2') format('woff2'),
        url('../fonts/AvenirHeavy.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* 900 - Black */
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirBlack.woff2') format('woff2'),
        url('../fonts/AvenirBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
  --White: #FFFFFF;
  --White-1: #F5F5F5;
  --Light-Tan: #F2EFE6;
  --Black: #0E1A1A;
  --Green: #3D6B47;
  --Light-Green: #3D6B471A;
  --Gray: #373737;
  --Gray-2: #5B6663;
  --Blue: #032B43;
  --Gradiant-1: linear-gradient(180deg, #5A9E69 2.88%, #3D6B47 34.62%, #032B43 100%);
  --Gradiant-2: linear-gradient(180deg, rgba(90, 158, 105, 0.6) 2.88%, rgba(61, 107, 71, 0.6) 34.62%, rgba(3, 43, 67, 0.6) 100%);
  /* font-family */
  --font-heading: 'Avenir';
  --font-body: 'Arial';
  --font-inter: 'Inter', sans-serif;
}

html {
  scroll-behavior: inherit !important;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  padding: 0;
  background: #FAF8F2;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-body);
  color: var(--Black);
  overflow-x: hidden;
}
body.wp-admin {
  background: #fff !important;
  color: #000 !important;
}
 
body.wp-admin * {
  color: inherit !important;
}

.mobile {
  display: none;
}
.desktop {
  display: block;
}

ol, ul {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--Black);
}
p:empty{
  display: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--Black);
  margin-top: 0;
  margin-bottom: 10px;
}

h1, .h1 {
  font-size: 84px;
  line-height: 88px;
  color: var(--White);
}
h2, .h2 {
  font-size: 55px;
  line-height: 56px;
}
h3, .h3 {
  font-size: 52px;
  line-height: 60px;
}
h4, .h4 {
  font-size: 42px;
  line-height: 41px;
}
h5, .h5 {
  font-size: 28px;
  line-height: 34px;
}
h6, .h6 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

/* button */
.green-btn, .gform_button,.clear-btn {
  padding: 11px 15px;
  min-width: 143px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  border-radius: 8px;
  transition: all 0.33s linear;
}
.arrow-icon {width: 14px;height: 14px;display: block;transition: 0.3s ease;position: relative;}
.arrow-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
}
.arrow-icon img.hover {
  display: block;
  opacity: 0;
  z-index: 2;
  visibility: visible;
  transition: 0.3s ease;
}
.green-btn, .gform_button {
  background-color: var(--Green);
  color: #F4F4F4;
  border: 1px solid var(--Green);
}
.clear-btn {
  background-color: transparent;
  color: #F4F4F4;
  border: 1px solid var(--White);
}
.green-btn:hover, .gform_button:hover {
  background-color: #F4F4F4;
  color: var(--Green);
}
.clear-btn:hover {
  background-color: var(--Green);
  color: #F4F4F4;
  border-color: var(--Green);
}
.green-btn:hover .arrow-icon img.hover {
  opacity: 1;
  visibility: visible;
}
.green-btn span,.clear-btn span{
  position: relative;
  z-index: 2;
}
/* button end */

::placeholder {
  color: #9AA6A3;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #9AA6A3;
  opacity: 1;
}
::-ms-input-placeholder {
  color: #9AA6A3;
  opacity: 1;
}
::placeholder {
  color: #9AA6A3;
  opacity: 1;
}
img {
  height: auto;
  max-width: 100%;
}
button:focus {
  outline: none;
}
textarea {
  resize: none;
}
a {
  transition: all 0.33s linear;
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
  color: var(--Black);
}

/* Header */
.lines-button {
  border-radius: 0.57143rem;
  cursor: pointer;
  padding: 16px 0px;
  position: absolute;
  right: 16px;
  top: 0;
  transition: all 0.3s ease;
  z-index: 99;
  display: none;
}
.lines-button:hover {
  opacity: 1;
}
.lines {
  background: #fff;
  border-radius: 0.28571rem;
  display: inline-block;
  height: 2px;
  position: relative;
  transition: all 0.3s ease 0s;
  width: 40px;
}
.lines:before,
.lines:after {
  background: #fff;
  border-radius: 0.28571rem;
  content: "";
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  transform-origin: 0.28571rem center 0;
  transition: all 0.3s ease 0s;
  width: 40px;
}
.lines:before {
  top: 8px;
}
.lines:after {
  top: -8px;
}
.lines-button:hover .lines:before {
  top: 8px;
}
.lines-button:hover .lines:after {
  top: -8px;
}
.lines-button.x2.meanclose .lines:before,
.lines-button.x2.meanclose .lines:after {
  -webkit-transform: none;
  transform: none;
  top: 0;
}
.lines-button.minus.close .lines:before,
.lines-button.minus.close .lines:after {
  -webkit-transform: none;
  transform: none;
  top: 0;
}
.main_menu {
  float: left;
  position: relative;
  text-align: center;
  z-index: 500;
  transition: all 0.3s ease 0s;
}
.main_menu ul {
  padding: 0px;
  margin: 0px;
}
.main_menu > ul > li {
  float: left;
  list-style: outside none none;
  margin-left: 0px;
  position: relative;
}
.main_menu > ul > li > a {
  display: block;
  text-decoration: none; 
  margin-bottom: 0px;
  position: relative;
  color: var(--Blue) !important;
  font-style: normal;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  padding: 46px 17px 45px;
}
.main_menu > ul > li.menu-item-has-children > a {
  padding-right: 23px !important;
}
.main_menu > ul > li > ul li a {
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 15px 20px;
  color: var(--Blue);
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0;
  text-transform: uppercase;
}
.main_menu > ul > li > a:hover {
  text-decoration: none;
}
.main_menu > ul > li > a.last {
  border: none;
}
.main_menu > ul > li:hover > a {
  text-decoration: none;
  color: #1a1a1a;
  position: relative;
  z-index: 99;
}
.main_menu > ul > li:hover > a .sub {
  color: #000;
}
.main_menu > ul > li.current_page_item > a {
  text-decoration: none;
  color: #fff;
  border-color: #fff;
}
.main_menu > ul > li.current-menu-parent > a,
.main_menu > ul > li.current-menu-ancestor > a,
.main_menu > ul > li.current-menu-item > a {
  color: #0093bb;
}
.main_menu > ul > li.current_page_item > li.current_page_item > a,
.main_menu > ul > li.current-menu-ancestor > ul > li.current-menu-parent > a,
.main_menu > ul > li > ul > li > ul > li.current-menu-item > a {
  background: #0093bb;
  color: #fff;
}
.main_menu > ul > li.current-product_cat-ancestor > li.current-product_cat-ancestor > a, 
.main_menu > ul > li.current-product_cat-ancestor > ul > li.current-product_cat-ancestor > a, 
.main_menu > ul > li > ul > li > ul > li.current-product_cat-ancestor > a {
  color: #fff;
}
.main_menu > ul > li.current-product_cat-ancestor > a {
  color: #fff;
  background: #0093bb;
}
.main_menu > ul > li > ul > li.current-menu-item > a {
  color: #fff;
  background: var(--Green);
}
.main_menu ul > li:hover > a,
.main_menu > ul > li.current-menu-item > a {
  transition: all 0.3s linear;
  color: #fff;
}
/* submenus */
.main_menu ul ul {
  top: 100%;
  background: var(--White-1);
  pointer-events: none;
  z-index: 1000;
  min-width: 240px;
  width: auto;
  border-radius: 2px;
  position: absolute;
  padding: 0px;
  margin: 0px;
  visibility: hidden;
  display: block;
  text-align: left;
  opacity: 0;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.03s ease;
  -ms-transition: all 0.03s ease;
  -o-transition: all 0.03s ease;
  transition: all 0.03s ease;
  border: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0px 2px 20px 0px #8b8b8b40;
}
.main_menu ul ul li {
  display: block;
  position: relative;
}
.main_menu ul ul li a {
  padding: 24px 34px;
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.main_menu ul ul a:hover {
  text-decoration: none;
}
.main_menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  pointer-events: auto;
}
.main_menu > ul > li > ul > li:first-child ,
.main_menu > ul > li > ul > li:first-child li:first-child {
  border-top: 0px;
}
.main_menu ul ul ul {
  padding-top: 0px;
  left: 100%;
  top: 0px;
}
.main_menu ul ul li:first-child > ul {
  top: 0px;
  border-top: 0px;
}
.main_menu > select,
a.meanmenu-reveal {
  display: none;
}
.mean-bar {
  float: left;
  position: relative;
  width: 100%;
  z-index: 99;
}
a.meanmenu-reveal {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  font-weight: 700;
  display: none !important;
}
a.meanmenu-reveal span {
  display: block;
}
.mean-nav {
  background: #fff;
  float: left;
  position: absolute;
  top: 29px;
  width: 100%;
}
.mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}
.mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

body .main_menu ul > li > a:hover,
body .main_menu ul > li:hover > a,
.main_menu > ul > li.current-menu-item > a {
  color: var(--Black);
}
.main_menu > ul > li.current-menu-item > a {
    color: var(--Green) !important;
    background-color: transparent !important;
}
body .main_menu ul > li:hover > a {
  color: var(--Green) !important;
  background-color: transparent !important;
}
header .main_menu ul.navbar-nav > li:hover > a,
header .main_menu ul.navbar-nav > li > a:hover {
  color: var(--Black) !important;
}
.main_menu > ul > li > ul > li:hover a {
  background: var(--Green) !important;
  color: var(--White) !important;
}

.mean-nav ul li a {
  display: block;
  float: left;
  width: 100%;
  padding: 10px 20px;
  margin: 0;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 155.556%;
  min-height: 80px;
  display: grid;
  align-items: center;
  text-transform: capitalize;
}
.mean-nav ul li li a {
  width: 100%;
  padding: 8px 25px;
  opacity: 1;
  text-shadow: none !important;
  visibility: visible;
  letter-spacing: 0.54px;
}
.mean-nav ul li.mean-last a {
  border-bottom: none;
  margin-bottom: 0;
}
.mean-nav ul li li li a {
  padding: 7px 30px;
  width: 100%;
}
.mean-nav ul li li li li a {
  width: 60%;
  padding: 14px 20%;
}
.mean-nav ul li li li li li a {
  width: 50%;
  padding: 14px 25%;
}
.mean-nav ul li a.mean-expand {
  width: 76px;
  height: 39px;
  border: none !important;
  padding: 6px 5px 3px 5px !important;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background-color: transparent;
  box-shadow: none;
  font-size: 0 !important;
  transition: all 0.5s ease;
  box-shadow: none;
}
.mean-nav > ul > li.current-menu-item > ul > li.current-menu-item > a {
  background: #ff0b2c;
  color: #1a1a1a;
}
.main_menu > ul > li.menu-item-has-children > a {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
}
.main_menu > ul > li.menu-item-has-children > a::after {
  background-image: url("../images/down-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  width: 8px;
  height: 100%;
  transition: all 0.5s ease;
  border: none;
  margin: 0;
  position: absolute;
  background-size: contain;
  top: 0;
  right: 8px;
}
.main_menu > ul > li.current-menu-item > a:after {
  background-image: url("../images/down-green.svg") !important;
  background-repeat: no-repeat;
  background-position: center;
}
.main_menu > ul > li.menu-item-has-children:hover > a:after {
  transform: rotate(180deg);
  /* filter: brightness(0) invert(1); */
}
.main_menu > ul > li.current-menu-item > a::after {
   /* filter: brightness(0) invert(1); */
}
.mean-nav ul li a.mean-expand.mean-clicked {
  transform: rotate(180deg);
}
header .logo img {
  max-width: 166px;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s linear;
}
header {
  position: fixed;
  transition: all 0.33s linear;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: rgb(3 43 67 / 10%);
}
header .top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  transition: all 0.3s linear;
}
body.fixnav header {
    background-color: var(--White-1);
}
header .middle-wrp .main_menu > ul {
  display: flex;
  gap: 0;
}
header a.green-btn {
    min-width: 231px;
    min-height: 46px;
}
.logged-in #main__header {
  top: 32px;
}
/* Header end */

/* Footer */
footer {
  position: relative;
  padding: 56px 0 0;
  border-top: 1px solid var(--Light-Tan);
  background: var(--Blue);
}
footer ul.f-social-list {
  display: flex;
  justify-content: center;
  grid-column-gap: 11px;
  margin-top: auto;
}
footer .f-social-list a {
  position: relative;
  width: 14.91px;
  height: 14.91px;
  display: block;
  transition: 0.3s ease;
}
footer .f-social-list a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
}
footer .f-social-list a img.hover {
  display: block;
  opacity: 0;
  z-index: 2;
  visibility: visible;
  transition: 0.3s ease;
}
footer .f-social-list a:hover img.hover {
  opacity: 1;
  visibility: visible;
}

footer .footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 32px;
  padding-bottom: 41px;
}
.f-logo img{
  object-fit: contain;
  width: 100%;
}
.col-in ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}
.col-in ul li {
  color: var(--White-1);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0;
  margin-bottom: 0;
}
.col-in ul li a {
  color: inherit;
}
.col-in ul li:hover{
  color: #5B9E69;
}
.footer-row2 {
  background: #021E30;
  border-top: 1px solid #FFFFFF1A;
  padding: 21px 0;
}
.footer-row2 .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1184px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-row2 .footer-bottom .middle-wrp {
  display: flex;
  gap: 21px;
  align-items: center;
}
.footer-row2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}
.footer-row2 a, .footer-row2 p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0;
    color: #A0B4C8;
    margin: 0;
    position: relative;
}
.footer-row2 .footer-bottom .middle-wrp a{
  text-decoration: underline;
}
.footer .footer-bottom .middle-wrp p:not(:last-child)::after {
    position: absolute;
    content: "|";
    color: #64788C;
    top: 0;
    right: -11.5px;
}
.footer-row2 a:hover{
  color: #5B9E69;
}
.footer-row2 ul li a {
    color: inherit;
}
footer .office-wrp {
  display: flex;
  gap: 60px;
  align-items: center;
}
footer .office-wrp .office-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
footer .office-wrp .office-item span {
  display: block;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  color: #A0B4C8;
  margin-bottom: 6px;
}
footer .office-wrp .office-item a {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #5B9E69;
}
/* Footer */
/* slider slick start */
.slick-slider .slick-next,
.slick-slider .slick-prev {
  opacity: 1;
  z-index: 9;
}
.slick-slider .slick-next,
.slick-slider .slick-prev {
  background: url(../images/slider-prev-blue.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 24px !important;
  width: 24px;
  height: 24px;
  transition: all 0.3s linear;
}
.slick-slider .slick-prev {
  left: 0;
}
.slick-slider .slick-next {
  transform: rotateY(-180deg) translate(0, -50%);
  right: 0;
}
.slick-slider .slick-next:before,
.slick-slider .slick-prev:before {
  display: none;
}
.slick-dots li {
  width: 8.51px;
  height: 8.51px;
  margin: 0 4.2px;
  transition: all 0.3s linear;
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  background: #D9D9D9;
  padding: 0;
  border-radius: 50%;
  transition: all 0.3s linear;
  font-size: 0;
}
.slick-dots li button::before {
  display: none;
}
.slick-dots li.slick-active button{
  background: var(--Purple);
}
/* slider slick end */

.gform_wrapper.gravity-theme .gfield--input-type-address .ginput_container_address .gf_clear {display: none;}
.gform_wrapper.gravity-theme .gform_fields,
.gform_wrapper.gravity-theme
  .gfield--input-type-address
  .ginput_container_address {
  grid-row-gap: 20px !important;
  grid-column-gap: 16px !important;
}
.gform_wrapper.gravity-theme .gfield input,
.gform_wrapper.gravity-theme .gfield select,
.gform_wrapper.gravity-theme .gfield textarea {
  background-color: #fff;
  color: var(--Black);
  border-radius: 2px;
  padding: 17px 20px !important;
  box-shadow: none;
  font-weight: 400;
  font-family: var(--font-heading);
  font-size: 15px !important;
  line-height: 20px !important;
  letter-spacing: 0;
  transition: all 0.33s ease;
  border: 1px solid #D9D2C2;
}
.gform_wrapper.gravity-theme .gfield input:focus,
.gform_wrapper.gravity-theme .gfield select:focus,
.gform_wrapper.gravity-theme .gfield textarea:focus {
  outline: none;
  border-color: #D9D2C2;
}
.gform_wrapper.gravity-theme .gform_validation_errors {
  display: none !important;
}
.gform_wrapper.gravity-theme .gfield textarea.large {
    height: 180px !important;
    display: block;
}
.gform_wrapper.gravity-theme .gfield_label {
  font-family: var(--font-body);
  font-size: 11px !important;
  line-height: 13px;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  color: #5B6663;
  margin-bottom: 10px !important;
}
.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    text-align: left;
}
.gform_wrapper.gravity-theme .description,
.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper.gravity-theme .gsection_description,
.gform_wrapper.gravity-theme .instruction {
  font-size: 12px !important;
  line-height: 1.2 !important;
}
.ginput_recaptcha div {
  z-index: 999999 !important;
}
.gform_wrapper.gravity-theme .gfield_label .gfield_required_text,
.gform_wrapper.gravity-theme .gform_fileupload_rules,
.gform_required_legend,
.gfield--type-captcha label,
.instruction,
.gform_wrapper.gravity-theme .gform_validation_errors {
  display: none !important;
}
.gform_wrapper.gravity-theme .gfield select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url(../images/select-down.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 7px;
}
.gform_wrapper.gravity-theme .gfield select:has(option:first-child:checked) {
  color: #828282;
}
.gform_wrapper.gravity-theme div#field_1_8{
  margin-top: -6px;
}
.gform_wrapper.gravity-theme div#field_3_14{
  margin-top: -12px;
}
.gform_wrapper.gravity-theme .gfield input#input_3_14 ,.gform_wrapper.gravity-theme .gfield input#input_1_8 {
  padding: 8.5px 21px !important;
  background-image: url(../images/upload-icon.svg) !important;
  background-repeat: no-repeat !important;
  background-position: left 20px center !important;
  background-size: 12px !important;
  padding-left: 41px !important;
  text-transform: capitalize;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
    width: 100%;
    background-image: url(../images/date-icon.svg);
    background-repeat: no-repeat;
    background-position: center right 29px;
    background-size: 16px;
}
.gform_wrapper.gravity-theme .gform_footer {
  justify-content: center;
  margin: 36px 0 !important;
  padding: 0 !important;
  position: relative;
  align-items: center;
  overflow: hidden;
  max-width: 211px;
  height: 53px;
}

.gform_wrapper.gravity-theme .gform_footer .gform_button {
  border: none;
  margin-bottom: 0;
  background-color: var(--Green);
  color: var(--White);
  min-width: 100%;
  min-height: 100% !important;
  line-height: 20px !important;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding-left: 28px;
  padding-right: 45px;
}
.gform_wrapper.gravity-theme .gform_footer::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 14px;
  height: 17px;
  background: url(../images/arrow-icon.svg) no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  z-index: 1;
}

.gform_wrapper.gravity-theme .gform-loader  ,  .gform_ajax_spinner {
 position: absolute !important;
  top: 0 !important;
  right: 15px !important;
  bottom: 0 !important;
  margin: auto !important;
}
.gravity-theme .gform_confirmation_message {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--Green);
  padding: 5px;
  color: var(--Green);
  margin-bottom: 6px;
}
.nav-link:focus,.nav-link:hover {
  color: #fff;
}

/* Modal  */
.modal-dialog {
  max-width: 1063px;
  width: 100%;
  z-index: 999999;
}
.modal-dialog .modal-content {
  border: none;
  background: var(--Green);
}
.modal-dialog .modal-body {
  padding: 0px 0px;
}
.modal-dialog .close-btn {
  position: absolute;
  top: 19px;
  right: 20px;
  border: none;
  background-color: transparent;
  background: none;
  width: 20px;
  height: 20px;
  padding: 0;
  opacity: 1;
}
.modal-dialog .close-btn:focus {
  box-shadow: none;
}
.modal-dialog .close-btn::before {
  content: "";
  background: url(../images/modal-close-icon.svg) no-repeat center;
  background-size: 17px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-dialog .close-btn span {
  display: none;
}
body.modal-open header {
  z-index: 999 !important;
}
/* model end */
/* pagination start */
.pagination {
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 31px;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.pagination ul li a, .pagination ul li span {
    font-size: 24px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 5px 13px;
    display: block;
    color: var(--Purple);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.pagination ul li.active span {
  color: var(--Pink);
}
.pagination ul li.next-arrow a, .pagination ul li.prev-arrow a {
    background: #FFFFFFB2;
    border: 1.5px solid var(--Purple);
    border-radius: 5px;
    padding: 11px 13px;
}
.pagination ul li.next-arrow a img, .pagination ul li.prev-arrow a img{
  object-fit: contain;
  transition: all 0.3s linear;
}
.pagination ul li.next-arrow a img {
    transform: rotateY(180deg);
}
.pagination ul li.next-arrow a:hover,.pagination ul li.prev-arrow a:hover {
  background-color: var(--Pink);
  border-color: var(--Pink);
}
.pagination ul li.next-arrow a:hover img,.pagination ul li.prev-arrow a:hover img{
  filter: brightness(0) invert(1);
}
/* pagination end */
/* blog-single icon */
.meta_social_btns {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}
.meta_social_btns a {
  position: relative;
  width: 23.71px;
  height: 18.54px;
  display: block;
  transition: 0.3s ease;
}
.meta_social_btns a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
  object-fit: contain;
  object-position: center;
}
.meta_social_btns a img.hover {
  display: block;
  opacity: 0;
  z-index: 2;
  visibility: visible;
  transition: 0.3s ease;
}
.meta_social_btns a:hover img.hover {
  opacity: 1;
  visibility: visible;
}
.meta_social_btns a .copy-to-clipboard {
    position: absolute;
    left: 30px;
    top: 0;
    min-width: 110px;
    font-size: 14px;
    margin-left: 10px;
    line-height: 20px;
    color: var(--Black);
    text-align: left;
}
/* blog-single icon end */

.main_menu ul li ul {
  overflow-y: auto;
  max-height: 75vh;
}
.main_menu ul li ul::-webkit-scrollbar {
  width: 12px;
}
.main_menu ul li ul::-webkit-scrollbar-track {
  background: transparent;
}
.main_menu ul li ul::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 6px;
  border: 2px solid #f0f0f0;
}
#wpadminbar {
  z-index: 99999999;
}
/*home page start*/
/* page not found start */
.page-not-found {
  padding: 111px 0;
  background: var(--Gradiant-1);
  position: relative;
  overflow: hidden;
}
.page-not-found::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50%;
  width: 70.31vw;
  height: 70.31vw;
  border: 1px solid #C9A86A29;
  border-radius: 50%;
  transform: translate(50%, -50%);
  z-index: 0;
}
.page-not-found .col-md-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-not-found h1 {
  margin-bottom: 36px;
  font-size: 164px;
}
.page-not-found h2{
  font-weight: 500;
  margin-bottom: 36px;
}
.page-not-found p {
  max-width: 866px;
  margin: 0 auto 16px;
}
.page-not-found ul {
  display: grid;
  column-gap: 36px;
  max-width: 351px;
  margin: 0 auto;
  grid-template-columns: max-content max-content max-content;
  justify-content: space-around;
  text-align: left;
}
.page-not-found ul li a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  color: var(--White-1);
  position: relative;
  text-transform: uppercase;
  text-decoration: underline;
  transition: all 0.33s linear;
}
.page-not-found ul li a:hover {
  color: var(--Green);
}
/* page not found end */
/* privacy and terms start */
.cms-hero {
  padding: 71px 0;
  background: var(--Gradiant-1);
  position: relative;
}
.cms-hero .cnt-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cms-hero .cnt-wrp h1 {
  margin-bottom: 36px;
}
.cms-hero .cnt-wrp .btn-wrp {
  display: flex;
  gap: 20px;
}
.cms-hero .cnt-wrp .btn-wrp a {
  min-height: 54px;
}
.cms-hero .cnt-wrp .btn-wrp a.green-btn {
  min-width: 267px;
}
.cms-hero .cnt-wrp .btn-wrp a.clear-btn {
  min-width: 196px;
}
.cms-cnt {
  padding: 47px 0;
  position: relative;
  background: var(--White-1);
}
.cms-cnt .cnt-wrp p,
.cms-cnt .cnt-wrp ul li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0;
  color: #0C0C0C;
}
.cms-cnt .cnt-wrp p {
  margin-bottom: 25px;
}
.cms-cnt .cnt-wrp p+ul:not(:nth-of-type(3)) {
  margin-top: -25px;
}
.cms-cnt .cnt-wrp p:last-child {
  margin-bottom: 0;
}
.cms-cnt .cnt-wrp ul {
  padding-left: 30px;
  margin-bottom: 25px;
}
.cms-cnt .cnt-wrp ul li {
  list-style: disc;
}
.cms-cnt .cnt-wrp p a,
.cms-cnt .cnt-wrp ul li a {
  color: #0C0C0C;
  text-decoration: underline;
}
.cms-cnt .cnt-wrp p a:hover,
.cms-cnt .cnt-wrp ul li a:hover {
  color: #5B9E69;
}
/* privacy and terms end */
/* cta */
.cta {
  padding: 96px 0;
  background: var(--Gradiant-1);
  position: relative;
}
.cta .main-wrp {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta .main-wrp .cnt-wrp {
  max-width: 640px;
  margin-right: auto;
}
.cta .main-wrp .cnt-wrp span {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.18em;
  color: var(--Light-Tan);
  display: block;
  margin-bottom: 16px;
}
.cta .main-wrp .cnt-wrp h2 {
  font-size: 46px;
  margin-bottom: 0;
  color: var(--White);
}
.cta .main-wrp a.green-btn {
  min-width: 243px;
  background: var(--Light-Tan);
  color: var(--Green);
}
.cta .main-wrp a.green-btn:hover {
  background: var(--Green);
  color: var(--Light-Tan);
}
/* cta end */
/* home-page */
.hero-home {
  position: relative;
  padding: 96px 0 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--Gradiant-2);
}
.hero-home::before {
  content: '';
  position: absolute;
  top: 96px;
  right: 0px;
  width: 380px;
  height: 380px;
  background: url(../images/service-blur.svg) no-repeat center;
  background-size: contain;
}
.hero-home .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-home .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-home .hero-home-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-home .hero-home-wrp .main-img {
  margin-bottom: 22px;
}
.hero-home .hero-home-wrp .main-img img {
  object-fit: contain;
  display: block;
}
.hero-home .hero-home-wrp h1 {
  max-width: 863px;
  margin-inline: auto;
  margin-bottom: 12px;
}
.hero-home .hero-home-wrp p {
  color: var(--White-1);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0px;
}
.hero-home .hero-home-wrp .btn-wrp {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
.hero-home .hero-home-wrp .btn-wrp a {
  min-height: 54px;
}
.hero-home .hero-home-wrp .btn-wrp a.green-btn {
  min-width: 267px;
}
.hero-home .hero-home-wrp .btn-wrp a.clear-btn {
  min-width: 196px;
}
.our-services {
  padding: 120px 0 107px;
  background: var(--Light-Tan);
}
.our-services .services-overview-wrp {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
  align-items: center;
}
.our-services .services-overview-wrp span.sub-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.18em;
  padding-left: 50px;
  display: block;
  margin-bottom: 18px;
  color: var(--Green);
  position: relative;
}
.our-services .services-overview-wrp span.sub-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--Green);
  transform: translateY(-50%);
}
.our-services .services-overview-wrp h2 {
  margin-bottom: 28px;
}
.our-services .services-overview-wrp p {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 30px;
}
.our-services .services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.our-services .services-cards .service-card {
  width: calc((100% - (24px * 2))/3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 39px 24.75px;
  background: var(--White);
  border: 0.25px solid var(--Green);
  border-radius: 4px;
}
.our-services .service-card .service-icon {
  margin-bottom: 24px;
}
.our-services .service-card .service-icon img {
  display: block;
  object-fit: contain;
}
.our-services .service-card h6 {
  margin-bottom: 0;
}
.who-we-are {
  background: var(--White-1);
  padding: 120px 0;
}
.who-we-are .wwa-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.who-we-are .wwa-wrp .left-wrp {
  flex: 0 0 52.698%;
  max-width: 52.698%;
  width: 100%;
}
.who-we-are .wwa-wrp .left-wrp h2 {
  margin-bottom: 32px;
}
.who-we-are .wwa-wrp .left-wrp p {
  margin-bottom: 24px;
}
.who-we-are .wwa-wrp .btn-wrp {
  margin-top: 32px;
}
.who-we-are .wwa-wrp .btn-wrp a.green-btn{
  min-width: 167px;
}
.who-we-are .wwa-wrp .left-wrp p:last-child {
  margin-bottom: 0;
}
.who-we-are .wwa-wrp .right-wrp {
  flex: 0 0 44.814%;
  max-width: 44.814%;
  width: 100%;
}
.who-we-are .wwa-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}
.company-stats {
  background: var(--Green);
  padding: 96px 0 57px;
}
.company-stats .top-wrp {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.company-stats .top-wrp h2 {
  margin-bottom: 14px;
  color: var(--Light-Tan);
}
.company-stats .top-wrp p {
  color: var(--Light-Tan);
  margin-bottom: 0;
}
.counters-wrp .counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 36px;
  row-gap: 30px;
  margin-bottom: 40px;
}
.counters-wrp .counters .count-cnt {
  width: calc((100% - (36px * 2))/3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 22px;
}
.counters-wrp .counters .count-cnt span.count {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 42px;
  line-height: 41px;
  letter-spacing: 0;
  display: block;
  color: var(--White);
  padding: 14px 0;
  position: relative;
}
.counters-wrp .counters .count-cnt span.count::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 36px;
  height: 2px;
  background: #C9A86A;
  transform: translateX(-50%);
}
.counters-wrp .counters .count-cnt h6 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--White);
  margin-bottom: 0;
}
.company-stats .bottom-wrp p {
  text-align: center;
  color: #EEEEEE;
  margin-bottom: 0;
  font-size: 10px;
  text-transform: uppercase;
  max-width: 1096px;
  margin-inline: auto;
}
.office-locations {
  background: var(--Light-Tan);
  padding: 120px 0;
}
.office-locations h2 {
  text-align: center;
}
.office-locations .locations-wrp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1120px;
  margin-top: 48px;
}
.office-locations .location {
  background: var(--White);
  border: 1px solid #D9D2C2;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.office-locations .location img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.office-locations .location .cnt-wrp {
  padding: 35px;
  display: flex;
  flex-direction: column;
}
.office-locations .location .cnt-wrp h5{
  margin-bottom: 14px; 
}
.office-locations .location .cnt-wrp a.address {
  max-width: 280px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--Gray);
  text-decoration: none;
}
.office-locations .location .cnt-wrp a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  text-decoration: underline;
  color: var(--Green);
}
/* home-page end */
/* Our-services Page */
.service-hero {
  position: relative;
  padding: 96px 0 48px;
  background: var(--Blue);
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 476px;
  background: var(--Gradiant-1);
}
.service-hero::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 161px;
  height: 161px;
  background: url(../images/service-hero-round.svg) no-repeat center;
  background-size: contain;
  z-index: 1;
}
.service-hero .col-md-12 {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.service-hero .col-md-12::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 340px;
  height: 340px;
  background: url(../images/service-blur.svg) no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  z-index: -1;
}
.service-hero  .service-hero-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}
.service-hero .service-hero-wrp h1 {
  margin-bottom: 20px;
}
.service-hero .service-hero-wrp p {
  color: var(--White-1);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0px;
}
.service-hero .counters-wrp .counters {
  margin-top: 48px;
  justify-content: space-between;
  gap: 40px;
  max-width: 947px;
  margin-inline: auto;
  margin-bottom: 16px;
}
.service-hero .counters-wrp .counters .count-cnt {
  text-align: left;
  align-items: flex-start;
  width: auto;
}
.service-hero .counters-wrp .counters .count-cnt span.count::before {
  left: 0;
  transform: unset;
}
.service-hero .counters-wrp .counters .count-cnt h6 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}
.service-hero .bottom-wrp p {
  text-align: center;
  color: #EEEEEE;
  margin-bottom: 0;
  font-size: 10px;
  text-transform: uppercase;
  max-width: 947px;
  margin-inline: auto;
}
.our-services:not(:has(.btn-wrp .green-btn)) {
  padding-bottom: 98px;
}

.our-services:not(:has(.btn-wrp .green-btn)) .btn-wrp {
  display: none;
}

.our-services:not(:has(.btn-wrp .green-btn)) .services-overview-wrp p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 150%;
}
.service-highlight {
  background: var(--Green);
  padding: 96px 0;
}
.service-highlight h2 {
  max-width: 1010px;
  margin-inline: auto;
  margin-bottom: 40px;
  color: var(--Light-Tan);
  text-align: center;
}
.service-highlight .sh-wrp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #FAF8F2;
  padding: 34px 30px;
  border-radius: 8px;
  gap: 20px;
}
.service-highlight .sh-wrp .sh-cnt-wrp {
  flex: 0 0 47.265%;
  max-width: 47.265%;
  width: 100%;
}
.service-highlight .sh-wrp .sh-cnt-wrp h4 {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 36px;
  line-height: 37px;
  margin-bottom: 25px;
}
.service-highlight .sh-wrp .sh-cnt-wrp p{
  max-width: 485px;
}
.service-highlight .sh-wrp .sh-cnt-wrp .btn-wrp{
  margin-top: 25px;
}
.service-highlight .sh-wrp .sh-cnt-wrp .btn-wrp a.green-btn {
  min-width: 178px;
  min-height: 40px;
  padding: 10px 15px;
}
.service-highlight .sh-wrp .sh-image {
  flex: 0 0 50.378%;
  max-width: 50.378%;
  width: 100%;
}
.service-highlight .sh-wrp .sh-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}
.service-content.bg-grey {
  background: #032B431A;
}
.service-content.bg-green {
  background: #3D6B471A;
}
.service-content {
  padding: 120px 0;
}
.service-content .sc-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.service-content .sc-wrp .sc-left-wrp {
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
}
.service-content .sc-wrp .sc-left-wrp>span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.18em;
  padding-left: 50px;
  display: block;
  margin-bottom: 28px;
  color: var(--Green);
  position: relative;
  text-transform: uppercase;
}
.service-content .sc-wrp .sc-left-wrp>span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--Green);
  transform: translateY(-50%);
}
.service-content .sc-wrp .sc-left-wrp h2{
  margin-bottom: 28px;
}
.service-content .sc-wrp .sc-left-wrp p {
  margin-bottom: 0;
}
.service-content .sc-wrp .sc-right-wrp {
  flex: 0 0 42.947%;
  max-width: 42.947%;
  width: 100%;
}
.service-content .service-cards {
  border-top: 1px solid #D9D2C2;
  display: flex;
  flex-direction: column;
}
.service-content .service-cards .service-card {
  padding: 24px 0 24px 46px;
  border-bottom: 1px solid #D9D2C2;
  position: relative;
}
.service-content .service-card h6 {
  position: relative;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 8px;
}
.service-content .service-card h6::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: -46px;
  width: 14px;
  height: 2px;
  background: var(--Blue);
  border-radius: 50%;
  transform: translateY(-50%);
}
.service-content.bg-green .service-card h6::before {
  background: #C9A86A;
}
.service-content .service-card p{
  margin-bottom: 0;
}
/* Our-services Page end */
/* Who-We-Are Page */
.inner-hero {
  background: var(--Gradiant-1);
  position: relative;
  padding: 99px 0;
  overflow: hidden;
}
.inner-hero::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -50%;
  width: 70.31vw;
  height: 70.31vw;
  border: 1px solid #C9A86A29;
  border-radius: 50%;
  transform: translate(50%, -50%);
  z-index: 0;
}
.inner-hero .inner-hero-wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.inner-hero .inner-hero-wrp .cnt-wrp {
  flex: 0 0 53.351%;
  max-width: 53.351%;
  width: 100%;
}
.inner-hero .cnt-wrp>span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.18em;
  color: var(--White-1);
  display: block;
  margin-bottom: 36px;
}
.inner-hero .cnt-wrp h1 {
  margin-bottom: 36px;
}
.inner-hero .cnt-wrp p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
  color: var(--White-1);
}
.inner-hero .cnt-wrp .btn-wrp {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 36px;
}
.inner-hero .cnt-wrp .btn-wrp a {
  min-height: 54px;
}
.inner-hero .cnt-wrp .btn-wrp a.green-btn {
  min-width: 267px;
}
.inner-hero .cnt-wrp .btn-wrp a.clear-btn {
  min-width: 196px;
}
.inner-hero .inner-hero-wrp .img-wrp {
  flex: 0 0 44.126%;
  max-width: 44.126%;
  width: 100%;
}
.inner-hero .img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}
.who-we-are:has(+ .our-services) {
  padding: 97px 0;
}
.inner-hero + .who-we-are + .our-services {
    padding-bottom: 59px;
}
.inner-hero + .who-we-are + .our-services .services-overview-wrp p{
  font-size: 16px;
  line-height: 150%;
}
/* Who-We-Are Page end */
/* our-team */
.meet-the-team {
  background: var(--Light-Tan);
  position: relative;
  padding: 120px 0 69px;
}
.meet-the-team .mt-top span.sub-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.18em;
  padding-left: 50px;
  display: block;
  margin-bottom: 18px;
  color: var(--Green);
  position: relative;
}
.meet-the-team .mt-top span.sub-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--Green);
  transform: translateY(-50%);
}
.meet-the-team .mt-top h2 {
  margin-bottom: 28px;
}
.meet-the-team .teams-wrp {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
}
.meet-the-team .teams-wrp .team-member {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.meet-the-team .team-member.even {
  flex-direction: row-reverse;
}
.meet-the-team .team-member .team-img {
  flex: 0 0 27.233%;
  max-width: 27.233%;
  width: 100%;
}
.meet-the-team .team-member .team-cnt {
  flex: 0 0 65.625%;
  max-width: 65.625%;
  width: 100%;
}
.meet-the-team .team-member .team-cnt h5 {
  font-weight: 800;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0.071em;
  text-transform: capitalize;
  margin-bottom: 0;
}
.meet-the-team .team-member .team-cnt p.designation {
  font-weight: 700;
  color: var(--Green);
}
.meet-the-team .team-member .team-cnt p:last-child {
  margin-bottom: 0;
}
.meet-the-team .btn-wrp {
  display: flex;
  justify-content: center;
  margin-top: 78px;
}
.meet-the-team .img-in {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.meet-the-team .img-in::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/our-team-bg.svg')no-repeat center;
  background-size: cover;
  z-index: 2;
}
.meet-the-team .img-in img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* our-team end */
/* form-schedule */
.content-with-form-wrp {
  display: grid;
  /* grid-template-columns: 560px 720px; */
  grid-template-columns: 43.75% 56.25%;
}
.content-with-form-wrp .left-wrp {
  background: linear-gradient(180deg, #5A9E69 2.88%, #3D6B47 34.62%, #032B43 100%);
  padding: 120px 33px 120px 47px;
}
.content-with-form-wrp .left-wrp a.cwf-top-link {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: Arial;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #F4F4F4;
  text-decoration: underline;
  margin-bottom: 32px;
  transition: all 0.33s linear;
}
.content-with-form-wrp .left-wrp a.cwf-top-link:hover {
  text-decoration: none;
}
.content-with-form-wrp .left-wrp span.sub-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.18em;
  padding-left: 50px;
  display: block;
  margin-bottom: 32px;
  color: var(--Light-Tan);
  position: relative;
}
.content-with-form-wrp .left-wrp span.sub-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--Light-Tan);
  transform: translateY(-50%);
}
.content-with-form-wrp .left-wrp h2 {
  margin-bottom: 32px;
  color: var(--Light-Tan);
}
.content-with-form-wrp .left-wrp p {
  font-size: 18px;
  line-height: 30px;
  color: var(--White-1);
}
.content-with-form-wrp .right-wrp {
  padding: 96px 80px 44px;
}
.content-with-form-wrp .form-wrp h2 {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0;
  margin-bottom: 36px;
}
.content-with-form-wrp .form-wrp p.form-desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0;
  color: #5B6663;
  margin-bottom: 0;
}
.content-with-form.join-form-layout .content-with-form-wrp {
  grid-template-columns: 43.75% 56.25%;
}
.content-with-form.join-form-layout .content-with-form-wrp .right-wrp {
  padding: 96px 69px 96px 80px;
}
.content-with-form.join-form-layout .gform_wrapper.gravity-theme .gfield textarea.medium {
  height: 140px;
}
.content-with-form.join-form-layout .gform_wrapper.gravity-theme .gform_footer .gform_button {
  text-transform: capitalize;
  padding-left: 20px;
  font-family: var(--font-body);
}
.content-with-form.join-form-layout .gform_wrapper.gravity-theme .gform_footer {
  max-width: 212px;
  height: 46px;
}
/* form-schedule end */
/* job page */
.job-openings {
  background: var(--Light-Green);
  padding: 49px 0 75px;
  position: relative;
}
.job-openings .job-openings-top {
  display: flex;
  gap: 21px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.job-openings .job-openings-top .heading-wrp span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.18em;
  padding-left: 50px;
  display: block;
  margin-bottom: 18px;
  color: var(--Green);
  position: relative;
}
.job-openings .job-openings-top .heading-wrp span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--Green);
  transform: translateY(-50%);
}
.job-openings .job-openings-top .heading-wrp h2 {
  margin-bottom: 0;
}
.job-openings .job-tabs {
  display: flex;
  gap: 10px;
  align-items: center;
}
.job-openings .job-tabs .job-tab {
  border: 1px solid #D9D2C2;
  border-radius: 20px;
  padding: 11px 18px 7px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5B6663;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-openings .job-tabs .job-tab.active {
  background: var(--Blue);
  color: var(--White);
  border-color: var(--Blue);
}
.job-openings .jobs-list .job-card{
  background: var(--White);
  padding: 32px 36px;
  border: 1px solid #D9D2C2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.job-openings .jobs-list .job-card:first-child{
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.job-openings .jobs-list .job-card:last-child{
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.job-openings .jobs-list .job-card:only-child{
  border-radius: 4px;
}
.job-openings .job-card .left-wrp {
    max-width: 751px;
}
.job-openings .job-card .left-wrp h6 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}
.job-openings .job-card .left-wrp p{
  max-width: 560px;
  line-height: 22px;
  margin-bottom: 0;
  color: #5B6663;
}
.job-openings .job-card .right-wrp {
  display: flex;
  align-items: center;
  gap: 32px;
}
.job-openings .right-wrp .job-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job-openings .right-wrp .job-meta p {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.job-openings .right-wrp .job-meta p span{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--Green);
  display: inline-block;
  margin-right: 8px;
}
.job-openings .job-card .right-wrp .btn-wrp a.green-btn{
  min-width: 110px;
  min-height: 48px;
}
/* empty */
.job-empty-state {
  background: #FFFFFF;
  border: 1px solid #D9D2C2;
  padding: 92px 163px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  text-align: center;
}
.job-empty-state .img-wrp img {
  max-width: 285px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.job-empty-state h3 {
  font-size: 38px;
  margin-bottom: 13px;
}
.job-empty-state p {
  margin-bottom: 29px;
}
.job-empty-state a.green-btn{
  min-width: 242px;
}

/* job page end */

.custom-resume-upload {
  position: relative;
}
.custom-resume-upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.custom-resume-upload .ginput_container_fileupload {
  position: relative;
}
.custom-resume-upload .custom-upload-ui {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 31px 23px;
  border: 1px solid var(--Green);
  background: var(--Light-Tan);
  min-height: 106px;
  border-radius: 2px;
}
.custom-resume-upload .upload-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--Green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.custom-resume-upload .upload-icon svg {
  width: 18px;
  height: 18px;
}
.custom-resume-upload .upload-content h6 {
  margin: 0 0 4px;
  color: #222;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0;
}
.custom-resume-upload .upload-content p {
  margin: 0;
  color: #5B6663;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0;
}
.custom-resume-upload.has-file .upload-content h6 {
  font-weight: 600;
  color: var(--Green);
}
.custom-resume-upload .ginput_preview {
  position: relative;
  z-index: 4;
}