*,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;
}
.photo{
  display:flex;
  max-width:100%;
  padding:50px 0;
}
.image{
  width:100%;
  height:100%;
}
.container{
  max-width:1280%;
  width:100%;
  padding: 0 15px;
  margin: auto;
  }
  .row{
   display:flex; 
   justify-content: space-between;
  }
  .form{
    display:flex; 
    flex-direction:column;
    max-width:610px;
    width:100%;
    gap:25px;
  }
  .form-input{
    display:block;
    padding: 10px 12px;
    border: 2px solid grey;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 14px;
    line-height:1.42;
    color: #555;
    }
  .form-button{
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 37px;
    cursor: pointer;
    border-radius: 2px;
    color: #fff;
    background-color:black;
  }
  .contacts{
    max-width:625px;
    width:100%;
    }
 .contacts-title{
   text-transform: uppercase;
   font-weight:700;
   color: #111;
   font-size: 18px;
   margin-bottom:20px;
 }
 .contacts-descriotion{
   color: #666;
   font-size: 14px;
   font-weight:400;
   margin-bottom:30px;
 }
    
    
    
    
    
    
    
    
    
    