/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */
.news-section-big-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 200px 0;
}
.news-section-big-img {
    width: 50%;
}
.news-section-big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-big-content-container {
    display: flex;
    margin: 40px 0;
}
.section-big-content-container:nth-child(even) {
    flex-direction: row-reverse;
}
.news-section-content {
    width: calc(50% - 80px);
    background: white;
    padding: 40px;
}
.news-section-content h2 {
    margin: 0;
    line-height: 66px;
}
.news-section-content a {
    background: #f6ce48;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    margin-top: 40px;
    display: inline-block;
}
@media (max-width: 1180px) {
    .section-big-content-container {
        flex-direction: column;
    }
    .section-big-content-container:nth-child(even) {
        flex-direction: column;
    }
    .news-section-content {
        width: calc(100% - 40px);
        padding: 20px;
    }
    .news-section-big-img {
        width: 100%;
        margin-bottom: -5px;
    }
    .news-section-big-inner {
        margin: 0 35px;
        padding: 80px 0;
    }
    .news-section-content .news-date {
        font-size: 11px;
    }
    .news-section-content h2 {
        font-size: 30px;
        margin: 10px 0 0;
        line-height: 35px;
    }
    .news-section-content p {
        font-size: 15px;
    }
    .news-section-content a {
        font-size: 13px;
        padding: 9px 21px;
        margin-top: 20px;
    }
}