

section{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1);
    transition-duration: 0ms;
    transform: translate(0px, 0px) translateZ(0px);
}

section:not(.s-normal){
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#boton{
    background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

@media screen and (min-width: 768px) and (max-width: 992px){
    .about{
        height: auto !important;
    }

}

.f-sc{
    min-height: 100vh;
}

.delivery{
    position: absolute;
    right: 5%;
    top: 15%;
    color: #ffffff;
}

.delivery .btn-delivery {
    padding: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    border: solid 2px #ffffff;
    color: #fff;
    border-radius: 0;
    background-color: transparent;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    width: 50%;
}

.delivery .btn-delivery:hover {
    background: #d8182a;
    color: #fff;
    border: solid 2px #d8182a;
    
}

.delivery .btn-delivery:hover span{
    animation: button-roll .3s forwards cubic-bezier(.165,.84,.44,1);
}

@keyframes button-roll{
    35% {
        transform: translateY(50px);
    }
    35.001% {
        transform: translateY(-50px);
    }
    100% {
        color: #fff;
        transform: translateY(0);
    }
}

@media screen and (max-width: 557px){
    .delivery{
        right: auto;
    }
    .delivery .btn-delivery {
        padding: 5px;
        font-size: 12px;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        border: solid 2px #ffffff;
        color: #fff;
        border-radius: 0;
        background-color: transparent;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
        width: 50%;
    }
}