body {
    font-family: MontserratLight;
}

.first_article {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 1070px;
    height: 400px;
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px;
    border-radius: 10px;
}

a .article_block {
    color: black;
}

.fa_post {
    width: 1170px;
    height: auto;
    padding: 0px;
}

.fa_bg{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 1070px;
    height: 400px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    padding: 50px;
    border-radius: 10px;
    color: white;
}

.load {
    border-radius: 10px;
    background-image: linear-gradient(to right, #ffffff, #d1d1d1);
    background-size: 200% 100%;
    animation: load 3s ease-in-out infinite;
}

.fat_load {
    width: 40%;
    height: 36px;
}

.ai_load {
    width: 10%;
    height: 20px;
    border-radius: 8px;
    margin-right: 10px;
}

.ai_top {
    margin-top: 10px;
}

.at_load {
    width: 70%;
    height: 100px;
}

.first_article_title {
    font-family: MontserratBold;
    font-size: 36px;
    margin-bottom: 5px;
    text-align: left;
}

.first_article_about {
    font-size: 16px;
    margin-right: 20px;
}

.article_info {
    display: flex;
    align-items: center;
}

.article_icon {
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 10px;
}

.article_calendar_b {
    background-image: url(../images/calendar_b.png);
}

.article_calendar_w {
    background-image: url(../images/calendar_w.png);
}

.article_person_b {
    background-image: url(../images/person_b.png);
}

.article_person_w {
    background-image: url(../images/person_w.png);
}

.article_block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}

.article_img {
    width: 470px;
    height: 300px;
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}

.article_title_bg {
    width: 600px;
    padding: 50px;
}

.article_short_text, .title_text {
    margin-bottom: 20px;
}

.ar_bg {
    display: flex;
}

.article_content {
    width: 900px;
    background: #ffffff;
    padding: 50px;
    margin: auto;
    text-align: justify;
}

.article_text {
    font-size: 18px;
    margin: 30px 0;
}

.ar_content {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 50px;
    margin-right: 10px;
}

.ar_img {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
}

.sub_menu {
    display: flex;
    justify-content: center;
    width: 1000px;
    margin: auto;
}

.orange_button{
    margin-right: 10px;
}

.intro {
    margin-bottom: 30px;
}

@keyframes load {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}