.about {
    margin-top: 160px;
}

.about h2 {
    color: #394648;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;

    position: relative;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 50px;
}

.about h2:before {
    content: url(../../../assets/images/title-img.svg);
    position: absolute;
    left: -20px;
    top: -20%;
    z-index: -9;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    justify-content: space-between;
}

.about-text{
    padding-top: 60px;
    display: grid;
    gap: 25px;
}

.about-text p{
    color: #394648;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /*text-transform: capitalize;*/
}

.about-img{
	padding-top: 60px;
}

.about-img img{
	width:70%;
}

.about-img iframe{
	width:100%;
	height:50%;
	border-radius:30px;
}

@media screen and (min-width:1440px) and (max-width: 1919px) {
.about-img iframe{
	height:33%;
}
	
	.about-img img{
	width:100%;
}
}

@media screen and (max-width:1279px){
	.about-img iframe{
		height:450px;
	}
	
	.about-img img{
		display:none;
	}
}

@media screen and (max-width: 1024px) {
    .about-img{
        order: -1;
    }
    .about-text{
        padding-top: 0;
    }
    .about-content{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 750px) {
    .about-content{
        grid-template-columns: 1fr;
    }
	
	.about-img iframe{
		height:175px;
	}
}