@keyframes slideDown {
  from {
    height: 0;
    visibility: hidden;
  }
  to {
    height: 420px;
    visibility: visible;
  }
}
header {
  position: fixed;
  background: #000000;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(118, 118, 118, 0.5);
  transition: all 300ms ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 80px;
  overflow: hidden;
}
header .header-content .logo {
  width: 25%;
  height: 100%;
  transition: all 300ms ease;
  display: flex;
  flex-direction: row;
  justify-content: left;
}
header .header-content .logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
header .header-content .logo a img {
  width: 150px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}
header .navigation {
  width: 83%;
  height: 100%;
  transition: all 300ms ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0;
  overflow-y: hidden;
}
header .navigation ul li.profile-dropdown .cities-dropdown-content {
  opacity: 1;
}
header .navigation ul li.profile-dropdown:hover .cities-dropdown-content {
  display: flex;
  flex-direction: row;
  border-top: 1px solid #4D4D4D;
  justify-content: center;
  opacity: 1;
}
header .navigation ul li.profile-dropdown:hover .region {
  border-right: 1px solid rgba(77, 77, 77, 0.5);
}
header .navigation ul li.cs-dd:hover .link-profiles svg {
  transform: rotate(180deg);
}
header .navigation ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0 15px;
  transition: all 300ms ease;
}
header .navigation ul li a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 125%;
  text-decoration: none;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  outline: 0;
  cursor: pointer;
  transition: all 300ms ease;
  position: relative;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 4px transparent;
  top: 2px;
}
header .navigation ul li > .cities-dropdown-content .cities-wrapper .cities-list .cities_col ul li a.active {
  color: #c8dc00 !important;
  border: none !important;
}
header .navigation ul li > .cities-dropdown-content .cities-wrapper .region ul li a.active {
  color: #c8dc00;
  border-bottom: solid 2px #c8dc00;
  height: 76px;
}
header .navigation > ul > li a.active {
  color: #c8dc00;
  border-bottom: solid 2px #c8dc00;
  height: 76px;
}

.header-content {
  background: #000000;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
  z-index: 1000;
}

header.fixed {
  height: 80px;
}
header.fixed .header-content .logo {
  height: 80px;
}
header.fixed .header-content .logo a img {
  height: 50px;
}
header.fixed .header-content .navigation {
  height: 80px;
}
header.fixed .header-content .navigation ul li a {
  height: 76px;
}
header.fixed .header-content .navigation ul li div a.active {
  color: #c8dc00;
  border-bottom: solid 2px #c8dc00;
}
header.fixed .header-content .navigation ul li div a.active svg path {
  stroke: #c8dc00;
}
header.fixed .header-content .navigation .profile-dropdown .link-profiles {
  height: 80px;
}
header.fixed .navigation ul li.cs-dd:hover .cities-dropdown-content {
  top: 80px;
}

.cities-dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: -1000px;
  height: 0;
  width: 100%;
  background-color: #1a1a1a;
  animation-duration: 0.3s;
  animation-name: slideDown;
  transition: height 0.5s ease-in-out, visibility 0s linear 500ms;
}

