:root {
  --black: #000;
  --blue: #0464b4;
  --green: #dbaf6c;
  --green-1: #dbaf6c;
  --grey: #efefed;
  --grey-1: #939598;
  --grey-2: #c0c0c0;
  --grey-3: #e7e7e7;
  --grey-4: #9c9c9c;
  --grey-5: #ececec;
  --grey-6: #e1dee1;
  --gold: #dbaf6c;
  --white: #fff;
  --red: #e41b46;
  --Catamaran-Regular: "Catamaran-Regular", sans-serif;
  --Catamaran-Bold: "Catamaran-Bold", sans-serif;
}

.fade {
  animation-name: fade;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.search input:focus {
  background: var(--white);
}

.search input::placeholder {
  color: var(--white);
  opacity: 0.5;
}

.or .search input::placeholder {
  color: var(--white);
}

.switcher {
  display: flex;
  align-items: center;
  position: relative;
}

.switcher-in {
  width: 160px;
  position: relative;
}

.switcher-in.lang-open .switcher-a {
  visibility: hidden;
  opacity: 0;
  padding: 0;
  width: 0;
  max-width: 0;
  border: 0;
}

.switcher-in.lang-open .switcher-c {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
}

.switcher-a {
  position: relative;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  height: 28px;
  max-width: 200px;
  border: 2px solid var(--white);
  font-family: var(--Catamaran-Regular);
  border-radius: 20px;
  padding: 4px 50px 4px 15px;
  overflow: hidden;
  color: var(--black);
  text-transform: uppercase;
  font-size: 12px;
  line-height: normal;
  z-index: 20;
}

.switcher-a span {
  color: #c63d0f;
}

.switcher-a::after {
  height: 25px !important;
}

.switcher-c li.lang-active:after,
.switcher-a::after {
  position: absolute;
  width: calc(100% - 35px);
  height: 24px;
  background: var(--white);
  font-family: var(--Catamaran-Regular);
  left: 0;
  top: 0;
  content: "";
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: -1;
}

.switcher-c li {
  position: relative;
}

.switcher-c li.lang-active a {
  color: var(--black);
}

.switcher-c li.lang-active:after {
  height: 28px;
}
.switcher-c {
  width: 100%;
  top: 0;
  border: 2px solid var(--white);
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  position: absolute;
  height: auto;
  transform: scaleY(0);
  transform-origin: top left;
  transition-duration: 0.2s;
  -webkit-transform: scaleY(0);
  -webkit-transform-origin: top left;
  -webkit-transition-duration: 0.2s;
  overflow: hidden;
}
.switcher-c ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.switcher-c li a {
  word-break: keep-all;
  white-space: nowrap;
  display: block;
  position: relative;
  width: 100%;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  height: 28px;
  max-width: 200px;
  padding: 4px 50px 4px 15px;
  overflow: hidden;
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 19px;
  border-bottom: 2px solid var(--white);
}

.switcher-c li:last-child a {
  border-bottom: 0;
}

.switcher img {
  position: absolute;
  width: 100%;
  max-width: 20px;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* Menu List */
.menu .menu-list a {
  position: relative;
}
.menu .menu-list a:after {
  content: " ";
  width: 0%;
  height: 2px;
  background: var(--white);
  position: absolute;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  right: 0;
  bottom: 2px;
}

.menu .menu-list a:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.mark {
  position: relative;
  white-space: -moz-nowrap; /* Firefox */
  white-space: -o-nowrap; /* Opera */
  white-space: nowrap; /* Chrome */
}

.mark:before {
  content: "";
  background-color: #efcfa0;
  width: 100%;
  height: 60%;
  position: absolute;
  z-index: -1;
  right: -0.15em;
  bottom: 10%;
  padding: 0 0.25em;
}

.mark-accent:before {
  background-color: #dbd36c !important;
}

.mark-primary:before {
  background-color: #dbb06c !important;
}

.mark-primary-dark:before {
  background-color: #ae8b4e !important;
}

/* Hamburger Navbar */

.sandwich {
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 99999;
}

.sandwich span {
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 35px;
  height: 5px;
  background-color: var(--white);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 50;
  border-radius: 20px;
}

.sandwich span:nth-of-type(2) {
  top: 17px;
}

.sandwich span:nth-of-type(3) {
  top: 27px;
  left: 0;
}

.sandwich.active .top {
  -moz-transform: translateY(10px) translateX(0) rotate(45deg);
  -o-transform: translateY(10px) translateX(0) rotate(45deg);
  -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
  transform: translateY(10px) translateX(0) rotate(45deg);
  background-color: var(--white);
}

.sandwich.active .middle {
  opacity: 0;
}

.sandwich.active .bottom {
  -moz-transform: translateY(-10px) translateX(0) rotate(-45deg);
  -o-transform: translateY(-10px) translateX(0) rotate(-45deg);
  -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  width: 35px;
  background-color: var(--white);
}

.sandwich:hover .top {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.sandwich:hover .middle {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.sandwich:hover .bottom {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.main-navbar {
  z-index: 1000;
}

#home-sidenav {
  z-index: 1000;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.investment-hero:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  filter: brightness(0.9);
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.35) 66%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 41.5%, rgba(0, 0, 0, 0.2) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.2) 62%),
    url("../img/investment-hero.webp") lightgray -12.023px 0px / 101.118%
      100% no-repeat;
  background-size: cover;
  background-position: center;
}

.development-hero:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.35) 66%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 41.5%, rgba(0, 0, 0, 0.2) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.2) 62%),
    url("../img/development-hero.webp") lightgray -12.023px 0px / 101.118% 100% no-repeat;
  background-size: cover;
  background-position: bottom;
}
