@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.container h1 {
  margin: 0px;
}

h4 {
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  background-color: #5784BA;
  position: fixed;
  width: 100%;
  z-index: 3;
}

.menu {
  margin-right: 30px;
}

.btnmenu {
  display: inline-flex;
  -moz-columns: 4;
       columns: 4;
  margin-right: 25px;
  width: 120px;
  height: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #5784BA;
  color: black;
  font-weight: 600;
}

.btnmenu::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: white;
  position: absolute;
  z-index: -1;
  right: 120px;
  transition: all 0.3s;
}

.btnmenu:hover::before {
  right: 0;
}

.logo {
  width: 140px;
  height: 70px;
}

.logo img {
  width: 140px;
  height: 70px;
}

footer {
  background-color: #F7F6CF;
  height: 100px;
  text-align: center;
  color: black;
  display: grid;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
}

.redirect {
  content: "";
  position: fixed;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #5784BA;
  bottom: 50px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.redirect img {
  width: 30px;
}

.btnFooter {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.CV {
  height: 40px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5784BA;
  color: white;
  font-weight: 600;
  box-shadow: 0px 0px 7px #959595;
}/*# sourceMappingURL=general.css.map */