
		@keyframes zooming{
		0% {
			transform: scale(1);
			animation-timing-function: ease-out;
		}
		50% {
			transform: scale(1.3);
			animation-timing-function:linear;
		}
		100% {
			transform: scale();
			animation-timing-function: ease-in;
		}
		}

		.bike_ride_header_logo{
		display: flex;
		flex-direction: row;
		align-items: center;
		}
		.logo-box{
			margin-left: 6px;
		}
	.bike_ride_box{
		  background-color: #0009;
		  border: 1px solid #0000;
		  padding:30px;
		  padding-top:5px;
		  height:100%;
		  margin-top:65px;
		  width:100%;
  
	}
	.bike_ride_box .btn-primary{
		background-color: #d7014c;
		border-color: #ffffff;
		transition-duration: .3s;
	}
	.bike_ride_box .btn-primary:hover{
		background-color: #ffffff;
		color: #022859;
		border-color: #d7014c;
	}
	.bike-ride-wrapper{
		height:100vh;
		overflow:hidden;
		font-size: 20px;
		line-height: 25px;
	}
	
	.bike-ride-background{
	height:100%;
	background-image: url(../images/bike_ride_wrapper.jpg);
    background-size: cover;
    background-position: right;
    animation: zooming 30s infinite;
	}


	.flex-row {
	display:flex;
	flex-wrap:wrap;
	}
	.flex-col{
	margin:auto;
	}
	
	
	