@charset "utf-8";
/* CSS Document */


@media (max-width: 575px){
	

	
	.etransit_text {
	padding: 5px !important;
	}
	
	.hero_link_btn {

	line-height: 30px !important;
	margin-top: 0px !important;

}

.hero_link_btn-three {

	font-size: 15px !important;
	height: 30px !important;
	}


	

}




.etransit_logo {
    width: 35%;
	height: 10%;
	z-index: 200;
	position: absolute;
	display: inline-block;
	top: 10%;
	left: 55%;
	background-image:url("/media/e-transit-logo.png");
	background-size: cover;
	background-repeat: no-repeat;
	animation-name: etransit;
    animation-duration: .75s;  
	animation-timing-function: ease-out;
}

@keyframes etransit {
  from {top: 40%;  opacity: 0;}
  to {top: 10%;  opacity: 1;}
}

.etransit_text {
    width: 35%;
	height: auto;
	z-index: 210;
	position: absolute;
	display: inline-block;
	top: 23%;
	left: 55%;
	padding: 10px 20px 20px 20px;
	font-family: "Helvetica Neue", Helvetica, Arial;
	font-size: 15pt;
	color: #fff;
	background-color:hsla(203,100%,28%,.75); 
	background-size: cover;
	background-repeat: no-repeat;
	animation-name: etransit_text;
    animation-duration: .75s;  
	animation-timing-function: ease-out;
}

@keyframes etransit_text {
  from {top: 90%;  opacity: 0;}
  to {top: 23%;  opacity: 1;}
}


.hero_link_btn {

	text-align: center;
	cursor: pointer;
	margin-top: 10px;
	width: 100%;
	line-height: 50px;

}

.hero_link_btn-three {
	color: #fff;
	transition: all 0.5s;
	position: relative;
	text-transform: uppercase;
	font-size: 20px;
	height: 50px;
	}

.hero_link_btn a {
	text-decoration: none;
	color: #fff;	
}

.hero_link_btn a:hover {
	text-decoration: none;
	color: #fff;	
}

.hero_link_btn-three::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	border: solid 2px #f6a704;
	transition: all 0.3s;
}
.hero_link_btn-three:hover::before {
	opacity: 0 ;
	transform: scale(0.5,0.5);
}
.hero_link_btn-three::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 220;
	opacity: 0;
	transition: all 0.3s;
	border: 1px solid #fff;
	transform: scale(1.2,1.2);
}
.hero_link_btn-three:hover::after {
	opacity: 1;
	transform: scale(1,1);
	color: #fff;

}