* {
    margin: 0;
    padding: 0;
}

html {}

body {
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.header {
    width: 100%;
    height: 74px;
    background-color: #c4170c;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header .wrap-header {
    display: flex;
    width: 98%;
    height: 74px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 940px) {
    .header {
        height: 55px;
        z-index: 99;
    }
    .header .wrap-header {
        width: 95%;
        height: 55px;
    }
}

.header .logo-header {
    width: 50px;
    height: 30px;
    align-self: center;
}

.header .menuButton {
    display: flex;
    cursor: pointer;
    outline: 0;
    flex-direction: row;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.9rem;
}

.header ::placeholder {
    color: #fff;
    font-weight: 600;
}

.header .search form fieldset {
    background-color: rgba(0, 0, 0, 0.15);
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px;
    padding: 0 10px;
}

.header .search form #mobile-search-input {
    position: absolute;
    left: 4%;
    width: 72%;
    height: 30px;
    top: 20px;
    font-size: 1.1rem;
    padding: 0 10px;
    display: none;
}

.header .search form .btnCloseMobile {
    position: absolute;
    left: 83%;
    font-size: 2rem;
    top: 20px;
    padding: 0 10px;
    display: none;
}

.header .search form .btnCloseMobile:hover {
    cursor: pointer;
}

.header .search form fieldset input {
    transition: 0.3s;
    width: 110px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 0.9rem;
    height: 25px;
    padding: 0.3rem 15px 0.3rem 0;
    border: none;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    outline: none;
}

.header .search form fieldset input:focus {
    padding-left: 0.25rem;
}

.header .search form span {
    color: #fff;
}

@media (max-width: 1125px) {
    .header .search form fieldset {
        background: none;
    }
    .header .search form fieldset span:hover {
        cursor: pointer;
    }
    .header .search form input {
        display: none;
    }
}

@media (max-width: 1065px) {
    .header .menuButton .textMENU {
        display: none;
    }
}

.wrap {
    width: 90%;
    margin: 0 auto;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-row-start: 1;
    grid-row-end: 2;
    margin-top: 140px;
}

