.wrapper-3_ABOUT2 {
    margin: min(50px, 10%) 15px;
    scroll-margin-top: min(110px, 20vw);
}

.section-3_ABOUT2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.caption3-3_ABOUT2 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #00b909;
}

.main-container-3_ABOUT2 {
    margin-top: min(30px, 2vw);
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
}

.image-container-3_ABOUT2 {
    flex: 1 0 350px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 5 / 6;
    max-width: 100%;
    border-radius: 20px;
}

.carousel-img-3_ABOUT2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
    height: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    max-width: 455px;
}

.carousel-img-3_ABOUT2.active {
    opacity: 1;
    z-index: 1;
}

.right-part-3_ABOUT2 {
    justify-content: flex-end;
    padding: min(15px, 1vw);
    flex: 3 0 320px;
    display: flex;
    flex-direction: column;
}

.title-3_ABOUT2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, calc(10px + 3vw), 35px);
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #383838;
    max-width: 600px;
}

.body-text-3_ABOUT2 {
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, calc(10px + 1vw), 16px);
    font-weight: 400;
    letter-spacing: 0.2px;
    color: #858585;
    line-height: 1.3;
}

.block-3_ABOUT2 {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #161618;
    padding: 16px 20px 18px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.label-3_ABOUT2 {
    position: absolute;
    right: 13px;
    bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #969696;
    z-index: 20;
}

.block-title-3_ABOUT2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(17px, calc(10px + 1vw), 18px);
    font-weight: 400;
    color: #f1f1f1;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

.block-content-3_ABOUT2 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.block-content-3_ABOUT2 span {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, calc(5px + 1vw), 14px);
    font-weight: 300;
    color: #d5d5d5;
    background-color: rgb(52, 52, 52);
    padding: 4px 6px;
    border-radius: 6px;
}

.container-icon-3_ABOUT2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.media-icon-3_ABOUT2 {
    display: flex;
    align-items: center;
}

.small-title2-3_ABOUT2 {
    max-width: 450px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, calc(10px + 2vw), 26px);
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #484848;
}

.grid-street-details-3_ABOUT2,
.grid-street-details2-3_ABOUT2 {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    justify-items: center;
    color: #888888;
    font-weight: 500;
    transition: all 0.3s;
    padding: 12px 5px;
    cursor: pointer;
    min-height: 32px;
}

.caption-3_ABOUT2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, calc(5px + 1vw), 16px);
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.grid-street-details2-3_ABOUT2:hover,
.address-item-3_ABOUT2.active {
    color: #646464;
    transform: scale(1.01);
    background-color: rgba(239, 239, 239, 0.55);
}

@media screen and (max-width: 790px) {
    .image-container-3_ABOUT2 {
        order: 1;
    }
}

.modal-address {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    justify-content: center;
    align-items: center;
}

.modal-address.show {
    display: flex;
}

.modal-content-address {
    background: white;
    border-radius: 15px;
    max-width: min(80vw, 600px);
    max-height: 90%;
    padding: 25px;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-close-address {
    position: absolute;
    top: 17px;
    right: 17px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.1s;
}

.modal-close-address:hover {
    background-color: #dfdfdf;
}

.modal-content-address span {
    font-weight: 600;
}

.modal-content-address p {
    color: #626262;
    letter-spacing: 0.2px;
    font-size: 14px;
}

.modal-content-address h2 {
    font-size: 20px;
    color: #6b6b6b;
    max-width: 400px;
    margin-bottom: 15px;
}