.profile-dropdown {
  display: inline-block;
}
.profile-dropdown:hover .cities-dropdown-content {
  opacity: 1;
  visibility: visible;
  height: 420px;
  width: 100%;
  left: 0;
  top: 80px;
  transition: height 0.5s ease-in-out, visibility 0s linear;
}
.profile-dropdown:hover .region {
  opacity: 1;
  visibility: visible;
  height: 420px;
  left: 0;
  transition: height 0.8s ease-in-out, visibility 0.5s linear;
}
.profile-dropdown:hover .cities-list {
  opacity: 1;
  visibility: visible;
  height: 420px;
  left: 0;
  transition: height 0.8s ease-in-out, visibility 0.5s linear;
}
.profile-dropdown:hover .link-profiles.active {
  color: #c8dc00;
}
.profile-dropdown:hover .link-profiles.active .cities-dropdown-content {
  top: 80px;
}
.profile-dropdown .link-profiles {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 125%;
  text-decoration: none;
  font-weight: 400;
  color: #e6e6e6;
  cursor: pointer;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-dropdown .link-profiles:hover {
  color: #c8dc00;
}
.profile-dropdown .link-profiles:hover svg path {
  stroke: #c8dc00;
}
.profile-dropdown .link-profiles svg {
  width: 14px;
  height: 8px;
  pointer-events: none;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  margin-top: 3px;
  margin-left: -2px;
}
.profile-dropdown .link-profiles.active {
  z-index: 99;
  color: #c8dc00;
  border-bottom: 1px solid #c8dc00;
}
.profile-dropdown .link-profiles.active svg path {
  stroke: #c8dc00;
}

.green-link {
  font-family: "Inter", sans-serif;
  border-bottom: 2px solid #C8DC00;
  cursor: pointer;
  color: #0E0E0E;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.green-link:hover {
  background-color: #C8DC00;
}

.cities-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 6fr;
  max-width: 1366px;
  padding: 0 175px;
}
.cities-wrapper .region {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
  height: 0;
}
.cities-wrapper .region ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  gap: 30px;
  height: 60%;
}
.cities-wrapper .region ul li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  color: #FFF;
  margin: 0;
}
.cities-wrapper .region ul li.active {
  text-decoration: underline;
  color: #C8DC00;
  cursor: pointer;
}
.cities-wrapper .cities-list {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 100px;
  height: 0;
  align-items: flex-start;
  padding: 0 !important;
  margin: 0 !important;
  padding-left: 130px !important;
}
.cities-wrapper .cities-list .cities_col {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.cities-wrapper .cities-list .cities_col ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 !important;
  height: 60%;
  gap: 30px;
}
.cities-wrapper .cities-list .cities_col ul li a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  height: 20px !important;
  color: #FFF;
  padding: 0 !important;
  cursor: pointer;
}
.cities-wrapper .cities-list .cities_col ul li a .active {
  color: #C8DC00;
}
.cities-wrapper .cities-list .cities_col ul li a:hover {
  color: #C8DC00;
}

.dropdown-toggle-bg {
  background: #1a1a1a !important;
}

.navigation ul li a:hover {
  color: #c8dc00;
}

.header-hover-bg {
  background-color: #1A1A1A !important;
  background: #1A1A1A !important;
}

.main-downloads {
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
  height: 100%;
  width: 25%;
  gap: 20px;
}

