#ec_side header {
    height: 80px;
    background: none;
    backdrop-filter: blur(0);
}

#ec_side #creative_menu a {
    color: #fff;
}

#ec_works_section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#ec_works {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
    perspective: 500px;
    perspective-origin: -150% -150%;
}

#ec_works_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s all ease;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: brightness(40%) blur(20px) grayscale(50%);
    z-index: 0;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#ec_works_section img.act {
    opacity: 1;
    filter: brightness(40%) blur(0) grayscale(30%);
}

#ec_works_section .inner:hover img {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    filter: brightness(100%) blur(0) grayscale(0%);
}

footer {
    position: fixed;
    bottom: 0;
    right: 10px;
    font-size: 70%;
    color: #fff;
    z-index: 10000;
}

#ec_works .outer {
    aspect-ratio: 5/4;
    overflow: hidden;
    position: relative;
}

#ec_works .outer .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#ec_works .outer .inner .cover {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    cursor: pointer;
}

#menu_logo span {
    font-weight: bold;
    color: #fff;
}

#ec_works_modal {
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    position: fixed;
    z-index: -1;
}

#ec_works_modal.act {
    left: 0;
    z-index: 9999;
}

#ec_works_modal::before,
#ec_works_modal::after {
    content: "";
    width: 100%;
    height: calc(50% + 0.5px);
    background: rgba(0, 0, 0, .8);
    position: absolute;
    left: 0;
    transition: 1s all ease;
    z-index: 0;
    backdrop-filter: blur(5px);
}

#ec_works_modal::before {
    top: -50%;
}

#ec_works_modal.act::before {
    top: 0%;
}

#ec_works_modal::after {
    bottom: -50%;
}

#ec_works_modal.act::after {
    bottom: 0;
}

#ec_works_modal .outer {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ec_works_modal .outer .modal_bg {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

#ec_works_modal .outer .inner {
    position: relative;
    z-index: 3;
    width: calc(100% - 50px);
    max-width: 800px;
}

#ec_works_modal .outer .inner img {
    filter: blur(20px);
    opacity: 0;
    transition: 1s all ease;
}

#ec_works_modal .outer .inner.act img {
    opacity: 1;
    filter: blur(0);
}

#ec_works_modal .outer .inner img {
    width: 100%;
}
#loading{
    background: #fff;
}
#load_par{
    background: #000;
}

#ec_help{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}
#ec_help .outer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}
#ec_help .outer .inner{
    z-index: 1;
    position: relative;
    width: calc(100% - 60px);
    max-width: 800px;
    height: 80%;
    background: #fff;
    padding: 50px; 
    overflow: auto;
}
#ec_help .outer .inner .box{
    margin: 40px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #000;
}
#ec_help .outer .inner .box h3{
    margin-bottom: 10px;
    font-size: 200%;
}
#ec_help .outer .inner .box p{
    margin: 10px 0;
}
#ec_help .outer .inner .box:first-child{
    margin-top: 0;
}
#ec_help .outer .inner .box:last-child{
    border-bottom: none;
    padding-bottom : 0;
}
#ec_help .outer .back_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    background:rgba(0, 0, 0, .7);
    backdrop-filter: blur(10px);
}

#ec_help_bt{
    display: none;
    width: 100px;
    aspect-ratio: 1;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: none;
    animation: ecHelpBt 1s infinite linear;
    transform-origin: center;
}
@keyframes ecHelpBt {
    0%{
        transform: rotate(0deg);
    }
    5%{
        transform: rotate(20deg);
    }
    10%{
        transform: rotate(-15deg);
    }
    15%{
        transform: rotate(10deg);
    }
    20%{
        transform: rotate(-5deg);
    }
    25%{
        transform: rotate(3deg);
    }
    30%{
        transform: rotate(-1deg);
    }
    45%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
#ec_help_bt:hover{
    opacity: .7;
}
#ec_help_bt img{
    width: 100%;
}
#ec_help_close_bt{
    opacity: 0;
    transition: .4s all ease;
    width: 60px;
    top: 5%;
    right: 5%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #333;
    position: fixed;
    z-index: 100;
}
#ec_help_close_bt.act{
    opacity: 1;
}
#ec_help_close_bt::before,#ec_help_close_bt::after{
    content: "";
    height: 2px;
    width: 50%;
    background: #fff;
    top: calc(50% - 1px);
    left: 25%;
    position: absolute;
}
#ec_help_close_bt::before{
    transform: rotate(45deg);
}
#ec_help_close_bt::after{
    transform: rotate(-45deg);
}