.no-js #loader {
  display: none;
}
.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}
.noShowBG {
  /*background-image: url('https://www.momus.tech/assets/mountain-peak.jpg');*/
  /*background-size: cover;*/
  background-color: grey;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000000000;
}
.hidden-div {
  display: none;
}
.splash-container {
  background-image: url("https://www.momus.tech/assets/mountain-peak.jpg");
  background-size: cover;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000000000;
}
.splash-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.splash-container-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  padding-top: 15%;
}

.splash-h4 {
  color: white;
  text-align: center;
}
.splash-img-logo2 {
  width: 450px !important;
  padding-left: 12px !important;
}
.splash-img-logo1 {
  width: 450px !important;
  padding-left: 0px !important;
}
.splash-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.splash-loader {
  position: absolute;
  left: 50%;
  margin-top: 2rem;
  transform: translate(-50%, -50%);
  height: 5px;
  background-color: #35abe5;
  width: 50%;
}
.splash-loading {
  background-color: #82b704;
  align: centre;
  width: 50%;
  height: 5px;
  animation: animation 1.8s infinite;
}

@keyframes animation {
  0% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(100%);
  }
  80% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.noshow {
  overflow: hidden;
}
span.holder {
  overflow: hidden;
  margin-top: 50px !important;
}

span.item {
  position: absolute;
  color: #fff;
  font-size: 20px;
  margin-left: -50%;
  width: 100%;
  text-align: center;
}

span.item:nth-child(1) {
  animation: flipDown 9s cubic-bezier(0.68, -0.55, 0.26, 1.55) 0s both infinite;
}

span.item:nth-child(2) {
  animation: flipDown 9s cubic-bezier(0.68, -0.55, 0.26, 1.55) 1.5s both
    infinite;
}
span.item:nth-child(3) {
  animation: flipDown 9s cubic-bezier(0.68, -0.55, 0.26, 1.55) 3s both infinite;
}
span.item:nth-child(4) {
  animation: flipDown 9s cubic-bezier(0.68, -0.55, 0.26, 1.55) 4.5s both
    infinite;
}
span.item:nth-child(5) {
  animation: flipDown 9s cubic-bezier(0.68, -0.55, 0.26, 1.55) 6s both infinite;
}

@keyframes flipDown {
  0% {
    opacity: 0;
    margin-top: -100px;
  }
  13.2% {
    opacity: 1;
    margin-top: 0;
    transform: rotateX(0deg);
  }
  33%,
  100% {
    opacity: 0;
    margin-top: 0;
    transform: rotateX(90deg);
  }
}
@media (max-width: 1300px) {
  .splash-loader {
    width: 70%;
  }
}
@media (max-width: 980px) {
  .splash-container-content {
    padding-top: 30% !important;
  }
}
@media (max-width: 720px) {
  .splash-container-content {
    padding-top: 50% !important;
  }

  .splash-img-logo2 {
    width: 250px !important;
  }
  .splash-img-logo1 {
    width: 250px !important;
  }
  .splash-loader {
    width: 80%;
  }
  span.item {
    font-size: 15px;
  }
}

@font-face {
  font-family: robotoc; /* set name */
  src: url(../font/Oxanium-VariableFont_wght.ttf); /* url of the font */
}

