/* body {
    overflow-y: scroll;
    margin: 0 auto;
    padding: 0;
} */

header {
  position: fixed;
  background: #000000;
  width: 100%;
  /* max-width: 2000px; */
  /* height: 110px; */
  left: 0;
  top: 0;
  /* right: 0; */
  z-index: 100;
  border-bottom: 1px solid #1a1a1a;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 80px;
  overflow: hidden;
  /* padding: 0 50px; */
}


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

header .header-content .logo {
  width: auto;
  flex:1;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  flex-direction: row;
  justify-content: left;
}

header.fixed .header-content .logo {
  height: 80px;
}


/* @media (min-width: 2000px){
  header .header-content .logo {
    width: 27.5%;
  }
} */

header .header-content .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  height: 100%;
}

header .header-content .logo a img {
  width: 150px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}


header.fixed {
height: 80px;
}
header.fixed .header-content .logo a img {
  height: 50px;
}
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 .navigation {
  /*width: 70%; */
  flex: 3;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
  /* margin-left: 160px;*/
}

/* @media (max-width: 1082px){
  header .navigation {
    width: 60%;
    margin-left: 100px;
  }
} */

.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;
  /* border: 1px solid red; */
  transition: height 0.5s ease-in-out, visibility 0s linear 500ms;
}


@keyframes slideDown {
  from {
    height: 0;
    visibility: hidden;
  }
  to {
    height: 420px;
    visibility: visible;
  }
}

.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;
}

.green-link {
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 2px solid #C8DC00;
  cursor: pointer;
  color: #000000;
}
.green-link:hover {
  background-color: #C8DC00;
  border-bottom: none;
  padding-bottom: 0;
}


.cities-wrapper{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  /* grid-template-columns: 1.5fr 6fr; */
  max-width: 1366px;
  padding: 0;
} 


@media (max-width: 1490px){
  .cities-wrapper {
    padding: 0px 20px;
  }
}
/* @media (max-width: 576px) {
  .container {
    padding: 0px 10px;
  }
} */
@media (max-width: 600px){
  .cities-wrapper {
    padding: 0px 10px;
  }
}

.cities-wrapper .percentage-div{
/* width: 25%; */
flex: 1;
}
/* @media (max-width: 1082px){
.cities-wrapper .percentage-div{
  width: 15%;
}
} */

.cities-wrapper .region {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0 !important;
  margin: 0 !important;
  height: 0;
  flex: 1;
}

@media (max-width: 1491px){
  .cities-wrapper .region{
    justify-content: left;
  }
}


.profile-dropdown:hover .region {
  opacity: 1;
  visibility: visible;
  height: 420px;
  /* width: 25%; */
  left: 0;
  /* top: 80px; */
  transition: height 0.8s ease-in-out, visibility 0.5s linear;
}


.cities-wrapper .region ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  gap: 30px;
  height: 60%;
}

/* @media (max-width: 1800px){
  .cities-wrapper .region ul {
    margin-left: 15px;
  }
} */

.cities-wrapper .region ul li{
  font-family: "Noto Sans";
  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: #ffffff;
  cursor: pointer;
}

.cities-wrapper .cities-list{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  /* width: 50%; */
  /* margin-left: 160px; */
  flex: 3;
}


 /* @media (max-width: 1082px){
  .cities-wrapper .cities-list{
    width: 60%;
    margin-left: 100px;
  }
} */
.profile-dropdown:hover .cities-list {
  opacity: 1;
  visibility: visible;
  height: 420px;
  left: 0;
  transition: height 0.8s ease-in-out, visibility 0.5s linear;
}


@media (max-width: 1800px){
  .cities-wrapper .cities-list{
    /* padding-left: 110px !important; */
    gap: 50px;
  }
}

.cities-wrapper .cities-list .cities-col-div{
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 140px);
}
.cities-wrapper .cities-list .cities-col-div .cities_col{
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  /* margin-right: 20px; */
}

.cities-wrapper .cities-list .cities-col-div .cities_col ul{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0!important;
  width: 100%;
  height: 60%;
  gap: 30px;
}
.cities-wrapper .cities-list .cities-col-div .cities_col ul li{
  margin-right: 0 !important;
}
.cities-wrapper .cities-list .cities-col-div .cities_col ul li a{
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  height: 20px !important;
  /* line-height: 135%; */
  color: #949494;
  padding: 0!important;
  cursor: pointer;
  display: inline-block;
}
.cities-wrapper .cities-list .cities-col-div .cities_col ul li a .active{
  color: #ffffff;
}
.cities-wrapper .cities-list .cities-col-div .cities_col ul li a:hover {
  color: #ffffff;
}


header .navigation ul li.profile-dropdown:hover .cities-dropdown-content{
  display: flex;
  flex-direction: row;
  border-top: 1px solid #4D4D4D;
  justify-content: center;
  /* width: 100%; */
}

