
.decor-hall{
    position: relative;
    padding-top: 36.24%;
    border-radius: 30px;
    min-height: 165px;
    margin-bottom: 42px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.decor-hall__inner{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 65px 46px;
    box-sizing: border-box;
}
.decor-hall .page-title{
    margin: 0;
    padding: 0;
    color: #ffffff;
}
.page-title{
    display: block;
    font-size: 67px;
    line-height: 1.2;
    font-weight: 500;
}
/*---------------------------------------------------*/
.table-wr{
    position: relative;
    overflow: auto;
}
.admission-dates-table-section{
    padding-top: 42px;
    padding-bottom: 100px;
    .btn-gradient{
        max-width: 658px;
        margin: 0 auto;
        margin-top: 100px;
    }
}
.admission-dates-table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 12px;
    font-size: 14px;
    color: #9BA7B4;
    b{
        display: block;
        font-size: 16px;
        font-weight: 500;
        color: #052443;
        text-align: center;
    }
    tr{
        th{
            width: 25%;
            padding: 10px 25px;
            box-sizing: border-box;
        }
        td{
            width: 25%;
            padding: 17px 25px;
            box-sizing: border-box;
        }
        td, th{
            min-width: 273px;
            &:not(.admission-dates-table__clear){
                border: 1px solid #000000;
                border-radius: 10px;
            }

            ul{
                width: 100%;
                margin-bottom: 14px;
                li{
                    margin-bottom: 5px;
                }
            }
        }
        .table-cell-pink{
            border: none !important;
            background-color: #FF5CE9;
            color: #ffffff;
            b{
                color: #ffffff;
            }
        }
        .table-cell-blue{
            border: none !important;
            background-color: #4173F2;
            color: #ffffff;
            b{
                color: #ffffff;
            }
        }
        .table-cell-pink-border{
            border: 1px solid #FF5CE9 !important;
            background-color: #FF5CE90D;

        }
        .table-cell-blue-border{
            border: 1px solid #4173F2 !important;
            background-color: #4173F20D;
        }



        .admission-dates-table__inner-cell{
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
            *:last-child{
                margin-bottom: 0;
            }
        }
    }
}
.btn-gradient{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    border-radius: 10px;
    background: #FF5CE9;
    background: -webkit-gradient(linear,left top, right top,from(rgba(255, 92, 233, 1)), to(rgba(65, 115, 242, 1)));
    background: -o-linear-gradient(left,rgba(255, 92, 233, 1) 0%, rgba(65, 115, 242, 1) 100%);
    background: linear-gradient(90deg,rgba(255, 92, 233, 1) 0%, rgba(65, 115, 242, 1) 100%);
    font-size: 16px;
    line-height: 1;

    color: #ffffff;
    overflow: hidden;

    span{
        position: relative;
        z-index: 1;
    }
    &::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #4173F2;
        transition: all 200ms ease;
        opacity: 0;
    }
    &:hover{
        &::before{
            opacity: 1;
        }
    }
}

/*=================================================================*/
@media screen and (max-width: 1430px){
    .page-title{
        font-size: 57px;
    }
    .news-container h2, .news-container .h2 {
        font-size: 35px;
    }
}
@media screen and (max-width: 999px){
    .decor-hall{
        margin-bottom: 22px;
    }
    .page-title{
        font-size: 47px;
    }
    .decor-hall__inner {
        padding:  15px 20px;
    }
    .admission-dates-table-section {
        padding-top: 12px;
        padding-bottom: 45px;
    }
}
@media screen and (max-width: 767px){
    .page-title{
        font-size: 35px;
    }
    .decor-hall{
        margin-bottom: 22px;
        border-radius: 10px;
    }
}
