:root {
    --card: #F5F5F7;
    --background-light: #F6F6F6;
    --background-dark: #202020;
    --stroke: #333335;
    --primary: #0071E3;
    --hover: #318BE7;
    --head: #101010;
    --main-text: #D8D8D8;
}

#complex-block {
    margin-bottom: 80px;
}

#complex-block .title {
    padding-top: unset;
    color: var(--card, #F5F5F7);
    font-family: "Roboto Condensed";
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

#complex-block .right_side {
    padding-top: unset;
    padding-left: unset;
    min-width: 593px;
    max-height: 371px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--bg-light, #F6F6F6);
}

#complex-block .right_side img {
    align-items: center;
    padding-left: 70px;
    padding-top: 13px;
}

#complex-block .complex_wrapper {
    padding-top: 40px;
    display: flex;
    gap: 30px;
}

/* #complex-block .left_side {
    width: 547px;
    height: 371px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--bg-dark, #202020);
    padding-left: 40px;
    padding-bottom: 40px;
    padding-right: 63px;
    padding-top: 40px;
    overflow-y: scroll;
} */
#complex-block .left_side {
    width: 547px;
    height: max-content;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--bg-dark, #202020);
    padding-left: 40px;
    padding-bottom: 40px;
    padding-right: 63px;
    padding-top: 40px;
}

#complex-block .left_side .review-more{
    margin-top: 10px;
    color: var(--main-text, #D8D8D8);
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    cursor: pointer;
}

#complex-block .left_side::-webkit-scrollbar {
    width: 1px;
    height: 290px;
    background: var(--primary, #0071E3);
    padding-right: 40px;
}

#complex-block .left_side::-webkit-scrollbar-thumb {
    width: 3px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 20px;
    background: var(--hover);
}

#complex-block .structure-text {
    color: var(--main-text, #D8D8D8);
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* padding-bottom: 20px; */
}

#complex-block .structure-text-all{
    cursor: pointer;
    font-weight: 700;
    margin-top: 5px;
}

@media (max-width: 1160px) {
    #complex-block .complex_wrapper {
        flex-direction: column;
    }

    #complex-block .left_side {
        width: 100%;
    }

    #complex-block .right_side {
        width: 100%;
    }

    #complex-block .right_side img {
        width: 100%;
        padding-left: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 370px;
        object-fit: cover;
        min-width: unset;
    }
    #complex-block .right_side {
        min-width: unset;
    }
}
@media (max-width: 800px) {
    #complex-block .left_side{
        padding: 20px;
    }
}

@media (max-width: 400px) {
    #complex-block .right_side img {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}