/**
* Rinvoq CSS
*/

/*Geral*/

@font-face {
    font-family: "Trak";
    src: url("../font/trak.ttf") format('truetype');
}

body,
html{

    font-family: "Trak";
    overflow-x: hidden;
}

body{

    overflow: hidden; 
    min-height: 100vh;
}

.mobile{

    display: none !important;
}

@media screen and (max-width: 768px){
    
    .mobile{
        display: block !important;
    }
    .desktop{

        display: none !important;
    }
}

html{

    position: relative;
    overflow-x: hidden;
}
body{

    position: relative;
}

html::after{

    content: '';
    background-image: url('../uploads/sushi.jpg');
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    max-height: 700px;
    max-width: 600px;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

@media screen and (min-width: 768px) {
    
    body::after{
    
        content: url('../uploads/flores.svg');
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        width: 100%;
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    
    body::before{
    
        content: url('../uploads/flores-mobile.svg');
        position: absolute;
        top: 2%;
        left: -50px;
        z-index: -1;
        width: 100%;
        max-width: 200px;
        transform: rotate3d(0, 0, 10, -125deg);
    }
    
    body::after{
    
        content: url('../uploads/flores-mobile.svg');
        position: absolute;
        top: 25%;
        right: -50px;
        z-index: -1;
        width: 100%;
        max-width: 200px;
    }

    html::after {
        max-height: 220px;
        max-width: 220px;
    }
}


/*Header*/
.logo-header img{

    max-width: 500px;
    width: 100%;
}

/*Content*/
.links-hanami{

    border: 2px solid #6d6e71;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
    background: #fff;
}

.links-hanami a,
.links-hanami a:hover{

    color: #6d6e71;
    font-weight: 400;
    font-size: 1.2rem;
}
.links-hanami:hover{

    background: #6d6e71;
}
.links-hanami:hover a{

    color: #fff;
}

.menu li a{

    font-size: .9rem;
    color: #e50887;
    border: 2px solid #e50887;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
    height: 100%;
    background: #fff;
}

.menu li:hover a{
    
    background: #e50887;
    color: #fff;
}

.menu-delivery{

    text-align: start !important;
}

.menu-delivery::after{

    content: url('../uploads/delivery.svg');
    position: absolute;
    top: -10px;
    right: -20px;
    width: 100%;
    max-width: 80px;
}



/*footer*/
@media screen and (max-width: 500px){
    
    .footer-inner .mobile img{
        
        max-width: 150px !important;
    }
    
    body::before {
        top: -4%;
    }
}










