/*header*/
#header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-bottom: none;
    height: auto;
  }
header nav {
    position: relative;
    height: 85px;
    margin: 0 40px;
    }
    header .head_logo {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    }
    .headnav_inner {
        position: relative;
        top: -7px;
    }
    header .head_logo a {
    width: 215px;
    height: 85px;
    display: block;
    position: relative;
    opacity: 1;
    transition: 0.5s ease-out;
    }
    header .head_logo a:hover {
    opacity: 0.5;
    }
    header .head_logo a img {
    width: 76%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-60%);
    }
    header .head_nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -webkit-box-pack: end;
         -ms-flex-pack: end;
       justify-content: flex-end;
    }
    header .head_nav .nav000 {
    display: none !important;
    }
    header .head_nav li a {
    padding: 30px 1em;
    display: block;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: bold;
    font-size:14px;
    letter-spacing: 0.05em;
    opacity: 1;
    color: #212529;
    transition: 0.3s ease-out;
    }
    header .head_nav li a span {
    position: relative;
    display: inline-block;
    line-height: 2em;
    }
    header .head_nav li a:hover{
        opacity: .5;
    }
    header .btn_insta {
    position: fixed;
    bottom: 15px;
    right: 20px;
    width: 29px;
    z-index: 10;
    }
    header .btn_insta img {
    width: 100%;
    height: auto;
    }

    header.header-begin {
        background-color: transparent;
        border-bottom: none;
      }
      
      header.hide {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
      }
      .container-fluid{
          margin-top: 100px;
      }

@media only screen and (max-width: 768px) {
    /*header*/
    #header {
        position: absolute;
        background-color: transparent;
    }
    header .btn_insta {
    bottom: 20px;
    right: 20px;
    }
    header nav {
    height: 50px;
    }
    header .head_logo {
    display: none;
    }
    header .head_logo a {
    width: 120px;
    height: 50px;
    display: block;
    margin: 0 auto;
    position: relative;
    opacity: 1;
    transition: 0.5s ease-out;
    z-index: 100;
    }
    header .head_logo a:hover {
    opacity: 0.5;
    }
    header .head_logo a img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-65%);
    }
    header .menu {
        display: block;
        width: 30px;
        height: 25px;
        position: fixed;
        top: 17.5px;
        right: 20px;
        z-index: 102;
    }
    header.active .menu {
    transform: scale(1) translate(0,0);
    }
    header .btn_menu {
        position: absolute;
        top: 0;
        left: 0;
    }
    header .btn_menu li {
        width: 30px;
        height: 3px;
        background-color: #000;
            position: absolute;
        transition: 0.4s;
    }
    header .btn_menu li:nth-child(1) {
        top: 0;
        transform: translate3d(0, 50%, 0);
    }
    header .btn_menu li:nth-child(2) {
        top: 10px;
        transform: translate3d(0, 50%, 0);
    }
    header .btn_menu li:nth-child(3) {
        top: 20px;
        transform: translate3d(0, 50%, 0);
    }
    header .on .btn_menu li:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }
    header .on .btn_menu li:nth-of-type(2) {
        opacity: 0;
    }
    header .on .btn_menu li:nth-of-type(3) {
        -webkit-transform: translateY(-10px) rotate(45deg);
        transform: translateY(-10px) rotate(45deg);
    }
    header .headnav_inner {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: -100vh;
    right: 0;
    background-color: rgba(255,255,255,0.90);
    z-index: 101;
    transition: 0.5s ease-in-out;
    }
    header .headnav_inner.on {
    top: 0;
    right: 0;
    }
    header .head_nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
         -ms-flex-direction: column;
             flex-direction: column;
      -webkit-box-pack: center;
         -ms-flex-pack: center;
       justify-content: center;
    -webkit-box-align: center;
         -ms-flex-align: center;
            align-items: center;
      -ms-flex-line-pack: center;
           align-content: center;
    position: relative;
    top: 50%;
    transform: translate(0,-50%);
    }
    header .head_nav li a {
    padding: 20px 1em;
    display: block;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: bold;
    font-size:16px;
    letter-spacing: 0.05em;
    opacity: 1;
    /*transition: 0.5s ease-out;*/
    }
    header .head_nav .nav000 {
    display: block!important;
    width: 8em;
    }
    header .head_nav li a span {
    position: relative;
    display: inline-block;
    line-height: 2em;
    }
    .container-fluid{
        margin-top: 0;
    }
}