:root {
  --main: ;
  --sec: ;
  --light: ;
  --dark: ;
}
.container {
  max-width: 1400px;
  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);
  }
}

html {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
a,
svg path,
button {
  transition: 0.3s;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.125em;
}

h3:after {
  content: "";
  width: 150px;
  height: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  background: linear-gradient(
    89.96deg,
    #c51515 6.07%,
    rgba(197, 21, 21, 0) 104.84%
  );
}

h4 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
}

.btn {
  padding: 8px 25px;
  text-align: center;
  color: #fff;
  background-color: #ec1f25;
  border-radius: 10px;
  max-width: fit-content !important;
  font-size: 1.875rem;
  font-weight: 700;
}
@media only screen and (max-width: 490px) {
  .btn {
    padding: 8px 15px;
    font-size: 1.275rem;
  }
}
