.about-block {
    padding: 30px 0px;
}
.about-block.about-block--text-only .wrapper {
    width: min(calc(100% - 30px), 1180px);
    margin: 0 auto;
    padding-left: 0;
}
.about-block.about-block--text-only .left-side {
    width: 100%;
}
.about-block .text ul,
.about-block .text ol {
    margin: 0 0 24px;
    padding-left: 28px;
}
.about-block .text li {
    margin-bottom: 12px;
    color: var(--lText);
    font-size: 20px;
    line-height: 150%;
    list-style-position: outside;
}
.about-block .text ul li {
    list-style-type: disc;
}
.about-block .text a {
    color: var(--main);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.about-block .wrapper {
    padding-left: calc((100% - 1620px) / 2);
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
.about-block .left-side {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.about-block .block-title {
    width: 60%;
    margin-bottom: 30px;
}
.about-block .text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: var(--lText);
    margin-bottom: 15px;
}
.about-block .text {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}
.about-block .left-side .btn {
    margin-bottom: 30px;
}
.about-block .achives {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    margin-top: auto;
    gap: 100px;
}
.about-block .achive-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-block .achive-value {
    font-size: 60px;
    font-weight: 700;
    line-height: 120%;
    color: var(--lText);
    display: flex;
    gap: 2px;
    align-items: flex-end;
}
.about-block .achive-value span {
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    color: var(--lText);
    margin-bottom: 5px;
}
.about-block .achive-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--lText);
}
.about-block .right-side {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 42px;
    background: #fff;
}
.about-block .right-side .gallery {
    width: 100%;
}
.about-block .gallery-img {
    width: 100%;
    box-sizing: border-box;
    max-height: 650px;
    display: flex;
}
.about-block .gallery-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center 20%;
    aspect-ratio: 1 / 1.2;
}
.about-block .gallery-img {
    position: relative;
}
.about-block .gallery-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.18) 0%, transparent 55%);
    pointer-events: none;
}
.about-block .swiper-button-prev,
.about-block .swiper-button-next {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sec);
    border: unset;
    top: 50%;
    position: absolute;
    transition: 0.3s;
}
.about-block .swiper-button-prev:hover,
.about-block .swiper-button-next:hover {
    background: var(--main);
}
.about-block .swiper-button-prev {
    left: 15px;
}
.about-block .swiper-button-next {
    right: 15px;
}
.gallery_mob {
	display: none;
}
.about-block .about-team {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
}
.about-block .team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}
.about-block .team-photo {
    width: clamp(118px, 11vw, 172px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #d9e7ed 0%, #9ebbc6 52%, var(--main) 100%);
    box-shadow: 0 18px 34px rgba(6, 41, 57, 0.18);
}
.about-block .team-card:nth-child(2) .team-photo {
    background: linear-gradient(145deg, #f1e1c4 0%, #c6a96d 55%, #7f683c 100%);
}
.about-block .team-card:nth-child(3) .team-photo {
    background: linear-gradient(145deg, #dfe8df 0%, #9ab19c 54%, #4f6f5b 100%);
}
.about-block .team-card:nth-child(4) .team-photo {
    background: linear-gradient(145deg, #ece5dc 0%, #c5b4a0 50%, #735f50 100%);
}
.about-block .team-photo::before {
    content: "";
    position: absolute;
    width: 42%;
    height: 42%;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.74);
}
.about-block .team-photo::after {
    content: "";
    position: absolute;
    width: 74%;
    height: 44%;
    left: 50%;
    bottom: -8%;
    transform: translateX(-50%);
    border-radius: 46% 46% 0 0;
    background: rgba(255, 255, 255, 0.72);
}
.about-block .team-photo span {
    position: relative;
    z-index: 2;
    margin-top: 28%;
    color: var(--main);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}
.about-block .team-photo--image {
    background: #eef3f5;
}
.about-block .team-photo--image::before,
.about-block .team-photo--image::after {
    display: none;
}
.about-block .team-photo--image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--team-photo-position, center center);
}
.about-block .team-photo--image span {
    display: none;
}
.about-block .team-name {
    margin-top: 16px;
    color: var(--main);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
}
.about-block .team-role {
    margin-top: 6px;
    color: var(--lText);
    font-size: 15px;
    line-height: 135%;
}
@media (min-width: 1201px) {
    .about-block .left-side,
    .about-block .right-side {
        width: calc(50% - 40px);
        min-width: 0;
    }
    .about-block .right-side {
        overflow: hidden;
    }
}
@media (max-width: 1650px) {
    .about-block .wrapper {
        padding-left: 15px;
    }
    .about-block .block-title {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 1400px) {
    .about-block .achives {
        display: flex;
        flex-direction: column;
    }
    .about-block .block-title {
        font-size: 32px;
    }
    .about-block .text p {
        font-size: 16px;
    }
    .about-block .achive-value {
        font-size: 32px;
    }
    .about-block .achive-value span {
        font-size: 20px;
        margin-bottom: 3px;
    }
}

@media (max-width: 1200px) {
    .about-block .wrapper {
        flex-direction: column;
        gap: 30px;
        padding: unset;
    }
    .about-block .left-side {
        width: 100%;
        padding: 0px 15px;
    }
    .about-block .right-side {
        width: 100%;
		display: none;
    }
	.gallery_mob {
		display: block;
		margin-bottom: 20px;
		position: relative;
	}
    .about-block .about-team--mobile {
        gap: 22px 16px;
    }
    .about-block .team-photo {
        width: clamp(110px, 30vw, 150px);
    }
    .about-block.about-block--text-only .left-side {
        padding: 0;
    }
    .about-block .text li {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .about-block .swiper-button-next,
    .about-block .swiper-button-prev {
        transform: translateY(-20px);
    }
    .about-block .left-side .btn{
        width: 100%;
    }
	.about-block .achives {
		gap: 20px !important;	
	}
    .about-block .about-team--mobile {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-block .team-name {
        font-size: 16px;
    }
    .about-block .team-role {
        font-size: 13px;
    }
}
.about-block.architecture-project-photo .right-side {
    min-height: 0;
    padding: 0;
    background: #f4f4f4;
}
.about-block.architecture-project-photo .architecture-work-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f4f4;
}
.about-block.architecture-project-photo .architecture-work-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1200px) {
    .about-block.architecture-project-photo .gallery_mob .architecture-work-photo {
        aspect-ratio: 4 / 3;
    }
}