html {
  scroll-behavior: smooth;
  font-family: robotoc !important;
}
.hidden-visibility {
  display: none;
}
.logo-div {
  width: 60px;
  height: 50px;
}
.img-logo {
  width: 50px;
  height: 50px;
  padding: 2px;
  text-align: left;
}
.loading-img {
  width: 200px;
  height: 200px;
  background-color: transparent;
  background-repeat: no-repeat; /* Prevents the GIF from repeating */
  background-position: center center; /* Centers the GIF on the background */
  background-size: cover;
}
.dropbtn {
  width: 100%;
  background-color: #82b704;
  color: white;
  padding: 18px 25px 16px 25px;
  font-size: 12px;
  border: 2px #82b704;
  /*border-radius: 15px 50px;*/
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.dropdown {
  position: relative;
  display: inline-block;
  background-color: "#35abe5";
  width: 260px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #82b704;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 2px #82b704;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  text-align: center;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #35abe5;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #000000;
}

body {
  margin: 0;
  font-family: robotoc;
  background-color: #ffffff;
}

.toolbar {
  background-color: #35abe5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 0 1rem;
  height: 100px;
}

.toolbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.toolbar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.toolbar-links li {
  list-style: none;
}

.toolbar-links li a {
  display: block;
  padding: 1rem;
  color: white;
  text-decoration: none;
}

.toolbar-links li a:hover {
  background-color: #82b704;
}

.toggle-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: none; /* Hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

/* --- Media query for mobile devices --- */
@media (max-width: 768px) {
  .logo-div {
    width: 100%;
    text-align: center;
  }
  .img-logo {
    margin: 0 auto;
    text-align: center;
  }
  .dropdown {
    width: 100%;
  }
  .dropdown-content {
    width: 100%;
  }
  .toggle-button {
    display: flex; /* Show the toggle button on small screens */
  }

  .toolbar-links {
    display: none; /* Hide the full navigation links on small screens */
    width: 100%;
    position: absolute;
    top: 3.5rem;
    left: 0;
    background-color: #82b704;
    padding-bottom: 10px;
  }

  .toolbar-links.active {
    display: flex; /* Show the menu when the "active" class is added */
    flex-direction: column;
    align-items: center;
  }

  .toolbar-links ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .toolbar-links li {
    text-align: center;
  }

  .toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.centerDiv {
  text-align: center;
  justify-content: middle;
}

.result-content {
  max-width: 50%;
  margin: auto;
}

/*Footer elfsightcdn Card Height*/
[class*="CardContainer-sc"] {
  min-height: 400px;
  justify-content: space-between;
}
[class*="CardContainer-sc"] > :nth-child(2) {
  flex: 1 1 auto;
  align-items: flex-start;
}

.global-styles,
[class*="location-card-popup"] {
  max-height: 600px;
}

.filter-container {
  /*max-width: 1000px;*/
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
  /*font-size: 13px;*/
}

.card-filter {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 100%;
  background: #2c3331;
  border-radius: 16px;
  /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);*/
  /*backdrop-filter: blur(6.9px);*/
  /*-webkit-backdrop-filter: blur(6.9px);*/
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 12px;
}

.card-filter:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.map-img-div {
  width: 100%;
  /*overflow:hidden;*/
  background-position: center center;
  background-repeat: no-repeat;
}
.map-img-div img {
  height: 800px;
  object-fit: cover;
}
.card {
  width: 100%;
  height: auto;
  /*background-color: #404040;*/
  /*background-image: linear-gradient(*/
  /*    139deg,*/
  /*    rgba(64, 64, 64, 1) 0%,*/
  /*    rgba(64, 64, 64, 1) 0%,*/
  /*    rgba(28, 40, 38, 1) 100%*/
  /*);*/
  background: #34abe5;
  /*background: linear-gradient(90deg,rgba(63, 72, 77, 1) 0%, rgba(59, 120, 150, 1) 33%, rgba(0, 212, 255, 1) 100%);*/
  border: 0px solid #3f484d;
  padding: 15px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 30px 1px #2a2c2d;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-bottom: 50px;
}

.card .separator {
  border-top: 1.5px solid #42434a;
}
.card p {
  color: #82b704;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  width: 100%;
  padding-top: 5px;
}

.btn-status {
  width: 100%;
  background-color: #2c3331;
  color: #ffffff;
  padding: 25px;
  font-weight: bold;
  text-decoration: none;
  /*border-radius: 15px 50px;*/
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  height: 100%;
}

.navigation__checkbox {
  display: none;
}
.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 3rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 3.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#03a9f4, #03a9f4);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  visibility: hidden;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}
.navigation__item {
  margin: 1rem;
}
.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  font-size: 2rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    #fff 50%
  );
  background-size: 220%;
  transition: all 0.4s;
}
.navigation__link:link span,
.navigation__link:visited span {
  margin-right: 1.5rem;
  display: inline-block;
}
.navigation__link:hover,
.navigation__link:active {
  background-position: 100%;
  color: #90caf9;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
  visibility: visible;
}
.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #b0bec5;
  display: inline-block;
}
.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}
.headbox {
  position: fixed;
  z-index: 1000;
  height: 110px;
  width: 100%;
  background: rgba(53, 171, 229, 0.8);
  padding: 10px;
  -webkit-transition: all ease-out 0.5s;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
  /*margin-top: 50px;*/
}
.headbox img {
  height: 80px;
  width: 80px;
}

