/* 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 {
  margin-top: 10px;
  margin-left: -15px;
  width: 300px;
  height: 55px;
  flex-shrink: 0;
  display: block;
}

.logo-img img {
  max-width: 100%;
  max-height: 100%;
  height: 40px;
  width: 300px;
  display: block; /* removes unwanted white space */
  object-fit: contain; /* ensures the image scales down without distortion */
}

.burger-menu {
  margin-top: 12px;
  margin-right: 0px;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .logo-img {
    width: 200px;
    height: 40px;
  }
  .burger-menu {
    width: 40px;
    height: 40px;
  }
}

.header-rt-sd {
  display: flex;
  align-items: center;
  gap: 24px;
}

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


@media (max-width: 990px) {
  .logo-img {
    width: 200px;
    height: 40px;
  }
  .burger-menu {
    width: 40px;
    height: 40px;
	padding-left: 13px;
  }
}

.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 - 70px);
  max-height: 912px;
  flex-shrink: 0;
  background-image: url(images/Header/background.png);
  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: #ffffff; /* 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: #fff;
  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 {
  height: 13px;
  margin-left: -20px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.menu-logout > img {
  width: 13px;
  height: 13px;
  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: 200px;
    height: 60%;
  }

  .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) {
  header {
    padding: 0 15px;
  }

  .logo-img {
    width: 200px;
    height: 60%;
  }

  .header-rt-sd {
    gap: 18px;
  }

  .icon-img {
    width: 24px;
    height: 24px;
	margin-left: 100%;
  }

  .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) {

  .logo-img {
    width: 200px;
    height: 60%;
  }
  .header-rt-sd > .icon-img {
    display: none;
  }

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


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