.background-metallic {
    background: linear-gradient(
        -45deg,
      #b0b0b0 10%,
      #dcdcdc 25%,
      #ffffff 50%,
      #dcdcdc 75%,
      #b0b0b0 90%
    );
  }

.scale-up-animation {
  animation: scaleUp 0.8s ease-in-out forwards;
  transform: scale(0);
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.5s;
}

.delay-3 {
  animation-delay: 0.8s;
}

.delay-4 {
  animation-delay: 1.1s;
}

@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

#whatsapp-icon{
  bottom: 10px;
  right: 5px;
}

.btn.btn-mami-light-blue {background: #1C5C9B; border-color: #1C5C9B; color: #ffffff}
.btn.btn-mami-light-blue:hover, .btn.btn-mami-light-blue:focus {background: transparent; border-color: #5da6f0; color: #5da6f0}

.home-block{
  font-size: 1.5rem;
  line-height: 30px;
}
.home-block:hover{
  transform: scale(1.1);

}

.menu-button{
  display: inline-block;
  width: auto;
}
.home-button{
  width: auto;
}


.mobile-only{
  display: none;
}
.desktop-only{
  visibility: visible;
  display: block;
}
.home-block-container{
  height: auto;
}

.h5{
  font-size: 32px;
  line-height: 40px;
}

.h6{
  font-size: 25px;
  line-height: 30px;
}

@media (max-width: 1024px) {
  .desktop-only{
    display: none;
  }
  .mobile-only{
    display: block;
  }
  .home-block-container{
    height: 210px;
  }

  .h5{
    font-size: 27px;
    line-height: 32px;
  }

  .h6{
    font-size: 22px;
    line-height: 27px;
  }
}

@media (max-width: 991px) {
  .h5{
    font-size: 24px;
    line-height: 30px;
  }

  .h6{
    font-size: 22px;
    line-height: 27px;
  }
}

@media (max-width: 767px) {
  .h5{
    font-size: 20px;
    line-height: 28px;
  }

  .h6{
    font-size: 18px;
    line-height: 23px;
  }
	  .menu-button{
    width: 160px;
  }
  .home-button{
    width: 200px;
  }
}