@charset "UTF-8";
/* You can add global styles to this file, and also import other style files */
a,
div,
p,
span,
b {
  font-family: "Inter var", sans-serif !important;
}

a {
  cursor: pointer;
}

strong {
  font-family: "Inter var", sans-serif !important;
  letter-spacing: 0.5px;
  font-size: 13px !important;
}

div {
  box-sizing: border-box;
}

.main-container {
  position: relative;
  width: 100%;
  margin: auto;
}

.logo-width {
  width: 245px;
  padding: 8px 0px;
  height: 66px;
}

.logo {
  display: table;
  height: 100%;
}

.logo-img {
  display: table-cell;
  vertical-align: middle;
}

.body-container {
  box-sizing: border-box;
  /* padding-top: 80px */
}

.mce_inline_error {
  font-size: 10px !important;
}

/*Main Frame Setting End*/
/* Sidebar menu setting */
.sidebar {
  background: #09383a;
  width: 0px;
  position: fixed;
  top: 0px;
  bottom: 0;
  transition: 0.3s;
  overflow: auto;
  z-index: 3333;
}
.sidebar i {
  font-size: 12px;
}

.menu li {
  list-style: none;
  margin: 0;
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.menu > li {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 15px;
  color: white;
  border-bottom: 1px solid #104345;
}

.menu > li:hover {
  background: rgba(23, 30, 39, 0.233);
  cursor: pointer;
}

.menu i {
  padding-right: 5px;
}

.menu .menu-container-items li,
.menu .menu-container-items i {
  color: white;
}

.menu-container-items {
  display: none;
}

.menu-container-items li:hover {
  background: rgba(39, 47, 58, 0.233);
  cursor: pointer;
}

.menu-container-items {
  border-bottom: 1px solid #9a9a9a;
}

.sidebar-open {
  width: 250px;
  transition: all 0.3s;
}

.sidebar-collapse-content {
  visibility: collapse;
}

/* Sidebar menu setting End*/
body {
  margin: 0;
  padding: 0;
}

.navbar-brand span {
  color: #1e5d2e;
  font-weight: 700;
  font-size: 20px;
}

/*
    Submenu under drop menu End
*/
.navbar {
  min-height: 80px !important;
  padding: 0 15px !important;
}

.navbar.active {
  background: white;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in;
}

.fix-top {
  position: fixed !important;
  z-index: 9;
  width: 100%;
  top: 0;
  left: 0;
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.nav-link {
  color: #7c4d25;
  padding: 30px 0;
  font-weight: 600;
  font-size: 12px !important;
  font-family: "Inter var", sans-serif !important;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
.active-color {
  color: #1e5d2e !important;
}

.nav-link:hover {
  color: #7c4d25 !important;
  transition: all 0.3s ease-in;
}

.fa,
.fab,
.fs {
  padding-right: 2px;
  padding-right: 2px;
}

/*
Drop Menu Setting
*/
.drop-menu div {
  padding: 10px;
  border-bottom: 1px solid #c9c8c8;
  cursor: pointer;
}

.drop-menu {
  border: 1px solid #c9c8c8;
  max-height: 400px;
  overflow: auto;
  visibility: hidden;
  /* hides sub-menu */
  opacity: 0;
  position: absolute !important;
  background: white;
  width: 180px;
  left: 18px;
  z-index: 9999;
  transform: translateY(-2em);
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.drop-menu div a {
  display: block;
  text-decoration: none;
  color: #7c4d25;
  font-weight: 600;
  font-size: 12px !important;
  text-transform: uppercase;
}

.drop-menu div:hover > a {
  color: #c07425;
}

.drop-menu div:hover {
  background: #efeeeb;
  color: white;
  /*  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in; */
}

.nav-item {
  position: relative;
}

.nav-item:hover > .drop-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

/* Dropmenu setting End*/
/*
    Submenu under drop menu
*/
.submenu-content {
  display: none;
  background: white;
  border-radius: 6px;
  margin-top: 10px;
}

.submenu-content div {
  color: black;
}

.submenu:hover > .submenu-content {
  display: block;
  background: white;
  color: white;
}

.submenu-content:hover > div {
  border-radius: 6px;
}

/*
    Submenu under drop menu End
*/
.fa-caret-down {
  margin-left: 3px;
}

.fa-bars {
  font-size: 18px;
  color: #4c4b4b;
}

@media (max-width: 768px) {
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #c9c8c8;
  }
  .nav-item:hover > .drop-menu {
    position: relative;
  }
  .drop-menu {
    width: 100%;
    margin-left: 0px;
    position: static !important;
  }
  .fa-angle-down {
    float: right;
  }
  .navbar-brand {
    font-size: 16px;
  }
}
.navbar-toggler {
  padding: 0;
}

.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0);
}

@media (min-width: 768) and (max-width: 1000) {
  .navbar-collapse.collapse {
    display: none !important;
  }
}
img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
  max-height: 100%;
}

