.catalog{
    padding-top: 150px;
}

.catalog-list_hero{
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: calc(100% - 80px);
    height: 520px;
}

.page__content--catalog{
    position: relative;
    display: flex;
    align-items: center;

    height: 100%;
    width: 100%;
}

.catalog-list_breadcrumbs{
    position: absolute;
    top: 45px;
}

.catalog-list_breadcrumbs a{
    position: relative;
    padding-right: 11px;
    padding-left: 11px;
    color: #A7ABBE;
    font-weight: 400;
}

.catalog-list_breadcrumbs a:last-child{
    padding-right: 0;
    color: #006738;
}

.catalog-list_breadcrumbs a:first-child{
    padding-left: 0;
}

.catalog-list_breadcrumbs a:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 9px;
    right: -4px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #A7ABBE;
}

.catalog-list_hero_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    border-radius: 20px;
    object-fit: cover;
}

.catalog-list_hero_bg_desktop{
    display: block;
}

.catalog-list_hero_bg_mobile{
    display: none;
}

.catalog-list_content{
    max-width: 600px;
}

.catalog-list_title{
    margin-bottom: 20px;
    position: relative;
    z-index: 1;

    font-size: 48px;
    font-weight: 400;
}

.catalog-list_title__list{
    margin-bottom: 40px;
    font-size: 42px;
}

.catalog-list_text{
    position: relative;
    z-index: 1;

    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.catalog-list__name{
    margin-top: 70px;
    margin-bottom: 50px;

    text-align: center;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 400;
}

.catalog-list__container{
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px 15px;
}

.catalog-list__container--child_program{
    position: relative;
    grid-template-columns: 1fr 1fr;
    gap: 80px 30px;
}

.catalog-list__elem--child_program{
    position: relative;
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 600px;

    overflow: hidden;
    background-color: #EFF0F5;
    border-radius: 20px;
}

.catalog_child_program_poster{
    position: absolute;

    top: 170px;
    left: 30px;
    width: 108px;
    height: 150px;

    border-radius: 10px;
    border: 3px solid #EFF0F5;
}

.catalog_child_program_service_wrap{
    position: absolute;

    top: 35px;
    right: 33px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog_child_program_service{
    position: relative;
    margin-left: 5px;
    padding: 6px 12px;

    border-radius: 30px;
    background: #FFF;
    cursor: default;

    color: #006738;
    font-size: 14px;
    font-weight: 400;
}

.catalog_child_program_service_status{
    position: relative;

    border-radius: 30px;
    background: #FFF;
    cursor: default;

    font-size: 14px;
    font-weight: 700;
}

.catalog_child_program_service_status_small{
    position: absolute;
    top: 20px;
    left: 10px;
}

.catalog_child_program_service_status--open{
    color: #006738;
    padding: 6px 12px 6px 24px;
}

.catalog_child_program_service_status--open::before{
    content: "";
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);

    width: 5px;
    height: 5px;
    border-radius: 10px;
    background-color: #87D454;
}

.catalog_child_program_service_status--close{
    color: #848484;
    padding: 6px 12px 6px 28px;
}

.catalog_child_program_service_status--close::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: 48%;
    left: 9px;
    transform: translateY(-50%);

    width: 15px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 15px 16px;

    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 16' fill='none'><path d='M3.25 6V5.42857C3.25 3.52925 4.92262 2 7 2C9.07738 2 10.75 3.52925 10.75 5.42857V6M3.25 6C2.5625 6 2 6.51429 2 7.14286V12.8571C2 13.4857 2.5625 14 3.25 14H10.75C11.4375 14 12 13.4857 12 12.8571V7.14286C12 6.51429 11.4375 6 10.75 6M3.25 6H10.75M7 10.625V9.125' stroke='%23848484' stroke-width='1.8' stroke-linecap='round'/></svg>");
}