.highlights .highlights-1 {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1.7rem;
    grid-row: 1 / 5;
    grid-column: 1 / 5;
    border: 1px solid #e1e1e1;
    width: 72%;
    border-radius: 3px;
    height: 600px;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.highlights .time {
    display: none;
}

.highlights .highlights-1 .callText {
    font-size: 16px;
    letter-spacing: -0.3px;
    font-weight: 600;
    color: #333;
    display: block;
    line-height: 16px;
    font-family: "Open Sans", sans-serif;
}

.highlights .highlights-1 .space-between {
    width: 100%;
    height: 100px;
}

.highlights .highlights-1 .title {
    font-size: 40px;
    letter-spacing: -2.5px;
    line-height: 44px;
    text-decoration: none;
    width: 95%;
    font-family: "Open Sans", sans-serif;
    color: #c4170c;
    font-weight: bold;
}

.highlights .highlights-1 .title:hover {
    color: #b31106;
    cursor: pointer;
}

.highlights .highlights-1 .excerpt {
    width: 85%;
    font-size: 16px;
    letter-spacing: -0.8px;
    line-height: 24px;
    margin-top: 25px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #333;
    margin: 30px 0 auto;
}

.highlights .highlights-2 {
    grid-row: 1 / 2;
    grid-column: 4 / 8;
    border: 1px solid #e1e1e1;
    width: 100%;
    border-radius: 3px;
    background: #fff;
    align-self: flex-start;
}

.highlights .highlights-2:hover {
    cursor: pointer;
}

.highlights .highlights-2 .blackTransparency {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
}

.highlights .highlights-2 .callText {
    font-size: 16px;
    letter-spacing: -0.3px;
    font-weight: 600;
    color: #fff;
    display: block;
    line-height: 16px;
    font-family: "Open Sans", sans-serif;
    text-shadow: 1px 1px #444;
}

.highlights .highlights-2 .space-between {
    width: 100%;
    height: 100px;
}

.highlights .highlights-2 .title {
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 32px;
    text-shadow: 1px 1px #444;
    text-decoration: none;
    width: 95%;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    font-weight: bold;
}

.highlights .highlights-2 .excerpt {
    width: 85%;
    font-size: 16px;
    letter-spacing: -0.8px;
    line-height: 24px;
    margin-top: 25px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #fff;
    margin: 30px 0 auto;
    text-shadow: 1px 1px #444;
}

.highlights .highlights-3 {
    grid-row: 3 / 5;
    grid-column: 4 / 8;
    border: 1px solid #e1e1e1;
    width: 100%;
    border-radius: 3px;
    height: 290px;
    background: #fff;
    align-self: flex-end;
}

.highlights .highlights-3:hover {
    cursor: pointer;
}

.highlights .highlights-3 .blackTransparency {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
}

@media (min-width: 940px) {
    .highlights .highlights-2 .blackTransparency:hover {
        background: rgba(0, 0, 0, 0.4);
    }
    .highlights .highlights-3 .blackTransparency:hover {
        background: rgba(0, 0, 0, 0.4);
    }
}

.highlights .highlights-3 .callText {
    font-size: 16px;
    letter-spacing: -0.3px;
    font-weight: 600;
    color: #fff;
    display: block;
    line-height: 16px;
    font-family: "Open Sans", sans-serif;
    text-shadow: 1px 1px #444;
}

.highlights .highlights-3 .space-between {
    width: 100%;
    height: 100px;
}

.highlights .highlights-3 .title {
    text-shadow: 1px 1px #444;
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 32px;
    text-decoration: none;
    text-shadow: 1px 1px #444;
    width: 95%;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    font-weight: bold;
}

.highlights .highlights-3 .excerpt {
    width: 85%;
    font-size: 16px;
    letter-spacing: -0.8px;
    line-height: 24px;
    margin-top: 25px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #fff;
    margin: 30px 0 auto;
    text-shadow: 1px 1px #444;
}

@media (max-width: 940px) {
    .wrap {
        width: 100%;
    }
    .highlights {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        margin-top: 100px;
        grid-row-gap: 20px;
    }
    .highlights .time {
        display: block;
        font-family: "Open Sans", sans-serif;
        white-space: nowrap;
        color: #555;
        font-size: 12px;
        letter-spacing: 0;
        margin-top: 30px;
    }
    .highlights .highlights-1 {
        height: auto;
        grid-row: 1 / 2;
        grid-column: 1/7;
        width: 100%;
        padding-bottom: 25px;
    }
    .highlights .highlights-1 .space-between {
        height: 10px;
    }
    .highlights .highlights-1 .title {
        font-size: 1.2rem;
        width: 100%;
        line-height: 25px;
        letter-spacing: -1px;
    }
    .highlights .highlights-1 .excerpt {
        margin-top: 10px;
    }
    .highlights .highlights-2 {
        grid-row: 2 / 3;
        grid-column: 1/7;
        height: auto;
        background: #fff;
    }
    .highlights .highlights-2 .callText {
        color: #333;
        text-shadow: none;
    }
    .highlights .highlights-2 .space-between {
        height: 10px;
    }
    .highlights .highlights-2 .title {
        font-size: 1.2rem;
        width: 100%;
        line-height: 25px;
        text-shadow: none;
        letter-spacing: -1px;
        color: #c4170c;
    }
    .highlights .highlights-2 .title:hover {
        color: #b31106;
        cursor: pointer;
    }
    .highlights .highlights-2 .excerpt {
        color: #333;
        margin-top: 10px;
        text-shadow: none;
    }
    .highlights .highlights-2 .blackTransparency {
        padding-bottom: 25px;
        background: #fff;
    }
    .highlights .highlights-3 {
        grid-row: 3 / 3;
        grid-column: 1/7;
        height: auto;
        background: #fff;
    }
    .highlights .highlights-3 .callText {
        color: #333;
        text-shadow: none;
    }
    .highlights .highlights-3 .space-between {
        height: 10px;
    }
    .highlights .highlights-3 .title {
        font-size: 1.2rem;
        width: 100%;
        line-height: 25px;
        text-shadow: none;
        letter-spacing: -1px;
        color: #c4170c;
    }
    .highlights .highlights-3 .title:hover {
        color: #b31106;
        cursor: pointer;
    }
    .highlights .highlights-3 .excerpt {
        color: #333;
        margin-top: 10px;
        text-shadow: none;
    }
    .highlights .highlights-3 .blackTransparency {
        padding-bottom: 25px;
        background: #fff;
    }
}

.content {
    display: flex;
    margin-top: 50px;
}

.content .posts {
    width: 100%;
    margin-right: 1rem;
}

.content .sidebar {
    width: 52%;
}

.content .sidebar .item,
.item-sidebar-front {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    background: #fff;
    border-radius: 3px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.content .sidebar .item .title,
.item-sidebar-front .title {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 1rem 1.5rem;
    letter-spacing: -0.4px;
    color: #333;
}

.content .sidebar .item .inside-item,
.item-sidebar-front .inside-item {
    width: 100%;
    border-top: 1px solid rgb(233, 233, 233);
    padding: 1.75rem 1.75rem 0.7rem 1.75rem;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.content .sidebar .item .inside-item .title,
.item-sidebar-front .inside-item .title {
    text-decoration: none;
    color: #c4170c;
    font-size: 1rem;
    line-height: 20px;
    letter-spacing: -1px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    padding: 0;
    padding-right: 15px;
}

.content .sidebar .item .inside-item .title:hover,
.item-sidebar-front .inside-item .title:hover {
    color: #a71409;
}

.content .sidebar .item .inside-item .option,
.item-sidebar-front .inside-item .option {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.content .sidebar .item .inside-item .option img,
.item-sidebar-front .inside-item img {
    width: 94px;
    height: 94px;
    margin-left: auto;
}

.content .posts .post {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 2fr;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.content .posts .post .callText {
    color: #333;
    grid-column: 2;
    grid-row: 1;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: normal;
}

.content .posts .post .title {
    color: #a71409;
    width: 90%;
    height: auto;
    letter-spacing: -1.25px;
    line-height: 25px;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
}

.content .posts .post .excerpt {
    margin: 10px 0;
    color: #555;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.3px;
    line-height: normal;
}

.content .posts .post .time {
    color: #555;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0px;
    line-height: normal;
    grid-column: 2;
    margin-top: -80px;
    padding-top: 50px;
}

.content .posts .post img {
    width: 365px;
    height: 205px;
    margin-right: 20px;
    grid-column: 1/2;
    grid-row: 1/2;
}

@media (max-width: 1150px) {
    .content {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }
    .content {
        flex-direction: column;
    }
    .content .sidebar {
        width: 100%;
    }
    .content .posts {
        margin: 0;
        padding: 0;
        height: auto;
    }
    .content .posts .post {
        width: 100%;
        display: block;
        flex-direction: column;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background: #fff;
        border: 1px solid #e1e1e1;
    }
    .info-post {
        padding: 1.75rem 1rem 1rem 1.75rem;
    }
    .content .posts .post .callText {
        font-size: 0.9rem;
        margin-bottom: 10px;
        font-size: 1rem;
        letter-spacing: -0.3px;
        font-weight: 600;
        display: block;
        line-height: 16px;
        font-family: "Open Sans", sans-serif;
    }
    .content .posts .post .title {
        overflow-wrap: break-word;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
        margin-top: 10px;
        font-size: 1.2rem;
        margin-right: 20px;
        grid-column: 1/2;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .content .posts .post .excerpt {
        margin-top: 30px;
        width: 70%;
        color: #333;
        font-size: 1rem;
        letter-spacing: -0.8px;
        line-height: 24px;
        margin-top: 10px;
        font-family: "Open Sans", sans-serif;
        font-weight: 400;
        grid-column: 1/2;
    }
    .content .posts .post .time {
        font-size: 0.8rem;
        display: block;
        padding: 0;
        margin: 0;
        top: 0;
        padding: 20px 1.75rem;
    }
    .content .posts .post img {
        width: 100px;
        top: -100px;
        position: relative;
        float: right;
        height: auto;
        grid-column: 2/2;
        grid-row: 2/4;
        align-self: flex-end;
        justify-self: center;
    }
}

@media (max-width: 940px) {
    .content {
        margin-top: 20px;
    }
}

@media (max-width: 815px) {
    .content .posts .post img {
        display: none;
    }
    .content .posts .post .title {
        width: 90%;
    }
    .content .posts .post .excerpt {
        width: 90%;
        margin-right: 0;
    }
}

@media (max-width: 550px) {
    .content .posts .post img {
        display: block;
        width: 100%;
        top: 0;
        left: 0;
        clear: both;
        margin: 0;
        padding: 0 0 20px 0;
        position: relative;
    }
    .content .posts .post .title {
        width: 90%;
    }
    .content .posts .post .excerpt {
        width: 90%;
    }
    .content .posts .post .time {
        margin-top: 0;
        padding-top: 0;
    }
}

@media (max-width: 270px) {
    .content .posts .post img {
        width: 100%;
    }
}

.seeMore {
    width: 100%;
}

.seeMore button {
    width: 100%;
    height: 45px;
    background-color: #a71409;
    border: none;
    outline: none;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 50px;
}

@media (max-width: 1150px) {
    .seeMore {
        width: 90%;
        margin: 0 auto;
    }
}

.footer {
    width: 100%;
    background: #d31a0d;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.footer .down-below {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    bottom: 0;
    margin-top: 40px;
}

.footer .down-below p {
    color: #fff;
    text-decoration: none;
    font-family: "Open Sans", Arial;
    font-weight: 300;
    font-size: 0.8rem;
}

.footer .down-below ul {
    display: flex;
    margin-right: 1rem;
}

.footer .down-below ul li {
    list-style: none;
    margin-right: 10px !important;
}

.footer .down-below ul a {
    color: #fff;
    text-decoration: none;
    font-family: "Open Sans", Arial;
    font-weight: 300;
    font-size: 0.8rem;
}

.footer .logo {
    display: flex;
    flex-direction: row;
}

.footer .logo .logo-img {
    width: 40px;
}

.footer .logo span {
    margin-left: 20px;
    color: #fff;
    align-self: center;
    text-decoration: none;
    font-family: "Open Sans", Arial;
    font-weight: 400;
    font-size: 0.8rem;
}

@media (max-width: 890px) {
    .footer .down-below ul {
        display: none;
    }
    .footer .down-below p {
        width: 80%;
    }
}