.cycle-slideshow {
  position: relative;
  width: 100%;
  height: 285px;
}

.cycle-prev,
.cycle-next {
  font-size: 40px;
  position: absolute;
  top: 100px;
  z-index: 500;
  color: #7ce933;
  cursor: pointer;
}

.cycle-prev {
  left: 20px;
}

.cycle-next {
  right: 20px;
}

.cycle-pager {
  text-align: center;
  width: 100%;
  z-index: 500;
  position: absolute;
  bottom: 40px;
  /*  overflow: hidden; */
}

.cycle-pager span {
  font-family: "Inter var", sans-serif !important;
  font-size: 50px;
  width: 16px;
  height: 16px;
  display: inline-block;
  color: white;
  cursor: pointer;
  margin: 0 3px;
}

.cycle-pager span.cycle-pager-active {
  color: #30aa6d;
}

.cycle-pager > * {
  cursor: pointer;
}

.postcard {
  height: 300px;
  width: 100%;
  background: #f3f3f1;
  border: 1px solid gainsboro;
  border-radius: 4px;
}

.postcard .postcard-inner {
  padding: 6px 10px;
}

.help_btn {
  background: #dedede;
  padding: 8px 22px;
  color: black;
  font-weight: 700;
  width: 100%;
  font-size: 14px;
}
.help_btn a {
  color: #09383a;
  text-decoration: none;
  display: block;
}

.grow-protect-btn {
  background: #ffffff;
  padding: 8px 15px;
  border-radius: 0px;
  color: #09383a;
  border: 1px solid #F4910F;
  width: 100%;
  font-size: 12px !important;
  font-weight: 600;
}

.grow-protect-btn:hover {
  border-radius: 0px;
  background: #09383a;
  transition: all 0.4s ease-in-out;
  color: #fbfafa;
}

.submit {
  background: #09383a;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  width: 150px;
}

