/* AzoSans-Thin */
@font-face {
  font-family: "Azo Sans Thin";
  src: url("Azo-Sans/Rui-Abreu-AzoSans-Thin.otf");
}

/* AzoSans-Regular */
@font-face {
  font-family: "Azo Sans Reg";
  src: url("Azo-Sans/Rui-Abreu-AzoSans-Regular.otf");
}

/* AzoSans-Medium */
@font-face {
  font-family: "Azo Sans Med";
  src: url("Azo-Sans/Rui-Abreu-AzoSans-Medium.otf");
}

/* AzoSans-Light */
@font-face {
  font-family: "Azo Sans Light";
  src: url("Azo-Sans/Rui-Abreu-AzoSans-Light.otf");
}

/* AzoSans-Bold */
@font-face {
  font-family: "Azo Sans Bold";
  src: url("Azo-Sans/Rui-Abreu-AzoSans-Bold.otf");
}

/* AzoSans-Black */
@font-face {
  font-family: "Azo Sans Black";
  src: url("Azo-Sans/Rui-Abreu-AzoSans-Black.otf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
header {
  width: 100%;
  height: 55px;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.25);
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  z-index: 99;
}

.logo-img {
  background-size:contain;
  width: 140px;
  height: 45px;
  flex-shrink: 0;
}

.header-rt-sd {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /*align-items: right;*/
  gap: 24px;
  justify-content: right; /* or flex-end, depending on design */
}

.icon-img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  cursor: pointer;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.burger-menu > div {
  width: 30px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 3px;
  background: #000;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-content {
  width: 301px;
  height: calc(100vh - 50px);
  max-height: 912px;
  flex-shrink: 0;
  background-color: #041E3C;
  position: fixed;
  top: 55px;
  display: flex;
  right: -100%;
  z-index: 99;
  padding: 59px 47px 36px 66px;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease all;
  box-shadow: -5px 1px 7px #00000044;
}
.menu-content a {
  padding: 10px;
  text-decoration: none;
  color: black;
  position: relative;
}

.menu-content a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px; /* Adjust thickness of the vertical line */
  background-color: transparent; /* Change to desired color */
  transition: background-color 0.3s ease;
}

.menu-content a:hover::before,
.menu-content a.selected::before {
  background-color: #CBDB29; /* Change to desired hover color */
}
.menu-content a.active {
  position: relative;
}


.menu-content > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.menu-content > div > a {
  margin-left: -20px;
  color: #ffffff;
  font-family: "Azo Sans Reg";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
  text-decoration: none;
}

.menu-logout {
  margin-left: -20px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.menu-logout > img {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  object-fit: cover;
}

.menu-logout > p {
  color: #fff;
  font-family: "Azo Sans Reg";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.close-menu {
  width: 100%;
  height: 100vh;
  background: transparent;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  display: none;
}

.show {
  right: 0px;
}

@media (max-width: 1370px) {
  .logo-img {
    width: 157px;
    height: 56px;
  }

  .icon-img {
    width: 30px;
    height: 30px;
  }

  .burger-menu {
    gap: 6px;
  }

  .menu-content > div:first-child {
    gap: 32px;
  }

  .menu-content {
    padding: 44px 47px 30px 66px;
  }
}

@media (max-width: 850px) {
	
  .menu-content {
    padding: 44px 20px 30px;
    align-items: center;
  }

  .menu-content > div > a {
    font-size: 17px;
    display: flex;
    justify-content: center;
    text-align: center;
  }
	
@media (max-width: 650px) {

  .logo-img {
    width: 120px;
    height: 98%;
  }

  .icon-img {
    width: 24px;
    height: 24px;
  }

  .burger-menu > div {
    width: 24px;
    height: 3px;
  }

  .menu-content {
    width: 260px;
  }

  .menu-content > div:first-child {
    gap: 28px;
  }

  .menu-content > div > a {
    font-size: 15px;
  }
}

@media (max-width: 400px) {

  .burger-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
  }

  .menu-content {
    width: 210px;
    padding: 44px 0 30px;
  }
}