@charset "UTF-8";
/* Third Eye Creative Styling */
.thirdLink {
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.75px;
	color: #727272;
	text-decoration: none;
	outline: none;
    position: relative;
    text-transform: uppercase;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
	text-shadow: none !important;
}

.thirdLink:hover {
	color: #4683a8;
	text-decoration: none;
}

.thirdLink:before {
	content: "";
    position: absolute;
    width: 108px;
    height: 2px;
    top: 78px;
    left: -32px;
    background-color: #4683a8;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.thirdLink:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

#thirdIcon {
	height:35px;
    width:auto;
    margin-top:0px;
    margin-right:5px;
    margin-left:5px;
}


@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px) {

	.thirdLink {
	font-size: 25px;
    margin-bottom: 50px;
}

	#thirdIcon {
	height: 85px;
}
}