
        
@font-face {
    font-family: 'PP Eiko, Light';
    src: url("PPEiko-Light.woff") format("woff"),
            url("PPEiko-Light.woff2") format("woff2");
}

body, h1, h2, h3, h4, h5, h6, p, a{
    font-family: 'PP Eiko, Light';
}


body{
    display: flex !important;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
}

#dcviewer{
    height: calc(100vh - 100px);
}

.footer-banner{
    position: relative;
    background: #e5dcd2;
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.footer-banner p{
    color: #000;
    font-weight: 400;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    gap: 100px;
    font-size: 28px;
}

.footer-banner span {
    background: #ef4723;
    margin: 0px 0px 0px 50px;
    padding: 5px 48px;
    border-radius: 25px;
}

.footer-banner p::before{
    content: '';
    background: url(logo.svg);
    width: 270px;
    height: 50px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: right;
    margin-top: 0px;
}

.popup{
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(20px);
    transition: .3s ease;
    z-index: 999999999999;
}

.active{
    top: 0px;
}

.close-button{
    background: #f1f1f1;
    display: block;
    margin: 0px auto;
    cursor: pointer;
    color: black;
    padding: 12px;
    text-align: center;
    position: absolute;
    right: 0px;
    top: 100px;
    z-index: 1;
    font-family: 'SF Display';
}

.page{
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ad{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.ad img{
    cursor: pointer;
}

@media (max-width:767px){
    .ad{
        justify-content: flex-start;
    }
    .ad img{
        height: 100%;
        width: auto;
    }
    .close-button{
        left: 0px;
        right: unset;
    }
    .footer-banner{
        position:absolute;
        bottom: 0px;
        width: 100%;
        left: 0px;
        z-index: 9999999;
    }
    #dcviewer{
        height: calc(100vh - 150px);
    }
    .footer-banner p{
        width: 95%;
        font-size: 16px;
    }
    .footer-banner p::after{
        margin-left: 5px;
    }
}