/* You can add global styles to this file, and also import other style files */
a,
div,
p,
span,
b {
  font-family: system-ui !important;
  font-size: 14px !important;
}

strong {
  font-family: system-ui !important;
  letter-spacing: .5px;
  font-size: 13px !important;
}

div {
  -webkit-box-sizing: border-box;
          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;
  text-align: center;
}

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

.footer_icon .fa,
.footer_icon .fab {
  font-size: 24px !important;
  color: green;
}

/*Main Frame Setting End*/
/* Sidebar menu setting */
.sidebar {
  background: #646d49;
  width: 0px;
  position: fixed;
  top: 0px;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: auto;
  z-index: 3333;
}

.sidebar i {
  font-size: 12px;
}

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

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

.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;
  -webkit-transition: all 0.3s;
  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;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

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

@-webkit-keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.nav-link {
  color: #7c4d25;
  padding: 30px 0;
  font-weight: 500;
  font-size: 14px !important;
  font-family: system-ui !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;
  -webkit-transition: all 0.3s ease-in;
  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;
  -webkit-transform: translateY(-2em);
  transform: translateY(-2em);
  -webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  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: 14px !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;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s, 0s, 0.3s;
  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: system-ui !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: 10px 22px;
  border-radius: 4px;
  color: black;
  font-weight: 700;
  width: 100%;
}

.help_btn a {
  color: #125B57;
  text-decoration: none;
  display: block;
}

.donate-btn {
  background: #ffffff;
  padding: 8px 15px;
  border-radius: 4px;
  color: #125B57;
  border: 2px solid #F4910F;
  width: 100%;
  font-size: 14px !important;
  font-weight: 500;
}

.donate-btn:hover {
  border-radius: 8px;
  background: #18736e;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #fbfafa;
}

.submit {
  background: #125B57;
  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;
  -webkit-transition: all 0.3s ease 0s;
  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: system-ui !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: -webkit-gradient(linear, left top, left bottom, from(#a9db80), to(#96c56f));
  background-image: linear-gradient(to bottom, #a9db80, #96c56f);
}

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

.submit-dark {
  border: 1px solid #616261;
  border-radius: 3px;
  font-size: 12px;
  font-family: system-ui !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: -webkit-gradient(linear, left top, left bottom, from(#7d7e7d), to(#0e0e0e));
  background-image: linear-gradient(to bottom, #7d7e7d, #0e0e0e);
}

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

input.form-control,
input.form-control:focus {
  -webkit-box-shadow: none;
          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: -webkit-box;
  display: -ms-flexbox;
  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;
}

.team-profile img {
  height: 160px;
  width: 160px;
  border-radius: 50%;
}

.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: -webkit-box !important;
  display: -ms-flexbox !important;
  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 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            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 #125B57;
  background: #125B57;
  padding: 8px 22px;
  border-radius: 4px;
  color: white;
  text-decoration: none;
}

.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-radius: 4px !important;
  border: 1px solid #cfcdcd !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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=farmersforforests.css.map */