:root {
  --main: #003982;
  --sec: #a8a8a7;
  --light: #ffffff;
  --dark: #1c274c;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 222;
  max-width: 65px;
}

@keyframes move {
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
body {
  background: url(/img/bg.webp) no-repeat center center;
  background-size: cover;
}
html {
  font-size: 16px;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
}
a,
svg path,
button {
  transition: 0.3s;
}
.btn {
  background-color: #00e676;
  padding: 10px 20px;
  max-width: fit-content;
  text-align: center;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  max-width: 392px;
  width: 100%;
  color: var(--light);
  font-size: 1.56rem;
  position: relative;
}
.btn img {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.btn:hover {
  background-color: var(--main) !important;
}
.btn-merc {
  background-color: #fade00 !important;
  color: #ffffff !important;
}
@media only screen and (max-width: 420px) {
  .btn img {
    max-width: 30px;
  }
}
