@import url('https://fonts.googleapis.com/css?family=Lobster');
body {
    font-family: Helvetica, Arial, 'LiHei Pro', 'Microsoft JhengHei', sans-serif;
    background-color: #fff;
}

header{
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 2;
    background-color: #00cefd;
    top: 0;
    z-index: 3;
}

.logo{
  width: 80px;
  margin-right: 20px;
}

.bg-light{
    background-color: transparent!important;
}

.navbar-light .navbar-nav .nav-link{
    color: #ffffff;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
    color: #c5c5c5;
}

.navbar-light .navbar-toggler{
    background-color: #ffffff;
}

.header-top{
    background-color: #7d0000;
    text-align: center;
}

.header-top a{
    color: #ffffff;
    display: inline-block;
}

.header-top a:hover{
    color: #eeeeee;
}

.header-top span:first-child{
    margin-right: 15px;
}

/*banner*/

.banner{
    margin-top: 77px;
    position: relative;
}

.banner-bg img{
    width: 100%;
}

.banner-left{
    position: absolute;
    top: 0;
    bottom: 0;
}

.banner-left img{
    width: 100%;
    height: 100%;
}

.banner-title{
    position: absolute;
    top: 0;
}

.banner-title img{
    width: 100%;
}

.banner-woman{
    position: absolute;
    bottom: -50px;
    left: 300px;
    text-align: center;
    z-index: 0;
}

.banner-woman img{
    width: 80%;
}

.banner::after{
    content: '';
    background-color: #00cefd59;
    width: 50%;
    height: 50%;
    position: absolute;
    right: 0;
    bottom: -60px;
    clip-path: polygon(10% 50%, 100% 0%, 100% 75%, 0% 85%);
    z-index: 1;
}

@media (max-width:1500px){
    .banner-woman img{
        width: 70%;
    }

    .banner-title img{
        width: 80%;
    }
}

@media (max-width:1199px){
    .banner-woman img{
        width: 60%;
    }

    .banner-woman{
        left: 150px;
    }

    .banner-title img{
        width: 60%;
    }
}

@media (max-width:991px){
    .banner-woman{
        display: none;
    }
}

@media (max-width:767px){
    .banner-title img{
        width: 80%;
    }
}

/*form*/

.form{
    background-color: #000000;
}

.form-area{
    position: absolute;
    width: 100%;
    z-index: 2;
    margin-top: -400px;
}

.form-size{
    width: 50%;
    margin-left: auto;
    background-color: #ffffffe6;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px 2px #006ea4;
}

.form-title{
    margin-bottom: 15px;
}

.form-title h4{
    font-weight: bold!important;
    text-align: center;
    margin-bottom: 5px;
}

.form-title p{
    color: #12c9f3;
    text-align: center;
    font-weight: bold;
    letter-spacing: 3px;
}

.fa-bookmark {
    position: absolute;
    z-index: 1;
    left: 10px;
    top: calc(50% - 10px);
    font-size: 24px;
    color: #a6a6a6;
}

.list-control{
    text-align: center;
    text-align-last:center;
}

option{
    text-align: center;
}

select{
    opacity: 0;
    width: 100%!important;
    position: absolute!important;
    top: 0;
}

.form-btn{
    text-align: right;
    width: 80%;
    margin: 0 auto;
    border-bottom: 1px solid #a0a0a0;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.form-btn button{
    background-color: #f99200;
    padding: 3px 20px;
    color: #ffffff;
    border-radius: 5px;
    box-shadow: 1px 1px 1px #a2a2a2;
}

.form-btn button:hover{
    background-color: #ffa628;
}

.input-group{
    width: 80%;
    margin: 0 auto;
}

.form-info{
    width: 80%;
    margin: 0 auto;
    padding-left: 15px;
    position: relative;
}

.form-info::before{
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    border-radius: 30px;
    border: 3px solid #0b7ec1;
}

.form-info a{
    display: block;
    color: #000000;
}