.active {
  background-color: rgba(130, 183, 4, 0.8);
}

.momus-img {
  width: 400px;
  height: 200px;
}

.centerDiv {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  justify-content: middle;
  align-content: middle;
}
@import url(//fonts.googleapis.com/css?family=Lato:300:400);

body {
  margin: 0;
}

h1 {
  font-family: robotoc;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 48px;
}
p {
  font-family: robotoc;
  letter-spacing: 1px;
  font-size: 14px;
  color: #333333;
}

.header2 {
  position: relative;
  text-align: center;
  /*background: linear-gradient(60deg, rgb(0, 127, 191) 0%, rgba(53, 171, 229,1) 100%);*/
  /*background-image: url(assets/Leeds-Skyline2.png);*/
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  height: 500px;
}
.logo {
  width: 50px;
  fill: white;
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.inner-header {
  height: 5vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 5vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 150px;
  max-height: 200px;
  margin-top: 250px !important;
}

.content {
  position: relative;
  height: 10vh;
  text-align: center;
  background-color: white;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 20s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 15s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 900px) {
  .waves {
    height: 100px;
    min-height: 100px;
  }
}
@media (max-width: 400px) {
  .waves {
    height: 100px;
    min-height: 100px;
  }
  .content {
    height: 30vh;
  }
  h1 {
    font-size: 24px;
  }
  .site-navigation {
    display: flex;
    text-align: center;
    justify-content: middle;
    min-width: 100%;
    width: 100%;
  }
  .site-navigation li {
    min-width: 100%;
    width: 80vw;
  }
}
@media (max-width: 1000px) {
  .site-navigation {
    margin-top: -50px;
    margin-bottom: 50px;
  }
  .result-box {
    width: 100%;
  }
}

.site-navigation {
  display: block;
  font-family: robotoc;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-top: 50px;
}

.site-navigation ul {
  /* background: #3498DB; */
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.menu-item {
  position: absolute;
  z-index: 20;
}
.menu-item a {
  border-radius: 20px;
  background-color: #3f484d;
  padding: 8px;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
}
.menu-item a:hover {
  color: #fff;
  cursor: pointer;
  background-color: #82b704;
  padding: 8px;
  text-decoration: none;
}
.sub-menu {
  padding: 0px !important;
  margin: 0px !important;
  margin-bottom: 10px !important;
}
.sub-menu a {
  margin-right: 20px;
  text-decoration: none;
  width: 100%;
}
.sub-menu a:hover {
  /*background-color: #3f484d;*/
  color: #fff;
  cursor: pointer;
  background-color: #82b704;
  padding: 8px;
  text-decoration: none;
}

.site-navigation li {
  color: #fff;
  /* background: #3498DB; */
  display: block;
  float: left;
  margin: 0 2px 0 0;
  padding: 12px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 200px;
}

.site-navigation li a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.site-navigation li:hover {
  @include transition(background, 0.2s);
  /* background: #52a6df; */
  color: #82b704;
  cursor: pointer;
}
.dropdown {
  width: 200px;
  border-radius: 25px;
}

.site-navigation ul li ul {
  background-color: #2c3331;
  visibility: hidden;
  float: right;
  min-width: 90%;
  position: absolute;
  transition: visibility 0.65s ease-in;
  margin-top: 12px;
  font-size: 15px;
  padding: 20px;
  overflow-wrap: normal;
  text-wrap: balance;
  text-align: left;
  left: 0;
  z-index: 999;
}

.site-navigation ul li:hover > ul,
.site-navigation ul li ul:hover {
  visibility: visible;
}

.site-navigation ul li ul li {
  clear: both;
  padding: 5px 0 5px 18px;
  width: 100%;
}

.site-navigation ul li ul li:hover {
  background: #82b704;
  border-radius: 25px;
}

.e-card {
  margin: 0 auto;
  /*margin-left: -50px;*/
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0, 0, 0, 0.45);
  position: relative;
  width: 80vw;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-bottom: 50px;
}

.icon {
  width: 3em;
  margin-top: -1em;
  padding-bottom: 1em;
}

.infotop {
  text-align: center;
  font-size: 12px;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  color: #242e29;
  font-weight: 600;
}

@media (max-width: 1600px) {
  .editorial {
    height: 350px !important;
    margin-top: 180px !important;
  }
}
@media (max-width: 1050px) {
  .e-card {
    margin: 0 auto;
    width: 90vw;
    height: 500px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .editorial {
    height: 300px !important;
    margin-top: 210px !important;
  }
}
@media (max-width: 450px) {
  .e-card {
    margin: 0 auto;
    /*margin-left: 30px;*/
    width: 90vw;
    height: 600px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .editorial {
    height: 200px !important;
    margin-top: 400px !important;
  }
}

.editorial {
  position: relative;
  /*opacity: 0.5;*/
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
  /*margin-bottom: -50px;*/
  /*max-height: 100vh;*/
  margin: 0;
  margin-top: 10%;
}

.upper-row {
  width: 100%;
  height: 70px;
  background-color: #3f484d;
  color: #ffffff;
  font-family: robotoc;
  font-size: 12px;
  margin-left: 0px;
  z-index: 40;
}

.first-upper {
  text-align: left;
  padding-left: 20px;
  padding-top: 5px;
}
.mid-upper {
  text-align: center;
  padding-top: 8px;
}
.mid-upper img {
  width: 180px;
  height: 50px;
}
.second-upper {
  text-align: right;
  padding-right: 20px;
  padding-top: 10px;
}
.elfsight-app-0c784525-54a1-4517-a619-1c48322c9086,
.kWZvIB,
div.EmbedRoot__Root-sc-2cafecf5-0 .fyEOvc {
  width: 100% !important;
  display: block !important;
  text-align: right !important;
  align-items: right !important;
  align-content: right;
  justify-content: right !important;
}

.open-hours {
  height: 30px !important;
}

.open-hours span {
  font-size: 12px !important;
}

.open-hours label {
  font-size: 12px !important;
}

.Icon__IconContainer-sc-1013a803-0 div svg {
  font-size: 12px !important;
}

.typography__Container-sc-66f865ad-0 {
  font-size: 12px !important;
}

.contacts-item__Item-sc-ca4e4940-1 {
  height: auto !important;
  padding: 0 auto !important;
  margin-top: -20px !important;
  font-size: 12px !important;
  text-align: left !important;
  width: 100% !important;
}
.typography__Container-sc-66f865ad-0 .janEDj {
  width: 100% !important;
}
div.jTWCbq {
  flex-wrap: wrap !important;
  justify-content: right !important;
  align-items: right !important;
  align-content: right !important;
  width: 100% !important;
}
@media (max-width: 1200px) {
  .menu-toggle {
    display: flex !important;
  }
  .upper-row {
    height: 230px;
  }
  .contacts-item__Item-sc-ca4e4940-1 {
    width: 100% !important;
    text-align: center !important;
    display: inline-block !important;
    margin-top: -20px !important;
    /*background-color: blue;*/
  }
  .first-upper {
    width: 100%;
    text-align: center;
  }
  .mid-upper {
    width: 100%;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 12px;
  }
  .second-upper {
    width: 100%;
    text-align: center;
    margin-top: -20px;
  }
  .elfsight-app-0c784525-54a1-4517-a619-1c48322c9086,
  .kWZvIB,
  div.EmbedRoot__Root-sc-2cafecf5-0 .fyEOvc {
    text-align: center !important;
    align-items: center !important;
    align-content: center;
    justify-content: center !important;
  }
  div.jTWCbq {
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    align-content: center !important;
    width: 80% !important;
  }
}

.footer-last {
  position: relative;
  text-align: center;
  width: 100%;
  height: 30vh;
}
.footer-last img {
  width: 100%;
  height: auto;
  z-index: 1;
}
.footer-last svg {
  position: absolute;
  /*margin-top: -150px;*/
  /*position: fixed;*/
  background-color: transparent;
  bottom: 0px;
  left: 0px;
  right: 0px;
  top: 30vh;
  z-index: 10;
}
.svg-text {
  font-size: 18px;
}
@media (max-width: 1700px) {
  .footer-last svg {
    top: 25vh;
  }
}
@media (max-width: 1500px) {
  .footer-last svg {
    top: 20vh;
  }
}
@media (max-width: 1200px) {
  .footer-last svg {
    top: 15vh;
  }
  .svg-text {
    font-size: 20px;
  }
}
@media (max-width: 815px) {
  .footer-last {
    height: 20vh;
  }
  .footer-last svg {
    top: 10vh;
  }
  .svg-text {
    font-size: 25px;
  }
}
@media (max-width: 600px) {
  .upper-row {
    height: 230px;
  }
  .footer-last {
    height: 15vh;
  }
  .footer-last svg {
    top: 8vh;
  }
  .svg-text {
    font-size: 27px;
  }
}
@media (max-width: 450px) {
  .footer-last {
    height: 12vh;
  }
  .footer-last svg {
    top: 6vh;
  }
  .svg-text {
    font-size: 33px;
  }
}
.menu-toggle {
  background-color: #3f484d;
  color: #ffffff;
  font-family: robotoc;
  font-size: 24px;
  cursor: pointer;
  margin: 0;
  width: 100%;
  height: 50px;
  z-index: 40;
  display: none;
}
.menu-toggle button {
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
  color: #ffffff;
  background-color: #82b704;
  height: 100%;
  border: none;
  font-size: 15px;
  margin-right: -10px;
}

.container-h2 {
  width: 100%;
  height: 500px;
  position: absolute;
  overflow: hidden;
  z-index: -10;
}
.timer {
  height: 1%;
  width: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #09f;
  z-index: 10;
}
.slideshow-h2 {
  position: relative;
  height: 100%;
  width: 100%;
}
.slide-h2 {
  width: 100%;
  height: 100%;
  background: #bbb;
  color: #ddd;
  text-align: center;
  font-size: 640px;
}

.slide-h2 {
  display: none;
}

.image-h2 {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-h2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 600px) {
  .container-h2 {
    height: 320px;
  }
  .image-h2 img {
    object-fit: cover;
    object-position: right;
  }
  .image-h2 {
    height: 320px;
  }
  .legend-h2 {
    border: 150px solid transparent !important;
    border-left: 500px solid rgba(52, 73, 94, 0.7) !important;
    border-bottom: 100px solid rgba(52, 73, 94, 0.7) !important;
  }
  .content-txt {
    top: 57% !important;
  }
  .content-txt h1 {
    font-size: 18px !important;
  }
  .content-txt h2 {
    height: 50px !important;
    font-size: 12px !important;
  }
  .header2 {
    height: 320px;
  }
  .waves {
    margin-top: 100px !important;
    height: 50px !important;
  }
  .main-logo {
    width: 350px !important;
    height: 104px !important;
  }
  .momus-box-img {
    width: 200px !important;
    height: 100px !important;
    margin-top: 38%;
  }
}
.legend-h2 {
  z-index: 3;
  border: 500px solid transparent;
  border-left: 800px solid rgba(52, 73, 94, 0.7);
  border-bottom: 0;
  position: absolute;
  bottom: 0;
  font-family: robotoc;
  opacity: 1;
  -webkit-animation: fadeinout 10s linear infinite;
  -moz-animation: fadeinout 10s linear infinite;
  animation: fadeinout 10s linear infinite;
}
.content-h2 {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  font-family: robotoc;
  z-index: 3;
}
.content-txt {
  width: 400px;
  height: 100%;
  font-weight: bold;
  float: left;
  position: relative;
  top: 55%;
  -webkit-animation: content-s 9.7s infinite;
  -moz-animation: content-s 9.7s infinite;
  animation: content-s 9.7s infinite;
  font-family: robotoc;
}
.content-txt h1 {
  font-family: Arial;
  text-transform: uppercase;
  font-size: 24px;
  height: auto;
  font-weight: 400;
  color: #fff;
  text-align: left;
  margin-left: 30px;
  font-family: robotoc;
}
.content-txt h2 {
  font-family: arial;
  font-weight: normal;
  height: 100px;
  font-size: 14px;
  font-style: italic;
  color: #fff;
  text-align: left;
  margin-left: 30px;
  font-family: robotoc;
}

@-webkit-keyframes content-s {
  0% {
    left: -420px;
  }
  30% {
    left: 0px;
  }
  80% {
    left: 0px;
  }
  100% {
    left: -420px;
  }
}

@-webkit-keyframes fadeinout {
  0% {
    opacity: 0; /* Start and end with opacity 0 (faded out) */
  }
  30% {
    opacity: 1; /* Mid-point with opacity 1 (fully visible) */
  }
  70% {
    opacity: 1; /* Mid-point with opacity 1 (fully visible) */
  }
  100% {
    opacity: 0; /* Mid-point with opacity 1 (fully visible) */
  }
}
/*html, body {*/
/*          overflow-x: clip !important; */
/*          width: 100vw !important;*/
/*      }*/
.main-logo {
  width: 484px;
  height: 145px;
}
.momus-box-img {
  width: 400px;
  height: 200px;
  margin-top: 48%;
}

.result-row {
  width: 100%;
  background: #ffffff;
}
.filter-column {
  /*border: 2px solid grey; */
  /*border-radius: 20px;*/
}
.filter-card {
  margin: 0 auto;
  /*margin-left: -50px;*/
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0, 0, 0, 0.45);
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border-radius: 20px;
}
.search-card {
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0, 0, 0, 0.45);
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border-radius: 20px;
}
.search-card-container {
  width: 100%;
  height: 100%;
  display: block;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.momus-box-img {
  width: 350px;
  height: 240px;
  margin-top: 40%;
}
.search-card-container div label {
  width: 100%;
  text-align: center;
  font-size: 18px;
  margin-top: 15px;
}
.search-card-results {
  min-width: 100%;
  width: 100%;
  padding-top: 50px;
}

.filter-card-content {
  text-align: center;
  font-size: 12px;
  color: #242e29;
  font-weight: 600;
  padding: 25px;
  width: 100%;
}
.filter-card-head p {
}
.ks-cboxtags {
  height: 580px;
  overflow-y: none;
  text-align: left;
  width: 100%;
  /*margin-left: 50px;*/
  /*margin-right: 50px;*/
}
@media (max-width: 1300px) {
  .ks-cboxtags {
    margin-left: 0px;
    margin-right: 0px;
  }
  ul.ks-cboxtags li label {
    min-width: 40px !important;
  }
}
@media (max-width: 1700px) {
  .ks-cboxtags {
    overflow-y: scroll;
  }
}
@media (max-width: 1100px) {
  ul.ks-cboxtags li {
    width: 100% !important;
    height: 35px !important;
    max-height: 35px !important;
    margin-bottom: 12px !important;
  }
  ul.ks-cboxtags li label {
    border-radius: 20px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: left !important;
    align-items: left !important;
    text-align: left !important;
    font-size: 12px !important;
    padding-top: 7px !important;
    margin: 0 !important;
    height: 35px !important;
  }
  ul.ks-cboxtags li input[type="checkbox"]:checked + label {
    color: #000000 !important;
  }
  ul.ks-cboxtags li label span {
    margin-right: 5px !important;
  }
  ul.ks-cboxtags li img {
    min-height: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    width: 30px !important;
    margin-top: -6px !important;
    margin-left: -10px !important;
    margin-right: 15px !important;
  }
}
@media (max-width: 500px) {
  .ks-cboxtags {
    height: 300px !important;
  }
  .momus-box-img {
    width: 220px;
    height: 150px;
  }
  .filter-card-head p {
    font-size: 12px !important;
  }
  .filter-card-head h6 {
    font-size: 12px !important;
  }
}
@media (max-width: 990px) {
  .filter-column {
    margin-bottom: 15px;
  }
}
@media (max-height: 800px) {
  .ks-cboxtags {
    overflow-y: scroll;
  }
}
ul.ks-cboxtags {
  list-style: none;
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
ul.ks-cboxtags li {
  width: 100px;
  height: 180px;
  max-height: 170px;
  margin-left: 5px;
  margin-bottom: 15px;
}
ul.ks-cboxtags li img {
  min-height: 60px;
  min-width: 75px;
  margin-top: 3px;
  margin-left: -1.5px;
  margin-bottom: 35px;
}
ul.ks-cboxtags li label {
  display: inline-block;
  background-color: rgba(203, 214, 209, 0.9);
  border: 2px solid rgba(203, 214, 209, 0.3);
  color: #000000;
  border-radius: 50%;
  white-space: pretty;
  margin: 3px 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s;
  /*min-width: 150px;*/
  width: 100%;
  height: 100px;
  text-align: center;
  font-size: 10px;
}

ul.ks-cboxtags li label {
  padding: 8px 12px;
  cursor: pointer;
}

ul.ks-cboxtags li label::before {
  display: flex;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: robotoc;
  font-weight: 900;
  font-size: 12px;
  padding: 2px 6px 2px 2px;
  transition: transform 0.3s ease-in-out;
}
ul.ks-cboxtags li label span::before {
  content: "+ ";
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label span::before {
  content: "✓ ";
  transform: rotate(-360deg);
  transition: transform 0.3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label {
  border: 2px solid #82b704;
  background-color: #82b704;
  color: #82b704;
  transition: all 0.2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
  /*display: absolute;*/
}
ul.ks-cboxtags li input[type="checkbox"] {
  /*position: absolute;*/
  opacity: 0;
}
ul.ks-cboxtags li input[type="checkbox"]:focus + label {
  border: 2px solid #82b704;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logo-slider-container {
  margin: 0;
  padding: 0;
  background: #fff;
  align-content: center;
  overflow: hidden;
  width: 100%;
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logos:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logo_items {
  display: inline-block;
  animation: 30s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  width: 200px; /* Or a fixed width */
  height: 150px; /* Or a fixed height */
  object-fit: contain;
  margin: 0 1em;
  /*margin: 0 3rem;*/
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.logo_items img:hover {
  transform: scale(1.2);
}

* {
  box-sizing: border-box;
}
body {
  font-family: robotoc;
}
.mySlides {
  display: none;
}
img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

.container-team {
  background: #00000000;
  margin-top: 0.8rem;
  padding-left: 10%;
  padding-right: 10%;
}

.our-team {
  padding: 1.2rem 0.75rem;
  height: 100%;
  background: #fff;
  border-radius: 3rem;
  text-align: center;
  border: 6px solid #35abe5;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.our-team .pic {
  display: inline-block;
  width: 70%;
  height: auto;
  background: #fff;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease 0s;
  /*cursor: pointer;*/
}
/*.our-team:hover .pic {*/
/*	background: #82b704;*/
/*	border-radius: 50%;*/
/*}*/
.pic img {
  width: 100%;
  height: auto;
  border-radius: 100%;
  filter: grayscale(100%);
  object-fit: contain;
  --s: 200px; /* the size of the image */
  --g: 0px;
  --b: 5px;
  --c: #82b704;

  width: var(--s);
  aspect-ratio: 1;
  outline: calc(var(--s) / 2) solid #0000;
  outline-offset: calc(var(--s) / -2);
  /*cursor: pointer;*/
  transition: 0.3s;
}
.our-team:hover .pic img {
  outline: var(--b) solid var(--c);
  outline-offset: var(--g);
  filter: grayscale(0%);
}
.our-team .title {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #82b704;
  margin: 0 0 7px 0;
}
.our-team .post {
  display: block;
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
  margin-bottom: 1rem;
}
.info-link {
  display: flex;
  text-align: center;
  justify-content: center; /* Centers children horizontally along the main axis */
  align-items: center;
}
.link-b {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  color: #000000 !important;
}
.info-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  text-align: center;
  background-size: cover;
  background-image: url("assets/info-black.png");
}
.info-link:hover .info-icon {
  background-image: url("assets/info-green.png");
}
.info-link:hover .link-b {
  color: #82b704 !important;
  font-weight: bold;
}

@media only screen and (max-width: 992px) {
  .container-team {
    padding-left: 2%;
    padding-right: 2%;
  }
  .our-team {
    margin-bottom: 2rem;
    height: 100%;
  }
}
@media only screen and (max-width: 1800px) {
  .pic img {
    --s: 150px;
  }
}
@media only screen and (max-width: 1400px) {
  .pic img {
    --s: 100%;
  }
  .container-team {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media only screen and (max-width: 1200px) {
  .pic img {
    --s: 100%;
  }
}

.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 12;
  visibility: hidden;
  opacity: 0;
  overflow: hiden;
  transition: 0.64s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .popup {
    display: inline-block !important;
    width: 100% !important;
    height: 100vh !important;
    padding-top: 80px !important;
  }
  .popup-inner {
    display: inline-block !important;
    justify-content: center !important;
    align-items: center !important;
    width: 90% !important;
    max-height: 700px !important;
    height: 100% !important;
    overflow: scroll;
  }
  .popup__photo {
    display: inline-block !important;
    justify-content: center !important;
    align-items: center !important;
    width: 70% !important;
    height: 50% !important;
  }
  .popup__text {
    display: inline-block !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }
  .popup__close {
    border-radius: 0% !important;
    margin-top: 10px !important;
    margin-right: 12px !important;
  }
}
.popup-inner {
  position: relative;
  bottom: -100vw;
  right: -100vh;
  display: flex;
  align-items: center;
  max-width: 800px;
  max-height: 600px;
  width: 60%;
  height: 80%;
  background-color: #fff;
  transform: rotate(32deg);
  transition: 0.64s ease-in-out;
}
.popup__photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 40%;
  height: 100%;
  overflow: hidden;
}
.popup__photo img {
  width: auto;
  height: 100%;
}
.popup__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  height: 100%;
  padding: 4rem;
}
.popup__text h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #82b704;
}
.popup__text p {
  font-size: 0.875rem;
  color: #686868;
  line-height: 1.5;
}
.popup:target {
  visibility: visible;
  opacity: 1;
}
.popup:target .popup-inner {
  bottom: 0;
  right: 0;
  transform: rotate(0);
}
.popup__close {
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 3rem;
  height: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100%;
  background-color: #82b704;
  z-index: 4;
  color: #fff;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

.map-container {
  width: 100vw;
  margin: 0 auto;
  padding: 0px;
  text-align: center;
}
.col-map {
  margin: 0 auto !important;
  /*padding: 10px !important;*/
}
.map-header1 {
  width: 100%;
  height: 80px;
  background-color: transparent;
  text-align: center;
  padding: 30px;
  padding-top: 10px;
  color: #ffffff;
  padding-bottom: 20px;
  transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: 1s;
}
.map-header1 iframe {
  padding: 2rem;
}
.map-header2 {
  width: 100%;
  height: 80px;
  background-color: transparent;
  text-align: center;
  padding: 30px;
  padding-top: 10px;
  color: #ffffff;
  padding-bottom: 20px;
  padding-left: 10%;
  transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: 1s;
}
.map-header2 iframe {
  padding: 2rem;
}
.map-frame-1 {
  /*width: 85% !Important;*/
  /*transition: width 0.2s;*/
  /*-webkit-transition: width 0.2s;*/
  /*transition: 1s;*/
  border-radius: 25px;
}
.map-frame-2 {
  /*width: 85% !Important;*/
  /*margin-left: 10% !Important;*/
  /*transition: width 0.2s;*/
  /*-webkit-transition: width 0.2s;*/
  /*transition: 1s;*/
  border-radius: 25px;
  z-index: 3;
}
.split-container {
  display: flex;
  height: 500px;
  width: 100%;
  position: relative;
  background-color: #3f484d; /* Color of the Right side */
}

.column {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.left {
  background-color: #82b704; /* Blue */
  width: 55%; /* Must be wider than 50% to cover the gap */
  /* Define the diagonal shape */
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  position: absolute; /* Sits on top of the container */
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: 1s;
  padding-right: 6% !important;
}

.right {
  width: 50%;
  margin-left: auto; /* Pushes this div to the right */
  color: white;
  cursor: pointer;
  transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: 1s;
  padding-left: 35px;
}
/*.left:hover .map-header1 {*/
/*    background-color: #82b704 !Important; */
/*}*/
/*.left:hover .map-header2 {*/
/*    background-color: #3f484d !Important; */
/*}*/
.right:hover .map-header2 {
  /*background-color: #82b704 !Important; */
  padding-left: 0%;
}

.left:hover {
  width: 100% !important;
  clip-path: none;
  padding-right: 30px !important;
  z-index: 6 !important;
}
.left:hover .right {
  width: 0% !important;
}
.right:hover {
  width: 100% !important;
  z-index: 2;
}
.left:has(+ .right:hover) {
  width: 0% !important;
  clip-path: none;
  margin: 0;
  padding: 0;
  z-index: -1;
  display: none;
}
@media only screen and (max-width: 1200px) {
  .map-header1 {
    margin-bottom: 15px;
  }
  .map-header2 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .map-header1 {
    margin-bottom: 25px;
  }
  .map-header2 {
    margin-bottom: 25px;
  }
}

.clipArt {
  background-color: transparent;
  /*border-radius: 50%;*/
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0;
  width: 365px;
  height: 350px;
  z-index: 40;
}
@media (max-width: 1200px) {
  .clipArt {
    width: 200px;
    height: 200px;
  }
}

.clipArt img {
  position: absolute;
  width: 100%;
}
.clipArt1 {
  z-index: 41;
  right: -75px !important;
  bottom: -10px !important;
}
.clipArt1 {
  z-index: 40;
}
