@font-face {
    font-family: 'Optima nova LT Pro';
    src: url('../typos/OptimaNovaLTPro-Regular.woff2') format('woff2'),
        url('../typos/OptimaNovaLTPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sweet Sans Pro';
    src: url('../typos/SweetSansPro-Regular.woff2') format('woff2'),
        url('../typos/SweetSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Optima nova LT Pro';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;        
    color: #000;
}
a{
    color: #000;
    text-decoration: none;
}
.container{
    width: 100%;
    height: 100%;
    min-height: calc(var(--vh, 1vh) * 100) !important;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.logo{
    height: 45px;
    height: 40px;
}
.txt{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 32px 0;
    h2{
        margin: 0;
        font-size: 36px;
        font-size: 32px;
        text-align: center;
        font-weight: normal;
    }
    .iso{
        height: 60px;
        margin-top: 80px;
        margin-top: 48px;
    }
}
.foot{
    display: flex;
    justify-content: center;
    font-family: 'Sweet Sans Pro';    
    font-size: 18px;
    font-size: 16px;
    font-size: 14px;
    .txt{
        margin: 0;
        span{
            white-space: nowrap;
        }
    }
    .iso{
        display: none;
    }
}



/* DESKTOP */
@media only screen and (min-width: 1200px) {
    .container{
        max-width: 1440px;
        margin: 0 auto;
        padding: 48px 60px;
        padding-top: 68px;
    }
    .logo{
        height: 60px;
    }
    .txt{
        h2{
            margin-bottom: 56px;
            font-size: 72px;
        }
        .iso{
            display: none;
        }
    }
    .foot{
        align-items: flex-end;
        justify-content: space-between;
        width: 100%;
        .txt{
            display: block;
            a{
                transition: all 250ms ease-out;
                &:hover{
                    text-decoration: underline;
                }
            }
        }
        .iso{
            display: inline-block;
            width: auto;
            height: 60px;
        }
    }
}