/*================ Buttons ================*/

.btn {
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	text-align: center;
	outline: 0;
	line-height: 1.1;
	text-transform: uppercase;
}

.btn-l1 {
	background-color: #6df6ff;
	-webkit-border-radius: 50% 0px 50% 50%;
	-moz-border-radius: 50% 0px 50% 50%;
	border-radius: 50% 0px 50% 50%;
	width:40px;
	height:40px;
	display: inline-flex;
	align-items: center; 
	position:fixed;
	top:10px;
	right:10px;	
}

.btn-l1 img {
	margin-top: -2px;
	margin-left: -3px;
}

.btn-l1 img:nth-child(1) {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

.btn-l1 img:nth-child(2) {
	display: none;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

.btn-l1:hover {
	background-color: #202735;
	color: #fff;
}

.btn-l1:hover img:nth-child(2) {
	display: block;
}

.btn-l1:hover img:nth-child(1) {
	display: none;
}

.btn-l3, .btn-t3 {
	font-family: Open Sans, sans-serif;
	font-weight: 800;
	color: #fff;
	background-color: #D82342;
}

.btn-l3:hover, .btn-t3:hover {
	background-color: #6DF6FF;
	color: #202735;
}

.btn-l3 {
	font-size: 24px;
	padding: 15px 35px;
	margin: 10px 5px 0 5px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	width:250px;
	height:60px;
	/*text-transform: capitalize;*/
	-webkit-animation: pulse 3.5s infinite; /* Safari, Chrome and Opera > 12.1 */
	   -moz-animation: pulse 3.5s infinite; /* Firefox < 16 */
		-ms-animation: pulse 3.5s infinite; /* Internet Explorer */
		 -o-animation: pulse 3.5s infinite; /* Opera < 12.1 */
			animation: pulse 3.5s infinite;
}

.btn-t3 {
	font-size: 35px;
	line-height: 68px;
	margin: 0 5px 0 5px;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	width:360px;
	height:70px;
	/*text-transform: capitalize;*/
	-webkit-animation: pulse 3.5s infinite; /* Safari, Chrome and Opera > 12.1 */
	   -moz-animation: pulse 3.5s infinite; /* Firefox < 16 */
		-ms-animation: pulse 3.5s infinite; /* Internet Explorer */
		 -o-animation: pulse 3.5s infinite; /* Opera < 12.1 */
			animation: pulse 3.5s infinite;
			}
			

/*.btn-t3 {
	font-size: 25px;
	line-height: 50px;
	margin: 0 5px 0 5px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	width:70%;
	height:50px;
}*/