@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
}

.display, .Navbar_Mobile_MenuActions ul li, .Navbar_Mobile_MenuActions ul, .Navbar_Mobile_MenuOptions ul, .Navbar_Mobile_Menu, .Navbar_Desktop, nav ul, .containerLogo, .containerHeader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.body--onMenuActiveMenu {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.containerHeader {
  height: 90px;
  background-color: #ff4747;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .containerHeader {
    height: 80px;
  }
}

.header-dark {
  background-color: #3a3b3c;
}
.header-dark .navbar-button-register {
  color: #3a3b3c;
}

.containerHeader--ActiveMobile {
  background-color: #3a3b3c;
}

@media screen and (max-width: 768px) {
  .containerLogo {
    z-index: 2;
    width: 100%;
  }
}
.containerLogo .Logo {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .containerLogo .Logo {
    width: 200px;
  }
}

nav {
  width: 100%;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  nav {
    width: auto;
  }
}
nav ul li {
  font-size: 1em;
  list-style: none;
  margin: 0 10px;
}
nav ul li a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.Navbar_Desktop {
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .Navbar_Desktop {
    display: none;
  }
}

.Navbar_Mobile,
.Navbar_Mobile_Menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .Navbar_Mobile,
  .Navbar_Mobile_Menu {
    display: block;
  }
}

.Navbar_Mobile_Menu {
  position: relative;
  z-index: 2;
  justify-content: flex-end;
  padding-right: 20px;
}
.Navbar_Mobile_Menu i {
  cursor: pointer;
  font-size: 2.1em;
  background-color: #fff;
  color: #3a3b3c;
  padding: 5px;
  border-radius: 10px;
}
.Navbar_Mobile_Menu .CloseMenuMobile {
  display: none;
}

.Navbar_Mobile_Menu--ActiveMobile .IconMenuMobile {
  display: none;
}
.Navbar_Mobile_Menu--ActiveMobile .CloseMenuMobile {
  display: flex;
}

.Navbar_Mobile {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background-color: #3a3b3c;
  position: fixed;
  z-index: 1;
  top: 0px;
  padding-top: 80px;
  bottom: 0;
  left: 0;
  right: 0;
}

.Navbar_Mobile--ActiveMobile {
  display: flex;
}

.Navbar_Mobile_MenuOptions ul {
  margin-left: 20px;
  flex-direction: column;
  align-items: flex-start;
}
.Navbar_Mobile_MenuOptions ul li {
  margin: 20px 0;
}

.Navbar_Mobile_MenuActions ul {
  flex-direction: column;
  margin-bottom: 10px;
  width: 100%;
}
.Navbar_Mobile_MenuActions ul li {
  width: 100%;
}
.Navbar_Mobile_MenuActions ul li a {
  width: 95%;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
}
.Navbar_Mobile_MenuActions ul li:first-child a {
  border: 2px solid #fff;
}
.Navbar_Mobile_MenuActions ul li:last-child {
  margin-top: 10px;
}
.Navbar_Mobile_MenuActions ul li:last-child a {
  background-color: #fff;
  color: #3a3b3c;
}

.Navbar_MenuActions ul li:last-child {
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
}

.navbar-button-register {
  font-weight: 600;
  color: #e94345;
}