.user_image img {
    border-radius: 50%;
}

.user_image {
  display: flex;
  justify-content: center;
  align-items: center;   
}

.user_image img {
  width: 55%;
  height: auto;
}
.legaten-button {
    background-color: #81933C;
    color: white; 
    border-radius: 0;
    transition: background-color 0.3s ease, color 0.3s ease; 
    text-transform: uppercase;
}

.legaten-button:hover {
    background-color: #546026;
    color: white!important; 
}

.about_area .row {
    align-items: center;
}

.about_content_block h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: normal;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.about_content_block p {
    color: #fff;
    font-size: 20px;
}
.about_area {
	position:relative;
	overflow: hidden;
}
.about_area:before {
    position: absolute;
    content: "";
    left: -1px;
    top: -1px;
    width: calc(var(--ftb-cut-corner-size, 180px) + 2px);
    height: calc(var(--ftb-cut-corner-size, 180px) + 2px);
    background: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    pointer-events: none;
}
.about_area .row.collums_revers {
    flex-direction: row-reverse;
}

.about_area .row.collums_revers .user_image {
    text-align: right;
}
.about_area .row.collums_revers .user_image img {
    border-radius: 0;
}

.about_area[style*="background-color: #81933c"] a {
  color: #285262;
}

@media only screen and (max-width: 991px) {
	.user_image {
    margin-bottom: 50px;
}
.about_area .row.collums_revers .user_image {
    text-align: left;
}
}
@media only screen and (max-width: 767px) {
	.about_area:before {
		display:none;
	}
	.about_content_block h2 {
    font-size: 2rem;
}
	.about_content_block p {
    font-size: 20px;
}
}