/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html, body {
    height: 100%;
    width: 100%;
}

body {
    background: #fff;
    color: #444;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #50d8af;
    transition: 0.5s;
}

a:hover, a:active, a:focus {
    color: #51d8af;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #343434;
    color: #FFFFFF;
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 2px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

.back-to-top:focus {
    background: #2399c3;
    color: #FFFFFF;
    outline: none;
}

.back-to-top:hover {
    background: #2399c3;
    color: #FFFFFF;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.is-hidden {
    display: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    padding: 20px 0;
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    background: #fff;
    box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.06);
}

#header .header-container {
    margin-top: -5px;
    display: flex;
    justify-content: space-between;
}

#header #logo img {
    padding-top: 8px;
    height: 57px;
}

#header #logo .logo-text {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

#header #logo .logo-text1 {
    font-size: 24px;
    color: #333333;
}

#header #logo .logo-text2 {
    font-size: 16px;
    color: #666666;
}

#header .app-container {
    padding-top: 10px;
}

#header .app-btn {
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    color: #FFFFFF;
    border: 3px solid #3a82c5;
    background-color: #3a82c5;
    width: 205px;
}

#header .app-btn:hover {
    background: #FFFFFF;
    color: #3a82c5;
    border: 3px solid #3a82c5;
}

@media (max-width: 768px) {
    #header {
        padding: 20px 0;
        height: 74px;
    }

    #header #logo img {
        padding-top: 4px;
        height: 45px;
    }

    #header #logo .logo-text1 {
        font-size: 20px;
    }

    #header #logo .logo-text2 {
        font-size: 12px;
    }

    #header .app-btn {
        width: 140px;
        font-size: 11px;
        padding: 6px 0px;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Container */
#nav-menu-container {
    padding-top: 12px;
}

@media (max-width: 768px) {
    #nav-menu-container {
        display: none;
    }
}

/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
    padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 8px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Menu Styling */
.nav-menu a {
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    color: #333333;
    font-family: "Quattrocento Sans", sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
    color: #333333;
    font-weight: bold;
}

.nav-menu > li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #333333;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li:hover > a {
    color: #333333;
    font-weight: bold;
}

.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #555;
}

.mobile-nav-active #mobile-nav-toggle i {
    color: #ffffff;
}

/*#mobile-nav-toggle .fa .fa-times {
    color: #ffffff;
}*/

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: none;
    }
}

/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(52, 59, 64, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #50d8af;
}

#mobile-nav ul .menu-item-active {
    color: #50d8af;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, 0.9);
    display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 80vh;
    position: relative;
    background: url("../img/intro/intro1.jpg") no-repeat;
    background-size: cover;
    background-position: inherit;
}

#intro .intro-content {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#intro .intro-title {
    display: flex;
    flex-wrap: wrap;
}

#intro .intro-content .title1 {
    font-size: 40px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
}

#intro .intro-content .title2-container {
    width: 200px;
}

#intro .intro-content .title2 {
    margin: 0 4px;
    font-size: 40px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #163685;
}

#intro .intro-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #abd9c3;
    display: flex;
    justify-content: center;
    align-items: center;
}

#intro .intro-footer-text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #333333;
}

@media (max-width: 576px) {
    #intro {
        height: 55vh;
    }

    #intro .intro-content .title1 {
        font-size: 40px;
        padding: 0 15px;
    }

    #intro .intro-content .title2-container {
        padding-left: 5px;
        text-align: left;
    }

    #intro .intro-footer {
        height: 80px;
        bottom: -40px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #163685;
}

/* About Section
--------------------------------*/
#about {
    padding: 120px 0;
    background-color: #f7f7f7;
}

#about .about-img {
    overflow: hidden;
    width: 450px;
    height: 600px;
    border-radius: 10px;
}

#about .about-img.content-right img {
    height: 700px;
}

#about .about-img.content-left img {
    height: 600px;
    margin-left: -210px;
}

#about .content {
    padding-top: 50px;
}

#about .content h1 {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 7px;
    color: #333333;
}

#about .content.content-right h1 {
    text-align: left;
}

#about .content.content-left h1 {
    text-align: right;
}

#about .content-right h1::before {
    content: '';
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    text-align: center;
    background: #3a82c5;
    margin: 0 auto;
    left: -330px;
    top: 11px;
}

#about .content-left h1::before {
    content: '';
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    text-align: center;
    background: #3a82c5;
    margin: 0 auto;
    left: 330px;
    top: 11px;
    z-index: 2;
}

#about .content p {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: left;
    color: #333333;
}

