body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
main{
    flex-direction: row;
    justify-content: center;
    padding: 70px 0;
}
.organise{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.organise-info{
    width: 55%;
    height: 100%;
    padding: 30px 25px;
    background-color: #ffffff;
}
.organise-info_name{
    margin-bottom: 15px;
}
.organise-info_text{
    margin-bottom: 10px;
    font-size: 17px;
}
.organise-info_text:last-of-type{
    margin-bottom: 25px;
}
.prices-line{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}
.prices-line:first-child{
    padding-top: 15px;
    border-top: 1px solid #f2f2f2;
}
.prices-line_name{
    padding-bottom: 5px;
    font-size: 17px;
}
.prices-line_name:last-child{
    font-family: 'Bold', sans-serif;
}
.organise_img{
    width: 45%;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* адаптирование под экраны */
@media screen and (max-width: 595px) {
    .organise{
        display: block;
    }
    .organise-info{
        height: auto;
        width: 100%;
    }
    .organise_img{
        width: 100%;
        height: 450px;
    }
}