.programm__block__request__modal-link.news__backwards:hover{
	background: #34404e;
}


.article_content img{
	max-width: 100%;
	height: auto;
}
.pages-block-top{
	padding-top: 1px;
}


/* Блок курса */
.course-card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
    padding: 24px 16px;
    grid-gap: 20px;
    border-radius: 4px;
    background: #3F4E5F;
    margin-top: 25px;
	margin-bottom: 25px;
}
.course-card__label{
    display: flex;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;

    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
}
.course-card__title{
    color: #FFF;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;    
}
.course-card__block.document{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 4px;
    align-self: stretch;
}

.course-card__block{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 10px;
    align-self: stretch;
}

.course-card__meta-label{
    color: #FFF;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.course-card__meta-value{
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.course-card__price-row{
    display: flex;
    align-items: flex-start;
    grid-gap: 24px;
    align-self: stretch;
    margin-top: 12px;
}
.course-card__price-cards-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 12px;
    width: 100%;
}
.course-card__price-cards{
    display: flex;
    align-items: stretch;
    grid-gap: 10px;
    align-self: stretch;
    width: 100%;
}
.course-card__price{
    display: flex;
    padding: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    border-radius: 4px;
    background: #F4F4F4;
    width: 100%;
}
.course-card__price-old{
    color: #323232;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 14.4px */
    text-decoration: line-through;
    opacity: 0.7;
}
.course-card__price-current{
    color: #FF5736;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.installment .course-card__price-current{
    color: #323232;
}
.course-card__price span{
    color: #323232;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.course-card__pricelabel{
    color: #323232;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
}
.course-card__button{
    display: flex;
    padding: 16px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 4px;
    background: #B8976C;
    color: #FFF;

    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.course-card__button:hover{
    color: #FFF;
}
.course-card__discount{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    color: #FF903F;
    font-family: Montserrat;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}
.course-card__discount_mobile{
    display: none;
}
@media (max-width: 991px) {
    .course-card__discount {
        font-size: 52px;
    }
}

@media (max-width: 540px) {
    .course-card__title{
        font-size: 18px;
    }
    .course-card__discount{
        display: none;
    }
    .course-card__discount_mobile{
        display: flex;
        padding: 0px 12px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 5.526px;
        align-self: stretch;
        border-radius: 8px;
        border: 1px solid #FF903F;

        color: #FF903F;
        text-align: right;
        font-family: Montserrat;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%; 
    }
    .course-card__price-cards-wrap{
        grid-gap: 8px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .course-card__price-cards{
        grid-gap: 4px; 
        flex-direction: column;
        flex: 1 0 0;
    }
    .course-card__button{
        width: 100%;
    }
}




/* Блок подарка */
.present-card{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    width: 100%;
    padding: 24px 16px;
    grid-gap: 20px;
    border-radius: 4px;
    background: #3F4E5F;
    margin-top: 25px;
	margin-bottom: 25px;
}
.present-card-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    justify-content: space-between;
}
.present-card__label{
    display: flex;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background: #34404E;

    color: #FFF;

    text-align: center;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.4px;
}
.present-card__title{
    color: #FFF;

    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 8px;
    margin-bottom: 20px;
}
.present-card__desc{
    color: #FFF;

    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 32px;
}
.present-card__img {
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #F4EAE2;
    border-radius: 10px;
}
.present-card__img img{
    width: 100%;
}
.present-card__img.mobile {
    display: none;
    width: 100%;
    margin-bottom: 12px;
}
@media (max-width: 991px) {
    .present-card {
        grid-template-columns: repeat(1, 1fr);
    }
    .present-card__img {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #F4EAE2;
        border-radius: 10px;
    }
    
    .present-card__img img {
        max-height: none;
        max-width: 100%;
        width: 50%;
    }
    .present-card__img {
        display: none;
    }
    .present-card__img.mobile {
        display: flex;
    }
}

@media (max-width: 768px) {
    .present-card {
        grid-template-columns: repeat(2, 1fr);
    }
    .present-card__title{
        font-size: 18px;
    }
    .present-card__img {
        align-items: flex-start;
    }
    .present-card__img img {
        max-height: none;
        max-width: 100%;
        width: 80%;
    }
    .present-card__img {
        display: flex;
    }
    .present-card__img.mobile {
        display: none;
    }
}

@media (max-width: 540px) {
    .present-card {
        grid-template-columns: repeat(1, 1fr);
    }
    .present-card__desc {
        margin-bottom: 12px;
    }
    .present-card__img {
        display: none;
    }
    .present-card__img.mobile {
        display: flex;
    }
    .present-card__img {
        height: 150px;
        align-items: flex-end;
        justify-content: flex-end;
        height: auto;
    }
    .present-card__img img {
        margin-right: 20px;
        width: 58%;
    }
    .present-card{
        grid-gap: 12px;
    }
}