@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}

html {
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
  background: #fff;
}

.header {
  transition: 0.3s ease;
  background-color: transparent;
}

.header.active {
  background-color: rgb(12, 11, 11);
  padding: 1rem 9%;
  box-shadow: 0 2rem 1rem rgba(0, 0, 0, 0.1);
}

.hero {
  background: url("../img/logo.jpeg") center/cover no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.whatsapp-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.5rem;
  z-index: 999;
}

.icon-social {
  font-size: 2rem;
  color: #000;
}

.icon-social:hover {
  font-size: 2.25rem;
  color: gray
}
.email-icon:hover {
  color: #0d6efd;
}

.footer {
    padding: 2.5rem 0;
    color: black;
    text-align: center;
    background-color: #f9f9f9;
    border-top: .05rem solid #e5e5e5;
}

.footer p:last-child {
    margin-bottom: 0;
}


