.page-content{
    padding-bottom: calc(140rem / 16);
}

.fold-item{
    border-bottom: 1px solid #edebe9;
}

.fold-title{
    display: flex;
    align-items: center;
    height: calc(120rem / 16);
    font-size: calc(38rem / 16);
    position: relative;
    cursor: pointer;
}

.fold-title::after{
    content: "";
    width: calc(40rem / 16);
    height: calc(40rem / 16);
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(40rem / 16);
    margin: auto;
    background: url("../images/icon_expand.svg") center/contain no-repeat;
}

.fold-item.active .fold-title,
.fold-item:hover .fold-title{
    color: #b39474;
}

.fold-item.active .fold-title::after{
    background-image: url("../images/icon_expanded.svg");
}

.fold-content{
    display: none;
}


.disc-list{
    display: flex;
    flex-wrap: wrap;

    padding-bottom: calc(50rem / 16);
    margin-right: calc(-30rem / 16);
}

.disc-item{
    width: calc(25% - 30rem / 16);
    flex: 0 0 auto;
    margin-right: calc(30rem / 16);
    margin-bottom: calc(30rem / 16);
    background-color: #f5f1ef;
    padding: calc(28rem / 16) calc(30rem / 16);
    min-height: calc(160rem / 16);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.disc-desc{
    color: #696665;
}
.disc-title{
    text-align: left;
    color: #b39474;
    font-size: calc(20rem / 16);
    margin-top: calc(8rem / 16);
}

.disc-title::after{
    content: "";
    display: block;
    background: url("../images/icon_arr_right_red_new.svg") center/contain no-repeat;
    width: calc(18rem / 16);
    height: calc(14rem / 16);
    margin-top: calc(8rem / 16);
    vertical-align: middle;
}

.disc-item:hover .disc-desc,
.disc-item:hover .disc-title{
    color: #ae2043;
}

.title-row{
    padding-top: calc(40rem / 16);
    padding-bottom: calc(40rem / 16);
    height: calc(120rem / 16);
    display: flex;
    align-items: flex-end;
}

.title-row .title-text{
    font-size: calc(38rem / 16);
    color: #b39474;
    line-height: 1em;
}

.title-row .title-desc{
    font-size: 1rem;
    margin-left: calc(36rem / 16);
    line-height: 1em;
    margin-bottom: .15rem;
}

.title-row .title-desc span{
    color: #b39474;
    font-weight: bold;
}

.corp{
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: calc(80rem / 16);
    padding-left: calc(30rem / 16);
    padding-right: calc(30rem / 16);
    background-color: #f5f1ef;

    margin-bottom: calc(10rem / 16);
}

.corp-name{
    flex: 0 0 auto;
    font-size: calc(18rem / 16);
    color: #696665;
}

.corp .links{
    flex: 0 0 auto;
    display: flex;
}

.corp .links a{
    flex: 0 0 auto;
    color: #b39474;
    margin-left: calc(28rem / 16);
}

.corp .links a:hover{
    color: #ae2043;
}

.corp .links .view::after{
    content: "";
    display: inline-block;
    width: calc(17rem / 16);
    height: calc(12rem / 16);
    vertical-align: middle;
    margin-top: calc(-3rem / 16);
    margin-left: calc(6rem / 16);

    background: url("../images/icon_view.svg") center/contain no-repeat;
}

.corp .links .download::after{
    content: "";
    display: inline-block;
    width: calc(10rem / 16);
    height: calc(15rem / 16);
    vertical-align: middle;
    margin-top: calc(-3rem / 16);
    margin-left: calc(6rem / 16);

    background: url("../images/icon_download.svg") center/contain no-repeat;
}

.pagination{
    display: flex;
    margin-top: calc(56rem / 16);
    justify-content: center;
}

.pagination a{
    flex: 0 0 auto;
    width: calc(50rem / 16);
    height: calc(50rem / 16);
    margin-left: calc(15rem / 16);
    margin-right: calc(15rem / 16);
    border-radius: 50%;
    text-align: center;
    line-height: calc(50rem / 16);
    color: inherit;
    background-color: #f5f1ef;
}

.pagination a:hover{
    color: #b39474;
}

.pagination a.active{
    color: #fff;
    background-color: #ae2043;
}

.pagination .left,
.pagination .right{
    border: 2px solid #b39474;
    background: center/5px 10px no-repeat;
}


.pagination .prev{
    background-image: url("../images/icon_angle_left_brown_fit.svg");
}
.pagination .next{
    background-image: url("../images/icon_angle_right_brown_fit.svg");
}

.disc-times{
    position: absolute;
    font-size: calc(16rem / 16);
    color: #696665;
    right: calc(30rem / 16);
    bottom: calc(26rem / 16);
    opacity: .6;
}

.corp .view-times{
    width: 8em;
    flex: 0 0 auto;
    text-align: left;
    opacity: .5;
}

