﻿@charset "utf-8";
/* CSS Document */

/*--Import GLOBAL CSS--*/
@import url('global.css');



main, .main {
    padding-top:130px;

}

#intro {
    height: calc(100vh + 130px)
}



/*-----HEADER SCROLL*/
.menuscroll {
    background: #fff;
    height: 130px;
    position: fixed;
    top: 0px;
    transition: top 0.4s ease-in-out;
    width: 100%;
    z-index: 99;
}

.vis {
    display: initial;
    transition: top 0.2s ease-in-out;
}

.no-vis {
    display: none;
    transition: top 0.2s ease-in-out;
}

.nav-up {
    top: -130px;
}

.nav-down {
    top: 0px;
}



.nav-trasp {
    background: transparent;
    top:0px;
}


@media(max-width: 991px) {


    #intro {
        height: calc(100vh +130px);
    }
}

@media(max-width:767px) {
    header {
        height: 60px;
    }

    .menuscroll {
        height: 60px;
    }

    .nav-up {
        top: -60px;
    }

    .nav-down {
        top: 00px;
    }

    .nav-trasp {
        background: transparent;
        top: 00px;
    }
}