.formations_text{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
}
.formations_list{
    margin-top: 20px;
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}
.format_item{
    width: 33.33%;
    margin-bottom: 60px;
}
.format_item_info{
    margin-left: 15px;
    margin-right: 15px;
}
.format_item_image{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.format_item_image:before{
    content: '';
    float: left;
    padding-top: 65%;
}
.format_item_image img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.format_item_inf{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 26px;
}
.format_item_date{
    color: #333232;
}
.format_item_hash{
    color: #C15E47;
}
.format_item_title{
    margin-top: 12px;
    font-size: 26px;
    line-height: 36px;
    font-family: Zalando Sans Expanded, sans-serif;
    color: #333232;
}
.format_item_title a{
    color: #333232;
    text-decoration: none;
}
.format_item_description{
    margin-top: 12px;
    color: #574F4F;
    font-size: 16px;
    line-height: 26px
}
.format_item_link{
    align-items: center;
    background: transparent;
    background: #c15e47;
    border: 1px solid #c15e47;
    border-radius: 30px;
    bottom: 18px;
    color: #fff;
    display: inline-flex;
    font-family: Zalando Sans Expanded, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    height: 55px;
    justify-content: center;
    letter-spacing: 2.16px;
    line-height: 1;
    opacity: 0;
    padding: 16px 30px;
    pointer-events: none;
    position: absolute;
    right: 18px;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: all .3s ease-in-out;
    z-index: 2;
}
.format_item_info:hover .format_item_link{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.formations_captions{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.formations_caption{
    margin-left: 20px;
    margin-right: 20px;
    text-transform: uppercase;
    color: #4A3632;
    font-size: 13px;
    line-height: 23px;
    font-family: Zalando Sans Expanded, sans-serif;
    padding: 10px 0;
    margin-bottom: 10px;
    cursor: pointer;
    letter-spacing: 0.2em;
    transition: .2s;
}
.formations_caption:hover{
    color: #C15E47;
}
.formations_caption.active{
    color: #C15E47;
    border-bottom: 1px solid #C15E47;
}

@media (max-width: 998px) {
    .format_item{
        width: 50%;
    }
    .format_item_title {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    .format_item{
        width: 100%;
    }
}
.greeting_message{
    position: fixed;
    width: 100%;
    height: calc(100dvh - 120px);
    top: 120px;
    left: 0;
    z-index: 10;
}
@media (min-width: 1200px) and (max-width: 1460px) {
    .greeting_message{
        height: calc(125dvh - 120px);
    }
}
.wrp_greeting_message{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D5CDC133;
    backdrop-filter: blur(20px)

}
.greeting_message_block{
    background: #fff;
    box-shadow: 0px 24px 54px 0px #0000001A;
    box-shadow: 0px 612px 171px 0px #00000000;
    width: 640px;
    padding: 60px 40px;
    box-sizing: border-box;
    border-radius: 10px;
}
.greeting_message_text{
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}
.greeting_message_buttons{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.greeting_message_button{
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}