.about-container {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}


.about-left {
	position: relative;
	width: 50%;
}
.about-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	/*-webkit-filter: grayscale(50%);
	-o-filter: grayscale(50%);
	filter: grayscale(50%);*/
}


.about-right {
	width: 50%;
	padding: 50px 40px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.about-right h2 {
	margin-bottom: 15px;
}
.about-social {
	margin-top: 20px;
	margin-bottom: 30px;
}
.about-social ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.about-social ul > li {
	line-height: 1em;
}
.about-social ul > li:not(:last-child) {
	margin-right: 20px;
}
.about-social ul > li i {
	font-size: 2rem;
	line-height: 1em;
	color: var(--bs-dark);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.about-social ul > li a:hover i {
	color: var(--theme-blue);
}
.abour-regales {
	font-weight: var(--fw-light);
	color: var(--bs-secondary);
}
.abour-regales > ul > li:not(:last-child) {
	margin-bottom: 15px;
}


@media screen and (max-width: 1024px) {
	.about {
		padding: 50px 0;
	}


	.about-left {
		width: 100%;
		margin-bottom: 30px;
	}
	.about-left img {
		max-width: 400px;
		margin: 0 auto;
		border-radius: 4px;
		box-shadow: 2px 2px 12px rgba(33, 37, 41, 0.15);
	}


	.about-right {
		width: 100%;
		padding: 0;
		align-items: center;
	}
}


.about-container {
	display: flex;
	margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px){
    .about-container {
        max-width: 720px;
        width: calc(100% - 40px);
    }
}
/* sm */
@media screen and (min-width: 560px) and (max-width: 767px){
    .about-container {
        max-width: 540px;
        width: calc(100% - 40px);
    }
}
/* xs */
@media screen and (max-width: 559px){
    .about-container {
        max-width: 100%;
        width: calc(100% - 40px);
    }
}
