* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: sans-serif;
  background: black;
}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: orange;
  color: black;
  flex-wrap: wrap;
}


.logo img {
  height: 80px;
}


nav a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}


nav a:hover {
  text-decoration: underline;
  transition: 1ms;
}



.featured {
  background-color: orange;
  display: flex;
  flex-wrap: wrap;
  margin: 12px;
  border-radius: 15px;
  
}

.featured .text,
.featured .video {
  flex: 250px;
  padding: 25px;
}


.featured .text {
  display: flex;
  flex-direction: column;
  
}


.featured button {
  align-self: center;
  margin-top: 30px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
}



.promos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

}


.promo {
  flex: 1 1 calc(50% - 20px);
  padding: 65px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  color: orange;
  font-size: 23px;
}



footer {
  margin: 5px;
  padding: 15px;
  background: #111;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}


footer .social img {
  width: 35px;
  margin-right: 5px;
}



footer .address {
  flex:100%;
  text-align: center;
}


@media (max-width: 1000px) {
  header {
    flex-direction: column;
    align-items: center;
  }
  nav {
    margin-top: 10px;
    text-align: center;
  }
  .featured {
    flex-direction: column;
  }
  footer form {
    flex-direction: column;
    align-items: flex-start;
  }
}
