@-webkit-keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
.button{
    transition: all .3s; /*Animation */
}
.button:hover{
    transform: scale(1.15);
    text-decoration: none;
}
.btn-std{
    text-decoration: none;
    border-radius: 25px;
    transition: transform .3s; /* Animation */
    border: none;
}


.button .btn-header{
    height: 50px;
    width: 140px;
    padding: 0px;
    text-decoration: none;
    border-radius: 25px;
    transition: transform .3s; /* Animation */
    border: none;
}
.btn-std:before{
    content: attr(data-name);
}

.btn-std:hover{
    text-decoration: none;
}
.btn-std img{
    padding-left: 15px;
    padding-bottom: 3px;
}

.button .btn-yellow{
    background-color: #FCBA2D;
    color: #592D82;
    font-weight: 100;
}
.button .btn-nl{
    background-color: #FCBA2D;
    color: #592D82;
    font-weight: 100;
    height: 50px;
    width: 164px;
}
.button .btn-yellow:hover{
    background-color: #fff;
    text-decoration: none;
    color: #592D82;

}
.button .btn-purple{
    color: #fff;
    background-color: #592D82;
    font-size: 1.25rem;
    font-weight: 100;
    height: 56px;
    width: 266px;
    border-radius: 28px;
    
}
.button .btn-purple:hover{
    color: #fff;
    text-decoration: none;
}

.button .circle-btn{
    border: 1px solid #592D82;
    border-radius: 100%;
    display: inline-block;
    background-color: transparent;
    width: 11px;
    height: 11px;
    margin-left: 40px;
    margin-top: 7px;
    transition: transform .3s; /* Animation */
}
p .circle-btn{
    border: 1px solid #fff;
    border-radius: 100%;
    display: inline-block;
    background-color: transparent;
    width: 5px;
    height: 5px;
    margin: 3px 20px;
}
.button-small{
    position: fixed;
    top: 40px;
    right: 40px;
    transition: all .3s; /*Animation */
    z-index: 999;
}
.button-small .btn-header-small{
    height: 50px;
    width: 50px;
}

.button-small .btn-header-small img{
    padding-left: 0;

}
.button-small .btn-header-small:before{
    display: none;
}
.button-scroll-down{
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
}
.button-scroll-down a{
    height: 32px;
    widows: 18px;
    cursor: pointer;
}
    
@media (min-width: 768px) { 
    #header .ticket{
        position: absolute;
        top: 57px;
        right: 94px;
        transition: all .3s; /*Animation */
    }

}
@media (max-width: 1024px) { 
    .button-scroll-down{
        display: none;
    }

}