body {
  background-color: #639;
  color: #fff
}

.navbar,
.bg-primary {
  background-color: #639 !important
}

.hidden-link {
  display: none
}

#message {
  padding: 15px;
  font-size: 16px;
  border-radius: 8px
}

.btn-primary {
  background-color: #639;
  border-color: #639;
  color: #fff;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 5px;
  transition: all .3s ease;
  box-shadow: 0 4px 6px #0000001a
}

.btn-primary:hover {
  background-color: #582f8b;
  border-color: #582f8b;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 8px #0003
}

.rebemolo-image {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover
}

.custom-button {
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 5px
}

.contact-heading {
  font-size: 32px;
  font-weight: 700;
  color: #639
}

.custom-input {
  padding: 15px;
  font-size: 16px;
  border-radius: 8px
}

.btn.contact-details {
  background-color: #639;
  color: #fff;
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center
}

.about-heading {
  font-size: 32px;
  font-weight: 700;
  color: #639
}

.custom-paragraph {
  font-size: 18px;
  color: #333
}

.service-item {
  padding: 30px;
  background-color: #fff;
  color: #333;
  border-radius: 5px;
  box-shadow: 0 2px 5px #0000001a;
  margin-bottom: 20px
}

.service-item:hover {
  background-color: #f8f9fa
}

footer {
  background-color: #582f8b
}

footer p {
  margin: 0
}

.social-links a {
  text-decoration: none
}

.social-links a:hover {
  text-decoration: none
}

.about-section,
.contact-section {
  background-color: #639;
  padding: 50px 0
}

hr {
  border-color: #fff;
  width: 80%;
  margin: 30px auto
}

.hero-jumbotron {
  background-color: #639;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(-50px);
  animation: fadeIn 0.5s forwards ease-in-out
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.animated-section {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInSection 1.5s forwards ease-in-out
}

@keyframes fadeInSection {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}