@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delaySleep100 {
  animation-delay: 0.1s;
}
.delaySleep200 {
  animation-delay: 0.2s;
}
.delaySleep300 {
  animation-delay: 0.3s;
}
.defaultAnimation{
  opacity: 0;
  transform: translateY(20px);
}
.animationRun{
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
}


.btn{
    padding: 10px 20px 10px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    cursor: pointer;
    transition:all 0.3s ease;
    text-decoration: none;
} 
.btn-primary{
    background-color: #c2410c;
    color: white;
}
.btn-primary:hover{
    background-color: #c27e63;
}

.btn-secondary{
    color: black;
    border: 1px solid #a7a7a7;
}
.btn-secondary:hover{
    border-color: black;
}

.btn-WhatsApp{
  background-color: #40c351;
  color: white;
}
.btn-Telegram{
  background-color: #009dfe;
  color: white;
}

.btn-WhatsApp:hover{
  background-color: #a7beaa;
}

.btn-Telegram:hover{
  background-color: #88c9f1;
}





.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
