.header {
  background-color: #0d1117;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-desktop-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  width: 100%;
  min-width: 968px;
}

.menu-left,
.menu-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
/*
.logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo img {
	width: auto;
	height: auto;
}
*/
.logo-head {
  position: absolute;
  left: 0%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  animation: slide-up 2s ease-in-out forwards;
}
.logo-circle {
  position: absolute;
  left: 0%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  max-width: 35px !important;
}
.logo-text {
  position: absolute;
  left: 55%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-combined {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
}

@keyframes slide-up {
  0% {
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

.contact-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.contact-link:hover {
  text-decoration: underline;
}

.custom-language-dropdown-desktop-v2 {
  position: relative;
  display: inline-block;
  background-color: #404248;
  border-radius: 28px;
  height: 40px;
  width: 75px;
  overflow: visible;
  z-index: 1020;
  cursor: pointer;
  transition: width 0.6s ease-in-out, background-color 0.6s ease-in-out,
    border-radius 0.6s ease-in-out, border 0.6s ease-in-out;
}

.current-language-v2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 0 15px;
  font-size: 14px;
  color: #ffffff;
  width: 100%;
  gap: 10px;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  overflow: hidden;
}

.language-arrow-v2 {
  font-size: 12px;
  color: #ffffff;
  margin-left: auto;
}

.language-arrow-v2-text {
  font-size: 12px;
  color: #ffffff;
  position: absolute;
  right: 16px;
  transition: transform 0.6s ease-in-out;
  transform: rotate(0deg);
}

.custom-language-dropdown-desktop-v2.dropdown-open .language-arrow-v2-text {
  transform: rotate(180deg);
}

.language-flag-v2 {
  width: 26px !important;
  height: 16px;
  flex-shrink: 0;
}

.language-arrow-v2-hover {
  font-size: 12px;
  color: #ffffff;
  margin-left: auto;
  flex-shrink: 0;
  display: none;
}

.language-name-v2 {
  font-size: 14px;
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.language-options-v2 {
  position: absolute;
  top: calc(100% + 0px);
  left: -1px;
  background-color: #404248;
  list-style: none;
  margin: 0;
  padding: 0px 0px 5px 0px;
  width: 180px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.language-options-v2.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: #0d1117;
  border: 1px solid #485363;
}

.language-item-v2 {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  transition: background-color 0.3s ease-in-out;
}

.language-item-v2:last-of-type {
  border-bottom: unset;
}

.language-item-v2 span:hover {
  color: #ffc600;
}

.language-link-v2 {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  width: 100%;
  padding: 4px 10px 4px 0px;
}

.language-link-v2 .language-name-v2 {
  font-size: 14px;
  opacity: 1;
  visibility: visible;
}

.language-link-v2 .language-name-v2 {
  font-size: 14px;
}

.language-arrow-v2-non-hover {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.language-name-v2 {
  font-size: 14px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  margin-left: 7px;
}

.language-link-v2 {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  width: 100%;
}

.language-link-v2 .language-flag-v2 {
  width: auto;
  height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

.language-link-v2 .language-name-v2 {
  font-size: 14px;
  opacity: 1;
  visibility: visible;
}

.user-icon-desktop {
  width: 40px;
  height: 40px;
  background-color: #404248;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.user-icon img {
  width: 15px;
  height: 17px;
}

.user-icon:hover {
  color: #ffc600;
}

.header .menu {
  display: flex;
  gap: 20px;
}

.header .menu-item-desktop {
  cursor: pointer;
}

.header .menu-item-desktop.active {
  color: #fff;
}

.header .menu-item-desktop:hover {
  color: #ffc600;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: fixed;
  top: 80px;
  width: 100%;
  background: linear-gradient(180deg, #0d1117, #1a222e);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  padding: 30px 50px;
  z-index: 10;
  height: 450px;
  overflow: hidden;
}

.dropdown-menu.active {
  display: flex;
}

.column h3 {
  margin-bottom: 20px;
  font-size: clamp(12px, 1.5vw, 14px);
  color: #ffc600;
  font-family: 'Gilroy', Arial, sans-serif;
}

.menu-left .menu-item-desktop a {
    color: #fff;
    text-decoration: none;
}

.menu-left .menu-item-desktop a:hover {
    color: #ffc600;
}

.menu-left .menu-item-desktop.active a {
    color: #ffc600;
}

.menu-item-list a {
  color: #fff;
}

.menu-item-list a:hover {
  color: #ffc600;
}

.menu-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item-list li {
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.menu-item-list li span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  font-family: 'Gilroy', Arial, sans-serif;
  font-size: clamp(17px, 1vw, 23px);
}

.arrow-icon {
  position: absolute;
  left: -20px;
  top: clamp(16px, 1vw, 22px);
  transform: translateY(-50%);
  opacity: 0;
  z-index: -1;
  transition: left 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.menu-item-list li:hover .arrow-icon {
  opacity: 1;
  left: 0;
}

.menu-item-list li:hover span {
  transform: translateX(30px);
}

.menu-item-list li:hover {
  color: #ffc600;
}

.explore {
  position: absolute;
  bottom: 73px;
  left: 43px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 49px;
  font-size: 14px;
  max-width: 53%;
  width: 100%;
}

.explore-link {
  text-decoration: none;
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.explore-link span {
  font-size: 14px;
  color: white;
}

.explore-link span:hover {
  color: #ffc600;
}

.explore-arrow {
  top: -27px;
  position: absolute;
  right: 0%;
}

.bottom-divider {
  height: 2px;
  background-color: #485363;
  margin: 0 auto;
  position: absolute;
  top: 390px;
  width: 100%;
  max-width: 50%;
}

.dropdown-content-desktop {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding-left: 43px;
}

.column {
  flex: 1;
  max-width: 400px;
}

.column:last-child {
  margin-right: 0;
}

.image-column {
  flex: 1;
  max-width: 482px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.image-column img {
  max-height: 428px;
  max-width: 482px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease-in-out;
  border-radius: 28px;
}

.default {
  left: 62% !important;
}

.image-column img.default {
  bottom: -30px;
}

.image-column img.active {
  opacity: 1;
  display: block;
}

.menu-item-desktop {
  color: #fff;
  font-family: 'Gilroy', Arial, sans-serif;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-item-desktop.active-dropdown {
  color: #55585c;
}

.custom-language-dropdown-desktop-v2.has-hover:hover
  .language-arrow-v2-non-hover,
.custom-language-dropdown-desktop-v2.has-hover:hover .language-arrow-v2-hover,
.custom-language-dropdown-desktop-v2.has-hover:hover .language-name-v2 {
  opacity: 1;
  visibility: visible;
}

.custom-language-dropdown-desktop-v2.dropdown-open .language-name-v2 {
  opacity: 1;
  visibility: visible;
}

.custom-language-dropdown-desktop-v2:hover .language-arrow-v2-hover {
  opacity: 1;
}

.custom-language-dropdown-desktop-v2.dropdown-open {
  background-color: #1a222e;
  width: 150px;
  border: 1px solid #485363;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  transition: width 0.6s ease-in-out, background-color 0.6s ease-in-out;
}

.custom-language-dropdown-desktop-v2.closing {
  background-color: #1a222e;
  width: 75px;
  border: 1px solid #485363;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  transition: width 0.6s ease-in-out, background-color 0.6s ease-in-out,
    border-radius 0.6s ease-in-out, border 0.6s ease-in-out;
}

#go-cam-toggle img {
  transition: transform 0.6s ease-in-out;
  transform: rotate(0deg);
}

#go-cam-toggle.active img {
  transform: rotate(180deg);
}

.menu-item-desktop.inactive {
  pointer-events: none;
  opacity: 0.3;
}

.desktop-language-border {
  position: absolute;
  display: block;
  width: 92%;
  height: 1px;
  background-color: #485363;
  margin-top: 38px;
}

.language-item-v2:last-child .desktop-language-border {
  display: none;
}

.longer-arrow-icon {
  top: -34px;
}

.logo-text {
	max-width: 114px !important;
    transition: opacity 0.3s ease-in-out;
}