.sidebar {
  width: 250px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -255px;
  z-index: 1999;
  background: #374049;
  color: #fff;
  transition: all 0.3s;
  box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
  text-align: left;
}

.sidebar.active {
  right: 0;
}

.dismiss {
  color: #2AD3FA;
  width: 35px;
  height: 35px;
  font-size: 34px;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all 0.3s;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
}

.dismiss:hover, .dismiss:focus {
  background: #555;
  color: #ACF790;
}

.sidebar .logo {
  padding: 40px 20px;
  border-bottom: 1px solid #444;
  transition: all 0.3s;
}

.sidebar .logo a {
  display: inline-block;
}

.sidebar ul.menu-elements {
  padding: 10px 0;
  border-bottom: 1px solid #444;
  transition: all 0.3s;
}

.sidebar ul li a {
  display: block;
  padding: 10px 20px;
  border: 0;
  color: #2AD3FA;
  text-decoration: none;
  font-size: 14px;
}

.sidebar ul li a:hover,
.sidebar ul li a:focus,
.sidebar ul li.active > a:hover,
.sidebar ul li.active > a:focus {
  outline: 0;
  background: #2AD3FA;
  color: #374049;
  font-weight: 700;
}

.sidebar ul li a i {
  margin-right: 5px;
}

.sidebar ul li.active > a, a[aria-expanded=true] {
  background: #2AD3FA;
  color: #374049;
  font-weight: 700;
}

.sidebar ul ul a {
  background: #444;
  padding-left: 30px;
  font-size: 14px;
}

.sidebar ul ul li.active > a {
  background: #2AD3FA;
  color: #374049;
  font-weight: 700;
}

.sidebar a[data-toggle=collapse] {
  position: relative;
}

.sidebar .dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.sidebar .to-top {
  padding: 20px;
  text-align: center;
}

.sidebar .dark-light-buttons {
  padding: 10px 20px 30px 20px;
  text-align: center;
}

/* sidebar light */
.sidebar.light {
  background: #fff;
  color: #888;
}

.sidebar.light .dismiss {
  background: #ddd;
  color: #888;
}

.sidebar.light .dismiss:hover,
.sidebar.light .dismiss:focus {
  background: #ccc;
  color: #888;
}

.sidebar.light .logo {
  border-color: #eee;
}

.sidebar.light .logo a {
  background-image: url(../img/logo-dark.png);
}

.sidebar.light ul.menu-elements {
  border-color: #eee;
}

.sidebar.light ul li a {
  color: #888;
}

.sidebar.light ul li a:hover,
.sidebar.light ul li a:focus,
.sidebar.light ul li.active > a:hover,
.sidebar.light ul li.active > a:focus {
  background: #ccc;
  color: #888;
}

.sidebar.light ul li.active > a, .sidebar.light a[aria-expanded=true] {
  background: #ddd;
  color: #888;
}

.sidebar.light ul ul a {
  background: #ddd;
}

.sidebar.light ul ul li.active > a {
  background: #ccc;
}

.sidebar.light a.btn-customized-3 {
  background: #ddd;
  color: #888;
}

.sidebar.light a.btn-customized-3:hover,
.sidebar.light a.btn-customized-3:active,
.sidebar.light a.btn-customized-3:focus,
.sidebar.light a.btn-customized-3:active:focus,
.sidebar.light a.btn-customized-3.active:focus,
.sidebar.light a.btn-customized-3.btn.btn-primary:not(:disabled):not(.disabled):active,
.sidebar.light a.btn-customized-3.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  background: #ccc;
  color: #888;
}

.sidebar.light a.btn-customized-4.btn-customized-dark {
  background: #555;
}

.sidebar.light a.btn-customized-4.btn-customized-light {
  background: #eee;
}

.sidebar.light a.btn-customized-4.btn-customized-dark:hover,
.sidebar.light a.btn-customized-4.btn-customized-dark:active,
.sidebar.light a.btn-customized-4.btn-customized-dark:focus,
.sidebar.light a.btn-customized-4.btn-customized-dark:active:focus,
.sidebar.light a.btn-customized-4.btn-customized-dark.active:focus,
.sidebar.light a.btn-customized-4.btn-customized-dark.btn.btn-primary:not(:disabled):not(.disabled):active,
.sidebar.light a.btn-customized-4.btn-customized-dark.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  background: #ccc;
  color: #fff;
}

.sidebar.light a.btn-customized-4.btn-customized-light:hover,
.sidebar.light a.btn-customized-4.btn-customized-light:active,
.sidebar.light a.btn-customized-4.btn-customized-light:focus,
.sidebar.light a.btn-customized-4.btn-customized-light:active:focus,
.sidebar.light a.btn-customized-4.btn-customized-light.active:focus,
.sidebar.light a.btn-customized-4.btn-customized-light.btn.btn-primary:not(:disabled):not(.disabled):active,
.sidebar.light a.btn-customized-4.btn-customized-light.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  background: #ccc;
  color: #fff;
}

/***** Dark overlay *****/
.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(51, 51, 51, 0.7);
  z-index: 1998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
  box-sizing: border-box;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  background-color: #374049;
  color: #000000;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background-color: #374049;
  color: #000000;
}

.wrapper {
  display: block;
}

header {
  background-color: #374049;
  padding: 10px 0px;
  padding-bottom: 36px;
  margin-top: 26px;
}

#menu-bt-container {
  padding-top: 15px;
}

.open-menu {
  color: #2AD3FA;
}
.open-menu span {
  font-size: 28px;
}

