.container {
    padding: 0;
}

i {
    font-size: x-large;
    color: #072149;
}

.yontem-text {
    margin-top: 30px;
    margin-bottom: 15px;
}

.ribbon5 {
    display: block;
    width: calc(100% + 20px);
    height: 70px;
    line-height: 70px;
    text-align: center;
    margin-left: -10px;
    margin-right: -10px;
    background: #0E0C0D;
    color: #FFF;
    position: relative;
    top: 0px;
    font-size: 1.3rem;
}

.ribbon5:before,
.ribbon5:after {
    content: "";
    position: absolute;
}

.ribbon5:before {
    height: 0;
    width: 0;
    bottom: -10px;
    left: 0;
    border-top: 10px solid #072149;
    border-left: 10px solid transparent;
}

.ribbon5:after {
    height: 0;
    width: 0;
    right: 0;
    bottom: -10px;
    border-top: 10px solid #072149;
    border-right: 10px solid transparent;
}

/*top title css*/
button {
    display: block;
    position: relative;

    border: 0;
    cursor: pointer;
    background: #9ccc65;
    color: white;
    border-radius: 3px;
    font-size: 20px;
    padding: 15px 25px;
    outline: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    height: 80px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 0px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #28bf3c 0%, #03a2be 100%);
    -webkit-box-shadow: 0px 10px 30px #bfcfee;
    box-shadow: 0px 10px 30px #bfcfee;
    border: 0;
    width: 100%;
    margin-bottom: 1.5rem !important;
}

button.shinyx {
    background: #9ccc65;
    background: linear-gradient(-45deg, #0DC143 50%, #f1e49f 60%, #0DC143 70%);
    background-size: 600% 100%;
    -webkit-animation: shinex 10s infinite;
    animation: shinex 10s infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}



@-webkit-keyframes shinex {
    0% {
        background-position-x: 400%;
    }

    50% {
        background-position-x: 0%;
    }

    100% {
        background-position-x: -400%;
    }
}

@keyframes shinex {
    0% {
        background-position-x: 400%;
    }

    50% {
        background-position-x: 0%;
    }

    100% {
        background-position-x: -400%;
    }
}