.page-container{
    width: 100%;
    background-color: transparent;
}

.banner {
    position: relative;
    overflow: hidden;
    min-width: 100vw;
}

.banner img {
    width: 100vw;
}

.main{
    display: flex;
    justify-content: space-between;
    margin: 3vw 5vw 5vw 4vw;
    gap: 4vw;
    top: 0;
}

.sidebar {
    -webkit-transition: .25s linear;
    -o-transition: .25s linear;
    display: block;
    z-index: 3;
    position: sticky;
    top: 90px;
    width: 25vw;
    height: 80vh;
    padding: 0 20px 30px 0;
    background-color: transparent;
    transition: .25s linear;
}


.sidebar.is-show+.content {
    left: 20vw;
    width: calc(100% - 18vw);
    padding: 60px 50px;
    transition: .25s linear;
}

.sidebar+.content {
    left: 0;
    width: 100%;
    padding: 45px 30px;
    transition: .25s linear
}

.sidebar-box {
    display: block;
    position:absolute;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    width: 100%;
}

.side_titles {
    z-index: index 5;
}

.side_titles {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 30px 12px 30px;
    border-radius: 20px 20px 20px 20px;
    color: #646464;
    font-style: normal;
    font-weight: 700;
    line-height: 1.36;
    transition: .25s linear;
    font-family: kumbh-bold;
    font-size: 20px;
    width:100%;
}

.side_titles:hover,
.uk-active .side_titles{
    background: rgba(248, 92, 14, 0.205);
    color: rgb(251,81,34)
}


.side_titles::before {
    display: block;
    position: absolute;
    top: 0;
    left: 5px;
    width: 10px;
    height: 100%;
    border-radius: 5px 5px 5px 5px;
    background: rgb(251,81,34);
    content: '';
    opacity: 0;
    transition: .25s linear
}

[open] p,
details p {
    transition: max-height .25s
}

.side_titles span {
    width: 100%;
    word-wrap: normal;
    white-space: normal;
    text-align: left;
}

@media only screen and (max-width:767px) {
    .sidebar {
        width:0;
        overflow:hidden;
    }

    .sidebar.is-show+.content {
        left: 0;
        width: 100%;
        padding: 45px 30px;
        transition: .25s linear;
    }
}

.content {
    background-color: #ffffff;
    padding: 15px 20px 1px 30px;
    border-radius: 20px;
    margin: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

.content p {
    margin: 1rem 0;
    line-height: 1.5;
}

.sub-container {
    background-color: transparent;
    border-radius: 15px;
    margin-top: 0;
    padding: 0 20px 0 20px;
    box-shadow: 0;

    max-height: 0;
    opacity: 0;
    overflow:hidden;
    max-height:0;
    transition: 0.5s ease-in-out;
}

.uk-active .sub-container{
    opacity: 1;
    max-height: 1000px;
    transition-delay: 0.5s;
    transition: 0.5s ease-in-out;
}

.sub-container li{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    padding: 6px 15px 6px 30px;
    margin: 15px 0;
    border-radius: 20px 20px 20px 20px;
    color: #646464;
    font-style: normal;
    font-weight: 700;
    line-height: 1.36;
    transition: .25s linear;
    font-family: kumbh-bold;
    font-size: 20px;
    width:100%;
}

.sub-container li a{
    color: #646464;
    text-decoration: none;
    width: 100%;
    transition: .25s linear;
}

.sub-container li a::before {
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 5px 5px 5px 5px;
    background:#646464;
    content: '';
    opacity: 0;
    transition: .25s linear
}

.sub-container li:hover a::before,
.sub-container .sub-active a::before{
    background: rgb(251, 81, 34);
    transition: .25s linear
}

.sub-container span {
    width: 100%;
    word-wrap: normal;
    white-space: normal;
    text-align: left;
}

.sub-container li:hover,
.sub-container .sub-active{
    background: rgba(248, 92, 14, 0.205);
}

.sub-container .sub-active a,
.sub-container li a:hover{
    color: rgb(251, 81, 34);
}