* {
  scroll-behavior: smooth;
  font-family: "Font-Regular", sans-serif;
}

/* FONTS */
@font-face {
  font-family: "Font-Regular";
  src: url("../fonts/FiraSans-Regular.ttf");
}

@font-face {
  font-family: "Font-Bold";
  src: url("../fonts/FiraSans-Bold.ttf");
}

@font-face {
  font-family: "Font-Extra";
  src: url("../fonts/FiraSans-ExtraBold.ttf");
}

.f-regular {
  font-family: "Font-Regular", sans-serif;
}

.f-bold {
  font-family: "Font-Bold", sans-serif;
}

.f-extra {
  font-family: "Font-Extra", sans-serif;
  letter-spacing: 1;
  font-weight: 800;
}

/* COLORS */
.green {
  color: #8cc63f;
}
.border-green {
  border: 2px solid #8cc63f;
}
.bg-green {
  background-color: #8cc63f;
}
.orange {
  color: #f15a22;
}
.border-orange {
  border: 1px solid #f15a22;
}
.bg-orange {
  background-color: #f15a22;
}

/* HEADER */
#header {
  min-height: 100vh;
  background: url('../media/bg-header.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-attachment: fixed;
  background-size: cover;
}
.titulo{
  height: 70vh;
  width: 100%;
}

#header a {
  color: #fff;
}
/* QUEM SOMOS */
.sobre{
    width: 75%;
  }


/* CONTATO */
#email{
  background: url('../media/bg-email.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 455px;
  height: 459px;
  margin-top: -170px;
}
#telefone{
  background: url('../media/bg-telefone.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 455px;
  height: 459px;
  margin-top: -170px;
}

@media (max-width: 768px){
  #email{
    margin-top: -100px;
  }
  #telefone{
    margin-top: -100px;
  }

  .sobre{
    width: 100%;
  }
}

@media (max-width: 425px){
  #email{
    margin-top: 20px;
    width: 100%;
  }
  #telefone{
    margin-top: 20px;
    width: 100%;
  }

}