.header-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 3rem 30px 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 50px;
  height: 100%;
  max-width: 200px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-menu {
  display: flex;
	    align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-family: "ClashDisplay", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}
.nav-menu a:hover {
  text-decoration: underline;
}

.menu_item_header {
  position: relative;
  transition: color 0.3s ease;
}

.menu_item_header.desktop {
  padding: 0.3rem 0.5rem;
}

.menu_item_header.mobile {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.header-wrapper .special-nav-item {
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #000000;
  background-color: #ffffff;
  padding: 10px 32px;
  transition: 0.3s;
}
.header-wrapper .special-nav-item:hover {
  background-color: black;
  color: #ffffff;
  transition: 0.3s;
	text-decoration: unset;
}
.header-wrapper .special-nav-item:hover svg {
  fill: #ffffff;
  transition: 0.3s;
}
.header-wrapper .special-nav-item svg {
  width: 12px;
  height: 12px;
  position: relative;
  bottom: 1px;
  fill: #000000;
  transition: 0.3s;
}

.special-nav-item i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.special-nav-item:hover i {
  transform: translateX(5px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 10000;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.25s ease-in-out;
}

/* Position the hamburger lines */
.hamburger span:nth-child(1) {
  top: 0;
  transform-origin: center;
}

.hamburger span:nth-child(2) {
  top: 10px;
  transform-origin: center;
}

.hamburger span:nth-child(3) {
  top: 20px;
  transform-origin: center;
}

/* Animated state for hamburger */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #8A2422;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 9999;
}

.offcanvas-menu a {
  text-decoration: none;
  color: #ffffff;
  font-family: "ClashDisplay", sans-serif;
  font-weight: 500;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  font-size: 20px;
}

.offcanvas-menu.active {
  right: 0;
}

/* Dark overlay when submenu is open */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  transition: opacity 0.3s ease;
}

a.menu_item_header.mobile.special-nav-item svg {
  display: none;
}

.offcanvas-close {
  align-self: flex-end;
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* Hide the close button as we'll use the hamburger animation instead */
}

@media (max-width: 912px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.red_wrapper {
  background-color: #8A2422;
  position: absolute;
  z-index: -1;
  transform: rotate(45deg);
}

@media (min-width: 1601px) {
  .red_wrapper {
    width: 70vw;
    height: 50vw;
    right: -2vw;
    top: -35vw;
  }
}
@media (max-width: 1600px) and (min-width: 912px) {
  .red_wrapper {
        width: 850px;
        height: 675px;
        right: -134px;
        top: -195px;
  }
}
@media (max-width: 911px) and (min-width: 600px) {
  .red_wrapper {
    width: 480px;
    height: 480px;
    right: -170px;
    top: -175px;
  }
}
@media (max-width: 599px) and (min-width: 399px) {
  .red_wrapper {
    width: 280px;
    height: 280px;
    right: -170px;
    top: -75px;
  }
}
@media (max-width: 399px) {
  .red_wrapper {
        width: 240px;
        height: 240px;
        right: -136px;
        top: -58px;
	  
	  
  }
	
	.logo img {
		max-width: 130px;
	}
}
header {
  position: relative;
}

.gtranslate_wrapper {
	    position: relative;
    bottom: 0px;
	padding-right: 20px;
}

.lang-mobile {
	    position: relative;
    bottom: 6px;
}

.hamburger.active .lang-mobile {
	display: none;
}

@media (min-width: 912px) {
	.hamburger_wrapper {
		display: none !important; 
	}
}

.hamburger_wrapper {
	display: flex;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}/*# sourceMappingURL=header.css.map */