@import url(reset.css);

body{
    background-color: #fff;
    /* font-family: 'M PLUS Rounded 1c', sans-serif; */
    /* font-family: 'Noto Sans TC', sans-serif; */
    font-family: 'Public Sans', sans-serif;
}


/* --------- header top --------- */

header{
    margin: auto;
    width: 100%;
    height: 650px;
    background-image: url("../IMG/access/top_bg.jpg");
    background-repeat:no-repeat;
    background-size: cover;
    background-position: top center;

    position: relative;

    overflow: hidden;
}
.header-top{
    height: 75px;
    background-color:#19297C;
    
    position: relative;
}

.header-top:before{
    content: '';
    display: block;
    height: 150px;
    background-color: rgb(25, 41, 124, 50%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%); 
}

.header-menu{
    width: 1366px;
    margin: auto;
    display: flex;
    
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.header-menu .logo{
    width: 200px;
    height: 250px;
    background-color: #fff;
    display: block;
    clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
}

.header-menu .logo img{
    width: 150px;
    margin: auto;
    padding-top: 40px;
    display: block;
}

.header-menu ul{
    display: flex;
    margin-left: auto;
    width: 800px;
    height: 75px;
    
    position: relative;
}

.header-menu ul::before{
    content: 'ACCESS';
    color: #fff;
    font-size: 64px;
    font-weight: bold;

    position: absolute;
    bottom: -520px;
    left: -500px;
    z-index: 99;
}

.header-menu li{
    flex-grow: 1;
}

.header-menu li a{
    line-height: 75px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: block;
    position: relative;
}

.header-menu li a:before{
    content: '';
    display: block;
    width: 3px;
    height: 30px;
    background-color: #fff;

    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto; 
}

.header-menu li:nth-child(1)>a:before{
    display: none;
}

.header-menu li a:hover{
    color: #FFB630;
}

/* <!-- ----------- hambur ----------------- -- */

.hambur{
    display: none;
}

.bar{
    display: block;
    width: 40px;
    height: 5px;
    background-color: #FFB630;
    margin-bottom: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hambur.active .bar{
    opacity: .8;
}

.hambur.active .bar:nth-child(1) {
    width: 20px;
    transform: translateX(40px);
}

.hambur.active .bar:nth-child(2) {
    transform: translateX(20px); 
}

.hambur.active .bar:nth-child(3) {
    width: 60px;
}

/* --------- header bottom --------- */


.header-bottom{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    
    clip-path: polygon(0 20%, 100% 70%, 100% 100%, 0% 100%);

     
}


.header-bottom img{
    display: block;
    right: 0;
    left: 0;
    margin: auto;
}


/* <!-- ---------------- map ------------------ --> */

iframe{
    width: 1200px;
    display: block;
    margin: 100px auto;
}

/* <!-- ---------------- trans ------------------ --> */

.trans{
    width: 1200px;
    height: 400px;
    margin: auto;
    margin-bottom: 150px;
    display: flex;

    position: relative;
}

.trans::after{
    content: '';
    display: block;
    width: 1000px;
    height: 60px;
    background-color:#19297C;

    position: absolute;
    bottom: -30px;
    z-index: -1;
    
    clip-path: polygon(0 0, 97% 0, 100% 100%, 0% 100%);
}

.trans img{
    flex-basis: 400px;
}

.trans .info{
    height: 350px;
    width: 500px;
    margin-left: 50px;
}

.trans .info h3{
    font-size: 40px;
    padding: 20px 0 50px 40px;

    position: relative;
}

.trans .info h3::before{
    content: '';
    display: block;
    width: 10px;
    height: 40px;
    background-color: #FFB630;

    position: absolute;
    left: 10px;
}


.trans .info p{
    font-size: 24px;
    line-height: 1.6;
    align-self: center;
}