header .navigation ul li.profile-dropdown:hover .region{
border-right: 1px solid rgba(77, 77, 77, 0.50);
}



header .navigation ul li.cs-dd:hover .link-profiles svg {
  transform: rotate(180deg);
}

.dropdown-toggle-bg{
  background: #1a1a1a !important;
  /* transition: 0.2s ease-in-out; */
}


header.fixed .header-content .navigation .profile-dropdown .link-profiles {
  height: 80px;
}
.profile-dropdown {
  display: inline-block;
}
.profile-dropdown .link-profiles {
  font-family: "Noto Sans";
  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: #ffffff;
}
.profile-dropdown .link-profiles:hover svg path {
  stroke: #ffffff;
}
.profile-dropdown .link-profiles.active {
  z-index: 99;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.profile-dropdown .link-profiles.active svg path {
  stroke: #ffffff;
}
.profile-dropdown .link-profiles svg {
  margin-left: 10px;
  width: 14px;
  height: 7px;
  pointer-events: none;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.profile-dropdown:hover .link-profiles.active {
  color: #ffffff;
}
.profile-dropdown:hover .link-profiles.active .cities-dropdown-content {
  top: 80px;
}


header.fixed .navigation ul li.cs-dd:hover .cities-dropdown-content{
  top: 80px;
}


header.fixed .header-content .navigation {
  height: 80px;
}



header .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  /* width: 100%; */
  padding: 0;
  overflow-y: hidden;
}

header .navigation ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin-right: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

header .navigation ul li a {
  font-family: "Noto Sans";
  font-size: 16px;
  line-height: 125%;
  text-decoration: none;
  font-weight: 400;
  color: #949494;
  outline: 0;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
  height: 106px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: solid 4px transparent;
  top: 2px;
}

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

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: #ffffff;
  border-bottom: solid 2px #ffffff;
  height: 76px;
}


.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: auto;
}

/* @media (max-width: 1082px){
  .main-downloads {
    width: 15%;
  }
} */
.dropdown {
  position: fixed;
  display: flex;
  text-align: center;
  /* width: 209px; */
}

.dropdown-toggle-bg-black{
  background-color: #000000;
    }

    .dropdown-toggle-bg-grey{
      background-color: #202020;
        }

.dropbtn {
border: 1px solid rgba(0, 0, 0, 1);
  padding: 13px 20px;
  /* background-color: #202020!important; */
  font-family: "Noto Sans";
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}


.dropbtn:hover {
color: #ffffff;
border: 1px solid rgba(118, 118, 118, 0.5);
}

.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 a {
  color: #ffffff;
  /* padding: 10px 20px; */
  text-decoration: none;
  display: block;
  font-family: "Noto Sans";
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
}

@media (max-width: 1082px) {
.dropdown-content a {
  font-size: 15px;
}
}

.mobile-show {
  display: none;
}

.download-pdf-button-mobile {
  width: 140px;
  border: 1px solid #4d4d4d;
  /* border-radius: 20px; */
  padding: 5px 20px;
  background-color: #000000;
  color: white;
  font-family: "Noto Sans";
  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;
  -webkit-transition: all 300ms ease;
  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;
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
  -webkit-transition: all 300ms ease;
  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;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}


.downloads-mobile-title {
  text-align: center;
  padding: 25px 20px 20px 20px;
  border-bottom: solid 1px #e6e6e6;
  font-family: "Noto Sans";
  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: "Noto Sans";
  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 nav*/
.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: -40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.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: 13px 0;
  color: #949494;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  border-bottom: solid 1px rgba(118, 118, 118, 0.5);
}

.mobile-menu-overlay nav ul li a.active {
  color: #ffffff;
}
.mobile-menu-overlay nav ul li a.active:before {
  background: unset;
}
.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 rgba(118, 118, 118, 0.5);
}
.mobile-menu-overlay nav ul li:nth-of-type(2) a {
  display: flex;
  justify-content: space-between;
  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(4) {
  margin-top: auto;
  margin-bottom: 150px;
}
.mobile-menu-overlay nav ul li:nth-of-type(4) a {
  border: 1px solid #202020;
  font-family: "Noto Sans";
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  background-color: #202020;
  line-height: 150%; /* 21px */
}

.mobile-menu-overlay nav ul li:nth-of-type(4) a:focus{
  border: 1px solid rgba(118, 118, 118, 0.5);
}

@media (max-width: 576px) {
  .mobile-menu-overlay nav {
    padding-top: 30px;
  }
}
.mobile-menu-overlay.active {
  transform: translateY(0px);
}
.mobile-menu-overlay.active nav {
  opacity: 1;
  transform: translateY(0px);
}

.mobile-menu-overlay a.right-6.active::after {
  right: -18px !important;
}
@media (max-width: 576px) {
  .mobile-menu-overlay a.right-6.active::after {
    right: -6px !important;
  }
}
.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;
}
@media (max-width: 600px) {
.hamburger {
  /* top: 8px; */
  right: 0px;
}
}

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

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

