@import "https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap";
.wa-button {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 1000;
  animation: wa-button-bounce infinite 10s;
}
.wa-button svg {
  width: 64px;
}
@media (max-width: 480px) {
  .wa-button {
    bottom: 24px;
    right: 16px;
  }
  .wa-button svg {
    width: 48px;
  }
}

@keyframes wa-button-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  1% {
    transform: translateY(-10px);
  }
  3% {
    transform: translateY(5px);
  }
  5% {
    transform: translateY(-7px);
  }
  7% {
    transform: translateY(0);
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}

.hero-section {
  background-color: #222;
  background-image: url("/img/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 40px 0;
  min-height: 75vh;
  display: grid;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-section {
    font-size: 18px;
  }
}
.hero-section__wrapper {
  max-width: 420px;
}
.hero-section__logo {
  width: 120px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hero-section__logo {
    width: 150px;
    margin-bottom: 32px;
  }
}
.hero-section__title {
  margin: 0;
  font-family: "Poppins";
  line-height: 1;
  font-size: 28px;
}
@media (min-width: 768px) {
  .hero-section__title {
    font-size: 36px;
  }
}
.hero-section__button {
  display: inline-block;
  background: #104C99;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 99px;
}
@media (pointer: fine) {
  .hero-section__button:hover {
    background: #08336a;
  }
}

.process-section {
  background: #DEE1E1;
  padding: 80px 0;
}
.process-section__title {
  text-align: center;
  font-family: "Poppins";
  margin: 0;
}
@media (min-width: 768px) {
  .process-section__title {
    font-size: 36px;
  }
}

.process-list {
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .process-list {
    display: flex;
  }
}
.process-list__title {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: normal;
  font-family: "Poppins";
  font-size: 20px;
}
@media (min-width: 768px) {
  .process-list__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.process-list li {
  flex: 1;
}

footer {
  background: #104C99;
  padding: 20px 0;
  color: white;
  text-align: center;
}

.client-section {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .client-section__title {
    font-size: 36px;
  }
}

.logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.logo-list li {
  flex: 1 1 200px;
  text-align: center;
}
@media (max-width: 480px) {
  .logo-list li {
    flex: 1 1 150px;
  }
}
.logo-list img {
  display: block;
  max-width: 180px;
  margin: auto;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 480px) {
  .logo-list img {
    max-width: 150px;
  }
}