#container > .wrap {
    position: relative;
    width: 90%;
    margin: 0 auto;
}
#page-title {
    margin-top: 30px;
    margin-bottom: 35px;
    text-transform: capitalize;
}
.page-description {
    line-height: 20px;
    text-align: justify;
}
.section-title {
    margin-bottom: 35px;
}
.section-description {
    text-align: justify;
}
#page-title::after,
.section-title::after {
    content: "";
    position: absolute;
    display: block;
    width: 10%;
    min-width: 108px;
    height: 1px;
    margin-top: 6px;
    border-bottom: 6px solid rgba(213, 29, 50, 1);
}
.section-title ~ .section-title {
    padding-top: 30px;
    color: rgba(213, 29, 50, 1);
    font-size: 25px;
    border-top: 1px solid rgba(112, 112, 112, 1);
}
.section-title ~ .section-title::after {
    display: none;
}

.list {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}
.list > span {
    text-transform: capitalize;
}
.list.tiles > a.block,
.list.text-links > a.block {
    width: 185px;
}
.list.text-links a.block > div.title {
    max-height: none;
    overflow: unset;
}
.list.tiles > a.block > img {
    height: 265px;
}
.list.tiles > a.block.landscape {
    width: 190px;
}
.list.tiles > a.block.landscape > img {
    height: 130px;
}

#page-options {
    display: flex;
    width: 100%;
    padding: 40px 0;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#page-options > * {
    margin: 0 10px;
    font-size: 16px;
    box-sizing: border-box;
}
#page-options > .right {
    position: absolute;
    right: 0;
}
#page-options > a,
#page-options > .right > a {
    display: inline-block;
    width: 90px;
    padding: 10px 0;
    text-align: center;
    text-transform: capitalize;
    color: white;
    background-color: rgba(48, 40, 72, 1);
    border-radius: 5px;
    /* border: 1px solid; */
    text-decoration: none;
}
#page-options > .right > a {
    width: auto;
    margin: 0 5px;
    padding: 10px;
}
#page-options > a:hover,
#page-options > .right > a:hover {
    background-color: rgba(61, 52, 92, 1);
}
#page-options > a.disable,
#page-options > .right > a.disable {
    display: none;
}
#page-options > .divider {
    display: none;
}
#page-options > input:first-child {
    margin-left: 10px;
}
#page-options > input {
    width: 65px;
    height: 55px;
    text-align: center;
}
#page-options > input[type="button"] {
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    #page-options {
        display: block;
    }
    #page-options > * {
        display: block;
        margin: 5px 0;
    }
    #page-options > a {
        display: block;
        width: 90%;
        margin: 10px auto;
        padding: 15px 0;
    }
    #page-options > .right {
        position: relative;
        margin-top: 30px;
    }
    #page-options > .divider {
        display: block;
    }
    #page-options > input {
        display: inline-block;
    }

    .list.tiles > a.block,
    .list.tiles > a.block.landscape,
    .list.text-links > a.block,
    .list.text-links > a.block.landscape {
        width: calc((100% / 2) - 7px);
    }
}