.dropdown {
  position: fixed;
  display: flex;
  text-align: center;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content-share-links {
  height: 100%;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  left: 83px;
  position: absolute;
  background-color: #000000;
  transition: opacity 0.5s;
  opacity: 0;
}
.dropdown-content-share-links ul {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.dropdown-content-share-links ul li {
  padding-bottom: 0 !important;
  list-style-type: none;
}

/* Change color of dropdown links on hover */
.dropdown-content-share {
  display: flex;
  justify-content: center;
  height: 100%;
  border-left: 1px solid rgba(118, 118, 118, 0.5);
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(118, 118, 118, 0.5);
  transition: all 300ms ease;
  position: relative;
}
.dropdown-content-share a, .dropdown-content-share span {
  color: #FFF;
  text-decoration: none;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  cursor: pointer;
  z-index: 3;
}
.dropdown-content-share:hover {
  color: #C8DC00;
  cursor: pointer;
}
.dropdown-content-share:hover .dropdown-content-share-links {
  transition: opacity 0.5s;
  opacity: 1;
  z-index: 3;
}

.dropbtn {
  border: 1px solid #4d4d4d;
  padding: 13px 20px;
  background-color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c8dc00;
  text-decoration: none;
}
.dropbtn:hover {
  color: #000000;
  background-color: #c8dc00;
}
.dropbtn:focus {
  outline: none !important;
}

.dropdown-main-downloads-icon {
  transition: all 500ms ease;
}

button#btnDownloads:hover .dropdown-main-downloads-icon path {
  stroke: #c8dc00;
}

.dropdown-content {
  display: flex;
  justify-content: center;
  height: 100%;
  border-right: 1px solid rgba(118, 118, 118, 0.5);
  align-items: center;
  padding-right: 20px;
  z-index: 2;
}
.dropdown-content a {
  color: #FFF;
  text-decoration: none;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
}
.dropdown-content a:hover {
  color: #ffffff !important;
}

.dropdown-content-one {
  border-left: 1px solid rgba(118, 118, 118, 0.5);
  padding-left: 20px;
}

.mobile-show {
  display: none;
}

.download-pdf-button-mobile {
  width: 140px;
  border: 1px solid #4d4d4d;
  padding: 5px 20px;
  background-color: #000000;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
}
.download-pdf-button-mobile:focus {
  outline: none !important;
  color: #c8dc00;
}

.mobile-popup-downloads {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.mobile-popup-downloads .bg-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  transition: all 300ms ease;
}
.mobile-popup-downloads .mobile-popup-downloads-content {
  height: 300px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 101;
  transform: translateY(300px);
  transition: all 300ms ease;
}

.mobile-popup-downloads.active {
  opacity: 1;
  z-index: 100;
  visibility: visible;
}
.mobile-popup-downloads.active .bg-overlay {
  opacity: 1;
  visibility: visible;
}
.mobile-popup-downloads.active .mobile-popup-downloads-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.downloads-mobile-title {
  text-align: center;
  padding: 25px 20px 20px 20px;
  border-bottom: solid 1px #e6e6e6;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #202020;
}

.downloads-mobile-files {
  display: flex;
  flex-direction: column;
}
.downloads-mobile-files a:first-child {
  border-bottom: 1px solid #e6e6e6;
}

.downloads-mobile-file {
  padding: 15px 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
  color: #000000;
  text-decoration: none;
  margin: 0px 10px;
}

.turn {
  transform: rotate(180deg);
}

.dropbtn.open-dropdown-menu {
  border-top: 1px solid #4d4d4d !important;
  border-right: 1px solid #4d4d4d !important;
  border-left: 1px solid #4d4d4d !important;
  border-bottom: none !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  color: #c8dc00;
}

.show {
  display: block;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  background: #000000;
  height: 100%;
  transform: translateY(-2000px);
  width: 100%;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  box-shadow: 0px 10px 30px 20px rgba(0, 0, 0, 0.75);
  transition: transform 800ms ease, box-shadow 1000ms ease;
}
.mobile-menu-overlay nav {
  padding-top: 50px;
  height: inherit;
  transition: opacity 2000ms ease, transform 1300ms ease;
  opacity: 0;
  transform: translateY(-150px) rotate(0.01deg);
}
.mobile-menu-overlay nav ul {
  margin-left: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu-overlay nav ul li {
  list-style: none;
}
.mobile-menu-overlay nav ul li a {
  width: 95%;
  position: relative;
  margin: 0 auto;
  display: block;
  padding: 20px 0;
  color: #e6e6e6;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  border-bottom: solid 1px #4d4d4d;
  text-align: center;
}
.mobile-menu-overlay nav ul li a:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  background-size: contain;
}
.mobile-menu-overlay nav ul li a.active {
  color: #c8dc00;
}
.mobile-menu-overlay nav ul li a.active:before {
  background: unset;
}
.mobile-menu-overlay nav ul li a.active:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0px;
  background-size: contain;
}
.mobile-menu-overlay nav ul li a.active.city-profiles-cta:after {
  background: none;
}
.mobile-menu-overlay nav ul li .city-profiles-cta {
  pointer-events: none;
}
.mobile-menu-overlay nav ul li:nth-of-type(1) a {
  border-top: solid 1px #4d4d4d;
}
.mobile-menu-overlay nav ul li:nth-of-type(2) a {
  transition: transform 0.2s ease-out;
}
.mobile-menu-overlay nav ul li:nth-of-type(2) a:before {
  background: unset;
}
.mobile-menu-overlay nav ul li:nth-of-type(6) {
  margin-top: 25%;
}
.mobile-menu-overlay nav ul li:nth-of-type(6) a {
  border: 0.7px solid #4D4D4D;
  font-family: "Inter", sans-serif;
  color: #c8dc00;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 200px;
  padding: 10px 0px !important;
}
.mobile-menu-overlay nav ul li:nth-of-type(5) a:before {
  background: unset;
}
.mobile-menu-overlay a.right-6.active::after {
  right: -18px !important;
}

.mobile-menu-overlay.active {
  transform: translateY(0px);
}
.mobile-menu-overlay.active nav {
  opacity: 1;
  transform: translateY(0px);
}

