.container{
    position: relative;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner{
    width: 100%;
}
.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo_media{
    width: 80px;
}
.logo_txt{
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 900;
}
.slot{
    width: 500px;
    max-width: 92%;
    margin: 50px auto 0;
}
.slot-head{
    text-align: center;
}
.slot-cont{
    margin-top: 7px;
    height: 80px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
#slotInner{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.topic{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #222;
    white-space: nowrap;
}
.cta{
    margin-top: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta a{
    display: block;
    width: 125px;
}
.cta_txt{
    margin-left: 10px;
    font-size: 1.1rem;
}
@media (min-width: 768px){
    .logo_media{
        width: 100px;
    }
    .logo_txt{
        font-size: 2.5rem;
    }
    .slot{
        margin-top: 75px;
    }
    .slot-head{
        font-size: 1.5rem;
    }
    .slot-cont{
        border-radius: 15px;
    }
    .topic{
        font-size: 26px;
    }
    .cta_txt{
        margin-left: 17px;
    }
}