/* font-family: "Barriecito", system-ui; */
@import url('https://fonts.googleapis.com/css2?family=Barriecito&display=swap');

#hero{
  display: flex; flex-direction: row; align-items: center; justify-content: space-around;
  background: url(../assets/img/wild-dog-chase-gazelle.png); background-size: cover;
  height: 100%;
  flex-wrap: wrap;
  padding: 100px 0;
}

.hero-hero1 video{
  width: fit-content; height: 700px;
}
.hero-hero2{
  display: flex; flex-direction: column; align-items: center;
}
.hero-hero2 h1{
  font-family: "Barriecito", system-ui; font-size: 60px;
  color: #fff;
  letter-spacing: 2px;
}
.hero-social{
  margin: 10px 0;
}
.hero-social ul{
  display: flex; flex-direction: row;
  gap: 20px;
}
.hero-social ul li a img{
  height: 60px;
  border-radius: 10px;
  padding: 15px;
  background: rgba(30, 30, 30, 0.4);
  flex-wrap: wrap;
}

.address-box {
  display: flex; flex-direction: row; align-items: center;
  background: #fff;
}
.p-address {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 550px;
  font-size: 20px; 
  color: #000;
  padding: 0 10px;
}
.btn-address {
  font-family: "Barriecito", system-ui; font-size: 23px;
  color: #fff;
  border: none;
  padding: 18px;
  cursor: pointer;
  background: #000;
}

@media screen and (max-width: 1024px){
  #hero{
    flex-direction: column;
    background-position: 70%;
    gap: 100px;
  }
}
@media screen and (max-width: 700px){
  .hero-hero2{
    padding: 0 20px;
  }
  .hero-hero2 h1{
    flex-wrap: wrap;
    text-align: center;
  }
  .address-box{
    width: fit-content;
    max-width: 90vw;
  }
  .hero-hero1{
    display: flex; justify-content: center;
  }
  .hero-hero1 video{
    padding: 0 30px;
    max-width: 90%; height: 100%;
  }
}