/*
[Fonts]
[TT Firs Neue, 300, Light]
[TT Firs Neue, 400, Regular]
[TT Firs Neue, 500, Medium]

[Inter, 300, Light]
[Inter, 400, Regular]
[Inter, 500, Medium]
*/

/*@font-face {
    font-family: 'TTFirsNeueLight';
    src: url(../fonts/TT-Firs-Neue-Light.ttf);
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'TTFirsNeueRegular';
    src: url(../fonts/TT-Firs-Neue-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'TTFirsNeueMedium';
    src: url(../fonts/TT-Firs-Neue-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}*/

@font-face {
    font-family: 'InterLight';
    src: url(../fonts/Inter-Light.ttf);
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'InterRegular';
    src: url(../fonts/Inter-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'InterMedium';
    src: url(../fonts/Inter-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}

body {
    margin: auto;
    background-color: rgba(245, 245, 245, 255);
}

#wrapper-container{
    max-width: 1440px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

.sec-margin-40px {
    margin: 20px 40px 20px 40px;
}

.bor-radius-16px {
    border-radius: 16px;
}

.col-bg-black{
    background-color: rgba(18, 18, 18, 255);
}

.font-medium {
    /*font-family: 'TTFirsNeueMedium', Roboto, sans-serif;*/
    font-family: 'InterMedium', Roboto, sans-serif;
    font-weight: 500;
}

.font-regular {
    /*font-family: 'TTFirsNeueRegular', Roboto, sans-serif;*/
    font-family: 'InterRegular', Roboto, sans-serif;
    font-weight: 400;
}

.font-black {
    color: black;
}

.font-white {
    color: white;
}

.font-size-20px {
    font-size: clamp(16px, 1.4vw, 20px);
}

.font-size-24px {
    font-size: clamp(18px, 1.5vw, 24px);
}

.text-none-decoration {
    text-decoration: none;
}

.desktop-header-nav-block {
    display: grid;
    grid-template-columns: repeat(6, auto);
}

.mobile-header-nav-block {
    display: none;
    grid-template-columns: repeat(2, auto);
}

.mobile-header-burger-panel {
    display: none;
}

.i-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245, 245, 245, 255);
}

.i-header-nav-block {
    padding: 20px 80px 20px 80px;
    display: grid;
}

.i-header-nav-item {
    font-size: clamp(16px, 1.4vw, 20px);
    color: black;
    text-decoration: none;
    text-align: center;
    transition: font-size 0.3s ease;
}

.i-header-nav-item:hover {
    font-size: clamp(18px, 1.5vw, 24px);
}

.i-footer {
    margin: 40px 80px 40px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.i-footer-nav-block {
    display: grid;
    grid-template-columns: repeat(1, auto);
    grid-template-rows: min-content min-content;
    margin-right: 20px;
}

.i-footer-nav-block-title {
    /*font-family: 'TTFirsNeueMedium', Roboto, sans-serif;*/
    font-family: 'InterMedium', Roboto, sans-serif;
    font-size: clamp(18px, 1.5vw, 24px);
    color: rgb(147, 146, 146);
    margin-block-start: 0px;
    margin-block-end: 1em;
}

.i-footer-nav-item {
    /*font-family: 'TTFirsNeueMedium', Roboto, sans-serif;*/
    font-family: 'InterMedium', Roboto, sans-serif;
    font-size: clamp(18px, 1.5vw, 24px);
    text-decoration: none;
    color: black;
}

.footer-desktop {
    display: block;
}

.footer-mobile {
    display: none;
}

#content-container {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(1fr, auto);
}

.under-dev-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

@media only screen and (max-width: 768px) {

    .desktop-header-nav-block {
        display: none;
    }

    .mobile-header-nav-block {
        display: grid;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-header-burger {
        cursor: pointer;
    }

    .mobile-header-burger-panel {
        display: none;
        padding-top: 20px;
        padding-bottom: 20px;
        grid-template-columns: repeat(1, 1fr);
        position: relative;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        z-index: 999;
        align-content: space-around;
    }

    .i-header-nav-block {
        padding: 20px 30px 20px 30px;
    }

    .i-footer {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
        margin: 20px 40px 20px 40px;
    }

    .i-footer-nav-block {
        justify-items: center;
        padding-bottom: 16px;
    }

    .i-footer-nav-block-title {
        margin-block-end: 6px;
    }

    .footer-desktop {
        display: none;
    }
    
    .footer-mobile {
        display: block;
        padding-top: 20px;
    }

    .i-header-nav-item-mobile {
        color: white;
        text-decoration: none;
        text-align: center;
    }

    .under-dev-container {
        height: 80vh;
        padding: 10px 40px 10px 40px;
    }
}