.advantages-block {
    position: relative;
    padding-top: var(--sixty);
    background: var(--white);
    border-radius: 20px;
    margin-top: 10px;
    padding-bottom: var(--sixty);
}

.advantages-block .tb-btn{
	margin-top:var(--twenty);
}

.advantages-block .tbPhotoText{
	margin-top:var(--thirty);
}

.advantages-block .tbTitle {
    max-width: 520px;
    width: 100%;
	position:sticky;
	top: 200px; 
	display:flex;
	flex-direction:column;
	gap:var(--twenty);
	height:fit-content;
}

.advantages-block .tbPhoto{
	width:100%;
	overflow:hidden;
	max-height:400px;
	height:100%;
	border-radius:10px;
	margin-top:15px;
}

.advantages-block .tbPhoto img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:flex;
	border-radius:10px;
}

.advantages-block .map-outer {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    flex-shrink: 0;
    margin-top: var(--fourty);
    position: relative;
}

.advantages-block .map-outer .map-holder {
    height: 100%;
    width: 100%;
    max-height: 100vw;
    height: 600px;
}

.text-block__inner {
    display: flex;
/*     gap: var(--twenty) clamp(1.375rem, -0.35rem + 8.625vw, 10rem); */
	   gap: var(--twenty) var(--100);
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    max-width: 1520px;
}

.text-block__text {
    display: flex;
    flex-direction: column;
}

.text-block__text-holder {
    display: flex;
    flex-direction: column;
    gap: var(--twenty);
    width: 100%;
}

.text-block__text p,
.text-block__text li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: var(--1816);
    line-height: 120%;
    color: var(--main-text);
}

.text-block__text>*:last-child {
    margin-bottom: 0px;
}

.advantages-holder {
    margin-top: var(--fourty);
    border-top: 1px solid var(--stroke);
}

.advantages-holder__inner {
    padding-top: var(--fourty);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr ;
    gap: var(--twenty);
}

.advantage {
    display: flex;
    flex-direction: column;
    gap: var(--fifteen);
}

.advantage-name {
    max-width: 200px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: var(--2018);
    line-height: 120%;
    color: var(--main-text);
}

.advantage-icon {
    height: fit-content;
    width: fit-content;
    max-height: 100px;
    display: flex;
    align-items: center;
    place-content: center;
    max-width: 100px;
    overflow: hidden;
}

.advantage-icon>* {
    height: clamp(4.375rem, 4rem + 1.875vw, 6.25rem);
    width: clamp(4.375rem, 4rem + 1.875vw, 6.25rem);
    object-fit: contain;
    display: flex;
}

.map-text__holder {
    border-radius: 15px;
    padding: var(--twenty);
    display: flex;
    height: fit-content;
    width: fit-content;
    background: var(--accent);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: var(--2018);
    gap: 10px;
    align-items: center;
    line-height: 120%;
    color: var(--white);
    position: absolute;
    left: var(--fourty);
    top: var(--fourty);
    z-index: 1;
    pointer-events: none;
}

.map-text__holder .map-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: var(--2018);
    line-height: 120%;
    color: var(--white);
    text-align: center;
}

.map-text__holder .map-icon {
    display: flex;
    max-width: 30px;
    max-height: 30px;
    overflow: hidden;
}

.map-text__holder .map-icon svg,
.map-text__holder .map-icon img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
    display: flex;
}

@media(max-width:1400px) {
    .advantages-holder__inner {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .advantage {
        align-items: center;
        text-align: center;
    }
}

@media(max-width:900px) {
    .text-block__inner {
        flex-direction: column;
    }
	.advantages-block .tbTitle{
		max-width:unset;
		position:unset;
	}
}

@media(max-width:750px) {
    .advantages-holder__inner {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width:620px) {
    .map-text__holder {
        width: 100%;
        position: unset;
        place-content: center;
        border-radius: 20px 20px 0px 0px;
    }
}

@media(max-width:570px) {
    .advantages-holder__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:400px) {
    .map-text__holder {
        flex-direction: column;
    }

    .map-text__holder .map-text {
        font-size: 16px;
    }
}

@media(max-width:380px) {
    .advantages-holder__inner {
        grid-template-columns: 1fr 1fr;
    }

    .advantage-name {
        font-size: 14px;
    }


}