*{
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans TC', sans-serif;
    letter-spacing: 2px;
}
html{
    font-size: 30px;
}
html body{
    background-repeat: repeat-y;
    background-size: contain;
    background: #fff;
}

@media screen and (max-width: 860px){
    html{
        font-size: 22px;
    }
}
@media screen and (max-width: 450px){
    html{
        font-size: 24px;
    }
    body{
        background-size: cover;
    }
}

.wrapper{
    overflow: hidden;
    background-size: 100%;
}
.wrapper i{
    margin: 0 10px 0 0;
}

/*title*/
.title{
    width: 900px;
    padding: 50px 0 0;
    text-align: center;
    margin: auto;
}
.title h2{
    color: #004b84;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 90px;
}
.title h2 span{
    color: #63ceff;
}
.title h3{
    color: #fff;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 45px;
}
.title p{
    color: #7981a4;
    font-size: 1em;
    font-weight: 600;
    margin: 40px 0 40px 15px;
    padding: 0 0 0 20px;
    border-left: 8px solid #7981a4;
}

@media (max-width: 860px){
    .title{
        width: 90%;
    }
    .title h2{
        line-height: 65px;
    }
}

@media (max-width:450px){
    .title h2{
        font-size: 1.4em;
        line-height: 60px;
    }
    .title br{
        display: none;
    }
}

/*remark*/
.remark{
    padding: 30px 0 0;
    text-align: center;
}
.remark p{
    color: #af0000;
    font-size: 0.8em;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 32px;
}

@media (max-width:450px){
    .remark p{
        width: 80%;
        margin: auto;
        font-size: 0.7em;
        line-height: 24px;
    }
}

