.genplan-main-wrapper {
    /*  */
}

.genplan-wrapper {
    display: flex;
    justify-content: space-between;
}

.main-title-mobile {
    display: none;
}

.genplan-left-block {
    /*  */
}

.main-title {
    margin-bottom: 55px;
    color: #333;
}

.designations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
    scrollbar-color: transparent transparent;
}

.designation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.designation-logo {
    position: relative;
    background-color: #00A769;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
}

.designation-logo {
    background-image: var(--icon);
    background-position: center;
    background-repeat: no-repeat;
}
.designation-title {
    color: #000;
    font-weight: 400;
    line-height: 100%;
    font-size: 22px;
}

.genplan-right-block {
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: thin; /* thin, auto или none */
    scrollbar-color: #00A769 #f1f1f1;
    padding-bottom: 12px;
}

.genplan-right-block-image {
    position: relative;
    height: 100%;
    width: 1200px;

    img {
        height: 100%;
        border-radius: 40px;
    }
}

.btn-link {
    position: absolute;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 15px;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    border: 1px solid black;

    &:hover {
        color: white;
        border-color: white;
        background-color: green;
    }
}

.btn-link--first {
    top: 40%;
    left: 80%;
}

.btn-link--second {
    top: 30%;
    left: 55%;
}

.btn-link--third {
    top: 60%;
    left: 50%;
}

.btn-link--four {
    top: 43%;
    left: 10%;
}

@media (max-width: 1500px) {
    .genplan-wrapper {
        gap: 20px;
    }

    .designation {
        gap: 10px;
    }

    .designation-title {
        font-size: 20px;
    }

    .designation-logo {
        width: 40px;
        height: 40px;
        background-size: cover;
    }
}

@media (max-width: 900px) {
    .genplan-wrapper {
        flex-direction: column;
        gap: 0px;
    }

    .main-title-mobile {
        display: block;
        margin-bottom: 0;
        color: #333;
        order: -2;
    }

    .genplan-right-block {
        order: -1;
        border-radius: 0;
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .genplan-right-block-image {
        height: 600px;
        width: 860px;
    }

    .btn-link--first {
        top: 45%;
        left: 71%;
    }

    .genplan-right-block-image img {
        border-radius: 0;
    }

    .main-title {
        display: none;
    }

    .designations {
        display: flex;
        align-items: center;
        gap: 30px;
        overflow-x: auto;
        padding-top: 10px;
    }
    .designation {
        flex-shrink: 0;
    }
}

@media (max-width: 580px) {
    .genplan-right-block-image {
        width: 452px;
        height: 320px;
    }

    .designations {
        gap: 20px;
        height: 60px;
    }

    .designation-title {
        font-size: 18px;
    }
}