*,body{
  margin:0;
  padding:0;
  font-family:"Arial", sans-serif;
  }
.header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding:20px 40px;
  border-bottom:1px solid gray;
  }
.header-nav{
  display:flex;
  gap: 40px; 
  }
.header-link{
  text-decoration:none;
  color: #111;
  text-transform:uppercase;
}
.hero{
  display:flex;
  flex-direction:column;
  gap: 30px;
  padding: 80px 0;
  }
.hero-container{
  padding: 0 80px;
  }
.hero-title{
  font-size: 55px;
  letter-spancing:1.3px;
  }
.hero-title--span{
  color:#006400;
  font-style:italic;
  }
.hero-list{
  list-style:none;
  display:flex;
  gap: 10px;
  margin-top:15px;
  }
.hero-item{
  background-color: #e3ffe3;
  color: #006400;
  padding: 5px 20px;
  width: 120px;
  text-align:center;
  border-radius:20px;
  }
.hero-galery{
  display:flex;
  max-width: 100%;
  padding: 0 50px;
  }
.hero-photo{
  width: 50%;
  }
.hero-photo-first-photo{
   border-top-left-radius:20px;
   border-bottom-left-radius:20px;
  }  
.hero-photo-second-photo{
  border-top-right-radius:20px;
   border-bottom-right-radius:20px;
  } 
  
  