.catalog_child_program_img{
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.catalog_child_program_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog_child_program_wrap{
    padding: 30px 32px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.catalog_child_program_caption{
    margin-bottom: 10px;
}

.catalog_child_program_description{
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    max-height: 87px;
    overflow: hidden;
}

.catalog_child_program_info{
    margin-top: 30px;

    display: flex;
    align-items: center;
}

.catalog_child_program_timetable{
    margin-right: 15px;
    padding: 10px 14px;

    display: flex;
    align-items: center;

    width: 60%;
    height: 55px;
    border-radius: 10px;
    background-color: #E4E6F0;
}

.catalog_child_program_timetable_el:first-child{
    margin-right: 60px;
}

.catalog_child_program_timetable_el p{
    font-size: 14px;
    font-weight: 400;
    text-wrap: nowrap;
}

.catalog_child_program_timetable_green{
    color: #006738;
}

.catalog_child_program_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 55px;
    border-radius: 10px;
    background: #006738;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.catalog-list__elem{
    width: 100%;
    height: 540px;
    overflow: hidden;
}

.catalog-list__elem:hover .catalog-list__img{
    transform: scale(1.1);
}

.catalog-list__img-wrap{
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.catalog-list__img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.catalog-list__caption{
    margin-top: 25px;
    padding-right: 15px;

    color: #000;
    font-size: 24px;
    font-weight: 400;
}

.category_hotel_booking_frame--catalog{
    top: 557px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 78px);
}

.catalog-list__name{
    margin-top: 100px;
}

@media(max-width: 1500px){
    .catalog-list_breadcrumbs{
        left: 40px;
    }

    .catalog-list_content{
        padding-left: 40px;
    }

    .catalog_child_program_timetable_el:first-child {
        margin-right: 0;
    }

    .catalog_child_program_timetable{
        display: flex;
        justify-content: space-between;
    }
}

@media(max-width: 1024px){
    .catalog-list__container{
        grid-template-columns: 1fr 1fr;
    }

    .catalog-list__container--child_program {
        grid-template-columns: 1fr;
    }

    .catalog_child_program_timetable_el:first-child {
        margin-right: 60px;
    }

    .catalog_child_program_timetable{
        justify-content: flex-start;
    }
}

@media(max-width: 768px){
    .catalog{
        padding-top: 0px;
    }

    .catalog--main{
        padding-top: 100px;
    }


    .catalog-list_hero{
        padding-top: 60px;
        max-width: 100%;
    }

    .catalog-list_hero_bg{
        border-radius: 0;
    }

    .catalog-list__elem{
        height: 340px;
    }

    .catalog-list__img-wrap{
        height: 250px;
    }

    .catalog-list_breadcrumbs{
        display: none;
    }

    .catalog-list_hero_bg_desktop{
        display: none;
    }

    .catalog-list_hero_bg_mobile{
        display: block;
    }

    .catalog-list_hero::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, #000 -0.33%, rgba(0, 0, 0, 0.00) 100%);
        z-index: 2;
    }


    .catalog-list_hero::after{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20px;
        background-color: #fff;
        z-index: 5;
        border-radius: 20px 20px 0 0;
    }

    .page__content--catalog{
        position: relative;
        z-index: 3;
        align-items: end;
        text-align: center;
        justify-content: center;
		width: calc(100% - 20px);
    }

    .catalog-list_content{
        margin-bottom: 65px;
        color: #FFF;
        padding-left: 0;
    }

    .catalog-list_title{
        font-size: 24px;
    }

    .catalog-list_title__list{
        margin-bottom: 20px;
    }

    .catalog-list_text{
        font-size: 14px;
    }

    .catalog-list__name{
        margin-top: 40px;
        margin-bottom: 30px;
        font-size: 20px;
    }

    .catalog-list__elem{
        height: 100%;
    }

    .catalog-list__img-wrap{
        height: 160px;
    }

    .catalog-list__caption{
        margin-top: 15px;
        font-size: 14px;
    }

    .catalog-list__container{
        gap: 20px 15px;
    }

    .category_hotel_booking_frame--catalog{
        top: 0;
        position: relative;
    }

    .catalog-list__name{
        margin-top: 60px;
    }

    .catalog_child_program_info{
        flex-direction: column;
    }

    .catalog_child_program_timetable{
        width: 100%;
    }

    .catalog_child_program_btn{
        width: 100%;
    }

    .catalog-list__elem--child_program{
        height: 100%;
    }

    .catalog_child_program_timetable{
        margin-right: 0;
        margin-bottom: 10px;
    }

    .catalog_child_program_description{
        font-size: 12px;
    }
}

@media(max-width: 415px){
    .category_hotel_booking_frame--catalog{
        max-width: 100%;
    }

    .catalog_child_program_timetable_el:first-child {
        margin-right: 0;
    }

    .catalog_child_program_timetable{
        padding-right: 20px;
        padding-left: 20px;

        justify-content: space-between;
    }

    .catalog_child_program_service_wrap{
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .catalog_child_program_service{
        margin-left: 0;
        margin-bottom: 5px;
    }
}

@media(max-width: 320px){
    .catalog_child_program_timetable {
        flex-direction: column;
        height: auto;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
