.main_about {
    width: 1280px;
    margin: 40px auto;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    font-size: 16px;
}
.wr_directions {
    position: relative;
}
.directions {
    width: 1280px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.direction_item {
    width: 295px;
    margin-bottom: 90px;
}
.direction_item_img {
    width: 295px;
    height: 234px;
}
.direction_item_name {
    font-size: 23px;
    box-sizing: border-box;
    height: 100px;
    padding-top: 25px;
    text-align: center;
}
.direction_item_anons {
    font-size: 14px;
}
.direction_item_text {
    display: none;
}
.direction_item_link {
    margin-top: 30px;
    font-size: 18px;
}
.direction_item_link_action {
    border-bottom: dashed 1px #000000;
    cursor: pointer;
}
#direction_review {
    box-sizing: border-box;
    width: 1280px;
    position: fixed;
    padding: 20px;
    border: solid 5px #103365;
    z-index: 250;
    background-color: #ffffff;
    font-size: 18px;
    display: none;
    top: 0px;
    left: 0px;
}
.direction_review_title {
    font-size: 34px;
    color: #103365;
    margin-bottom: 20px;
}
.direction_review_title_close {
    width: 40px;
    height: 40px;
    background-color: red;
    color: white;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-device-width: 499px) {
    .main_about {
        box-sizing: border-box;
        padding: 0px 10px;
        width: 100%;
        margin: 40px auto;
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
        font-size: 16px;
    }
    #direction_review {
        width: 100%;
        font-size: 16px;
    }
    .directions {
        width: 100%;
        justify-content: center;
    }
    .direction_item {
        box-sizing: border-box;
        padding: 0px 10px;
        width: 100%;
        margin-bottom: 30px;
    }
    .direction_item_img {
        width: 100%;
        height: auto;
        text-align: center;
    }
    .direction_item_name {
        padding: 10px 5px;
        height: auto;
    }
}
@media only screen and (min-device-width: 500px) and (max-device-width: 1279px) {
    .main_about {
        box-sizing: border-box;
        padding: 0px 10px;
        width: 100%;
    }
    #direction_review {
        width: 90%;
        font-size: 16px;
    }
    .directions {
        width: 100%;
        justify-content: space-around;
    }
}