html,
body * {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji","Microsoft JhengHei";
}

body {
    color: #58585a;
}

a {
    color: inherit !important;
}

a:hover {
    text-decoration: none;
    color: #3a3a3c !important;
}

ul,
ol {
    padding-left: 20px;
}

button {
    border: none;
    border-radius: 6px;
    background-color: #3e9dd7;
    color: white;
    padding: 6px 12px;
    cursor: pointer;
}

#map {
    width: 100%;
    height: 500px;
    background-color: grey;
}

/*
 * MAIN MENU SECTION
 */

#main-menu {
    position: fixed;
    z-index: 20;
    top: 0;
    width: 100%;
    color: #828386;
    background: rgba(255,255,255,0.8);
}

/*
 * POPUP MENU SECTION
 */

#popup-menu {
    position: absolute;
    display: none;
    z-index: 10;
    top: 25px;
    left: 0;
    width: 200px;
}

#popup-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 3px;
    background: white;
}

#popup-menu a {
    display: inline-block;
    padding: 12px 15px 12px 15px;
    width: 100%;
}

#popup-menu li:hover {
    color: white !important;
    background: #828386;
}

#popup-menu a:hover {
    color: white !important;
    text-decoration: none;
}

.popup-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*
 * SIDE MENU SECTION
 */

#side-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
background: rgba(62,157,215,0.9);
}

#side-menu ul {
    list-style: none;
    padding-right: 40px;
}

#side-menu li {
    padding-bottom: 10px;
}

#side-menu-open-btn {
    width: 45px;
    height: 45px;
    float: right !important;
    padding: 0 5px;
    border: none;
    background: none;
}

#side-menu-open-btn div {
    height: 6px;
    margin-bottom: 7px;
    border-radius: 2px;
    background-color: #828386;
}

#side-menu-close-btn {
    font-size: 72px;
    margin-top: -32px;
    padding-right: 10px;
    float: right !important;
}

#side-menu-close-btn:hover {
    text-decoration: none;
}

.divider-line {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: inherit;
}

/*
 * CAROUSEL SECTION
 */

.carousel-indicators {
    margin-bottom: 8px;
}

.carousel-indicators li {
    border: 2px solid #3a3a3c;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    margin-left: 8px;
    margin-right: 8px;
}

.carousel-indicators .active {
    background-color: #3a3a3c;
}

.carousel-caption {
    left: 10%;
    bottom: 6vw;
    text-align: left;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white;
}

@media(min-width:768px){
    .carousel-caption h5 {
        font-size: 3vw;
    }
    .carousel-caption button {
        font-size: 1.25rem;
    }
}

/*
 * SOCIAL BUTTON SECTION
 */

.social-btn {
    width: 30px;
    height: 30px;
    padding-top: 2px;
    margin-right: 4px;
}

.no-text-decoration,
.no-text-decoration:hover {
    text-decoration: none;
}

/*
 * BACK TO TOP BUTTON SECTION
 */

#back-to-top-btn {
    z-index: 10;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#back-to-top-btn i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#back-to-top-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

#back-to-top-btn:hover i {
    color: #fff;
    top: 5px;
}

/*
 * COLOR SECTION
 */

.blue-color {
    color: #3e9dd7;
}

.blue-background {
    background-color: #3e9dd7;
}

.lightblue-background {
    background-color: #e3eef9;
}

.grey-color {
    color: #828386;
}

.grey-background {
    background-color: #828386;
}

.darkgrey-color {
    color: #3a3a3c;
}

/*
 * BORDER SECTION
 */

.border-circle {
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    border-radius: 50%;
}

.border-table-top-bottom {
    border-top: 1px solid #3a3a3c !important;
    border-bottom: 1px solid #3a3a3c !important;
}

/*
 * FONT SECTION
 */

.font-08rem {
    font-size: 0.8rem;
}

/*
 * BADGE SECTION
 */

.badge-square > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e3eef9;
    height: 100%;
    border-radius: .25rem;
}

.badge-circle > div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    width: 140px;
    margin: auto;
    border-radius: 50%;
    border: solid 3px #e3eef9;
}

.align-items-stretch {
    align-items: stretch !important;
}

/*
 * IMAGE SECTION
 */

.logo-onehr {
    max-width: 200px;
}

@media(max-width:767px){
    .logo-onehr {
        max-width: 160px;
    }
}

.icon-main {
    width: 145px;
    height: 145px;
}

.icon-footer {
    width: 18px;
}
