* {
    padding: 0;
    margin: 0;
    /* text-decoration: none;
    list-style: none; */
    box-sizing: border-box;
}

@font-face {
    font-family: 'huawenkaiti';
    src: url(../font/huawenkaiti.woff);
}

@font-face {
    font-family: 'cochin';
    src: url(../font/Cochin.ttc);
}

@font-face {
    font-family: 'copper';
    src: url(../font/Copperplate.ttc);
}

@font-face {
    font-family: 'strokeorder';
    src: url(../font/strokeorder.woff);
}

@font-face {
    font-family: 'Arsilon';
    src: url(../font/Arsilon.otf);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #54140B;
    background-image: url(../img/bground.jpeg);
    background-size: 100%;
    font-family: 'huawenkaiti';
    color: white;
    overflow-x: hidden;
}

nav {
    background-color: #54140B;
    height: 75px;
    width: 100%;
    position: fixed;
    z-index: 5;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

nav:after {
    content: '';
    clear: both;
    display: table;
}

nav .logo {
    float: left;
    color: #EFEEE3;
    font-size: 30px;
    /* font-weight: 600; */
    line-height: 50px;
    padding-left: 60px;
    padding-top: 15px;
    cursor: pointer;
    /* background-color: #721C0F; */
}

nav ul {
    float: right;
    list-style: none;
    margin-right: 40px;
    position: relative;

}

nav ul li {
    /* float: left; */
    display: inline-block;
    /* background: #721C0F; */
    padding-top: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    line-height: 60px;
    font-size: 20px;
    padding: 14px 15px;
    font-family: 'cochin';
}

nav ul li a:hover {
    color: #EFC743;
    /* background: #54140B; */
}

/* nav ul ul li a:hover{
    color: #EFC743;
    background-color: #721C0F;
} */

nav ul li:hover {
    /* border-radius: 10px; */
    background-color: #54140B;
    /* transition: 0.5s; */
}

nav ul ul {
    position: absolute;
    top: 75px;
    opacity: 0;
    visibility: hidden;
    /* border-top: 3px solid #54140B; */
    /* transition: .5s; */
}

/* nav ul ul ul {
    border-top: none;
} */

nav ul li:hover>ul {
    top: 75px;
    margin-left: 2px;
    opacity: 1;
    visibility: visible;
}

nav ul ul li {
    position: relative;
    margin: 0px;
    width: 120px;
    padding-top: 0;
    float: none;
    display: list-item;
    border-bottom: 1px solid #54140B;
    box-shadow: -2px -2px 2px rgba(255, 255, 255, 0.2),
        2px 2px 2px rgba(0, 0, 0, 0.1),
        inset -2px -2px 2px rgba(255, 255, 255, 0.2),
        inset 2px 2px 2px rgba(0, 0, 0, 0.1);
}

nav ul ul li a {
    font-size: 16px;
    font-family: 'cochin';
    line-height: 50px;
}

/* nav ul ul ul li {
    position: relative;
    top: -50px;
    left: 150px;
} */


.show,
.icon,
input {
    display: none;
}

.empty {
    height: 80px;
}

/* .hero-section {
    min-height: 100vh;
} */

/* .hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    justify-content: space-between;
} */

.content {
    text-align: center;
}

.title {
    font-size: 60px;
    font-family: "huawenkaiti";
    margin-top: 50px;
}

.subtitle {
    font-size: 50px;
    font-family: 'Arsilon';
    color: #EFC743;
    margin-top: 30px;
}

.description {
    font-family: 'cochin';
    font-size: 25px;
    margin-top: 30px;
}

.button {
    text-decoration: none;
    color: white;
}

.button:hover {
    color: red;
    transition: .1s;
}

.youtube {
    font-size: 35px;
    margin: 10px;
}

.slider {
    height: 250px;
    margin-top: 80px;
    position: relative;
    width: 90%;
    display: grid;
    place-items: center;
}

.slide-track {
    display: flex;
    width: calc(250px * 20);
    animation: scroll 40s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 10));
    }
}

.slide {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}

.image {
    width: 100%;
    transition: transform 0.5s;
}

.image:hover {
    transform: translateZ(20px);
}

/* .slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, .1)0%, rgba(255, 255, 255, 0)100%);
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 0;
} */

.slider::after {
    right: -135px;
    top: 0;
    transform: rotateZ(180deg);
}

footer {
    background-color: #721C0F;
    padding: 8px;
    text-align: center;
    font-size: 15px;
    color: #929292;
    margin-top: auto;
}

.nome {
    color: #d5d5d5;
}

@media all and (max-width: 1000px) {
    body {
        background-image: url(../img/mobile-bg.jpeg);
        background-size: 100%;
    }

    nav {
        height: 70px;
    }

    nav ul {
        margin-right: 0px;
        float: left;
        width: 100%;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    /* nav {
        position: static;
    } */

    nav .logo {
        padding-left: 30px;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;
    }

    .show+a,
    ul {
        display: none;
    }

    nav ul li,
    nav ul ul li {
        display: block;
        width: 100%;
        background: #54140B;
        padding-top: 0;
    }

    nav ul li a {
        padding-left: 25px;
    }

    nav ul ul li {
        box-shadow: none;
    }

    nav ul li:hover {
        background: #54140B;
    }

    .show {
        display: block;
        color: white;
        font-size: 20px;
        padding: 0 25px;
        line-height: 55px;
        cursor: pointer;
    }

    .show:hover {
        color: #EFC743;
    }

    .icon {
        display: block;
        color: white;
        position: absolute;
        top: 0;
        padding-top: 10px;
        right: 40px;
        line-height: 55px;
        cursor: pointer;
        font-size: 25px;
    }

    nav ul ul {
        top: 75px;
        border-top: 0px;
        float: none;
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    nav ul ul a {
        padding-left: 110px;
    }

    /* nav ul ul ul a {
        padding-left: 80px;
    } */

    nav ul ul ul li {
        position: static;
    }

    [id^=btn]:checked+ul {
        display: block;
    }

    nav ul ul li {
        border-bottom: 0px;
    }

    span.cancel:before {
        content: '\f00d';
    }

    .title {
        margin-top: 8vh;
        font-size: 10vw;
    }

    .subtitle {
        margin-top: 6vh;
        font-size: 8vw;
    }

    .description {
        margin-top: 6vh;
        font-size: 5vw;
        line-height: 8vw;
    }

    .youtube {
        font-size: 5vw;
    }

    .slider {
        margin-top: 6vh;
    }

    html,
    body {
        overflow: hidden;
    }

    /* body{
        position: relative;
    } */


}