.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.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;
}

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

.hamburger-inner::before,
.hamburger-inner::after {
content: "";
display: block;
}

.hamburger-inner::before {
top: -12px;
}

.hamburger-inner::after {
bottom: -12px;
}

/*
   * Spin
   */
.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);
}

/* media queries */

@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: 576px) {
  /* header {
    height: 200px;
  } */
  header .header-content .logo a img {
    width: 130px;
  }
  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: 768px) {
  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 {
    height: 130px;
  } */
  header .header-content .logo {
      /* width: 135px; */
      height: 80px;
  }
  header .navigation {
      margin-top: 77px;
      /* width: 95%; */
      display: flex;
      border-top: 1px solid #1a1a1a;
      height: 50px;
      margin-left: 0px;
    }
  header.fixed {
    height: 80px;
  }
  header.fixed .header-content .navigation {
      margin-top: 77px;
      height: 50px;
  }
  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;
  }
  .main-downloads {
      align-items: start !important;
      width: 50%;
  }
  .dropdown {
      margin-top: 16px;
  }
  header.fixed .header-content .navigation ul li a {
    height: 48px;
  }
  
}

@media (max-width: 992px) {
  header .header-content .logo {
    border-right: none;
    width: 50% !important;
    align-items: start !important;
  }
  header .navigation {
      /* margin-left: 125px; */
      position: absolute;
      width: 95%;
  }
  .dropbtn {
    width: 191px;
  }
  .dropdown-content {
    width: 191px;
  }
}


@media (max-width: 992px) {
.mobile-show {
  display: block;
}

.mobile-hide {
  display: none !important;
}


.download-pdf-btn-mobile {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 78px;
}

.mobile-menu-overlay {
  display: block;
}
}

@media (max-width: 1082px) {
.dropdown-content a {
  padding: 10px !important;
}
}
/* Footer */

section#footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000000;
  /* margin-top: 130px; */
}


/* @media (max-width: 1040px) {
  section#footer {
    margin-top: 60px;
  }
} */

.footer {
  padding: 40px 0px;
  /* max-width: 2000px; */
  width: 100%;
  position: relative;
  z-index: 2;
  height: 170px;
  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%;
  /* padding: 0px 50px; */
  /* gap: 400px; */
}
.footer .content .content-container.mobile {
  display: none;
}
.footer .content .content-container .left {
  /* width: 33.333%; */
  width: 50%;
}
.footer .content .content-container .left .logo img {
  width: 176px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0;
  margin-bottom: 0px;
}
.footer .content .content-container .left .text p {
  margin: 0;
  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 .middle {
  /* width: 33.333%; */
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 2000px){
  .footer .content .content-container .middle {
    width: 35%;
  }
}
.footer .content .content-container .middle ul {
  /* margin: 0; */

  /* margin-left: -40px; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  /* gap: 10px; */

}
.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: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.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-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;
}
.insta-tooltip{
  right: 0;
}

.footer .content .content-container .right ul li:hover .footer-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {

  .footer.after-toggle {
    height: 200px;
  }
  .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-tooltip {
    display: none;
  }
}

@media (max-width: 1140px) {
  .footer .content .content-container .middle {
    width: 50%;
  }
}

.newpar{
  display: none;
}





