@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: 13px;
    padding: 3px 0px;
    text-transform: uppercase;
    font-weight: bold;
}
.postionFixed {
	width: 100%;
	min-height: 60px;
	position: fixed;
	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: #000000;
    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;
}

main {
    flex: 1;
}

.limit_rows {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limit_rows.one {
    white-space: nowrap;
}

.limit_rows.two,
.limit_rows.three,
.limit_rows.four {
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.limit_rows.two {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.limit_rows.three {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.limit_rows.four {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

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

html {
    scroll-behavior: smooth;
}

:root {
    --all-width: 1200px;
    --logo: 200px;
    --searchBar: 235px;
    --button: 35px;
}

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