body {
  font-family: Raleway;
  line-height: 2.6rem;
  color: #797979;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
}
html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
}

html,
body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
}

h2 {
  font-size: 2.4rem;
}
p {
  font-size: 1.6rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 2rem 0;
  color: #212121;
}

h1 {
  font-size: 4.5rem;
  line-height: normal;
  font-weight: 700;
}

h2 {
  font-size: 4rem;
  line-height: normal;
  font-weight: 700;
  margin-top: 2rem;
}

h3 {
  font-size: 3rem;
  font-weight: 700;
  line-height: normal;
}

h4 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: normal;
}

h5 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: normal;
}

h6 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}

/* TOPBAR */
.top-bar {
  display: flex;
  justify-content: flex-end;
  color: #2c2c2c;
  gap: 1rem;
  font-size: 1.2rem;
  margin-right: 3rem;
}
.top-bar-wraper {
  background-color: rgba(80, 147, 211, 0.8);
  padding-right: 2rem;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1200;
  margin-left: 27em;
}

.top-bar a {
  color: #2c2c2c;
  text-decoration: none;
}

.top-bar-item {
  height: 3rem;
}

.top-bar-item a {
  line-height: 30px;
  vertical-align: middle;
}

.top-bar-item span {
  line-height: 30px;
  vertical-align: middle;
}

/* SIDEBAR */
.sidebar-items {
  display: grid;
  grid-template-columns: 7rem 21rem;
  grid-auto-rows: 6rem;
  row-gap: 0.1rem;
  background-color: black;
  border: 1px solid black;
}
.sidebar {
  background-color: #212121;
  max-width: 28rem;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1300;
}
.sidebar-items-icon {
  width: 7rem;
  height: 6rem;
  background-color: #2c2c2c;
  color: #5093d3;
}

.sidebar-items-icon span {
  margin: auto;
  margin-top: 1.3rem;
  margin-left: 1.8rem;
  font-size: 3rem;
}
.sidebar-items-text {
  width: 21rem;
  background-color: #212121;
  color: white;
  cursor: pointer;
}

.sidebar-items-text:hover {
  background-color: #5093d3;
  color: white;
}

.sidebar-items-text p {
  margin-left: 1rem;
}
.sidebar-item {
  display: flex;
  margin-bottom: 0.2rem;
}

.sidebar-item:hover {
  background-color: #5093d3;
  z-index: 1000;
}

.logo {
  background-color: #212121;
  padding: 2rem 1rem;
}
.logo img {
  width: 100%;
}
.sidebar-items-icon-active {
  background-color: #5093d3;
  color: white;
}

/* FOOTER */
/* .container-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: white;
  background-color: rgb(0 0 0 / 90%);
  z-index: 1000;
  position: fixed;
  bottom: 0;
  width: 100%;
  margin-left: 2.7 rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
} */

.footer-contact-data a {
  text-decoration: none;
  display: block;
  font-size: 1.2rem;
  color: white;
}
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #5093d3;
  color: #fff;
  border-radius: 1rem;
  text-align: center;
  border-radius: 1rem;
  padding: 1.6rem;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 3rem;
  font-size: 1.7rem;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#snackbarAlert {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: red;
  border-radius: 1rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  padding: 1.6rem;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 3rem;
  font-size: 1.7rem;
}

#snackbarAlert.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 3rem;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 3rem;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.mobile-nav {
  position: absolute;
  top: 0;
  right: -70px;
  font-size: 2.4rem;
  background-color: black;
  color: white;
  display: none;
}
.mobile-nav span {
  background-color: transparent;
  display: none;
}
.mobile-nav-active {
  display: block;
}
.top-nav-bar-container {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 99;
}
.top-nav-bar-container-left {
  display: flex;
  flex-direction: row;
}
.top-nav-bar-item-left {
  border: none;
  background-color: transparent;
  color: white;
}
/* .top-nav-bar-item-left span {
  background-color: transparent;
  display: none;
} */
.mask {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255, 0.9);
  display: none;
}