/*home about*/
.mobile-menu-overlay-home-about {
  display: none;
  position: fixed;
  background: #000000;
  height: 100%;
  transform: translateY(-2000px);
  width: 100%;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  box-shadow: 0px 10px 30px 20px rgba(0, 0, 0, 0.75);
  transition: transform 800ms ease, box-shadow 1000ms ease;
}
.mobile-menu-overlay-home-about nav {
  padding-top: 50px;
  height: inherit;
  transition: opacity 2000ms ease, transform 1300ms ease;
  opacity: 0;
  transform: translateY(-150px) rotate(0.01deg);
}
.mobile-menu-overlay-home-about nav ul {
  margin-left: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mobile-menu-overlay-home-about nav ul li {
  list-style: none;
}
.mobile-menu-overlay-home-about nav ul li a {
  width: 95%;
  position: relative;
  margin: 0 auto;
  display: block;
  padding: 20px 0;
  text-align: center;
  color: #e6e6e6;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  border-bottom: solid 1px #4d4d4d;
}
.mobile-menu-overlay-home-about nav ul li a:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  background-size: contain;
}
.mobile-menu-overlay-home-about nav ul li a.active {
  color: #c8dc00;
}
.mobile-menu-overlay-home-about nav ul li a.active:before {
  background: unset;
}
.mobile-menu-overlay-home-about nav ul li a.active:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0px;
  background-size: contain;
}
.mobile-menu-overlay-home-about nav ul li a.active.city-profiles-cta:after {
  background: none;
}
.mobile-menu-overlay-home-about nav ul li .city-profiles-cta {
  pointer-events: none;
}
.mobile-menu-overlay-home-about nav ul li:nth-of-type(1) a {
  border-top: solid 1px #4d4d4d;
}
.mobile-menu-overlay-home-about nav ul li:nth-of-type(2) a {
  transition: transform 0.2s ease-out;
}
.mobile-menu-overlay-home-about nav ul li:nth-of-type(2) a:before {
  background: unset;
}
.mobile-menu-overlay-home-about nav ul li:nth-of-type(6) {
  margin-top: 25%;
}
.mobile-menu-overlay-home-about nav ul li:nth-of-type(6) a {
  border: 0.7px solid #4d4d4d;
  font-family: "Inter", sans-serif;
  color: #c8dc00;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 200px;
  padding: 10px 0px !important;
}
.mobile-menu-overlay-home-about nav ul li:nth-of-type(5) a:before {
  background: unset;
}
.mobile-menu-overlay-home-about a.right-6.active::after {
  right: -18px !important;
}

.mobile-menu-overlay-home-about.active {
  transform: translateY(0px);
}
.mobile-menu-overlay-home-about.active nav {
  opacity: 1;
  transform: translateY(0px);
}

/*home about*/
.hamburger {
  padding: 5px 15px;
  display: block;
  position: absolute;
  top: 0;
  right: 7px;
  z-index: 1000;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transform: scale(0.6);
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: visible;
}

.hamburger.is-active .hamburger-inner {
  background-color: #fff;
}
.hamburger.is-active .hamburger-inner::before {
  background-color: #fff;
}
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  top: 3px;
  left: -10px;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 40px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before {
  width: 40px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  content: "";
  display: block;
  top: -12px;
}
.hamburger-inner::after {
  width: 40px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  content: "";
  display: block;
  bottom: -12px;
}

.color-override .hamburger-inner {
  background-color: #000;
}
.color-override .hamburger-inner::before {
  background-color: #000;
}
.color-override .hamburger-inner::after {
  background-color: #000;
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

section#footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000000;
}