.title {
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.title-content {
  padding: 6px 0;
  list-style: none;
  color: white;
}

.title-content a,
.title-content div {
  color: #e6e1e1;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  font-size: 11px;
}

.title-content a:hover {
  color: #d0f873;
}

.btn {
  padding: 5px 15px !important;
}

.submit-green {
  border: 1px solid #8bcf54;
  border-radius: 3px;
  font-size: 12px;
  font-family: "Inter var", sans-serif !important;
  padding: 5px 15px;
  text-decoration: none;
  display: inline-block;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  font-weight: bold;
  color: #ffffff;
  background-color: #a9db80;
  background-image: linear-gradient(to bottom, #a9db80, #96c56f);
}

.submit-green:hover {
  border: 1px solid #74bf36;
  background-color: #8ed058;
  background-image: linear-gradient(to bottom, #8ed058, #7bb64b);
}

.submit-dark {
  border: 1px solid #616261;
  border-radius: 3px;
  font-size: 12px;
  font-family: "Inter var", sans-serif !important;
  padding: 5px 15px;
  text-decoration: none;
  display: inline-block;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  font-weight: bold;
  color: #ffffff;
  background-color: #7d7e7d;
  background-image: linear-gradient(to bottom, #7d7e7d, #0e0e0e);
}

.submit-dark:hover {
  border: 1px solid #4a4b4a;
  background-color: #646464;
  background-image: linear-gradient(to bottom, #646464, #282828);
}

input.form-control,
input.form-control:focus {
  box-shadow: none;
}

.text-info-content p {
  width: 70%;
  font-size: 12pt;
  color: #326764;
  margin: 15px auto;
  font-style: italic;
}

.template-title-container {
  position: absolute;
  z-index: 1;
  width: 300px;
  text-align: center;
  top: 25%;
  right: 10px;
}
.template-title-container .template-title {
  font-size: 25px !important;
  color: white;
}

.space {
  height: 65px;
}

.information-box {
  color: #125B57;
}

.decoration-no {
  text-decoration: none;
}

.text-green {
  color: #125B57;
}

.bg-green {
  background: #125B57;
}

/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
.equal-height {
  display: flex;
  width: 100%;
}
.equal-height :first-child {
  width: 100%;
}
.equal-height .info-card {
  background-color: white;
  border: 1px solid gainsboro;
  padding: 5px;
  margin: 4px 0px;
  height: 300px;
}

.btns_section {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px;
}

.btn1 {
  padding: 5px 25px;
  border: 1px solid #E05555;
  border-radius: 0px;
  color: #E05555;
  font-size: 14px;
  font-weight: 600;
  line-height: 21.11px;
  text-align: left;
}

.btn2 {
  padding: 5px 25px;
  border: 1px solid #F4910F;
  border-radius: 0px;
  color: #F4910F;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.btn3 {
  padding: 5px 25px;
  border: 1px solid #86A34D;
  border-radius: 0px;
  /* color: #E05555; */
  color: #86A34D;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.btn4 {
  padding: 5px 25px;
  border: 1px solid #4293B8;
  border-radius: 0px;
  color: #4293B8;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.btn5 {
  padding: 5px 25px;
  border: 1px solid #BA744A;
  border-radius: 0px;
  color: #BA744A;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.team-profile .team-profile-details a {
  color: gray !important;
}
.team-profile .div_container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}
.team-profile .div_box {
  width: 100%;
  background: #EDF6F9;
  position: relative;
  margin-top: 25px;
  border-radius: 0px 20px 0px 20px;
  border: 1px solid gainsboro;
}
.team-profile .titlebox {
  font-size: 24px;
  font-weight: 400;
  text-align: left;
  padding: 6px;
  color: #0A4251;
  padding-bottom: 165px;
}
.team-profile .title_name {
  font-size: 16px !important;
  font-weight: 500;
}
.team-profile .designation {
  font-size: 11px;
  font-weight: 600 !important;
  text-align: left;
  color: #0A4251;
}
.team-profile .img_box {
  width: 100%;
  height: 62%;
  /* background: red; */
  position: absolute;
  bottom: 0px;
}
.team-profile img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 20px;
}
@media only screen and (max-width: 768px) {
  .team-profile .div_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
  }
  .team-profile .btns_section {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }
  .team-profile .btns_section button {
    width: 100%;
  }
}

.template-title-center {
  margin: auto;
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
}
.template-title-center .template-title {
  font-size: 80px !important;
  font-weight: bold !important;
}

.bg-beige {
  background-color: #fbfbfb;
}

.none {
  display: none !important;
}

.flex {
  display: flex !important;
}

.inline {
  display: inline !important;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.text-decor-none {
  text-decoration: none !important;
}

.wd-100 {
  width: 100%;
}

.wd-75 {
  width: 75%;
}

.wd-50 {
  width: 50%;
}

.wd-25 {
  width: 25%;
}

.brown {
  color: #7c4d25;
}

.green {
  color: #125B57;
}

.orange {
  color: orange !important;
}

.font16 {
  font-size: 16px !important;
}

.font18 {
  font-size: 18px !important;
}

.font20 {
  font-size: 20px !important;
}

.font22 {
  font-size: 20px !important;
}

.font24 {
  font-size: 20px !important;
}

.font26 {
  font-size: 26px !important;
}

.font28 {
  font-size: 28px !important;
}

.font30 {
  font-size: 30px !important;
}

.font-weight-bold {
  font-weight: bold;
}

.font-weight-bolder {
  font-weight: bolder;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 500;
}

.font-weight-700 {
  font-weight: 500;
}

.position-r {
  position: relative;
}

.position-a {
  position: absolute;
}

@media only screen and (max-width: 600px) {
  .implink {
    margin: 0px !important;
  }
  .img-template {
    align-items: center;
  }
  .img-template .template-title-container {
    margin: auto;
    position: initial;
  }
  .template-title-center .template-title {
    font-size: 40px !important;
  }
}
.regular-btn {
  border: 1px solid #09383a;
  background: #09383a;
  padding: 8px 22px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.regular-btn:hover {
  color: white !important;
}

.pointer {
  cursor: pointer;
}

.bg-row {
  background: #ebf3e7;
}

ul {
  margin: 0;
  padding: 0;
}

input[type=text],
input[type=number],
input[type=date],
input[type=email],
textarea,
select {
  width: 100%;
  padding: 6px 10px;
  font-size: 16px !important;
  background: white !important;
  border: 1px solid rgb(207, 205, 205) !important;
}

input:focus {
  border: 1px solid gray;
  outline: none;
}

button:focus,
button:active {
  border: 1px solid #d2cbcb;
  outline: none;
}

b {
  font-weight: 600;
  color: #233181;
}

.eq-column {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.insta-feed {
  height: 280px;
}

.insta-feed img {
  position: absolute;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  /* right: 0; */
  /* padding-left: 15px; */
  height: 100%;
  width: 100%;
  padding-right: 30px;
}

.bg-row {
  background: #F1EEE7;
}

.eq-column {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.row-gap-1 {
  height: 20px;
}

.row-gap-2 {
  height: 30px;
}

.row-gap-3 {
  height: 40px;
}

.row-gap-4 {
  height: 50px;
}

.row-gap-5 {
  height: 60px;
}

.overlay {
  background-color: black;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  z-index: 1;
  opacity: 0.3;
  cursor: pointer;
}

.ic {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7c4c4;
}

.nohover {
  visibility: hidden;
}

.insta-feed:hover > .nohover {
  visibility: initial;
  cursor: pointer;
}

.insta-feed {
  height: 250px;
}

.insta-feed img {
  position: absolute;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  /* right: 0; */
  /* padding-left: 15px; */
  height: 100%;
  width: 100%;
  padding-right: 30px;
}

.slide-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .slide-container .img {
    max-width: 100%;
    max-height: 200px;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .slide-container .slide-content-flex {
    display: block !important;
  }
  .insta-feed img {
    position: initial;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    /* right: 0; */
    /* padding-left: 15px; */
    height: 100%;
    width: 100%;
    padding-right: 0px;
  }
}
.slide-container {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(82, 80, 80, 0.61);
  z-index: 3333;
}

.slide-container-box {
  border-radius: 4px;
  position: absolute;
  top: 25px;
  bottom: 25px;
  background: #ffffff;
  left: 12%;
  right: 12%;
  z-index: 333;
}

.slide-container-content {
  display: none;
}

.slide-content-flex {
  border-radius: 4px;
  overflow: auto;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.slide-content-img {
  width: 100%;
  background: rgb(0, 0, 0);
  position: relative;
}

.slide-content-dis {
  width: 100%;
  overflow: auto;
}

.slide-content-title {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid gainsboro;
  padding: 10px;
}

.close-slide {
  float: right;
  margin-top: 8px;
  margin-right: 10px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.footer {
  padding: 50px 0px;
  background-color: #09383A;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  /* Styling for Footer bottom  */
  /*-------------- Responsive design ----------------- */
}
.footer .mce_inline_error {
  font-size: 12px !important;
  color: red !important;
}
.footer .footer_container2 {
  width: 100%;
}
.footer > .f4f_logo {
  /* z-index: 10000; */
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: end;
}
.footer > .f4f_logo > img {
  opacity: 0.1;
}
.footer .footer_body {
  color: white;
}
.footer .footer_body > .footer_top {
  display: flex;
  justify-content: space-between;
  /* background-color: yellow; */
}
.footer .footer_body > .footer_top > .left {
  /* background-color: green; */
  width: 60%;
}
.footer .footer_body > .footer_top > .right {
  /* background-color: pink; */
  width: 35%;
}
.footer .btns_section {
  display: flex;
  justify-content: start;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.footer .btn-1,
.footer .btn-2 {
  color: #F4910F;
  padding: 8px 24px;
  /* or 8px 16px for .btn-2 */
  background-color: transparent;
  border: 3px solid #125B57;
  /* Here's your stylish border */
  display: flex;
  /* Flexbox to center the inner stuff */
  justify-content: center;
  /* Horizontally centered */
  align-items: center;
  /* Vertically centered */
  font-weight: 700;
  font-size: 16px;
  line-height: 18.75px;
}
.footer .btn-1 a,
.footer .btn-2 a {
  color: #F4910F;
  text-decoration: none;
}
.footer .left > h2 {
  font-size: 40px;
  color: #F4910F;
  line-height: 48.41px;
  font-weight: 700;
}
.footer .left > p {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.footer .footer_links {
  display: flex;
  justify-content: space-between;
}
.footer .footer_links a {
  color: white;
}
.footer .footer_links > div > li {
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}
.footer .icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 20px;
  color: white !important;
}
.footer .icons .fab,
.footer .fa {
  color: #F4910F;
}
.footer .footer_img {
  width: 100%;
  background-color: rgba(139, 195, 74, 0.01);
  border: 2px solid #f4910f;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
  position: relative;
}
.footer .subscribe_news > p {
  font-weight: 900;
  font-size: 20px;
  line-height: 24.23px;
  letter-spacing: -4%;
  color: white;
  text-transform: uppercase;
}
.footer .footer_img > img {
  width: 50%;
  position: absolute;
  right: 10px;
  /* z-index: 10!important; */
  bottom: 0px;
}
.footer .footer_img_input {
  width: 100%;
  margin-top: 10px;
  /* z-index: 90!important; */
}
.footer .footer_img_input input {
  color: white !important;
}
.footer .footer_img_input > input {
  color: white !important;
  padding-left: 10px;
}
.footer .footer_img_input input::-moz-placeholder {
  color: white !important;
  font-size: 14px;
  /* Change placeholder color to white */
}
.footer .footer_img_input input::placeholder {
  color: white !important;
  font-size: 14px;
  /* Change placeholder color to white */
}
.footer .subscribe_news .sub {
  font-size: 20px !important;
}
.footer .subscribe_news div {
  position: relative;
  text-transform: uppercase;
  color: white !important;
  FONT-WEIGHT: 600;
}
.footer .subscribe_news input {
  background: transparent !important;
}
.footer .footer_bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #125B57;
  margin-top: 20px;
  padding-top: 20px;
}
.footer .footer_bottom_box {
  width: 20%;
  /* background-color:yellow */
}
.footer .footer_bottom_box > .title {
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
}
.footer .footer_bottom_box > .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.footer .footer_copywrite {
  padding-top: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.footer .footer_bottom_box > .description_link {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-decoration: underline;
}
.footer .icon_code {
  padding-left: 5px;
  color: #F4910F !important;
}
.footer i {
  cursor: pointer !important;
}
@media only screen and (max-width: 768px) {
  .footer {
    display: flex;
    justify-content: center;
    align-items: start;
    height: auto;
  }
  .footer .footer_img_input input {
    background: border-box !important;
  }
  .footer .bg_img {
    height: auto !important;
  }
  .footer .onlybigscreen {
    display: none;
  }
  .footer .mobile_screen {
    width: 100%;
    /* height: 100vh; */
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer .footer_container2 {
    display: none;
  }
  .footer .footer > .f4f_logo {
    width: 100%;
    justify-content: center;
    opacity: 0.2;
  }
  .footer .footer_img_input {
    width: 100%;
    /* background:red; */
    margin-top: 20px;
    margin-bottom: 50px;
    border: 2px solid #F4910F !important;
  }
  .footer .footer_img_input > inpu t {
    width: 85%;
    background-color: transparent;
    border-radius: 0px !important;
  }
  .footer .footer_img_input > div {
    width: 15%;
    background: #F4910F;
  }
  .footer .mobile_logo {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
  }
  .footer .icons i {
    width: 100%;
    color: white !important;
    justify-content: space-evenly;
    margin-top: 20px;
    margin-bottom: 50px;
    border: 1px solid white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
  }
  .footer .footer-heading {
    font-family: Inter;
    font-size: 25px !important;
    font-weight: 600;
    line-height: 30.28px;
    letter-spacing: 0.4px;
    text-align: center;
    color: white;
  }
  .footer .footer_links > div > li {
    color: white;
  }
  .footer .mobile_details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 3px solid #F4910F;
    /* padding-top: 20px; */
    margin-top: 50px;
    padding-top: 20px;
  }
  .footer .mobile_details > div > span {
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #FFEFCC;
  }
  .footer .mobile_details > div > p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #FFEFCC;
  }
  .footer .policiy_section {
    display: flex;
    justify-content: start;
    gap: 10%;
    margin-top: 10px;
  }
  .footer .mobile_details .address div {
    color: #FFEFCC;
  }
}
@media only screen and (min-width: 769px) {
  .footer .mobile_screen {
    display: none !important;
  }
}

.partners .donate_now {
  width: 100%;
  position: relative; /* Allow absolute positioning within */
}
.partners .bg_img {
  width: 100%;
  height: 100vh; /* Full height of the section */
  position: relative;
  display: flex; /* Flexbox to help with alignment */
  justify-content: center; /* Center pop_box horizontally */
  align-items: center; /* Center pop_box vertically */
  /* background-color: aqua; */
}
.partners .bg_img img {
  width: 100%; /* Image takes up full width */
  height: 100vh; /* Takes full height of .bg_img */
  -o-object-fit: cover;
     object-fit: cover; /* Maintain aspect ratio */
}
.partners .pop_box {
  width: 380px;
  /* height: 438px; */
  padding: 40px 32px;
  background: #09383A;
  position: absolute; /* Keep position */
  top: 50px; /* Adjusted based on parent’s height */
  right: 5%; /* Position from right */
  border-radius: 20px;
  z-index: 1; /* Ensure it appears over other elements */
}
.partners .pop_box > .title1 {
  font-weight: 600;
  font-size: 30px !important;
  line-height: 50px;
  letter-spacing: -4%;
  color: #F0F9DC;
}
.partners .pop_box > p > .sp1 {
  font-weight: 300;
  font-size: 30px !important;
  line-height: 50px;
  letter-spacing: -4%;
  color: #F0F9DC;
  font-style: italic;
  padding-right: 5px;
}
.partners .pop_box > p > .sp2 {
  font-weight: 600;
  font-size: 30px !important;
  line-height: 50px;
  letter-spacing: -4%;
  color: #F0F9DC;
}
.partners .pop_box > .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 18.77px;
  color: #F0F9DC;
  padding-bottom: 10px;
  padding-top: 10px;
}
.partners .pop_box > button {
  background-color: #F4910F;
  padding: 6px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  color: #09383A;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .partners .pop_box {
    width: auto;
    left: 2%;
    right: 2%;
  }
  .partners .btn1, .partners .btn2, .partners .btn3, .partners .btn4, .partners .btn5, .partners .btn6 {
    width: 100%;
  }
}/*# sourceMappingURL=farmersforforests.css.map */