@charset "UTF-8";
/* Third Eye Creative Styling */
.thirdLink:link, .thirdLink:focus, .thirdLink:visited {
	color: #14a2dc;
	font-weight: 500;
    font-size: 65%;
    text-decoration: none;
	text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s;
	outline: none;
    position: relative;
    padding: 0 10px;
}

.thirdLink:hover {
	color: #83d5cc;
    transition: 0.3s;
}

.thirdLink:after {
	content: "";
    position: absolute;
    width: calc(100% - 20px);
    bottom: -5px;
    left: 10px;
    height: 2px;
    background-color: #83d5cc;
    opacity: 0;
    transition: opacity 300ms, transform 300ms;
}

.thirdLink:hover:after {
    opacity: 1;
    transform: translate3d(0, 0.2em, 0);
}

.thirdLink::after {
  opacity: 1;
  transform: scale(0);
  transform-origin: center;
}

.thirdLink:hover::after,
.thirdLink:focus::after{
  transform: scale(1);
}

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


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

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

	#thirdIcon {
	height: 110px;
}
}