/* New Styles */
.footer-container {
  max-width: 1360px;
  width: auto;
  margin: 0 auto;
  /* padding: 0 175px; */
}
@media (max-width: 1490px) {
  .footer-container {
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .footer-container {
    padding: 0 10px;
    width: auto;
  }
}

footer {
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}
footer .content .content-container {
  display: flex;
  /* justify-content: space-between; */
  align-items: end;
}
footer .content .content-container.mobile {
  display: none;
}
footer .content .content-container .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
footer .content .content-container .left .logo img {
  width: 176px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0;
  margin-bottom: 0px;
}
footer .content .content-container .left .text p {
  margin: 0;
  font-family: "Noto Sans";
  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.333%;
  text-align: center;
} */
footer .content .content-container .left .footer-menu ul {
  margin: 0;
  margin-left: -40px;
  position: relative;
}
footer .content .content-container .left .footer-menu ul li {
  display: inline-block;
  list-style: none;
}
footer .content .content-container .left .footer-menu ul li a {
  outline: 0;
  font-family: "Noto Sans";
  text-decoration: none;
  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 .left .footer-menu ul li a:hover {
  text-decoration: none;
  color: #2c6ef2;
}
footer .content .content-container .left .footer-menu 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 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 97px;
  height: 100%;
  flex-wrap: wrap;
  align-content: flex-end;
}
footer .content .content-container .right ul {
  margin: 0;
  margin-left: -40px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
footer .content .content-container .right ul li {
  display: inline-block;
  list-style: none;
}
footer .content .content-container .right ul li a {
  outline: 0;
  font-family: "Noto Sans";
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: -0.12px;
  color: rgba(230, 230, 230, 0.95);
  padding-left: 20px;
}
footer .content .content-container .right ul li a:hover {
  text-decoration: none;
  color: #2c6ef2;
}
footer .content .content-container .right ul li .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;
}
footer .content .content-container .right ul li:hover .footer-tooltip {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  footer {
    height: 140px;
  }
  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: 131px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 20px;
    position: relative;
    top: 3px;
  }
  footer .content .content-container.mobile .top .top-right {
    width: 50%;
    text-align: right;
  }
  footer .content .content-container.mobile .top .top-right ul {
    margin: 0;
    margin-left: -40px;
    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";
    text-decoration: none;
    cursor: pointer;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #ffffff;
    padding-left: 20px;
  }
  footer .content .content-container.mobile .top .top-right ul li a:hover {
    text-decoration: none;
    color: #2c6ef2;
  }
  footer .content .content-container .bottom {
    width: 100%;
  }
  footer .content .content-container .bottom ul {
    margin: 0;
    /* margin-left: -40px; */
    padding-left: 0;
  }
  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;
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #ffffff;
  }
  footer .content .content-container .bottom ul li a:hover {
    text-decoration: none;
    color: #2c6ef2;
  }
  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;
  }
}



@media (max-width: 576px) {
  footer .content .content-container.mobile .top .top-left .logo img {
    width: 137px;
    height: auto;
  }
}
footer.footer-version-1 {
  background: #000;
}
footer.footer-version-2 {
  background: #f2f2f2;
}
footer.footer-version-2 .content .content-container .top .top-left .logo img {
  filter: invert(100);
}
footer.footer-version-2 .content .content-container .top .top-right ul li a {
  color: #000000;
}
footer.footer-version-2 .content .content-container .bottom ul li a,
footer.footer-version-2 .content .content-container .bottom ul li span {
  color: #000000;
}
footer.footer-version-2 .content .content-container .bottom .text {
  color: #000000;
}
footer.footer-version-2 .content .content-container .left ul li a,
footer.footer-version-2 .content .content-container .left ul li span,
footer.footer-version-2 .content .content-container .right ul li a,
footer.footer-version-2 .content .content-container .right ul li span{
  color: #000000;
}
footer.footer-version-2 .content .content-container .left .logo img,
footer.footer-version-2 .content .content-container .right .logo img {
  filter: invert(100);
}
footer.footer-version-2 .content .content-container .left .text p,
footer.footer-version-2 .content .content-container .right .text p {
  color: #000;
}
footer.no-logo {
  height: 80px;
}
@media (max-width: 1024px) {
  footer.no-logo {
    height: 150px;
  }
  footer.no-logo .content .content-container.mobile .top .top-left {
    display: none;
  }
  footer.no-logo .content .content-container.mobile .top .top-right {
    margin-bottom: 20px;
    text-align: left;
  }
  footer.no-logo .content .content-container.mobile .top .top-right ul li a {
    padding-left: unset;
    padding-right: 20px;
  }
}

.container {
  width: 100%;
  margin-top: 0 !important;
  /* padding: 0 175px; */
  max-width: 1360px;
  margin: 0 auto;
}

@media (max-width: 1490px) {
  .container {
    padding: 0px 20px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0px 10px;
    box-sizing: border-box;
  }
}
.flex-center {
  display: flex;
  justify-content: center;
}

.section-container {
  width: 100%;
  max-width: 900px;
  color: white;
  padding-bottom: 100px;
}

.border-bottom {
  border: 1px solid #4D4D4D;
}

.main-container {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}

body {
  overflow-y: scroll;
  margin: 0;
  height: 100%;
  background-color: #000000;
}


.main-container,
footer {
  filter: blur(0);
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
.main-container.active,
footer.active {
  filter: blur(10px);
}



/* Header fixes */
.right-nav{
  width: 100%;
  display: flex;
}

.manage-cookies-btn{
  cursor: pointer;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


.mobile-menu-overlay nav ul {
margin-left: 0!important;
}

.read-art {
height: 30px;
}


.companies-list a{
color: #ffffff;
font-family: "Noto Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  margin-right: 10px;
}

.companies-list a:last-child{
margin-right: 0px;
}

.companies-list a:hover{
color: #2c6ef2;
}

.mobile-companies-list{
font-size: 12px;
line-height: 18px;
margin-bottom: 12px;
}