.bk-1st {
    display: block;
    background-color: red;
    height: auto;
    width: 100%;
    padding: 5px;
    position: relative;

}

.bk-1st a {
    color: white;	
    font-size: 16px;
	font-weight: 600;
}

.bk-1st a:hover {
    color: white !important;
}

.bk-2nd {
    margin-right: 40px;
    padding: 5px 3px;
}

.bk-1st button {
    color: #FFFFFF;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.bk-2nd {
	overflow: hidden;
}

.bk-2nd a {
	display: inline-block;
	white-space: nowrap;
	margin: 0;
	padding: 0;
}

@supports (animation: transform 1s) {
    .bk-2nd a {
		animation: scrollText 15s cubic-bezier(0.07, 0.31, 1, 0.73) infinite;
    }
}

@keyframes scrollText {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}


@media (max-width: 615px) {
    .bk-1st a {
        font-size: 14px;
		animation: scrollText 10s cubic-bezier(.14,.5,1,.73) infinite;
    }

    .bk-2nd {
        padding: 0px;
    }
}


