/* ===================*/
/*    ARTICLES PAGE    */
/* ================== */
.articles-page__main {
    padding-top: 100px;
    padding-bottom: 40px;
}

.articles-page__bread-scrum {
    margin-bottom: 40px;
}

.articles-page__serch-block {
    margin-bottom: 40px;
}

.articles-page__content {
    width: 100%;
}

.articles-page__container {
    display: flex;
}



/*=========== list of articles ===========*/
.articles-page__article-list {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    padding-right: 60px;
}

.article-list__article-card {
    width: 100%;
}

.article-card__link {
    display: flex;
}

.article-card__img {
    flex: 0 0 150px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.article-card__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__info {
    padding-top: 3px;
    flex: 1 1 auto;
    padding-left: 20px;
    color: #06172d;
}

.article-card__date span {
    font-weight: 600;
}

.article-card__date {
    padding-bottom: 10px;
}

.article-card__title {
    font-size: 1.5rem;
    letter-spacing: 0.24px;
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 10px;
    transition: 0.3s;
}

.article-card__author span {
    padding-right: 10px;
    font-weight: 600;
}

.article-card__link:hover .article-card__title {
    color: #068bc0;
}

.articles-page__article-list .see-more-btn {
    display: none;
}

@media (max-width: 500px) {
    .article-card__link {
        flex-direction: column;
    }

    .article-card__img {
        flex: 0 0 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .article-card__info {
        padding-left: 0px;
    }
}

/*=========== list of videos ===========*/
.articles-page__video-list {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.articles-page__video-list {
    flex-direction: column;
    row-gap: 30px;
    overflow: auto;
}

.video-item__link {
    display: flex;
    flex-direction: column;
    color: #06172d;
}

.video-item__img {
    flex: 1 1 150px;
    width: 220px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.video-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-item__text {
    display: flex;
}

.video-item__title {
    padding-left: 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 120%;
    transition: 0.3s;
}

.video-item__link:hover .video-picture {
    width: 103%;
    height: 103%;
}

.video-item__link:hover .video-item__title {
    color: #068bc0;
}



@media (max-width: 900px) {
    .articles-page__container {
        flex-direction: column;
    }

    .articles-page__article-list {
        padding-right: 0px;
        margin-bottom: 60px;
    }

    .articles-page__video-list {
        flex-direction: row;
        flex: 1 1 240px;
        column-gap: 20px;
        overflow: auto;
    }

    .articles-page__video-list {
        flex-basis: auto;
    }

    .articles-page__video-list .videos__item {
        flex-basis: 300px;
    }

    .articles-page__video-list::-webkit-scrollbar {
        height: 5px;
    }

    .articles-page__video-list:-webkit-scrollbar-track {
        background-color: #DCE0E4;
    }

    .articles-page__video-list::-webkit-scrollbar-thumb {
        background-color: #e4b0be;
        border-radius: 3px;
    }
}



/* ===================*/
/*    ARTICLE PAGE    */
/* ================== */

/*===================== article-block ======================*/
.article-page__main {
    padding-top: 100px;
}

.articles-page__bread {
    margin-top: 100px;
}

.article-page__article-head {
    padding-bottom: 40px;
}

.article-head__body {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 80px 40px;
}

.article-head__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.article-head__img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(66deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.article-head__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.article-head__row {
    z-index: 5;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.article-head__title {
    flex: 0 1 60%;
    font-family: "Merriweather", serif;
    color: #fff;
    text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    line-height: 110%;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.article-head__title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 1px;
    border-radius: 2px;
    background: #fff;
}

.article-head__date {
    flex: 0 1 40%;
    color: #fff;
    text-align: right;
}

.article-head__btn {
    align-self: start;
}

@media (max-width: 700px) {
    .article-head__row {
        flex-direction: column;
        align-items: start;
    }

    .article-head__title {
        order: 2;
    }

    .article-head__date {
        order: 1;
        margin-bottom: 20px;
    }

    .article-head__btn {
        order: 3;
    }
}

@media (max-width: 400px) {
    .article-head__body {
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        padding: 100px 20px 40px 20px;
    }

    .article-head__title {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .article-head__btn {
        align-self: start;
        width: 100%;
    }

    .article-head__btn .btn {
        width: 100%;
    }
}

/*==================== article-body =======================*/
.article-page__article-body {
    padding-top: 0px;
    padding-bottom: 40px;
}

.article-body__row {
    display: flex;
}

.article-body__article {
    flex: 1 1 auto;
    padding-right: 60px;
}

.article-body__description,
.article-body__outcomes {
    color: #06172d;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    text-align: justify;
}

.article-body__description {
    padding-bottom: 30px;
}

.article-body__description span,
.article-body__outcomes span {
    font-weight: 600;
    padding-right: 15px;
    color: #06172d;
    font-size: 1rem;
}

.article-body__text p {
    color: #06172d;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: justify;
}

.article-body__outcomes {
    margin-bottom: 0;
}

.article-body__sitebar {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
}

.article-item {
    display: flex;
}

.article-item:not(:last-child) {
    margin-bottom: 30px;
}

.article-item__img {
    flex: 0 0 150px;
    height: 100px;
    position: relative;
}

.article-item__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.article-item__text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.article-item__date {
    color: #06172d;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 10px;
}

.article-item__header a {
    color: #06172d;
    font-size: 1rem;
    font-weight: 600;
    line-height: 140%;
    cursor: pointer;
    transition: 0.3s ease;
}

.article-item:hover .article-item__header a {
    color: #73adf4;
}

@media (max-width: 967px) {
    .article-body__row {
        flex-direction: column;
        row-gap: 40px;
    }

    .article-body__article {
        padding-right: 0px;
    }

    .article-body__sitebar {
        flex: 0 0 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .article-item {
        flex: 0 1 50%;
        margin-bottom: 0;
    }

    .article-item__text {
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .article-body__sitebar {
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .article-item__img {
        display: none;
    }

    .article-item__text {
        padding-left: 0px;
    }

    .article-item__date {
        margin-bottom: 0px;
    }
}

/*=============== .article-question ===================*/
.article-question {
    padding-top: 40px;
    padding-bottom: 80px;
    background: #EFF3F8;
}

.article-question__row {
    display: flex;
    padding: 60px 60px 60px 60px;
    border-radius: 20px;
    background: linear-gradient(88deg, #06172d 0%, #068bc0 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.article-question__header {
    flex: 1 0 50%;
    padding-right: 40px;
}

.article-question__title {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

.article-question__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #73adf4;
}

.article-question__title span {
    width: 80px;
    height: 80px;
    background-image: url("/img/article-page/question-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.article-question__title p {
    padding-left: 20px;
    color: #fafcff;
    text-shadow: 1px 1px 2px 0px #f5f5f5;
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 120%;
}

.article-question__subtitle {
    color: #fafcff;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 140%;
}

.article-question__form {
    flex: 1 0 50%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.input {
    width: 100%;
}

.input input {
    width: 100%;
    padding: 10px 20px;
    color: #06172d;
    border-radius: 30px;
    background: #fafcff;
}

.textarea {
    width: 100%;
}

.textarea textarea {
    width: 100%;
    height: 150px;
    padding: 20px 20px;
    color: #06172d;
    border-radius: 30px;
    background: #fafcff;
    overflow: hidden;
}

@media (max-width: 967px) {
    .article-question__row {
        flex-direction: column;
        row-gap: 60px;
    }

    .article-question__form {
        padding-left: 0px;
    }
}

@media (max-width: 767px) {
    .article-question__row {
        padding: 40px 40px 60px 40px;
    }

    .article-question__header {
        padding-right: 0px;
    }

    .article-question__title span {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 400px) {
    .article-question__row {
        padding: 40px 20px 40px 20px;
    }

    .article-question__title span {
        width: 40px;
        height: 40px;
    }

    .article-question__title p {
        font-size: 1.5rem;
        line-height: 110%;
    }

    .article-question__subtitle {
        font-size: 1rem;
    }

    .article-question__form {
        row-gap: 20px;
    }

    .form__btn {
        width: 100%;
    }

    .form__btn .btn {
        width: 100%;
    }
}

/*=============== .article-video ===================*/