.footer {
  padding: 40px 0px;
  width: 100%;
  position: relative;
  z-index: 2;
  height: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footer .content .content-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 100%;
}
.footer .content .content-container .left {
  width: 50%;
}
.footer .content .content-container .left .logo img {
  width: 140px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0;
  margin-bottom: 30px;
}
.footer .content .content-container .left .text p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: -0.12px;
  color: rgba(230, 230, 230, 0.95);
}
.footer .content .content-container .middle {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer .content .content-container .middle ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 15px;
  position: relative;
  margin: 0;
}
.footer .content .content-container .middle ul li {
  display: inline-block;
  list-style: none;
}
.footer .content .content-container .middle ul li a {
  outline: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: -0.12px;
  color: rgba(230, 230, 230, 0.95);
  text-decoration: none;
}
.footer .content .content-container .middle ul li a:hover {
  text-decoration: none;
  color: #c8dc00;
}
.footer .content .content-container .middle ul li span {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  color: #ffffff;
  padding: 0 3px;
  position: relative;
  top: -1px;
}
.footer .content .content-container .right ul li:hover .footer-tooltip {
  opacity: 1;
  visibility: visible;
}
.footer .content .content-container.mobile {
  display: none;
}

.footer-tooltip {
  position: absolute;
  background: #ffffff;
  color: #000000;
  border-radius: 10px;
  transition: all 300ms ease;
  padding: 3px 7px;
  top: -22px;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  letter-spacing: -0.12px;
  opacity: 0;
  visibility: hidden;
}

.newpar {
  display: none;
}

.section {
  display: none;
}

