@charset "UTF-8";

/* header */
.header_container {
    background: #0B1542;
    display: flex;
    justify-content: space-between;
    padding: 15px 100px 15px 50px;
    align-items: center;
}

.sp_section {
    display: none;
}
.sp_inline-section {
  display: none;
}

.header_logo{
    width:95px;
}

.header_ul {
    display: flex;
}

.header_li {
    margin-right: 25px;
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.header_li:nth-child(4) {
    letter-spacing: 0em;
}

.header_li a {
    position: relative;
    display: inline-block;
}

.header_li a::after {
    position: absolute;
    bottom: -8px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.header_li a:hover::after {
    transform: scale(1, 1);
}


@media(max-width:767px){
       /* header */
    .sp_section {
        display: block;
    }
    .sp_inline-section {
      display: inline-block;
  }
    :root {
        --background-navbar: rgba(11, 21, 66, 0.98);
      }
    .header_container {
        background: var(--background-navbar);
        position:fixed;
        z-index: 9999;
        width:100%;
        display: block;
        height:54px;
        padding: 0 0;
        align-items: center;
    }
    .pc_section {
        display: none;
    }
    .sp_header_logo{
        text-align: center;
        padding:5vh 0 10vh;
        transform: scale(1,0);
        background: var(--background-navbar);
    }
    .sp_header_logo img{
        max-width:250px;
    }

  
  /* Nav items */
  .menu {
    background: var(--background-navbar);
    list-style: none;
    position: fixed;
    display:block;
    width:100%;
    height: auto;
    margin-top:54px;
    top: 0;
    padding: 0 0 10px 0;
    clear: both;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    z-index:1;
  }
  
  /* Hamburger menu button */
  .menu-btn:checked ~ body{
    overflow:hidden;
  }
  .menu-btn:checked ~ .menu {
    height:100vh;
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    z-index:9999;
  }
  .menu-btn:checked ~ .sp_header_logo {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .menu-btn:checked ~ .header_container {
    background:#0B1542;
  }
  
  /* Hamburger menbu text */
  .menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: #ddd;
    opacity: 0;
    padding: 15px 0;
    display:block;
    transition: 0.5s;
  }
  
  .menu li {
    border-top: 1px solid rgb(75, 75, 75);
    margin: 0 8%;
    opacity: 0;
    transition: 0.5s;
    font-size:4.5vw;
    line-height:1.8;
  }
  .menu li:first-child{
    border-top:none;
    text-align: center;
    padding:10px 0;
  }
  .menu li:first-child img{
    max-width:250px;
  }
  .menu-btn:checked ~ body{
    overflow: hidden;
  }
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  
  .menu-btn {
    display: none;
  }
  
  .menu-icon {
    display: inline-block;
    position: absolute;
    right:20px;
    cursor: pointer;
    padding: 24px 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .navicon {
    background: #ddd;
    display: block;
    height: 3px;
    width: 35px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #ddd;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .navicon:before {
    top: 9px;
  }
  
  .navicon:after {
    bottom: 9px;
  }
  
  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  /* Hamburger Menu Animation End */
  
  /* Navbar Container */
  .navtext-container {
    width: 100%;
    height: 52px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Navbar Text */
  .navtext {
    position: absolute;
    text-transform: uppercase;
    color: #ddd;
    letter-spacing: 4px;
    font-size: 20px;
  }
}