

body {
    padding: 0;
    padding-top: 118px;
    margin: 0;
    height: 100vh;
}

.nav-wrap {
    position: fixed;
    width: 100%;
    height: 118px;
    top: 0;
    left: 0;
}
.nav-wrap .nav {
    height: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #111;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 30px 110px;
    gap: 58px;
}
.nav div {
    text-align: center;
}
.nav1 {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 4px;
    align-items: center;
    justify-self: end;
    max-width: 230px;
    width: 100%;
}
.nav1 img {
    width: 100%;
    max-height: 32px;
    object-fit: contain;
}
.nav2 {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4px;
    align-items: center;
    justify-self: start;
    max-width: 150px;
    width: 100%;
}
.nav2 div {
    text-align: center;
}
.nav2 img {
    width: 100%;
    max-height: 40px;
    object-fit: contain;
}
.nav1,
.nav2 {
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.container {
    padding: 26px;
}

.typo {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
}
.typo img {
    width: 100%;
    min-width: 0;
}

@media (max-width: 700px) {
    body {
        padding-top: 88px;
    }
    .nav-wrap {
        height: 88px;
    }
    .nav-wrap .nav {
        padding: 24px 34px;
        gap: 24px;
    }
    .nav1 {
        max-width: 170px;
    }
    .nav2 {
        max-width: 108px;
    }
    .nav1 img {
        max-height: 24px;
    }
    .nav2 img {
        max-height: 30px;
    }
    .container {
        padding: 18px;
    }
    .typo {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }
}
