.ias-about{
	margin-top: 30px;
	background-color: #f0f0f0;
	display: flex;
	position: relative;
}
.ias-about-img{
	width: 30vw;
	flex-shrink: 0;
	box-shadow: 14px -14px 0px  rgba(177, 177, 177, 1.0);
	overflow: hidden;
}
.ias-about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .5s;
}
.ias-about:hover .ias-about-img img {
	transform: scale(1.2);
}
.ias-about-title{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px 40px;
        font-family: "Garamond",serif;
	font-size: 24px;
}
.ias-about-desc{
	font-size: 18px;
	padding: 0 40px 30px 40px;
}

@media screen and (max-width:1200px) {
	.ias-about-title{
		padding: 30px 40px;
	}
}

@media screen and (max-width:767px) {
	.ias-about-img{
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}
	.ias-about-box{
		background-color: rgb(240,240,240,0.9);
		z-index: 20;
	}
}