<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
	--wtm-color-white: #fff;
	--wtm-color-red : #D00000;
	--wtm-color-yellow: #ffba08;
	--wtm-color-light_blue: #3F88C5;
	--wtm-color-dark_blue: #032B43;
	--wtm-color-green: #136F63;
	--wtm-color-black:#000000;
}
/* Team Member */

.team-member-socials{
    display: flex;
    margin-top: 15px;
}
.team-member-socials a {
    color: var(--wtm-color-white);
}
.team-member-socials a{
	background-color: var(--wtm-color-light_blue);
	font-size: 15px;
	display: block;
	border-radius: 50%;
	height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 5px;
}
.team-member-socials a:hover{
    transition: .5s ease;
    background-color: var(--wtm-color-dark_blue);
}
/* Other info */

.team-member-other-info {
    margin: 10px 0;
    display: flex;
}

.team-member-other-info .fas{
	font-size:18px;
	color:var(--wtm-color-light_blue);
}

.team-member-other-info div {
    margin-right: 10px;
}


.team-member-other-info a {
    color: var(--wtm-color-dark_blue);
    text-decoration: none;
    font-size: 18px;
}
.team-member-other-info a:hover{
	text-decoration:underline;
}

.team-member-other-info span {
    font-weight: 400;
}

.team-member-other-info div::before{
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
	font-size: 16px;
	margin-right: 10px;
    color: var(--wtm-color-light_blue);
}

.team-member-other-info div:last-child::before{
	font-size: 14px;
	margin-right: 6px;
}

.team-member-other-info div:nth-child(2){
	margin-right: 14px;
}</pre></body></html>