.hero-container {
  width: 90%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-header{
  width: 200px;
  height: 150px;
  object-fit: contain;
  position: relative;
  left: -70px;
}

.hero-header{
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header-side{
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.header-button {
  padding: 12px 18px;
  font-size: 18px;
  border: solid 2px rgb(29, 147, 220);
  border-radius: 24px;
  background-color: transparent;
  color: rgb(29, 147, 220);
  letter-spacing: 0.8px;
  transition: 0.3s;
  cursor: pointer;
}

.header-link{
font-size: 18px;
font-weight: 700;
color: rgb(29, 147, 220);
cursor: pointer;
transition: 0.5s;
}
.header-link:hover{
  color: black;
}
.header-link:active{
  color: rgb(142, 142, 142);
}

.header-button:hover, .body-button:hover {
  background-color: rgb(29, 147, 220);
  color: white;
}
.header-button:active {
  background-color: rgb(22, 106, 159);
  border-color:  rgb(22, 106, 159);
  color: white;
  transition: none;
}
.hero-info {
  margin-top: 100px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1 {
  text-align: center;
  font-size: 40px;
}
h2 {
  text-align: center;
  font-weight: 500;
}
.photo-container {
  margin-top: 50px;
  height: 200px;
  width: 200px;
  border-radius: 700px;
  background-color: rgb(29, 147, 220);
  display: flex;
  justify-content: center;
  overflow: hidden;
  object-fit: cover;
}
.photo-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  bottom: -10px;

}
.hero-footer{
  width: 100%;
  height: 350px;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: end;

}
.hero-footer-img {
  width: 900px;
  object-fit: contain;
}