@media (max-width: 768px) {
    #about .about-img {
        display: none;
    }

    #about .content p {
        font-size: 15px;
    }

    #about .content.content-left h1 {
        text-align: left;
    }

    #about .content-right h1::before {
        display: none;
    }

    #about .content-left h1::before {
        display: none;
    }

}

/* Links Section
--------------------------------*/
#opening {
    padding: 120px 0;
    background-color: #163685;
    color: #ffffff;
}

#opening .opening-img {
    overflow: hidden;
    width: 450px;
    height: 600px;
    border-radius: 10px;
}

#opening .opening-img img {
    height: 700px;
}

#opening .content h1 {
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
}

#opening .content h2 {
    padding-top: 20px;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 7px;
    text-align: left;
    color: #ffffff;
}

#opening .content p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
}

#opening .content a {
    color: #ffffff;
}

#opening .content a:hover {
    text-decoration: underline;
}

#opening .app-btn {
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    color: #FFFFFF;
    border: 3px solid #3a82c5;
    background-color: #3a82c5;
    width: 205px;
}

#opening .app-btn:hover {
    background: #FFFFFF;
    color: #3a82c5;
    border: 3px solid #3a82c5;
}

@media (max-width: 768px) {
    #opening .opening-img {
        display: none;
    }

    #opening .app-btn {
        font-size: 14px;
    }
}

/* Tour Section
--------------------------------*/
#tour {
    background: #FFFFFF;
    padding: 120px 0;
}

/*@media (max-width: 576px) {*/
/*    #tour {*/
/*        padding: 90px 0 20px 0;*/
/*    }*/
/*}*/

#tour .slides {
    display: none;
    justify-content: center;
    opacity: 1;
    width: 100%;
    height: 100%;
}

#tour .slides img {
    width: 100%;
    height: 100%;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.75);
}
#tour .slides-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

#tour .slide-container {
    width: 70%;
    height: 100%;
    position: relative;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white !important;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#tour .slide {
    width: 16.66%;
    padding: 10px;
}

#tour .slide img {
    width: 100%;
}

#tour .slide .cursor {
    cursor: pointer;
}

#tour .slide .image {
    opacity: 0.6;
}

#tour .slide .active,
#tour .slide .image:hover {
    opacity: 1;
}

/* Contact Section
--------------------------------*/
#contact {
    padding: 120px 0 100px 0;
    background-color: #ffffff;
}

/*@media (max-width: 576px) {*/
/*    #contact {*/
/*        padding: 90px 0 20px 0;*/
/*    }*/
/*}*/

#contact .content {
    font-family: 'Quattrocento Sans', sans-serif;
}

#contact .content h1 {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 7px;
    text-align: left;
    color: #666666;
}

#contact .content p {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: left;
    color: #333333;
}

#contact .content p a {
    color: #606060;
}

#contact .content p a:hover {
    text-decoration: underline;
}

#contact .content .fa-mobile-alt {
    padding-left: 9px;
}

#contact .form {
    padding-bottom: 20px;
    /*width: 80%;*/
}

#contact .form #sendmessage {
    color: #50d8af;
    border: 1px solid #50d8af;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input, #contact .form textarea {
    box-shadow: none;
    border-bottom: solid 1px;
    border-radius: 0;
}

#contact .form label {
    width: 80%;
}

#contact .form span {
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.3px;
    color: #58564e;
}

#contact .form button[type="submit"] {
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    color: #FFFFFF;
    border: 3px solid #3a82c5;
    background-color: #3a82c5;
    width: 205px;
}

#contact .form button[type="submit"]:hover {
    background: #FFFFFF;
    color: #3a82c5;
    border: 3px solid #3a82c5;
}

@media (max-width: 768px) {
    #contact .content p {
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-family: 'Quattrocento', serif;
    color: #FFFFFF;
    background: #3a82c5;
    padding: 0 0 30px 0;
    font-size: 14px;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .copyright span {
    font-weight: bold;
    color: #FFFFFF;
}

#footer .credits {
    text-align: center;
    font-size: 13px;
}

#footer .credits a {
    color: #FFFFFF;
}

#footer .footer-left {
    padding-top: 30px;
    width: 290px;
    margin-left: 50px;
}

#footer .footer-right {
    padding-top: 30px;
    width: 290px;
    margin-right: 50px;
}

#footer .footer-right i {
    font-size: 25px;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    #footer .footer-left {
      display: none;
    }
    #footer .footer-right {
        width: unset;
        margin-right: 0;
    }
}