﻿body {
    font-family:Microsoft JhengHei;
}
.row_title nav {
    position:relative;
    float:right;
}
.row_title a {
    text-decoration:none;
    color:white;
    padding-right:15px;
    font-size:16px;
}
footer {
     font-size:16px;
}
footer h5{
     font-size:16px;
}
.copyright {
    font-size:16px;
}

.border-right{
    border-right:1px solid #5e5d5d;
}
.border-left {
    border-left: 1px solid #5e5d5d;
}
.service-img{
    max-width:60%;
    margin:0 auto;
}
.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}