/*-------------------------*/
/* Global
/*-------------------------*/
*{
	position: relative;
	box-sizing: border-box;
}
/* Google font */
@import url('https://fonts.googleapis.com/earlyaccess/notosanstc.css');

body{
    color: #505458;
    font-size: 16px;
	font-family: sans-serif, 'Noto Sans TC' ;
}

.home-wrap{
	overflow: hidden;
}
.main-bg{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../images/bg-1.jpg') center center no-repeat;
  background-size: cover;
}
.main-bg:before {
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(to bottom right,#330867,#537895,#dc4225);
    opacity: .4;
}

h1 {
  font-size: 30px;
}
h2{
    font-size: 18px;
}
/*-------------------------*/
/* Component
/*-------------------------*/
.navbar{
    height: 100px;
}
.navbar-brand{
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    letter-spacing: 5px;
}
.nav-second{
    box-sizing: border-box;
    color: #fff;
}
.nav-second:hover{
    text-decoration: none;
    color: #1ae8a4;
}

.nav-second .tce-logo{
    height: 30px;
    margin-right: 10px;
}
.main{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.school-list{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
}
.pd-15{
    padding: 15px 15px;
}
.custom-select select {
  display: none; 
}
/*button*/
.btn-blue{
    background-color: #2751c9;
    color: #fff;
}
.btn-blue:hover{
    background-color: #1ae8a4;
}

/*footer*/
.footer-inner{
    position: absolute;
    left: 0;
    bottom: 3%;
    padding: 0 5%;
    display: inline-block;
    text-align: center;
    width: 100%;
}
.footer-inner .logo{
    height: 30px;
    letter-spacing: 0;
    display: inline-block;
    text-align: center;
    border: none;
}
.footer-inner img{
    height: 100%;
}
.footer-inner p{
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

