@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 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}

.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%;
    min-height: 80px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    padding: 25px 20px;
    margin-bottom: 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

footer > div:first-child {
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

footer .about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

footer a {
    display: inline-block;
    color: #e0e0e0;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
}

footer a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

footer a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 1px;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

footer a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

@media screen and (max-width: 769px) {
    footer {
        padding: 20px 15px;
        font-size: 13px;
        min-height: 70px;
    }
    
    footer .about {
        gap: 5px;
    }
    
    footer a {
        padding: 5px 12px;
        font-size: 12px;
    }
}

.img-box {
    position: relative;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

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.four {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

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

:root {
    --all-width: 1320px;
    --logo: 200px;
    --searchBar: 280px;
    --button: 36px;
}

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