
.section-class {
	display: grid;
	place-items: center;
	height: 80vh;
	background: rgba(175,175,212,.8);
    font-family: montserrat;
}
.section-header{
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    font-weight: 900;
    padding-bottom: 25px;
    color: #fff;
}
.section-header:after{
    content: '';
    height: 3px;
    width: 200px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 100px);
    background: #fff;
}
.section-header span {
	display: block;
	font-size: 15px;
	font-weight: 300;
}
.testimonials{
    max-width: 1000px;
    padding: 0 15px 50px;
    margin: 0 auto;
}
.single-item{
    background: #fff;
    color: #111;
    padding: 15px;
    margin: 50px 15px;
}
.profile{
    margin-bottom: 30px;
    text-align: center;
}
.img-area {
	margin: 0 15px 15px 15px;
}
.img-area img {
	height: 200px;
	width: 200px;
	border-radius: 50%;
	border: 7px solid rgba(175,175,212,.8);
}
.content{
    font-size: 18px;
}
.content p {
	text-align: justify;
	color: #000000;
}
.content p span {
	font-size: 48px;
	margin-right: 20px;
    color: rgba(175,175,212,.8);
}
.socials i {
	margin-right: 25px;
}
.bio h4 {
	font-family: 'Berkshire Swash', cursive;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
	background-color: rgba(175,175,212,.8);
}
@media screen and (max-device-width: 767px)
{
    .section-class {
        height: 120vh;
    }
}