.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  height: 6rem;
  transition: height 0.2s, padding 0.2s, background-color 0.2s;
  padding: 0.75rem 0;
  z-index: 1020;
}

.navbar.homepage {
  background-color: transparent;
}

.navbar.thin {
  height: 3rem;
  padding: 0;
  background-color: rgba(238, 238, 238, 0.9);
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    padding-left: 15px;
    /*For alignment with global header*/
    padding-right: 15px;
    /*For alignment with global header*/
  }
}

.navbar .container, .navbar-brand, .navbar-brand img {
  height: 100%;
}

@media (max-width: 370px) {
  .navbar .container, .navbar-brand, .navbar-brand img {
    height: 90%;
  }
}

.nav-item .nav-link {
  font-weight: bold;
}

.nav-item.active .nav-link {
  color: #72862c;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .7rem;
    padding-left: .7rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(238, 238, 238, 0.9);
    position: fixed;
    top: 0;
    width: 15rem;
    height: 100vh;
    padding: 5rem 2rem;
  }
  .navbar-collapse.collapsing {
    right: -15rem;
    transition: right 0.3s ease;
  }
  .navbar-collapse.show {
    right: 0;
    transition: right 0.3s ease-in;
  }
  .navbar.thin .navbar-collapse {
    margin-top: 0;
    background-color: rgba(238, 238, 238, 0.9);
  }
}

.dropdown-menu {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  margin-top: 0;
  padding: 0 0.25rem;
  display: block;
  visibility: hidden;
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, visibility 0.3s;
}

.dropdown-menu.show {
  max-height: 250px;
  visibility: visible;
}

@media (min-width: 992px) {
  .dropdown-menu {
    padding: 0 0.5rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    margin-top: 38px;
  }
  .navbar.homepage .dropdown-menu {
    background-color: transparent;
  }
  .navbar.thin .dropdown-menu {
    background-color: rgba(238, 238, 238, 0.9);
  }
  .navbar.homepage .dropdown-menu, .navbar.thin .dropdown-menu {
    margin-top: 8px;
  }
}

.dropdown-item {
  white-space: normal;
  padding: 0.2rem 0.5rem;
  color: #25407d;
}

.dropdown-item:hover {
  color: #416ac7;
  background-color: transparent;
}

.dropdown-item.active {
  color: #72862c;
  background-color: transparent;
}

.navbar-toggler {
  padding: 0;
  color: #25407d;
}

.navbar-toggler .menu-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.25s 0.7s, opacity 0.25s 0.7s;
}

.navbar-toggler.collapsed .menu-close {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s, opacity 0.25s;
}

.navbar-toggler:not(.collapsed) .menu-open {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s, opacity 0.25s;
}

.menu-text {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.2rem;
}

.hero {
  padding: 0;
  background-position-x: center;
  background-size: 350%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  bottom: 6rem;
  margin-bottom: -6rem;
  justify-content: center;
}

@media (min-width: 576px) {
  .hero {
    height: 400px;
    background-size: 250%;
  }
}

@media (min-width: 768px) {
  .hero {
    height: 600px;
    background-size: auto;
  }
}

.hero h1 {
  margin-top: 6rem;
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  text-shadow: 0 0 20px #000;
}

