@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/lift_fee/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: 'LIFT FEE';
    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;
}


/* -------------- main btn -------------- */ 
.main-bg{
    height: 1000px;
    background-image: url("../IMG/lift_fee/main-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
    padding-top: 200px;
    /* overflow: hidden; */
}

.fee{
    width: 1200px;
    height: 700px;
    background-color: rgb(255, 255, 255, 50%);
    margin: auto;
    padding-top: 150px;
    box-sizing: border-box;

    position: relative;
}

.fee ul{
    display: flex;    

    position: absolute;
    top: -60px;
    left: 60px;
}

.fee .btn{
    width: 270px;
    height: 120px;
    margin: auto;
}

.fee .btn a{
    color: #fff;
    text-decoration: none;
    background-color: #19297C;
    display: block;
    width: 270px;
    height: 120px;
    
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.fee .btn a:hover{
    background-color: #FFB630;
    color: black;
    font-weight: bold;
}

.fee .btn a span{
    display: block;
    height: 60px;
    font-size: 24px;
    text-align: center;
    line-height: 60px;
}

.fee .btn .btn_color_ch{
    background-color: #FFB630;
    color: black;
    font-weight: bold;
}


/* -------------- form -------------- */ 

.form img{
    width: 930px;
    /* height: 460px; */
    
    display: block;
    margin: auto;
}


