/* ===============================
        ABOUT PAGE
=============================== */

.hero-about{
  height:350px;
  background-image:url("../images/home/hero_roof.webp");
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  position:relative;
}

.hero-about::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}

.hero-about h1{
  font-size:60px;
  font-weight:700;
  position:relative;
  z-index:1;
}

.about{
  max-width:900px;
  margin:60px auto 80px;
  padding:0 20px;
  color:#555;
  line-height:1.7;
}

.about .btn-black{
  display:block;
  width:fit-content;
  margin:50px auto 0;
}

@media (max-width: 768px){
	
  .hero-about{
    height:300px;
    padding:20px;
  }

  .hero-about h1{
    font-size:34px;
    line-height:1.2;
    padding:0 20px;
  }

  .about{
    margin:40px auto 60px;
    padding:0 18px;
    line-height:1.5;
  }

  .about .btn-black{
    margin-top:35px !important;
  }
}

