.colorful {
    -webkit-animation: color_change 1s infinite alternate;
    -moz-animation: color_change 1s infinite alternate;
    -ms-animation: color_change 1s infinite alternate;
    -o-animation: color_change 1s infinite alternate;
    animation: color_change 1s infinite alternate;
}

@-webkit-keyframes color_change {
    from { color: #7D7FBD; }
    to { color: #F58220; }
}
@-moz-keyframes color_change {
    from { color: #7D7FBD; }
    to { color: #F58220; }
}
@-ms-keyframes color_change {
    from { color: #7D7FBD; }
    to { color: #F58220; }
}
@-o-keyframes color_change {
    from { color: #7D7FBD; }
    to { color: #F58220; }
}
@keyframes color_change {
    from { color: #7D7FBD; }
    to { color: #F58220; }
}


.bol_red {
    background-color: red;
}

.bol_blue {
    background-color: #1E4382;
}




.standFont {
    font-family: "granstander_cleanregular", sans-serif;
}

/* BEGIN CARD DESIGN */
.hero {
    display: inline-block;
    position: relative;
    width: 100%;

    height: 400px;
    border-radius: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);

}

.hero-profile-img {
    width: 100%;
}

.hero-description-bk {
    background-image: linear-gradient(0deg , #7D7FBD, #1E4382);
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: -5px;
    height: 65%;
    width: 108%;
    transform: skew(19deg, -9deg);
}

.second .hero-description-bk {
    background-image: linear-gradient(-20deg , #bb7413, #e7d25c)
}

.hero-logo {
    height: 80px;
    width: 80px;
    border-radius: 20px;
    background-color: #fff;
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
}

.hero-logo img {
    height: 100%;
}

.hero-description {
    position: absolute;
    color: #fff;
    left: 150px;
    bottom: 26%;
}

.hero-description > span {
    color: #F58220;
}
.hero-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    bottom: 10%;
    padding: 10px 20px;
    border: 1px solid #fff;
}

.hero-btn a {
    color: #fff;
}

.hero-date {
    position: absolute;
    color: #fff;
    left: 30px;
    bottom: 10%;
}
/* END CARD DESIGN */


