@font-face {
    font-family: "smiley";
    src: url(../font/Outfit-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Gulkave-Regular';
    src: url(../font/Gulkave-Regular.woff) format('woff');
    font-display: swap;
}

@font-face {
    font-family: NZT-48;
    src: url(../font/NZT-48.woff2) format("woff2");
    font-display: swap
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "smiley";
}

img {
    width: 100%;
    object-fit: cover;
    display: block;
}

video {
    object-fit: cover;
}

a {
    text-decoration: none;
}

b,
strong {
    font-weight: 400
}

em,
i {
    font-style: normal;
}

li {
    list-style: none;
}

input {
    border: 0;
    outline: 0;
}

button {
    outline: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}


.de_iv_adv {
    max-width: 1300px;
    height: auto;
    background: #ababab;
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 15px;
    position: relative;
}

.de_text {
    max-width: 1300px;
    margin: auto;
    text-align: center;
    background: #ababab;
    color: black;
    font-size: 15px;
    padding: 2px 0px;
    text-transform: uppercase;
}

.postionFixed .de_text {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 11px;
    background-color: transparent;
}

.postionFixed {
    width: 100%;
    min-height: 60px;
    position: fixed;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

footer {
    width: 100%;
    height: 60px;
    text-align: center;
    background-color: #162433;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    padding: 10px 0 10px 0;
    margin-bottom: 60px;
}

footer a {
    display: inline;
    color: white;
}

.img-box {
    position: relative;
}

.img-box::before {
    content: '';
    display: block;
}

.img-box>img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

body {
    /* display: flex; */
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f7;
    max-width: 100vw;
    overflow-x: hidden;

}

main {
    flex: 1;
}

:root {
    --all-width: 1300px;
    --logo: 230px;
    --button: 40px;
    --searchBar: 280px;
}

html {
    scroll-behavior: smooth;
}

.center {
    width: var(--all-width);
    margin: 0 auto;
}

.one_row,
.two_row,
.three_row {
    overflow: hidden;
    text-overflow: ellipsis;
}

.one_row {
    white-space: nowrap;
}

.two_row {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.three_row {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

@media screen and (max-width:769px) {
    :root {
        --all-width: 100%;
        --logo: 230px;
        --searchBar: 100%;
    }
}