
body {
  margin: 0;
  padding: 0;
}
p{
  font-family: sans-serif;
  margin-bottom: 0;
  margin-top: 0;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: normal;
  margin-bottom: 40px;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  box-shadow: 1px 1px 8px rgb(67, 67, 67, 0.1);

  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1000;
  height: 70px;
}

.header-left {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

.text-header {
font-size: 12px;
color: gray;
}

.text-header-below {
margin-top: 2px;
font-size: 16px;
}

.header-right {
display: flex;
flex-direction: row;
gap: 30px;
}

.header-text {
font-weight: 520;
font-size: 16px;
background-color: white;
border: none;
color: gray;
cursor: pointer;
}

.header-text:hover {
  transition: 0.3s;
  color: rgb(252, 65, 73);
}

.header-text.active {
  color: rgb(252, 65, 73);
}


.logo {
  height: 50px;
  cursor: pointer;
  margin-right: 10px;
}



.hamburger {
  display: none;
  flex-direction: column;
  width: 25px;
  z-index: 1;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  background-color: rgb(252, 65, 73);
  height: 3px;
  width: 100%;
  border-radius: 5px;
}

.nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  background-color: white;
  padding: 20px 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 999;
  padding: 20px 20px 20px 20px;
}

.nav a {
  font-size: 18px;
  color: rgb(252, 65, 73);
  font-family: sans-serif;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-right {
    display: none;
  }

  .nav.active {
    position: fixed;
    background-color: white;
    visibility: visible;
    opacity: 1;
    display: flex;
  }

}
