/* Button Style */

.btn-magi-blue-big{
	font-size: 18px;
	color: white;
	text-decoration: none;
	background-color: #4F98CB;
	padding: 12px 16px 12px 24px;
	border-radius: 28px;
	transition: all ease 0.3s;
}

.btn-magi-blue-big:hover{
	background-color: #206494;
}


.btn-magi-green-big{
	font-size: 18px;
	color: white;
	text-decoration: none;
	background-color: #839C4C;
	padding: 12px 16px 12px 24px;
	border-radius: 28px;
	transition: all ease 0.3s;
}

.btn-magi-green-big:hover{
	background-color: #546D1F;
}

.btn-magi-yellow-big{
	font-size: 18px;
	color: white;
	text-decoration: none;
	background-color: #EFBB26;
	padding: 12px 16px 12px 24px;
	border-radius: 28px;
	transition: all ease 0.3s;
}

.btn-magi-yellow-big:hover{
	background-color: #B08710;
}

.btn-white-outline{
	font-size: 18px;
	color: white;
	text-decoration: none;
	padding: 12px 16px 12px 24px;
	border-radius: 28px;
	border: 1px solid #FFFFFF;
	transition: all ease 0.3s;
}

.btn-white-outline:hover{
	background-color: rgba(0, 0, 0, 0.25);
	border: none;
}

.btn-social-icon{
	display: flex;
	width: fit-content;
	align-items: center;
	font-size: 18px;
	color: white;
	text-decoration: none;
	padding: 6px 6px 6px 24px;
	border-radius: 28px;
	border: 1px solid #FFFFFF;
	transition: all ease 0.3s;
}

.btn-social-icon img{
  margin-left: 14px;
}

.btn-social-icon:hover{
	background-color: #839C4C;
	border: 1px solid #FFFFFF;;
}



