:root {
  --main-size: 16px;
  --main-weight: 500;
  --weight-regular: 400;
  --weight-semi: 600;
  --font-family: "Poppins", sans-serif;
  --main-color: #ef363b;
  --box-shadow: 0 0 10px #b2b2b2;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
button{
  cursor: pointer;
}
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body {
  font-family: var(--font-family);
  background-color: #55A4E1 !important;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  margin: 0;
}
header {
  width: 98%;
  height: 80px;

  margin-top: 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: fixed;
  left: 1%;
  top: 0;
  z-index: 99;
}
header .logo, .logo-menu {
  width: 105px;
  height: 75%;
}

.logo-menu{
  display: none;
}
nav {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #00c4fd40;
  border-radius: 40px;
  padding: 0 30px;
}
header a {
  width: fit-content;
  height: fit-content;
  text-transform: capitalize;
  font-size: var(--main-size);
  font-weight: var(--main-weight);
  color: #fff;
}

.lang,
.aside-lang {
  width: 5%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.lang {
  background: #1f5a88c2;

  border-radius: 40px;
  width: 100px;
  height: 90%;
}
header span {
  font-size: var(--main-size);
  font-weight: 600;
  color: #fff;
}
.globe-icon {
  color: #fff;
}
header .active,
header a:hover {
  color: #FFF;
text-shadow: 0px 0px 7px #142265;
  transition: all 400ms;
}
#menu-bar {
  display: none;
  font-size: 30px;
  height: 35px;
  color: #fff;
}
header aside {
  width: 200px;
  height: 100vh;
  position: fixed;
  right: 0;
  transform: translateX(150%);
  top: 0;
  transition: transform 300ms linear;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 9;
  box-shadow: 0 15px 30px #d2d2d2;
  background-color: #fff;
}
#close-bar {
  font-size: 30px;
}
.aside-nav {
  width: 100%;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
header aside a,
.aside-lang > span {
  color: #000;
}
.aside-lang {
  width: 50%;
  height: 10%;
}
.aside-toggle {
  transform: translateX(0);
}
#aside-blur {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#aside-blur.visible {
  opacity: 0.3;
  pointer-events: all;
}
section {
  margin-top: 100px;
}
@keyframes navUnderLine {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@media (max-width: 850px) {
  nav,
  .lang {
    display: none;
  }
  #menu-bar {
    display: inline;
  }
  .logo-menu{
    display: block;
  }
  header{
     background: #00c4fd40;
  border-radius: 40px;
  padding: 0 30px;
  justify-content: space-between;
  }
  header .logo, .logo-menu{
      margin: 0 30%;
  }
}