.form-link{
    margin: 30px auto;
    width: 80%;
    display: flex;
}

.form-link img{
    width: 30px;
    margin-right: 10px;
}

.form-link a:first-child{
    width: 40%;
    background-color: #a40000;
    padding: 3px 15px;
    padding-left: 5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

.form-link a:last-child{
    width: 40%;
    border: 1px solid  #0b7ec1;
    color: #0b7ec1;
    padding: 3px 15px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: #ffffff;
}

.form-link a:first-child:hover{
    background-color: #ff4949;
}


.form-link a:last-child:hover{
    background-color: #d9f1ff;
}

.form-black{
    background-color: #ffffff;
    height: 300px;
    clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
    margin-top: -100px;
}

@media (max-width:1199px){
    .form-link{
        width: 100%;
    }

}

@media (max-width:991px){
    .form-size{
        width: 70%;
    }

    .form-area{
        margin-top: -200px;
        margin-bottom: 50px;
    }
}

@media (max-width:767px){
    .form-size{
        width: 95%;
        padding: 10px;
        margin: 0 auto;
    }

    .input-group{
        width: 100%;
    }

    .form-btn{
        width: 100%;
    }

    .form-info{
        width: 100%;
    }

    .form-link a:last-child , .form-link a:first-child{
        width: 49%;
    }

    .form-title p{
        letter-spacing: normal;
    }

    .form-area{
        position: relative;
        margin-top: -30px;
        background-color: #000000;
        margin-bottom: 0;
    }

    .form-black{
        display: none;
    }

}

/*service*/

.service{
    background-repeat: no-repeat;
    margin-top: -1px;
    padding: 100px 0;
    background-size: contain;
}

.service-item{
    margin-bottom: 50px;
}

.service-second{
    margin-top:80px;
}

.service-img{
    text-align: center;
    position: relative;
    width: 80%;
    margin: 0 auto;
}

.service-img img{
    width: 100%;
}

.service-img::before{
    content: '';
    width: 90%;
    height: 95%;
    position: absolute;
    border: 2px solid #ffffff;
    left: 0px;
    right: 0;
    top: 10px;
    bottom: 0;
    z-index: 1;
    margin: 0 auto;
}

.service-text{
    position: absolute;
    bottom: 25px;
    z-index: 1;
    width: 100%;
}

.service-text p{
    background-color: #1299bfb3;
    color: #ffffff;
    width: 80%;
    padding: 10px 0;
    margin: 0 auto;
    font-size: 20px;
    letter-spacing: 5px;
}

@media (max-width:991px){
    .service{
        padding-top: 150px;
    }
}

@media (max-width:767px){
    .service{
        padding-top: 100px;
    }

    .service-second{
        margin-top:auto;
    }

}

/*footer*/
footer{
  background-color: #f4f3ef;
  padding: 20px;
}

footer .contact-area{
    background-color: transparent;
}

.footer-ps p{
    line-height: 1.5;
    letter-spacing: 3px;
    padding: 20px 10px;
    margin: 0 auto;
    background-color: #7fd0fd;
    color: #010000;
}

.footer-info{
    margin-bottom: 30px;
}

.footer-info h5{
    margin-bottom: 15px;
}

.footer-info a{
    margin-bottom: 10px;
    color: #010000;
    display: block;
}

.footer-btn img{
    width: 50px;
    margin-right: 15px;
}

.footer-btn a{
    border: 1px solid;
    text-align: center;
    padding: 10px 0;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 15px;
    color: #010000;
    display: block;
    font-size: 18px;
    letter-spacing: 3px;
}

.footer-dacn{
  text-align: center;
  margin-top: 30px;
  letter-spacing: 2px;
}

.footer-dacn a{
  color: #010000;
}

.footer-dacn a:hover{
  color: #b97700;
  text-decoration: underline;
}

.footer-contact{
  float: right;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  z-index: 3;
}

.footer-contact img{
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
}

@media (max-width:991px){
    .footer-btn a{
        width: 100%;
    }
}
