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

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: calc(1em + 0.5vw);
}

/*------ START header ----------------*/
header {
  width: 100%;
  min-height: 350px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 30px;
  justify-content: end;
  align-items: end;
  border-radius: 0 0 0.5em 0.5em;
}

#navbar {
  width: 100%;
  height: 90px;
  background: #fff;
  opacity: 0.7;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 1);
  border-radius: 0 0 0.5em 0.5em;
  border-bottom: 1px solid #7e7e7e;
}

.nav-bar {
  margin: 0px auto 0px auto;
  padding: 5px 0px;
  width: 70%;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
}

#navbar a {
  text-decoration: none;
  font-size: 20px;
  color: #000;
  font-weight: bold;
  color: #000;
  padding: 10px 20px;
  border: 1px solid #e9f4fb;
  border-radius: 25px;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
  border: 1px solid #000;
  border-radius: 25px;
}

#navbar.sticky a:hover {
  background-color: rgba(221, 221, 221, 0.6);
}

#navbar.sticky a {
  border: 1px solid #7e7e7e !important;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 1 !important;
}

.sticky+.content {
  padding-top: 60px;
}

.img-logo {
  width: 80px;
}

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

/*------END header ---------------------*/

footer {
  display: flex;
  padding: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #c9c8c8;
  box-shadow: 0 0 10px #444;
}

footer .nav-footer {
  display: flex;
  padding: 16px 0px 12px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

footer .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

footer .logo-wrap a {
  display: flex;
  padding: 7px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 43px;
  border: 1px solid #000;
}

footer .text-wrap {
  display: flex;
  padding: 9px 0px;
  justify-content: center;
  align-items: center;
  gap: 29px;
}

footer .text-wrap a {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}