html, body {
  background: #f1f4e8;
}

.landingpage,
.form-control {
  font-family: 'IBM Plex Sans', serif;
  line-height: 1.75;
  color: #373736;
}

.wrapper {
  max-width: 2000px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

#logo{
  height: 140px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
  object-fit: contain;
}

.wrapper .top{
  position: absolute;
  top: 0;
  padding: 5px 0px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.wrapper .top a{
  margin-right: 15px;
}

.header-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  position: relative;
  z-index: 10;
}

.logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  padding: 30px 60px;
  background: #fff;
  width: 80%;
  max-width: 400px;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, .25);
  border-radius: 0 0 2px 2px;
}

.main-container {
  position: relative;
  transform: translateY(-60px);
  z-index: 10;
  padding-top: 40px;
  background: #fff;
  padding: 40px 40px 15px 40px;
  border-radius: 2px 2px 0 0;
}

.main-container.green{
  background:#859746;
  color: #fff;
}

.main-container.green h2{
  color: #fff;
  font-size: 1.5rem;
}

.main-container.green .btn-primary{
  background: #3C3C37;
  border-color: #3C3C37;
}

.main-container:after {
  content: '';
  display: block;
  height: 15px;
  background: #859746;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
}

h1 {
  color: #859746;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0;
}

h1:after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: #859746;
  margin: 40px auto;
}

h2 {
  color: #859746;
  font-size: 1.2rem;
  font-weight: 600;
}

.intro {
  color: #999;
  font-size: 1.25rem;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.carousel-inner {
  padding-bottom: 50px;
}

.carousel-indicators {
  bottom: 40px;
}

.carousel-caption {
  padding: 0;
  bottom: -20px;
  transform: translateY(100%);
  color: #999;
  text-transform: uppercase;
  font-size: 13px;
}

.carousel-control-next, .carousel-control-prev {
  bottom: 50px;
}

.btn-primary {
  background-color: #859746;
  border-color: #859746;
  padding: .5rem 1.5rem;
}

a {
  color: #859746;
}

a:hover,
a:focus,
a:active {
  color: #657b1a;
}



.custom-control-input:checked~.custom-control-label::before,
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  background-color: #2b2b2b;
  border-color: #2b2b2b;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #657b1a;
  border-color: #657b1a;
}

.form-control:focus {
  border-color: #ced4da;
}

.custom-control-input:focus~.custom-control-label::before,
.btn-primary.focus, .btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus,
.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(241,244,232,.95);
}

@media (max-width: 768px) {
  .logo {
    padding: 20px 40px;
    max-width: 220px;
  }

  h1 {
    font-size: 1.75rem;
  }

  .intro {
    font-size: 1.15rem;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .header-img img {
    height: 300px;
  }

  .main-container {
    padding: 30px 30px 15px 30px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .intro {
    font-size: 1rem;
  }
}