body{
/*	font-family: 'Libre Baskerville', serif;*/
	font-family: 'Open Sans', sans-serif;
	margin:0;
	padding:0;
}

*{
	box-sizing: border-box;
}
.invo-navbar{
	background: #005a60 !important;
	padding: 11px 0;
	animation: fadeIn 1.5s forwards;
}

.invo-container{
	width:1369px;
	margin:0 auto;
	max-width: 100%;
	padding: 0 30px;
}

.invo-logo{
	width: 190px;
}

.invo-logo img{
	width:100%;
	height: auto;
}

.invo-row{
	display: flex;
	flex-wrap: wrap;
}

.invo-col-6{
	width: 50%;
	position: relative;
}

.invo-profile-pic{
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom: 0;
	background: url('../images/FRR.jpg') no-repeat center top;
	background-size: cover;
	animation: fadeInLeft 1.5s forwards;
	border-radius: 0 0 0 150px;
}

.invo-profile-info{
    padding:100px 70px;
}
.invo-profile-info blockquote{
    padding:0;
    margin:0;
    font-family: 'Libre Baskerville', serif;
    line-height:1.7;
    font-size:25px;
    color: #666;
    font-style:italic;
    font-weight:400;
}

.invo-profile-info blockquote p{
	opacity: 0;
	animation: fadeInUp 1s 0.2s forwards;
	margin:0;
}

.invo-profile-info h4{
    color: #007077;
    font-size:40px;
    margin:0 0 30px;
    font-weight:normal;
    font-style:italic;
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
}

.invo-profile-info h5{
    margin:0;
    font-size:22px;
    color:#666;
    font-weight:normal;
    opacity: 0;
    animation: fadeInUp 1s 0.8s forwards;
}

.invo-profile-info h5 a{
	text-decoration: none;
	font-weight: bold;
	color: #007077;
	transition: all 0.3s linear;
	box-shadow: 0 0 0;
}

.invo-profile-info h5 a:hover{
	box-shadow: 0 2px 0;
}

@keyframes fadeInUp{
	0%{
		transform: translate(0, 50%);
		opacity: 0;
	}
	100%{
		transform: translate(0, 0%);
		opacity: 1;
	}
}
@keyframes fadeInLeft{
	0%{
		transform: translate(15%, 0);
		opacity: 0;
	}
	100%{
		transform: translate(0, 0%);
		opacity: 1;
	}
}
@keyframes fadeIn{
	0%{		
		opacity: 0;
	}
	100%{		
		opacity: 1;
	}
}

.invo-body-content{
	padding:0 0 30px;
}

@media (max-width:1199px){
	.invo-profile-info{
		padding:50px;
	}
}

@media (max-width:1025px){
	.invo-body-content .invo-container{
		padding-left: 0;
	}
	.invo-profile-info{
		padding-right: 0;
	}
}

@media (max-width:767px){
	.invo-col-6{
		width:100%;
	}
	.invo-profile-pic{
		padding-top: 100%;
		position: static;
		border-radius: 0 0 0 80px;
	}
	.invo-body-content .invo-container{
		padding-right: 0;
	}
	.invo-profile-info{
		padding:50px 30px;
	}
	.invo-profile-info blockquote{
		font-size: 20px;
		line-height: 1.6;
	}
	.invo-profile-info blockquote p{
		margin-bottom: 10px;
	}
	.invo-profile-info h4{
		font-size: 25px;
		margin-bottom: 10px;
	}
	.invo-profile-info h5{
		font-size: 16px;
	}
}

.invo-body-wrap{
	overflow: hidden;
}