@media (min-width: 2000px) {
  header .navigation {
    width: 50%;
  }
  .footer .content .content-container .middle {
    width: 35%;
  }
}
@media (max-width: 1490px) {
  .cities-wrapper {
    padding: 0px 20px;
  }
}
@media (max-width: 600px) {
  .cities-wrapper {
    padding: 0px 10px;
  }
  .hamburger {
    right: 0px;
  }
}
@media (max-width: 1491px) {
  .cities-wrapper .region {
    justify-content: left;
  }
}
@media (max-width: 1800px) {
  .cities-wrapper .cities-list {
    padding-left: 110px !important;
    gap: 50px;
  }
}
@media (max-width: 576px) {
  .mobile-menu-overlay nav {
    padding-top: 30px;
  }
  .mobile-menu-overlay a.right-6.active::after {
    right: -6px !important;
  }
  .mobile-menu-overlay-home-about nav {
    padding-top: 30px;
  }
  .mobile-menu-overlay-home-about a.right-6.active::after {
    right: -6px !important;
  }
  header .header-content .logo a img {
    width: 110px;
  }
  header .navigation ul li {
    margin: 0 15px;
  }
  .dropbtn {
    padding: 8px 15px !important;
    width: 163px !important;
  }
  .dropdown-content {
    width: 163px !important;
  }
  .dropdown-content a {
    padding: 8px 15px !important;
  }
}
@media (max-width: 375px) {
  header .header-content .logo {
    height: 80px;
  }
}
@media (max-width: 500px) {
  header .navigation {
    margin-left: 0px;
    display: flex;
  }
  header .navigation ul {
    display: inline-flex;
    justify-content: flex-start;
  }
  header .navigation ul li:first-child {
    margin-left: 5px;
  }
}
@media (max-width: 768px) {
  .mobile-menu-overlay nav ul {
    padding-left: 0 !important;
  }
  .mobile-menu-overlay-home-about nav ul {
    padding-left: 0 !important;
  }
  header .navigation {
    margin-left: 0px;
    display: flex;
  }
  header .navigation ul li a {
    font-size: 14px;
  }
  .dropbtn {
    font-size: 14px !important;
    width: 179px !important;
  }
  .dropdown-content {
    width: 179px !important;
  }
  .dropdown-content a {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
}
@media (max-width: 910px) {
  header .header-content .logo {
    height: 80px;
  }
  header .navigation {
    margin-top: 77px;
    display: flex;
    border-top: 1px solid #1a1a1a;
    height: 50px;
    margin-left: 0px;
  }
  header .navigation ul {
    height: 50px;
    padding-left: 0px;
    overflow-y: hidden;
  }
  header .navigation ul li:first-child {
    margin-left: 5px;
  }
  header .navigation ul li a {
    height: 48px;
  }
  header.fixed {
    height: 80px;
  }
  header.fixed .header-content .navigation {
    margin-top: 77px;
    height: 50px;
  }
  header.fixed .header-content .navigation ul li a {
    height: 48px;
  }
  .main-downloads {
    align-items: start !important;
    width: 50%;
  }
  .dropdown {
    margin-top: 16px;
  }
}
.mobile-share-modal {
  display: none;
}

@media (max-width: 1024px) {
  header .header-content .logo {
    border-right: none;
    width: 50% !important;
    align-items: start !important;
  }
  header .navigation {
    position: absolute;
    width: 95%;
  }
  .dropbtn {
    width: 191px;
  }
  .dropdown-content {
    width: 191px;
  }
  .mobile-show {
    display: block;
  }
  .mobile-show.menu {
    display: flex;
    flex-direction: row;
    gap: 45px;
    align-items: center;
  }
  .mobile-show.menu .mobile-share {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    border-left: 1px solid rgba(118, 118, 118, 0.5);
    border-right: 1px solid rgba(118, 118, 118, 0.5);
  }
  .mobile-show.menu .mobile-share p {
    color: #c8dc00;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 130%;
    font-weight: 400;
    margin: 0;
  }
  .mobile-show.menu .hide-this {
    display: none !important;
  }
  .mobile-hide {
    display: none !important;
  }
  .download-pdf-btn-mobile {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 78px;
  }
  .mobile-menu-overlay {
    display: block;
  }
  .mobile-menu-overlay-home-about {
    display: block;
  }
  .mobile-share-modal {
    display: flex;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
  }
  .mobile-share-modal .bg-overlay {
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    transition: all 300ms ease;
  }
  .mobile-share-modal .share-mobile-container {
    height: 300px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    z-index: 101;
    transform: translateY(300px);
    transition: all 300ms ease;
    margin: 0;
  }
  .mobile-share-modal .share-mobile-container .share-mob-title {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #e6e6e6;
  }
  .mobile-share-modal .share-mobile-container .share-mob-title p {
    color: black;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .mobile-share-modal .share-mobile-container ul {
    list-style-type: none;
    padding: 0;
  }
  .mobile-share-modal .share-mobile-container ul li {
    padding: 15px 20px;
  }
  .mobile-share-modal .share-mobile-container ul li a {
    text-decoration: none;
    color: black;
    color: black;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
  }
  .mobile-share-modal.active {
    opacity: 1;
    z-index: 100;
    visibility: visible;
  }
  .mobile-share-modal.active .bg-overlay {
    opacity: 1;
    visibility: visible;
  }
  .mobile-share-modal.active .share-mobile-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 1140px) {
  section#footer {
    margin-top: 0;
  }
  .footer .content .content-container .middle {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .footer {
    height: 110px;
  }
  .footer .content .content-container.desktop {
    display: none;
  }
  .footer .content .content-container.mobile {
    display: block;
  }
  .footer .content .content-container.mobile .top {
    display: flex;
    justify-content: space-between;
  }
  .footer .content .content-container.mobile .top .top-left {
    width: 50%;
  }
  .footer .content .content-container.mobile .top .top-left .logo img {
    width: 110px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 20px;
  }
  .footer .content .content-container.mobile .top .top-right {
    width: 50%;
    text-align: right;
  }
  .footer .content .content-container.mobile .top .top-right ul {
    margin: 0;
    position: relative;
    top: 1px;
  }
  .footer .content .content-container.mobile .top .top-right ul li {
    display: inline-block;
    list-style: none;
  }
  .footer .content .content-container.mobile .top .top-right ul li a {
    outline: 0;
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #ffffff;
    padding-left: 20px;
    text-decoration: none;
  }
  .footer .content .content-container.mobile .top .top-right ul li a:hover {
    text-decoration: none;
  }
  .footer .content .content-container .bottom {
    width: 100%;
  }
  .footer .content .content-container .bottom ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 15px;
    flex-wrap: wrap;
  }
  .footer .content .content-container .bottom ul li {
    display: inline-block;
    list-style: none;
  }
  .footer .content .content-container .bottom ul li a {
    outline: 0;
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #ffffff;
    text-decoration: none;
  }
  .footer .content .content-container .bottom ul li a:hover {
    text-decoration: none;
  }
  .footer .content .content-container .bottom ul li span {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #ffffff;
  }
  .footer .content .content-container .bottom .text {
    margin: 0;
    margin-top: 20px;
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #ffffff;
  }
  .footer.after-toggle {
    height: 200px;
  }
  .footer-tooltip {
    display: none;
  }
}/*# sourceMappingURL=header-footer-1.css.map */