@media (min-width: 576px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero.homepage {
  background-attachment: fixed;
  background-size: auto;
  height: 100vh;
  min-height: 600px;
}

.hero.homepage .focus {
  text-align: center;
  padding: 0 1rem;
  margin: auto;
}

.hero.homepage .lead {
  font-size: 2rem;
  font-family: 'Raleway', sans-serif;
}

@media (min-width: 1200px) {
  .hero.homepage .lead {
    font-size: 3rem;
  }
}

.hero.homepage .lead .highlight {
  font-size: 1.3em;
  color: #eee;
}

.hero.homepage .strapline {
  margin-bottom: 1rem;
}

.hero.homepage .button {
  box-shadow: 0 0 20px 0px #fff;
}

.hero.homepage .scroll-to-content {
  font-size: 2rem;
  margin-bottom: 4rem;
}

.hero.homepage .lead, .hero.homepage .strapline, .hero.homepage .scroll-to-content {
  color: #fff;
  text-shadow: 0 0 20px #000;
}

.hero.homepage h1 {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fade-in ease-in forwards 1s 1;
}

.fade-in.one {
  animation-delay: 0.5s;
}

.fade-in.two {
  animation-delay: 1.5s;
}

.fade-in.three {
  animation-delay: 2.5s;
}

.fade-in.four {
  animation-delay: 3.5s;
}

.breadcrumb {
  margin: 1rem 0 0;
}

.site-footer {
  padding: 3rem 1rem;
  background-color: #e0e0e0;
}

.site-footer h2 {
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .site-footer h2 {
    text-align: right;
  }
}

.site-footer .contact h2 {
  text-align: left;
}

.site-footer .main-partner-logos {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .site-footer .main-partner-logos {
    text-align: right;
  }
}

@media (max-width: 991.98px) {
  .site-footer .main-partner-logos {
    margin-top: 1rem;
  }
}

.site-footer .main-partner-logos img {
  height: 60px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer li {
  display: inline-block;
}

@media (min-width: 992px) {
  .site-footer .social-logos {
    text-align: right;
  }
}

.social-logos li {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  line-height: 1;
}

.emailme_form h2 {
  margin-top: 0.5rem;
}

.emailme_form input {
  font-size: inherit;
  border: 0;
}

.emailme_form .form-group, .emailme_form p {
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  html {
    font-size: 1.25rem;
  }
  .navbar a, .site-footer {
    font-size: 0.8rem;
  }
}

a {
  color: #25407d;
  transition: color 0.3s;
}

a:hover {
  color: #416ac7;
  text-decoration: none;
}

body {
  font-family: museo-sans, sans-serif;
  letter-spacing: -0.03em;
  color: #444;
}

h1, h2, h3, h4, .strapline {
  font-weight: bold;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

.strapline {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.intro-text {
  padding: 2rem 0;
}

.intro-text .strapline {
  font-size: 2rem;
}

section {
  padding: 3rem 0;
  &.featured-section:nth-child(odd) {
  background-color: #f1f1f1;

  }
}

.accent {
  background-color: #f1f1f1;
}

@media (min-width: 768px) {
  .col-md-2dot4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 992px) {
  .col-lg-1dot7 {
    flex: 0 0 14%;
    max-width: 14%;
  }
}

.button {
  color: #fff;
  font-weight: bold;
  border-radius: 0.5rem;
  padding: 0.4rem 1.3rem;
  display: inline-block;
  transition: background-color 0.3s;
}

.button:hover {
  color: #fff;
}

.button.info {
  background-color: #297fca;
}

.button.info:hover {
  background-color: #4393d9;
}

.button.cta {
  background-color: #c54c27;
}

.button.cta:hover {
  background-color: #da6845;
}

footer .button.cta {
  margin-bottom: 1rem;
}

.button.arrow {
  right: 1rem;
  padding: 0 2rem 0 3rem;
  line-height: 3rem;
  position: relative;
  margin-left: 1rem;
}

.button.arrow::before, .button.arrow::after {
  content: "";
  position: absolute;
  top: 0.45rem;
  width: 2.1rem;
  height: 2.1rem;
  transform: rotate(45deg);
  background: inherit;
}

.button.arrow::before {
  left: -0.8rem;
  background-color: #e0e0e0;
}

.button.arrow::after {
  right: -0.8rem;
  border-radius: 0.3rem;
}

.form-signin .form-control, .login-status .form-control {
  margin-bottom: 1rem;
}

.form-signin button, .login-status button {
  background-color: #c54c27;
  color: #fff;
  border: 0;
  transition: background-color 0.3s;
}

.form-signin button:hover, .login-status button:hover {
  background-color: #da6845;
}

.login-status {
  background-color: #eee;
  border-radius: 0.25rem;
  padding: 1rem;
}

.partner-circles {
  padding-top: 0;
}

.circle-bg {
  margin: 1rem 0;
  padding: 65% 1rem 35%;
  border-radius: 50%;
  height: 0;
  box-shadow: 0 0 20px 0px #848484;
  color: #fff;
  transition: opacity 0.3s;
}

a:hover .circle-bg {
  opacity: 0.7;
}

.project-circles .circle-bg {
  text-align: center;
  text-shadow: 0 0 12px #000;
  line-height: 1.2;
  font-size: 1.1rem;
  background-size: cover;
}

.partner-circles .circle-bg {
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}

.partner-circles .circle-bg[style*="wildlifetrustlogo"] {
  background-size: 40%;
}

.partner-circles .circle-bg[style*="groundworkslogo"] {
  background-size: 50%;
}

.partner-circles .circle-bg[style*="ncclogo"], .partner-circles .circle-bg[style*="greenwoodlogo"], .partner-circles .circle-bg[style*="moorpondwoodlogo"] {
  background-size: 80%;
}

.float-right {
  margin: 0 0 1rem 1rem;
}

.float-left {
  margin: 0 1rem 1rem 0;
}

.home-feature {
  text-align: center;
}

.home-feature.project-circles {
  background-color: #e0e0e0;
}

.home-feature .partner-logo {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.home-feature .partner-logo img {
  max-width: 100%;
  max-height: 60%;
  flex-shrink: 0;
}

.home-feature .button {
  margin: 1rem 0.5rem 0;
}

.floated-circle {
  border-radius: 50%;
  margin-bottom: 1rem;
  width: 100%;
}

@media (min-width: 500px) {
  .floated-circle {
    float: left;
    margin: 0 2rem 2rem 0;
    shape-outside: border-box;
    shape-margin: 2rem;
    width: 50%;
    max-width: 350px;

    &:is(section.featured-section:nth-child(odd) .floated-circle) {
      float: right;
      margin: 1rem 0 2rem 2rem;
    }
  }
}

.featured-section .container {
  overflow: auto;
}


.project-icons, .volunteering-icons {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.icon-item {
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.icon-item p {
  margin-bottom: 0;
}

.icon-item i {
  margin-bottom: 0.5rem;
  text-shadow: 6px 6px 8px #b9b9b9;
}

.project-icons .icon-item i {
  font-size: 5rem;
  color: #297fca;
  transition: color 0.3s;
}

.project-icons a:hover .icon-item i {
  color: #4393d9;
}

.volunteering-icons .row {
  justify-content: center;
  padding-top: 1rem;
}

.volunteering-icons .icon-item i {
  font-size: 3rem;
  color: #72862c;
}

.volunteering-icons .icon-item p {
  font-size: 0.8rem;
}

@media (max-width: 575.98px) {
  .volunteering-icons .icon-item p {
    font-size: inherit;
  }
}

.glide__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  font-size: 1.5rem;
  color: #fff;
  background-color: transparent;
  border: none;
  transform: translateY(-50%);
  padding: 1rem;
  text-shadow: 0 0 5px black;
  transition: color 0.3s;
}

.glide__arrow:hover {
  color: #ccc;
}

@media (max-width: 767.98px) {
  .glide__arrows {
    display: none;
  }
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow--left {
  left: 0;
}

.glide__arrow--right {
  right: 0;
}

.glide__arrow--disabled {
  opacity: 0.33;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

.glide__bullet {
  background-color: #e0e0e0;
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  margin: 0 0.25em;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet:hover, .glide__bullet:focus {
  background-color: #e0e0e0;
}

.glide__bullet--active {
  background-color: #72862c;
}

.glide__slide:not(.glide__slide--active) {
  opacity: 50%;
}

.glide__slide {
  transition: opacity 0.5s;
  height: auto;
}

.project-carousel {
  padding-bottom: 4rem;
}

.project-carousel .project {
  height: 100%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
}

.project-carousel .project .button-wrapper {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 576px) {
  .project-carousel .project .button-wrapper {
    height: 400px;
  }
}

.project-carousel .project .button {
  margin-bottom: 2rem;
  background-color: rgba(41, 127, 202, 0.85);
}

.project-carousel .project .button:hover {
  background-color: #4393d9;
}

.project-carousel .project p {
  margin: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 1.5rem;
  flex: 1 1 auto;
}

.contactus {
  margin-bottom: 1rem;
}

.contactus .umbraco-forms-caption {
  display: none;
}

.contactus .umbraco-forms-container, .contactus .umbraco-forms-navigation div {
  padding: 0;
}

.contactus .umbraco-forms-field {
  margin: 1rem 0;
}

.contactus .umbraco-forms-field:after {
  content: "";
  display: table;
  clear: both;
}

.contactus .umbraco-forms-label, .contactus .umbraco-forms-field-wrapper {
  float: left;
}

.contactus .umbraco-forms-label, .contactus .umbraco-forms-field-wrapper {
  width: 100%;
}

@media (min-width: 992px) {
  .contactus .umbraco-forms-label {
    width: 200px;
  }
  .contactus .umbraco-forms-field-wrapper {
    width: 500px;
  }
}

.contactus .umbraco-forms-field-wrapper .text, .contactus .umbraco-forms-field-wrapper textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 1rem;
  padding: 0.25rem 1rem;
}

.contactus .umbraco-forms-field-wrapper textarea {
  height: 200px;
}

.contactus input[type=submit] {
  background-color: #c54c27;
  color: #fff;
  border: 0;
  border-radius: 2rem;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  transition: background-color 0.3s;
  display: inline-block;
}

.contactus input[type=submit]:hover {
  background-color: #da6845;
}

.contactus .field-validation-error {
  color: #e23636;
}

.contactus .umbraco-forms-label {
  font-weight: bold;
}

.logo-only-card {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 2px 9px -3px;

    & img {
      max-height: 100%;
      object-fit: contain;
      padding: 1.4rem;
    }
    
}
/*# sourceMappingURL=styles.css.map */