@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-ExtraBold.ttf') format('truetype');
    font-display: swap;
    font-weight: 800;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Bold.ttf') format('truetype');
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Regular.ttf') format('truetype');
    font-display: swap;
    font-weight: 400;
}
*{
    box-sizing: border-box;
    margin: 0;
    font-family: 'Onest';
}

.logo{
    width: 100%;
    max-width: 520px;
}

.std p{
    color: white;
}

.std .desc{
    font-size: 24px;
}
body{
    min-height: 100vh;
    background-color: #000B15;
    background-image: url(../img/bg-menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.clock {
    display: flex;
    justify-content: center;
    padding: 15px;
    width: 100%;
    z-index: 10;
    margin-top: .6rem;
    border-radius: var(--radious-general);
}

.containerspans {
    display: flex;
    gap: .6rem;
}

.clock span {
    color: white;
    font-size: 50px;
    padding: 0 10px;
    font-display: optional;
    font-optical-sizing: auto;
    font-weight: 700;
    text-align: center;
    display: block;
    min-width: 140px;
}

.clock span.item{
    background: #000B15;
    border-radius: 16px;
    padding: 20px 8px;
    border: 2px solid white;
}

.clock span .small {
    font-size: 14px;
    margin: 0;
    font-display: optional;
    font-optical-sizing: auto;
    font-weight: 300;
    text-transform: uppercase;
}

.btn-std{
    width: 100%;
    display: inline-block;
    border-radius: 100rem;
    padding: 18px 12px;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease, box-shadow .3s ease;
    font-weight: 700;
    font-size: 18px;
}

.btn-std:hover {
    transform: translateY(-12px);
    transition: transform 0.3s ease, box-shadow .3s ease;
    box-shadow: 0 0 0 50px inset rgba(250,250,250,1);
    color: #000B15;
}

.fw-black{
    font-weight: 900;
    font-size: 28px;
}

.tyc{
    background-image: url(../img/bg-tyc.png);
    /* background-size: 110vw; */
    background-position: top center;
    color: white;
    padding-top: 5rem;
}

.tyc h1{
    font-size: 42px;
    font-weight: 700;
}

.tyc h2{
    font-weight: 700;
}

.tyc ul li{
}

.tyc h2:nth-child(n+2){
    margin-top: 32px;
    display: inline-block;
}

.tyc h3{
    margin-top: 22px;
    display: inline-block;
    font-weight: 700;
}

.tyc p{
    font-weight: 400;
}

.tyc footer a{
    text-decoration: none;
    color: white;
}

.tyc footer{
    border-top: 2px solid rgba(250,250,250,.4);
}

@media screen and (max-width: 768px) {
    .clock{
        margin-top: 0;
    }

    .clock span{
        min-width: 58px;
        font-size: 25px;
    }
    .clock span .small{
        font-size: 10px;
    }

    .fw-black{
        font-size: 14px;
    }

    .std .desc{
        font-size: 14px;
    }
}