* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-us--container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0px 120px;
}
.about-us__image {
    position: relative;
    left: 20px;
    z-index: -1;
}
.about-us__image--gate {
    display: none;
}
.about-us__description {
    width: 100%;
    max-width: 798px;
    height: auto;
    padding: 40px 40px 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(25, 25, 21, 0.15);
    background-color: #fff;
}

.about-us__text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    color: #1E3140;
    margin-bottom: 0;
}
.about-us__text:not(.about-us__text--padding) {
    margin-top: 20px;
}
.about-us__highlight {
    font-weight: 600;
}
.about-us__highlight--link {
    font-weight: bold;
    color: #4f961b;
    text-decoration: underline;
}
.about-us__list {
    list-style: none; 
    padding-left: 0;
    margin: 40px 0;
}

.about-us__list-item {
    padding-left: 28px;
    text-indent: 0;
    position: relative;
    line-height: 1.56;
}

.about-us__list-item:not(:first-child) {
    margin-top: 12px;
}

.about-us__list-item::before {
    content: "";
    display: inline-block;
    width: 16px; 
    height: 16px;
    background: url("/about/images/list-marker.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 4px;
}


@media (max-width: 992px) {
    .about-us__image  {
        display: none;
    }
	.about-us__image--gate {
		display: flex;
		width: 100%;
	}
    .about-us--container {
        margin: 0px 0px 80px;
        padding: 0px 12px;
		flex-direction: column;
    } 
    .about-us__description {
        padding: 20px 20px 60px;
		margin-top: 30px;
    }
}

@media(max-width: 1400px) {
    .about-us__collage-group {
        display: none;
    }
@media(max-width: 440px) {
    .about-us__collage-group {
        display: block;
        width: 110%;
    }
    .about-us__description {
		margin-top: -30px;
    }
}
}     