/*navgation*/
.gray{
    width: 100%;
    height: 100%;
    background-color: #000000;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}
.header{
    position: fixed;
    top: 0px;
    height: 80px;
    width: 100%;
    z-index: 150;
    transition: 0.6s;
}
.header.sticky{
    background-color: #fff;
    box-shadow: 0 3px 5px #757575;
    transition: 0.7s;
}
.header .nav{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .nav .logo{
    width: 220px;
    padding: 10px 0;
}
.header .nav .logo img{
    width: 100%;
}
.header .nav .menu{
    width: 600px;
    display: flex;
    justify-content: right;
    align-items: center;
}
.header .nav .menu a{
    text-decoration: none;
    color: #fff;
    font-size: 0.7em;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 0 5px 5px;
    margin: auto;
    transition: 0.4s;
}
.header .nav .menu a:hover{
    color: #63ceff;
    border-bottom: 1px solid #63ceff;
    transition: 0.4s;
}
.header .nav .menu p{
    color: #fff;
    font-size: 0.8em;
    padding: 20px 0 0;
}
.header.sticky .nav .menu a{
    color: #004B84;
}
.header.sticky .nav .menu a:hover{
    color: #278E4B;
    border-bottom: 1px solid #278E4B;
}
.header.sticky .nav .menu p{
    color: #004B84;
}
.header .nav .menu-phone{
    display: none;
}
.menu-block{
    display: none;
}

@media (max-width: 1450px){
    .header .nav .logo{
        width: 300px;
    }
    .header .nav .menu{
        width: 500px;
    }
}

@media (max-width: 860px){
    .header.sticky{
        backdrop-filter: unset;
    }
    .header .nav{
        width: 90%;
    }
    .header .nav .logo{
        width: 200px;
    }
    .header .nav .menu{
        display: none;
    }
    .header .nav .menu-phone{
        display: initial;
    }
    .header .nav .menu-phone .menu-open i{
        color: #fff;
        font-size: 1.4em;
        margin: 3px 0 0;
    }
    .header.sticky .nav .menu-phone .menu-open i{     
        color: #004B84;   
    }
    .menu-block{
        position: fixed;
        top: 0;
        right: 0;
        width: 400px;
        height: 100%;
        background-color: #fff;
        text-align: center;
        z-index: 300;
    }
    .menu-block .menu-close{
        position: absolute;
        top: 15px;
        right: 20px;
        color: #004B84;
        font-size: 1.5em;
    }
    .menu-block .content{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        margin: 80px 0;
    }
    .menu-block a{
        width: 60%;
        text-decoration: none;
        color: #004B84;
        padding: 30px;
        border-bottom: 1px solid #646464;
    }
}
@media (max-width: 450px){
    .header{
        height: 60px;
    }
    .header .nav .logo{
        width: 150px;
    }
    .header .nav .menu-phone .menu-open i{
        color: #fff;
        font-size: 1em;
        margin: 3px 0 0;
    }
    .menu-block{
        width: 100%;
    }
    .menu-block .menu-close{
        position: absolute;
        top: 15px;
        right: 20px;
        color: #004B84;
        font-size: 1.2em;
    }
    .menu-block a{
        font-size: 0.8em;
    }
}

/*banner*/
.banner{
    height: 1000px;
    width: 100%;
    background-image: url(../images/bn-bg-desktop.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: left;
    align-items: center;
}
.banner .content{
    max-width: 800px;
    margin: auto 0 auto 200px;
}
.banner .content .bn-word{
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: -30px;
    flex-direction: column;
}
.banner .content .bn-word img{
    width: 400px;
    margin: 15px auto 15px 0;
}
.banner .content .bn-word h1{
    color: #fff;
    font-size: 1.7em;
    font-weight: 700;
    line-height: 90px;
    margin: 15px auto 15px 0;
    text-align: left;  
}
.banner .content .bn-word h1 span{
    font-size: 1.7em;
    animation: shine 5s infinite;
}
@keyframes shine{
    0%{
        text-shadow: none;
    }
    40%{
        text-shadow: none;
    }
    50%{
        text-shadow: 0 0 7px #00FFFF , 0 0 14px #00FFFF , 0 0 21px #00FFFF;
    }
    60%{
        text-shadow: none;
    }
    100%{
        text-shadow: none;
    }
}
.banner .content .bn-word a{
    display: inline-block;
    background-color: #00FFFF;
    border-radius: 50px;
    padding: 5px 40px;
    color: #000821;
    font-size: 0.8em;
    font-weight: 500;
    margin: 50px auto 30px 0;
    text-decoration: none;
    transition: 0.4s;
}
.banner .content .bn-word a:hover{
    background-color: #fff;
    box-shadow: 0 0 7px #00FFFF , 0 0 14px #00FFFF , 0 0 21px #00FFFF;
    transition: 0.4s;
}

@media (max-width: 860px){
    .banner{
        background-image: url(../images/bn-bg-pad.png);
        height: 1200px;
        justify-content: center;
    }
    .banner .content{
        margin: auto 0;
    }
    .banner .content .bn-word{
        justify-content: center;
        margin-top: -300px;
    }
    .banner .content .bn-word img{
        margin: 15px auto;
    }
    .banner .content .bn-word h1{
        text-align: center;
        font-size: 2em;
    }
    .banner .content .bn-word a{
        margin: 50px auto 30px;
        font-size: 1.2em;
    }
}
@media (max-width: 450px){
    .banner{
        background-image: url(../images/bn-bg-phone.png);
        height: 900px;
    }
    .banner .content{
        margin: auto 0;
    }
    .banner .content .bn-word{
        justify-content: center;
        margin-top: -300px;
    }
    .banner .content .bn-word img{
        width: 250px;
        margin: 15px auto;
    }
    .banner .content .bn-word h1{
        text-align: center;
        font-size: 1em;
        line-height: 45px;
    }
    .banner .content .bn-word a{
        margin: 50px auto 30px;
        font-size: 0.8em;
    }
}

/*why*/
.why{
    max-width: 1400px;
    padding: 30px 0 60px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.why .item{
    width: 300px;
    height: 250px;
    background-image: url(../images/why-backimg.png), linear-gradient(180deg, #46A3FF, #005AB5);
    background-size: cover;
    border-radius: 10px;
    margin: 15px;
}
.why .item .wordbox{
    width: 90%;
    padding: 20px 10px;
    margin: 10px;
    text-align: center;
    transition: 0.4s;
}
.why .item:hover .wordbox{
    transform: scale(1.1);
    transition: 0.4s;
}
.why .item .wordbox h2{
    color: #FFFF37;
    font-weight: 700;
    font-size: 1.2em;
    line-height: 60px;
}
.why .item .wordbox p{
    display: inline-block;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.65em;
    line-height: 32px;
    padding: 0 30px;
    border-radius: 3px;
}
.why .symbol{
    max-width: 50%;
    text-align: center;
}
.why .symbol i{
    color: #FFDC35;
    font-size: 35px;
}

@media (max-width:860px){
    .why .item{
        width: 350px;
        height: 200px;
    }
    .why .item .wordbox h2{
        font-size: 1.4em;
    }
    .why .item .wordbox p{
        font-size: 0.9em;
    }
}

@media (max-width:450px){
    .why{
        width: 90%;
    }
    .why .item{
        width: 90%;
        height: auto;
        margin: 15px auto;
    }
    .why .item .wordbox p{
        font-size: 0.8em;
    }
}

/*feature*/
.feature{
    width: 100%;
    margin: 0 auto 30px;
}
.feature .content{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.feature .content .item{
    width: 330px;
    height: 500px;
    margin: auto 10px;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.feature .content .item i{
    font-size: 2.6em;
    margin: 20px auto;
}
.feature .content .item p{
    font-size: 0.7em;
    font-weight: 500;
    line-height: 32px;
    color: #535353;
}

@media (max-width: 860px){
    .feature .content{
        max-width: unset;
        width: 90%;
    }
    .feature .content .item{
        height: 350px;
    }
}
@media (max-width: 450px){
    .feature .content{
        flex-direction: column;
    }
    .feature .content .item{
        height: auto;
        margin: 15px auto;
    }
}

/*target*/
.target{
    width: 100%;
    margin: 150px auto 30px;
}
.target .content{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.target .content .imgbox{
    width: 500px;
    margin: 0 auto auto;
}
.target .content .imgbox img{
    width: 100%;
    margin: auto;
}
.target .content .wordbox{
    width: 580px;
    margin: 0 auto auto;
}
.target .content .wordbox h2{
    width: 90%;
    margin: 30px auto 15px 35px;
    color: #004b84;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 42px;
}
.target .content .wordbox ol{
    width: 90%;
    margin: 15px auto auto 0;
    text-align: left;
}
.target .content .wordbox ol li{
    font-size: 0.6em;
    font-weight: 400;
    line-height: 28px;
    color: #3c3c3c;
    margin: 10px auto;
}

@media (max-width: 860px){
    .target .content{
        max-width: unset;
        width: 90%;
    }
    .target .content .wordbox ol li{
        font-size: 0.7em;
        line-height: 24px;
    }
}
@media (max-width: 450px){
    .target{
        margin: 50px auto 30px;
    }
    .target .content{
        flex-direction: column;
    }
    .target .content .wordbox{
        width: 100%;
        margin: 10px auto;
    }
    .target .content .imgbox{
        width: 100%;
        margin: 10px auto;
    }
}

/*student*/
.student{
    width: 100%;
    margin: 60px auto 110px;
}
.student .content{
    max-width: 900px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px #dbdbdb , 0 0 20px #dbdbdb;
}
.student .content h2{
    width: 20%;
    margin: auto;
    padding: 0 50px;
    border-right: 1px solid #3c3c3c;
    color: #004b84;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 42px;
    text-align: center;
}
.student .content p{
    width: 70%;
    text-align: left;
    margin: auto;
    padding: 0 50px;
    font-size: 0.6em;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 2px;
}

@media (max-width: 860px){
    .student .content{
        max-width: unset;
        width: 90%;
    }
    .student .content h2{
        width: 20%;
        padding: 0 20px;
    }
    .student .content p{
        width: 70%;
        padding: 0 20px;
        font-size: 0.8em;
    }
}
@media (max-width: 450px){
    .student .content{
        flex-direction: column;
    }
    .student .content h2{
        width: 90%;
        padding: 20px 0;
        border-right: unset;
        border-bottom: 1px solid #3c3c3c;
    }
    .student .content h2 br{
        display: none;
    }
    .student .content p{
        text-align: center;
        width: 90%;
        padding: 20px 0;
        font-size: 0.7em;
    }
}

/*course*/
.course{
    width: 100%;
    padding: 50px 0;
    background-color: #f5f5f5;
}
.course .content{
    max-width: 1500px;
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.course .content .item{
    width: 45%;
    height: 2250px;
    margin: 0 10px auto;
    text-align: left;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 30px;
}
.course .content .item h3{
    font-weight: 600;
    font-size: 1.2em;
    line-height: 42px;
    margin: 15px auto 30px;
}
.course .content .item p{
    font-weight: 600;
    font-size: 0.7em;
    line-height: 28px;
    margin: 15px auto;
}
.course .content .item ul{
    margin: 5px auto;
}
.course .content .item ul li{
    color: #3c3c3c;
    font-size: 0.6em;
    font-weight: 400;
    line-height: 28px;
    margin: 10px auto;
}
.course .content .item img{
    width: 95%;
    margin: 50px auto 0;
}

@media (max-width: 860px){
    .course .content{
        max-width: unset;
        width: 100%;
    }
    .course .content .item{
        height: 1850px;
    }
    .course .content .item p{
        margin: 7px auto;
    }
    .course .content .item ul li{
        line-height: 24px;
        margin: 7px auto;
    }
}
@media (max-width: 450px){
    .course .content{
        width: 90%;
        flex-direction: column;
    }
    .course .content .item{
        width: 100%;
        height: auto;
        margin: auto;
    }
    .course .content .item p{
        margin: 7px auto;
    }
    .course .content .item ul li{
        line-height: 24px;
        margin: 7px auto;
    }
}

/*install*/
.install{
    width: 100%;
    margin: 110px auto 60px;
}
.install .content{
    max-width: 1100px;
    margin: auto;
    text-align: center;
}
.install .content h3{
    color: #3c3c3c;
    font-weight: 600;
    font-size: 1.3em;
    line-height: 42px;
    letter-spacing: 2px;
}
.install .content h4{
    color: #ADADAD;
    font-weight: 500;
    font-size: 0.9em;
}
.install .content p{
    color: #3c3c3c;
    font-size: 0.8em;
    font-weight: 400;
}
.install .content p a{
    color: #0072E3;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
}

@media (max-width: 860px){
    .install{
        margin: 60px auto;
    }
    .install .content{
        max-width: unset;
        width: 90%;
    }
}
@media (max-width: 450px){
    .install{
        margin: 40px auto;
    }
    .install .content h3{
        font-size: 1em;
        line-height: 34px;
    }
}

/*board*/
.board{
    width: 100%;
    margin: 150px auto 50px;
}
.board .content{
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: center;
}
.board .content .wordbox{
    width: 30%;
    margin: auto;
    text-align: left;
    display: flex;
    justify-content: left;
    flex-direction: column;
}
.board .content .wordbox h2{
    width: 90%;
    margin: 30px auto 15px 0;
    color: #004b84;
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 42px;
}
.board .content .wordbox h3{
    color: #ADADAD;
    font-size: 0.8em;
    font-weight: 500;
    line-height: 26px;
    margin: 10px auto 10px 0;
}
.board .content .wordbox ul{
    margin: auto auto auto 0;
}
.board .content .wordbox ul li{
    color: #3c3c3c;
    font-size: 0.7em;
    font-weight: 400;
    line-height: 28px;
    margin: 5px 0;
}
.board .content .imgbox{
    width: 70%;
    margin: auto;
}
.board .content .imgbox img{
    width: 100%;
    margin: auto;
}

@media (max-width: 860px){
    .board .content{
        max-width: unset;
        width: 90%;
    }
    .board .content .wordbox{
        width: 40%;
    }
    .board .content .imgbox{
        width: 60%;
    }
}
@media (max-width: 450px){
    .board .content{
        flex-direction: column;
    }
    .board .content .wordbox{
        width: 100%;
        text-align: center;
    }
    .board .content .wordbox h2 , .board .content .wordbox h3{
        margin: 15px auto;
    }
    .board .content .wordbox ul{
        text-align: left;
    }
    .board .content .imgbox{
        width: 100%;
    }
}

/*teacher*/
.teacher{
    width: 100%;
    margin: 50px auto;
}
.teacher .content{
    max-width: 1000px;
    margin: 100px auto 0;
}
.teacher .content .people{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 15px auto;
}
.teacher .content .people .imgbox{
    width: 30%;
    margin: auto 15px;
    clip-path: circle(140px);
}
.teacher .content .people .imgbox img{
    width: 100%;
}
.teacher .content .people .wordbox{
    width: 70%;
    margin: auto 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    text-align: left;
}
.teacher .content .people .wordbox h3{
    font-size: 2em;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1px;
    color: #004b84;  
}
.teacher .content .people .wordbox h3 span{
    font-size: 0.4em;
    font-weight: 500;
    margin: 10px 0 0 0;
    letter-spacing: 1px;
    color: #278E4B;
}
.teacher .content .people .wordbox p{
    display: inline-block;
    color: #ADADAD;
    font-size: 0.7em;
    font-weight: 400;
    margin: 10px 0;
    letter-spacing: 1px;
}

@media (max-width: 860px){
    .teacher .content{
        max-width: unset;
        width: 90%;
        margin: 50px auto 0;
    }
    .teacher .content .people .imgbox{
        clip-path: circle(110px);
        margin: 0 0 0 5px;
        width: 35%;
    }
    .teacher .content .people .wordbox{
        width: 60%;
        margin: 0 0 0 5px;
    }
    .teacher .content .people .wordbox p{
        margin: 5px 0;
    }   
}
@media (max-width: 450px){
    .teacher .content .people{
        flex-direction: column;
        justify-content: center;
    }
    .teacher .content .people .imgbox{
        clip-path: circle(110px);
        margin: 5px 0;
        width: 70%;
    }
    .teacher .content .people .wordbox{
        width: 90%;
        margin: 5px 0;
    }
    .teacher .content .people .wordbox h3{
        line-height: 26px;
    }
    .teacher .content .people .wordbox h3 span{
        margin: 0;
    }
    .teacher .content .people .wordbox p{
        margin: 5px 0;
    }   
}

/*other*/
.other{
    width: 100%;
}
.other .content{
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 860px){
    .other .content{
        max-width: unset;
        width: 90%;
        margin-top: -50px;
    }
}

/*form*/
.application{
    width: 100%;
    margin: auto;
    background-image:url(../images/form-bg.png) ,linear-gradient(135deg,#0072E3, #003D79);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 80px;
}
.application .title img{
    max-width: 600px;
    margin: auto;
    padding: 20px 0;
}
.application .wordbox{
    color: #fff;
    text-align: center;
    font-weight: 500;
}
.application .wordbox p{
    font-size: 0.7em;
    line-height: 30px;
}
.application form{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.application form .text_form{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.application form label{
    color: #fff;
    font-size: 0.7em;
    font-weight: 400;
    padding: 0 5px;
}
.application form label span{
    color: #FFFF37;
}
.application form input{
    border: 0;
    font-size: 0.7em;
    border-radius: 7px;
    padding: 3px 10px;
    background-color: #fff;
    margin: 0 5px;
}
.application form input + span{
    color: #FFFF37;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}
.application form input:valid + span{
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}
.application form #agree{
    font-size: 0.65em;
}
.application form #agree + label{
    font-size: 0.65em;
}
.application form button{
    display: inline-block;
    border: 0;
    padding: 7px 70px;
    border-radius: 30px;
    color: #000042;
    background-color: #FFDC35;
    font-size: 0.7em;
    line-height: 26px;
    font-weight: 400;
    transition: 0.4s ease-out;
}
.application form button:hover{
    transform: translateY(7px);
    background-color: #FFFFB9;
    color: #0072E3;
    transition: 0.4s ease-in-out;
}
.application form .text_form .check-link{
    color: #ffff00;
    font-size: 0.65em;
    font-weight: 500;
    margin: 9px 0 0 0;
    text-decoration: none;
}

@media screen and (max-width: 860px){
    .application .wordbox p{
        font-size: 0.9em;
    }
    .application form .text_form{
        flex-direction: column;
    }
    .application form label{
        font-size: 0.9em;
        margin: 0 0 10px 0;
    }
    .application form input{
        font-size: 0.9em;
    }
    .application form button{
        font-size: 0.9em;
    }
    .application form #agree{
        font-size: 0.8em;
    }
    .application form #agree + label{
        font-size: 0.8em;
    }
    .application form .text_form:nth-child(2){
        flex-direction: row;
    }
    .application form .text_form .check-link{
        margin: -5px auto 0;
        font-size: 0.9em;
    }
}

@media screen and (max-width: 450px){
    .application .title img{
        width: 100%;
    }
    .application .wordbox p{
        font-size: 0.8em;
    }
    .application form{
        width: 90%;
        margin: auto;
    }
    .application form input{
        width: 100%;
    }
    .application form label{
        font-size: 0.8em;
        margin: 0 0 10px 0;
    }
    .application form input{
        font-size: 0.8em;
    }
    .application form button{
        font-size: 0.8em;
    }
    .application form #agree{
        font-size: 0.7em;
    }
    .application form #agree + label{
        font-size: 0.7em;
    }
    .application form .text_form .check-link{
        font-size: 0.8em;
    }
    .application form .text_form:nth-child(2){
        margin: -30px auto 0;
    }
}

/*ad*/
.ad{
    width: 100%;
    padding: 60px 0;
    margin: auto;
    display: flex;
    justify-content: center;
}
.ad img{
    max-width: 860px;
    transition: 0.5s;
}
.ad img:hover{
    transform: scale(1.1);
    transition: 0.5s;
}

@media screen and (max-width: 450px){
    .ad{
        width: 90%;
        margin: auto;
    }
    .ad img{
        width: 100%;
    }
}

/*footer*/
.footer{
    width: 100%;
    background-color: #003D79;
    padding: 50px 0 60px;
    text-align: center;
}
.footer p{
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 1px;
}
.footer p br:nth-child(odd){
    display: none;
}

@media screen and (max-width:450px){
    .footer{
        padding: 50px 0 100px;
    }
    .footer p{
        font-size: 12px;
        line-height: 26px;
    }
    .footer p br:nth-child(odd){
        display: initial;
    }
}

/*right form*/
#hiddenForm{
    visibility: hidden;
    opacity: 0;
    transition: 1s;
}
#initialFrom{
    visibility: initial;
    opacity: 1;
    transition: 1s;
}
.right_form{
    position: fixed;
    right: 0;
    top: 300px;
    width: 150px;
    height: 180px;
    background:linear-gradient(135deg,#0072E3, #003D79);
    border-radius: 5px;
    z-index: 100;
}
.right_form .wordbox{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.right_form .wordbox h3{
    color: #FFFF37;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
}
.right_form .wordbox p{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.right_form .wordbox a{
    color: #000042;
    text-decoration: none;
    background-color: #FFDC35;
    border-radius: 30px;
    margin: -10px auto 0;
    padding: 3px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    transition: 0.6s ease-out;
}
.right_form .wordbox a:hover{
    transform: translateY(3px);
    background-color: #FFFFB9;
    color: #0072E3;
    transition: 0.4s ease-in-out;
}

@media screen and (max-width: 450px){
    .right_form{
        width: 100%;
        bottom: 0;
        top: unset;
        height: auto;
    }
    .right_form .wordbox{
        width: 90%;
        margin: auto;
        flex-direction: row;
    }
    .right_form .wordbox h3{
        font-size: 22px;
    }
    .right_form .wordbox p{
        padding: 0px 15px;
    }
}

/*go to top*/
#btn-back-to-top{
    position: fixed;
    bottom: 150px;
    right: 10px;
    display: none;
    background-color: #003D79;
    border: 0px;
    opacity: 0.5;
    padding: 5px 15px; 
    font-size: 0.8em;
    transition: 0.6s;
  }
#btn-back-to-top:hover{
    opacity: 1;
    transition: 0.6s;
    transform: translateY(-5px);
}