.open-menu:hover,
.open-menu:active,
.open-menu:focus,
.open-menu:active:focus,
.open-menu.active:focus,
.open-menu.btn.btn-primary:not(:disabled):not(.disabled):active,
.open-menu.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  color: #ACF790;
}

.section-container {
  margin: 0 auto;
  padding-bottom: 0px;
}

#top-carousel {
  height: 75vh;
  padding: 40px 20vw;
}
#top-carousel #center-branding {
  margin: 0;
  max-width: 1020px;
  max-height: 300px;
  box-sizing: border-box;
}
#top-carousel #center-branding #logo-holder {
  background: transparent;
  border: 1px solid #fff;
  /* Note: currently only Safari supports backdrop-filter */
  background-color: rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* (plus shape's fill blended on top as a separate layer with 23% opacity) */
}
#top-carousel #center-branding #logo-holder img {
  max-width: 80%;
  height: auto;
}
#top-carousel #center-branding #title-holder {
  background: transparent;
  border: 1px solid #fff;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  background-color: rgba(255, 255, 255, 0.31);
  /* (plus shape's fill blended on top as a separate layer with 37% opacity) */
}
#top-carousel #gallery-btn-container {
  margin-top: 100px;
}

.btn.btn-primary {
  color: #2AD3FA;
  background-color: #374049;
  border-color: #2AD3FA;
  border-radius: 0;
}
.btn.btn-primary:hover {
  background-color: #2AD3FA;
  color: #374049;
}

#top-content {
  padding-top: 80px;
  overflow: hidden;
}

#why-rheinland-container .title-container {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px 24px;
}
#why-rheinland-container .title-container h2 {
  font-size: 36px;
  font-weight: 800;
}
#why-rheinland-container .content-container {
  color: #ffffff;
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.1);
  /* (plus shape's fill blended on top as a separate layer with 11% opacity) */
  padding: 24px 24px;
}
#why-rheinland-container .content-container p {
  font-size: 18px;
  font-weight: 100;
}

.descriptions-container .title-container {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px 24px;
}
.descriptions-container .title-container h2 {
  font-size: 36px;
  font-weight: 800;
}
.descriptions-container .content-container {
  color: #ffffff;
  background: transparent;
  background-color: rgba(255, 255, 255, 0.05);
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* (plus shape's fill blended on top as a separate layer with 11% opacity) */
  padding: 24px 24px;
}
.descriptions-container .content-container p {
  font-size: 18px;
  font-weight: 100;
}

.white-banner {
  z-index: 10;
  height: 120px;
  width: 60%;
  background-color: #ffffff;
}

#mid-content #green-urban-platform-container, #mid-content #synergisitc-adjacencies-container, #mid-content #investment-opportunity-container, #mid-content #green-path-forward-container {
  background-color: #ffffff;
  height: 780px;
  padding: 60px 0px;
}
#mid-content #green-urban-platform-container .title-description-container, #mid-content #synergisitc-adjacencies-container .title-description-container, #mid-content #investment-opportunity-container .title-description-container, #mid-content #green-path-forward-container .title-description-container {
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.3);
  /* (plus shape's fill blended on top as a separate layer with 100% opacity) */
  border: 1px solid #ffffff;
  box-shadow: 6px 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
#mid-content #green-urban-platform-container .title-description-container h3, #mid-content #synergisitc-adjacencies-container .title-description-container h3, #mid-content #investment-opportunity-container .title-description-container h3, #mid-content #green-path-forward-container .title-description-container h3 {
  font-weight: 600;
}

#bottom-content .title-holder h3 {
  color: #2AD3FA;
  font-weight: 800;
  font-size: 32px;
}

.spacer {
  height: 110px;
}
.spacer .spacer-line {
  background-color: #2AD3FA;
  width: 60px;
  height: 4px;
}

footer #learn-more-container .title-container {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px 24px;
}
footer #learn-more-container .title-container h2 {
  font-size: 36px;
  font-weight: 800;
}
footer #learn-more-container .content-container {
  color: #ffffff;
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.1);
  /* (plus shape's fill blended on top as a separate layer with 11% opacity) */
  padding: 24px 24px;
}
footer #learn-more-container .content-container h4 span {
  color: #2AD3FA;
  font-weight: 700;
}
footer #learn-more-container .content-container p {
  font-size: 18px;
  font-weight: 100;
}
footer #form-container {
  color: #ffffff;
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.1);
  /* (plus shape's fill blended on top as a separate layer with 11% opacity) */
}
footer #form-container .content-container {
  color: #ffffff;
  padding: 24px 12px;
}
footer #form-container .content-container h4 span {
  color: #2AD3FA;
  font-weight: 700;
}
footer #form-container .content-container .form-control {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2AD3FA;
  background-color: #374049;
  background-clip: padding-box;
  border: 1px solid #2AD3FA;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.fancybox__content {
  padding: 0px;
}

.row {
  --bs-gutter-x: 0;
}

#intro-popup, #thank-you-popup {
  background-color: #374049;
}
#intro-popup .card, #thank-you-popup .card {
  background-color: #374049;
  color: #ffffff;
  text-align: left;
  padding: 20px;
}
#intro-popup .card .card-header, #thank-you-popup .card .card-header {
  text-align: left;
}
#intro-popup .card h2, #thank-you-popup .card h2 {
  font-size: 22px;
  color: #2AD3FA;
}
#intro-popup .card h3, #thank-you-popup .card h3 {
  font-size: 18px;
}

/*# form modal start */
.modal-content {
  background-color: #B3D78A;
}

.form-control {
  border: 1px solid #2AD3FA;
}

/*# form modal end *//*# sourceMappingURL=styles.css.map */