html {
    min-height: 100%;
    overflow-x: hidden;
}

html, body {
    width: 100%;
    font-family: "Font Awesome 5 Free", 'Montserrat', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
	background: #f9f9fd;
	color: #333;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

body.closed {
    overflow: hidden;
}

body::-webkit-scrollbar {
    width: 0.5em;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}
 
body::-webkit-scrollbar-thumb {
  background-color: #444;
  outline: 1px solid slategrey;
}



/*Fix the header height when you click the anchort point*/
/*:target {*/
/*    padding-top: 100px;*/
/*    margin-top: -100px; */
/*}*/

.hidden {
    display: none;
}

a {
    color: #777;
    transition: .3s ease;
}

a:hover{
    color: #333;
	text-decoration: underline;
}

a:focus{
	text-decoration: underline;
	outline: unset;
}

button:focus, div:focus {
    outline: unset;
}

strong {
    font-weight: 500;
}

#header:after { 
    content: " "; 
    display: block;
    clear: both;
} 

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

h1 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 3em;
    text-align: left;
}

@media(max-width: 990px) {
    h1 {
        font-size: 2.3em;
    }
}

@media(max-width: 576px) {
    h1 {
        font-size: 1.4em;
    }
}

h2 {
	color: #fff;
	font-family: 'Cormorant Garamond', cursive;
    font-size: 2.2em;
    text-align: center;
    line-height: 1.5;
    margin: 30px auto 40px;
}

h2:after {
    content: '';
    position: relative;
    width: 80px;
    height: 3px;
    background: #fff;
    margin: 10px auto;
    display: block;
}

h2.h2-black-left {
    color: #333;
    text-align: left;
}

h2.h2-black-left:after {
    content: '';
    position: relative;
    width: 80px;
    height: 3px;
    background: #333;
    margin: 10px auto;
    display: block;
    margin-left: 0;
}

@media(max-width:576px) {
    h2 {
        font-size: 2em;
    }
}


h3 {
	font-size: 2em;
	font-family: 'Cormorant Garamond', serif;
	text-align: center;
	color: #fff;
}

.hasLink h3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 40px;
}

@media(max-width: 576px) {
    .hasLink h3 {
        left: 20px;
        transform: translateX(0);
    }
}

.hasLink {
    padding-bottom: 40px;
}

h4 {
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
    color: #fff;
}

h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 4px;
}

.img-responsive {
    max-width: 100%;
    object-fit: cover;
}


ul{
    list-style-type: none;
    text-align: left;
    margin: 0;
    padding-left: 30px;
    line-height: 1.8em;
    margin-bottom: 20px;
}

ul.list li:before {
    content: '\f111';
    margin-right: 10px;
    font-size: 6px;
    color: inherit;
    font-weight: 900;
    vertical-align: middle;
}

ul.list li {
    text-indent: -16px;
}


/*-------------------------
           Button 
--------------------------*/

button {
    background: transparent;
    color: inherit;
    border: 0;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 0;
}

a.btn, button.btn, div.btn {
    color: #333;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 3px solid #eee;
    padding: 6px 0;
}

a.btn:hover, button.btn:hover, div.btn:hover,
a.btn:active, button.btn:active, div.btn:active  {
    color: #777;
}


button.contact-btn, .btn-more {
    margin-top: 30px;
    float: left;
}

.btn-more {
    margin: 30px auto;
}



/**********************\
		Section
\**********************/

.section{
	padding: 3em 0;
}

.photo-section {
    padding: 2em 0;
    align-items: center;
}

/****************************************************\
						nav
\****************************************************/

.menu-icon {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px 0;
}

.menu-icon span {
    width: 26px;
    height: 1px;
    background: #fff;
    display: block;
    transition: .3s ease;
}

.sub_page_header .menu-icon span {
    background: #333;
}

@media(max-width: 990px) {
    .menu-icon {
        display: block;
        z-index: 2;
    }
    
    #navbarNav {
        display: none;   
        margin-left: 0;
    }
}

.menu-icon span:first-child {
    transform: translateY(-6px);
}

.menu-icon span:last-child {
    transform: translateY(6px);
}

.menu-icon.closed > span:first-child{
    transform: rotate(45deg) translateY(1px);
}

.menu-icon.closed > span:nth-child(2) {
    display: none ;
}

.menu-icon.closed > span:last-child {
    transform: rotate(-45deg) ;
}

#navbarNav {
    width: 100%;
    justify-content: flex-end;
}

.navbar-brand {
    height: auto;
}

#menu{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    margin: 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transition: .3s ease;
}

.closed #menu {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.closed .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.closed .menu-icon span {
    position: absolute;
    width: 30px !important;
    background: #fff !important;
    transition: .3s ease;
}

.closed .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
}

.closed .menu-icon span:nth-child(2) {
    opacity: 0;
}

.closed .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
}

.navbar-header {
    display: block;
}


@media(max-width: 990px) {
    .navbar-header {
        width: 90%;
        align-items: center;
    }
}

.company-logo {
    max-height: 90px;
    width: auto;
}

@media(max-width: 576px) {
    .company-logo {
        max-height: 50px;
    }
}

.footer-social {
    display: inline-flex;
    align-items: center;
}

.footer-social {
    margin: 0 0 20px;
}

.footer-social .social_sharing {
    float: left;
    margin-right: 10px;
}



@media(max-width: 768px) {
    .header-social .social_sharing {
        display: none;
    }
}

.footer-social .social_icon {
    padding: 0;
}

.header-social .social_icon li, 
.footer-social .social_icon li {
    margin: 0 10px;
    width: 24px;
    text-align: center;
    display: inline-block;
}

.header-social .social_icon li a:hover, 
.footer-social .social_icon li a:hover {
    color: #fff;
}

.header-social .social_icon li .label,
.footer-social .social_icon li .label{
    transform: perspective(1px) translateZ(0);
    display: block;
}

.header-social .social_icon li .label:before, 
.footer-social .social_icon li .label:before{
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: -5px;
    background: #fff;
    height: 2px;
    transition-property: right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.header-social .social_icon li .label:hover:before, 
.footer-social .social_icon li .label:hover:before{
    right: 0;
}

.navbar-default {
    background: transparent;
    border: none;
    margin: 0;
    padding: 16px 15px;
}

.navbar-default .navbar-nav {
    flex-direction: row;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: transparent;
}

.navbar-nav > li {
    transform: perspective(1px) translateZ(0);
    /*overflow: hidden;*/
}

.navbar-nav > li:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #fff;
    height: 1px;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.navbar-nav > li:hover:before,
.navbar-nav > li.active:before{
    right: 0;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 8px;
}

.sub_page_header .navbar-default .navbar-nav>li>a {
    color: #333;
    background-color: transparent;
}

.sub_page_header .navbar-nav > li:before {
    background: #333;
}

@media(max-width: 990px) {
    .sub_page_header .navbar-default .navbar-nav>li>a {
        color: #fff;
    }
    
    .sub_page_header .navbar-default .navbar-nav>li.active>a {
        color: #333;
        background: #eee;
    }
    
    .sub_page_header .navbar-nav > li:before {
        background: transparent;
    }
}

.navbar-default .navbar-nav>.active>a {
	background-color: transparent;
	transition: .3s ease;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.open>a, 
.navbar-default .navbar-nav>.open>a:focus, 
.navbar-default .navbar-nav>.open>a:hover {
	color: #fff;
	background: transparent;
}

.sub_page_header .navbar-default .navbar-nav>li>a:hover,
.sub_page_header .navbar-default .navbar-nav>.active>a,
.sub_page_header .navbar-default .navbar-nav>.active>a:focus,
.sub_page_header .navbar-default .navbar-nav>.active>a:hover {
    color: #333;
    background: transparent;
}

.navbar-nav > li > a{
    margin-right: 0;
    position: relative;
    overflow: hidden;
}

.navbar-nav .dropdown:not(.sub-dropdown) > a:after {
    content: '\f107';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    border: 0;
    border-radius: 6px;
    width: 200px;
}

.navbar-nav .open .dropdown-menu {
    display: block;
    width: 240px;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-menu>li{
	padding: 0;
}

@media(max-width: 990px) {
    .navbar-nav .open .dropdown-menu {
        width: 100%;
        left: 0;
        transform: translateX(0%);
    }
    
    .sub_page_header .navbar-default .navbar-nav>li>a:hover,
    .sub_page_header .navbar-default .navbar-nav>.active>a,
    .sub_page_header .navbar-default .navbar-nav>.active>a:focus,
    .sub_page_header .navbar-default .navbar-nav>.active>a:hover {
        color: #eee;
    }
}

.dropdown-menu>li> a,
.sub-dropdown-menu > li > a {
    color: #333;
    transition: .3s ease;
    position: relative;
    padding: 16px;
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 14px;
    white-space: normal;
}

.dropdown-menu>li>a:focus, 
.dropdown-menu>li>a:hover,
.sub-dropdown-menu>li>a:hover,
.sub-dropdown-menu>li>a:focus {
    border: 0;
    background-color: #eee;
    color: #333;
}

.dropdown-menu>.active>a, 
.dropdown-menu>.active>a:focus, 
.dropdown-menu>.active>a:hover,
.sub-dropdown-menu>.active>a, 
.sub-dropdown-menu>.active>a:focus, 
.sub-dropdown-menu>.active>a:hover {
    background: #333;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: #5baeb1;
}
    
.navbar-nav> li {
    float: left;
    margin: 0 10px;
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
	background-color: transparent;
}

.sub-dropdown.active > a, .sub-dropdown-menu> .active > a {
    color: #eee;
    background-color: transparent;
}

.sub-dropdown > a:after {
    content: '\f105';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.open > .sub-dropdown-menu {
    display: block;
}

.sub-dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    padding: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    border-radius: 6px;
}

.sub-dropdown-menu li {
    list-style: none;
}

@media(max-width: 990px) {
    .navbar-nav .dropdown-menu,
    .sub-dropdown-menu {
        position: relative;
        display: block;
        background: transparent;
        box-shadow: unset;
        width: 100%;
    }
    
    .sub-dropdown > a:after {
        display: none;
    }
    
    .sub-dropdown-menu {
        position: static;
        margin-left: 10px;
        margin-bottom: 30px;
    }
    
    .dropdown-menu>li> a, .sub-dropdown-menu > li > a {
        color: #fff;
        font-size: 16px;
    }
    
    .sub-dropdown-menu > li > a {
        padding: 16px 30px;
    }
    
    .dropdown-menu>li>a:focus,
    .dropdown-menu>li>a:hover,
    .sub-dropdown-menu>li>a:hover, 
    .sub-dropdown-menu>li>a:focus {
        background-color: transparent;
        color: #eee;
    }
    
    .nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
        background-color: #333;
    }
}



@media(max-width: 990px) {
    
    #navbarNav {
        justify-content: center;
        align-items: flex-start;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #010101;
        overflow-y: scroll;
    }
    
    .navbar-default .navbar-nav {
        flex-direction: column;
        width: 80%;
        margin: 100px 0;
    }
    
    .navbar-default .navbar-nav>li>a {
        color: #fff;
        font-size: 22px;
    }
    
    .navbar-nav> li {
        width: 100%;
        margin: 16px 0;
    }
    
    .navbar-nav .dropdown:not(.sub-dropdown) > a:after {
        display: none;
    }
}

@media(max-width: 768px) {
    .sub-dropdown-menu {
        position: relative;
        padding-left: 20px;
        left: 0;
    }
    
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #fff !important;
        background: transparent;
    }
    
    .navbar-nav .open .dropdown-menu .dropdown-header, 
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 16px;
    }
}



/****************************************************\
					nav animation
\****************************************************/


.navbar-toggle .icon-bar {
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(2) {
    top: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(3) {
    background-color: transparent;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(4) {
    top: -6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


#header {
    position: absolute;
    margin: 0 auto;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.sub_page_header {
    background: #fff;
}


/*---- Banner -----*/
#banner {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #333;
    background-position: center;
}

#banner h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    color: #eee;
}

@media(max-width: 576px) {
    #banner h1 {
        width: 70%;
        font-size: 2.7em;
        padding: 50px 27px;
    }
    
}

#sub-banner {
    position: relative;
    height: 500px;
    background: #333;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

#sub-banner h1 {
    position: absolute;
    top: 60%;
    font-size: 3.6em;
    font-family: 'Cormorant Garamond', cursive;
}

@media(max-width: 990px) {
    #sub-banner h1 {
        width: 80%;
        font-size: 3em;
    }
}


@media(max-width: 576px) {
    #sub-banner {
        height: 400px;
    }
    
    #sub-banner h1 {
        width: 90%;
        font-size: 2.4em;
    }
}

/****************************************************\
					mouse wheel
\****************************************************/

#mouse-scroll {
    display: block;
    position: absolute;
    margin: auto;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    z-index: 9999;
}

#mouse-scroll span{
    display: block;
    width: 5px; 
    height: 5px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid #fff; 
    border-bottom: 2px solid #fff;
    margin: 0 0 3px 5px;
}

#mouse-scroll .mouse {
    height: 33px;
    width: 20px;
    border-radius: 10px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    border: 2px solid #ffffff;
    position: absolute;
    top: -30px;
    left: -3px;
}

#mouse-scroll .down-arrow-1 {
    margin-top: 6px;
}

#mouse-scroll .down-arrow-1, #mouse-scroll .down-arrow-2, #mouse-scroll .down-arrow-3 {
    -webkit-animation: mouse-scroll 1s infinite; 
    -moz-animation: mouse-scroll 1s infinite;
}

#mouse-croll .down-arrow-1 {
    -webkit-animation-delay: .1s; 
    -moz-animation-delay: .1s;
    -webkit-animation-direction: alternate;
}

#mouse-scroll .down-arrow-2 {
    -webkit-animation-delay: .2s; 
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;
}

#mouse-scroll .down-arrow-3 {
    -webkit-animation-delay: .3s;
    -moz-animation-dekay: .3s;
    -webkit-animation-direction: alternate;
}

#mouse-scroll .mouse-in {
    height: 5px;
    width: 2px;
    display: block;
    margin: 5px auto;
    background: #ffffff;
    position: relative;
}

#mouse-scroll .mouse-in {
    -webkit-animation: animated-mouse 1.2s ease infinite;
    moz-animation: mouse-animated 1.2s ease infinite;
}

@-webkit-keyframes animated-mouse {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@-webkit-keyframes mouse-scroll {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.mouse_wheel{
	position: absolute;
	width: 100%;
	height: 100vh;
}

.mouse_wheel a:hover{
	opacity: 1;
}


/*----- Home -----*/

#main_home {
    background: #333;
    color: #fff;
}

.home-intro {
    margin: 30px 0;
}

.home-intro .intro {
    text-align: center;
    font-family: 'Cormorant Garamond', cursive;
    font-size: 22px;
}

.home-intro h2 {
    text-align: left;
}

.home-intro h2:after {
    margin: 10px 0;
}

.home-intro .card {
    background: transparent;
    margin-bottom: 10px;
    border: 0;
}

.home-intro .card .collapse.show {
    background: rgba(255, 255, 255,.1);
    transition: .3s ease;
    /*background: transparent;*/
    /*border: 1px solid #fff;*/
}

.home-intro .card h2 {
    font-family: "Font Awesome 5 Free", 'Cormorant Garamond', cursive;;
    margin-top: 0;
    padding: 10px;
    font-weight: 500;
}

.home-intro .card h2 span {
    font-family: "Font Awesome 5 Free", 'Montserrat', sans-serif;
    font-size: 20px;
    display: contents;
    float: left;
}

.home-intro .card h2:after {
    display: none;
}

.home-intro .card button {
    color: #fff;
    text-decoration: none;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    white-space: normal;
}

@media(max-width: 414px) {
    .home-intro .card button {
        font-size: 20px;
    }
}

.home-intro .card button:after {
    content: '\f078';
    font-size: 16px;
    color: inherit;
    display: inline-block;
    font-weight: 900;
    margin-left: 16px;
}

.home-intro .card button:not(.collapsed):after {
    transform: rotate(-180deg);
}

.home-intro .card-header {
    background: rgba(0, 0, 0, .1);
    padding: 0 10px;
    margin: 0;
}

.home-intro .card-body {
    padding: 20px;
}

.home-intro .card-body p {
    font-size: 18px;
}

@media(max-width: 576px) {
    .home-intro .card-body p {
        font-size: 16px;
    } 
}

.home-service {
    background: #010101;
    padding: 60px 0;
}

.home-service a {
    text-align: center;
    display: block;
    min-height: 330px;
    margin-bottom: 30px;
    padding: 40px 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: auto;
    filter: grayscale(100%)
}

.home-service a:hover {
    text-decoration: none;
}

@media(max-width: 990px) {
    .home-service a {
        min-height: 460px;
    }
}

@media(max-width: 768px) {
    .home-service a {
        min-height: auto;
    }
}

.home-service .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    z-index: 1;
}

.home-service a:hover .overlay {
    background: rgba(0,0,0,.6);
    transition: .3s ease;
}

.home-service .service-text {
    position: relative;
    z-index: 2;
}

.home-service .service-text p {
    color: #ddd;
}

.home-service .more {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.home-service span.line {
    width: 30px;
    height: 2px;
    background: #eee;
    margin-right: 10px;
    display: inline-block;
}

.home-service a:hover p {
    color: #fff;
}

.home-service a:hover p.more {
    color: #eee;
    transition: .3s ease;
}


.home-content {
    margin: 30px 0 -3em;
    padding: 40px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-center {
    position: relative;
    display: flex;
    align-items: center;
}

.center-text h2 {
    text-align: left;
}

.center-text h2:after {
    margin-left: 0;
}

@media(max-width: 990px) {
    .center-text {
        z-index: 1;
    }
    
    .home-center .people-img {
        position: absolute;
        width: 50%;
        right: -60px;
        top: -5%;
        opacity: .8;
    }
}

@media(max-width: 768px) {
    .home-center .people-img {
        display: none;
    }
}

.home-video {
    position: relative;
    margin: 30px auto;
    height: 0;
    padding-top: 30px;
    padding-bottom: 50%;
    overflow: hidden;
}

@media(max-width: 414px) {
    .home-video {
        padding-bottom: 100%;
    }
}

.home-video iframe {
    display: block;
    margin: auto;
    width: 80%;
    min-height: 360px;
    max-height: 500px;
    height: 45vw;
}

@media(max-width: 990px) {
    .home-video iframe {
        width: 100%;
    }
}



/*------- contact us -------*/

#contact {
    border-bottom: 1px solid #eee;
}

.contact-all {
    margin-bottom: 60px;
}

#contact .contact-all a {
    color: #333;
    font-weight: 400;
}

#contact .contact-all h5 {
    display: inline-block;
    width: 150px;
}

#contact .contact-all p {
    display: inline-block;
    width: calc(100% - 150px);
    vertical-align: top;
}

.contact-section {
    background: #333;
    padding: 40px 0;
}

.contact-section h5,
.contact-section .contact-btn {
    color: #fff;
}

.contact-section h5 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

@media(max-width: 990px) {
    .contact-details {
        margin-bottom: 40px;
    }
}

.g-recaptcha {
    margin-bottom: 3.5em;
}

@media(max-width: 500px) {
    .si-frame.si-content-wrapper {
        padding: 1em 2em !important;
    }
}

#contact .contact-form {
    padding: 0 0 20px;
    border-bottom: 1px solid #ddd;
}

#contact button.contact-btn {
    margin: 30px 0;
    display: block;
}

#contact .fom-desc {
    display: block;
    text-align: left;
}

.contact-content,
.contact-form-content {
    text-align: center;
    padding-bottom: 30px;
}

.contact-form .form-field {
    position: relative;
    margin: 32px 0;
}


.contact-form .input-text {
    display: block;
    width: 100%;
    height: 45px;
    padding-left: 5px;
    padding-bottom: 0px;
    background: transparent;
    border-width: 0 0 2px 0;
    border-color: #d2d2d2;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: lighter;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-form .message-special .input-text {
    border: 1px solid #999;
}

.contact-form .input-text:focus {
    outline: none;
    border-color: #fff;
}

#contact .contact-form .input-text:focus {
    border-color: #333;
}

.contact-form .input-text:focus + .label,
.contact-form .input-text.not-empty + .label {
    -webkit-transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    transform: translateY(-24px);
    color: #fff;
}

.contact-form .message-special .input-text:focus + .label,
.contact-form .message-special .input-text.not-empty + .label {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.contact-form .label {
    position: absolute;
    left: 10px;
    bottom: 11px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
    cursor: text;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.contact-form .message-special .label {
    position: absolute;
    bottom: 176px;
    transition: none;
    font-weight: 600;
    color: #fff;
    -webkit-transition: none;
    -o-transition: none;
}

.contact-form .help-block {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #a94442;
}

.form-field.has-error input {
    border-color: #a94442;
}

.contact-form .submit {
    text-align: center;
    margin: 15px 0;
}

.form-desc {
    color: #fff;
    text-align: left;
    display: block;
    font-size: 14px;
}

h .g-recaptcha > div {
    width: 100% !important;
}

@media(max-width:767px) {
    .form-field {
        padding-top: 30px;
    }

    .g-recaptcha {
        -webkit-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
    }
}

.get-started > .row:first-child {
    margin-bottom: 50px;
}

.contact-form {
    padding: 0 60px;
    width: 100%;
}

@media(max-width: 767px) {
    .contact-form {
        margin-bottom: 3em;
        padding: 0 40px;
    }
}

#formWidgetSubmitResultText {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #777;
    margin-bottom: 20px;
}

#contact .contact-form .input-text,
#contact .contact-form .input-text:focus + .label,
#contact .contact-form .input-text.not-empty + .label, 
#contact .contact-form .label, 
#contact .contact-form .message-special .label {
    color: #333;
}


/*****************\
      Footer
\*****************/

#footer {
    padding: 60px 0 40px;
}

#footer.home-footer {
    background: #585858;
}

#footer.sub-footer {
    background: #f5f5f9;
}

#footer p,
#footer a {
    color: #fff;
    font-size: 13px;
    line-height: 1.8;
}

#footer h2 {
    color: #fff;
}

#footer.sub-footer h2 {
    color: #333;
}

#footer h2,
#contact .contact-box h2 {
    margin: 0 0 30px;
}

#footer h2:after {
    background: #fff;
    margin-left: 0;
}

#footer.sub-footer h2:after,
#contact h2:after {
    background: #333;
}

#footer h3 {
    color: #fff;
    margin-top: 0;
    font-weight: 500;
    text-align: left;
}

#footer.sub-footer p,
#footer.sub-footer a,
#footer.sub-footer h3 {
    color: #333;
}

#footer a {
    margin-bottom: 20px;
}

#footer i {
    margin-right: 6px;
}

#footer .footer-content {
    color: #fff;
    font-size: 12px;
}

p.footer-title {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 28px !important;
}

.footer-logo {
    height: 100px;
    margin: 0 0 20px;
}

.mobile-view {
    display: none;
}

@media(max-width: 990px) {
    .mobile-view {
        display: block;
    }

    .pc-view {
        display: none;
    }
}

.footer-detail p {
    line-height: 1.8;
}

.footer-detail h5 {
    color: #fff;
}

.sub-footer .footer-detail h5 {
    color: #333;
}


/*Mailchimp signup*/

#mc_embed_signup {
    clear:left; font:14px Helvetica,Arial,sans-serif; width:100%;
}

.footer-text #mc_embed_signup input.email {
    width: 200px;
    float: left;
    margin-bottom: 10px;
}


@media(max-width: 1200px) {
    .footer-text #mc_embed_signup input.email {
        width: 180px;
    }
}

@media(max-width: 991px) {
    .footer-text #mc_embed_signup input.email {
        width: 300px;
    }
    
    #mc_embed_signup .clear {
        display: block !important;
    }
    
    #mc_embed_signup .button {
        margin-top: 10px !important;
        display: block !important;
    }
    
}

@media(max-width: 530px) {
    .footer-text #mc_embed_signup input.email {
        width: 100%;
    }
    .footer-text #mc_embed_signup .button {
        width: 100%;
    }
}


/*------- About us --------*/

.subPage-section h2,
.subPage-section h3,
.subPage-section h4 {
    color: #333;
}

.subPage-section h2:after {
    background: #333;
}

.subPage-section h3 {
    margin-bottom: 20px;
}

#about ul {
    list-style-type: disc;
}

#about li {
    margin: 6px 0;
}

.team-section {
    margin-top: 30px;
}

.team-members {
    text-align: center;
    padding-top: 20px;
}

.team-members .row {
    justify-content: center;
    margin-bottom: 50px;
}

.team-members .col-sm-6 {
    width: 50%;
    float: left;
}

.team-members .moreinfo {
    display: block;
    cursor: pointer;
}

.arrow-up {
    margin-top: 30px;
    width: 20px;
    height: 20px;
    border-left: 20px solid transparent;
    position: relative;
    border-left: 1px solid #333;
    border-top: 1px solid #333;
    background-color: #f9f9fd;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: rotate(45deg);
    z-index: 3;
}

.bio {
    border-top: 1px solid #333;
    padding: 2em 0;
}

.profile .close-icon {
    float: right;
    font-size: 18px;
    cursor: pointer;
    margin-right: 20px;
}

@media(max-width: 990px) {
    .team-members .row {
        margin-bottom: 0;
    }
    
    .arrow-up {
        bottom: -10px;
    }
}

.team-members img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 100em;
}

.name,
.title {
    font-family: 'Cormorant Garamond', cursive;
    color: #333;
    margin: 20px 0 0;
}

.title {
    min-height: 50px;
}

.bio .title {
    font-size: 18px;
}

@media(max-width: 990px) {
    .name,
    .title {
        margin: 10px 0;
    }

    .title {
        margin-bottom: 40px;
        height: 80px;
    }
    
    .bio .title {
        margin-bottom: 10px;
        height: auto;
    }
}

@media(max-width: 414px) {
    .team-members img {
        width: 120px;
        height: 120px;
    }
}


.name {
    font-size: 22px;
}

.grid {
    list-style: none;
    padding: 0;
}

#cast-show-list .item {
    padding: 20px 20px 30px;
    display: block;
    width: 100%;
}

/*------- Casts-------*/

#media {
    /*margin-top: 300px;*/
}

#media h5 {
    font-family: 'Cormorant Garamond', cursive;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 16px;
}

#media h6 {
    font-size: 16px;
    padding-bottom: 16px;
    font-weight: 300;
}

.p-title {
    font-size: 30px;
    font-family: 'Cormorant Garamond', cursive;
    margin-bottom: 20px;
    color: #333;
}

.p-title a {
    color: #333;
}


.author-date p {
    font-family: 'Cormorant Garamond', cursive;
    font-size: 16px;
    color: #000;
}

.preview-image img {
    width: 30%;
    margin-bottom: 20px;
    display: block;
}

@media(max-width: 990px) {
    .preview-image img {
        width: 100%;
    }
}

.preview-content {
    color: #444;
    font-size: 14px;
    margin-bottom: 20px;
}

.post-content {
    margin: 20px 0;
}

.post-content iframe {
    max-width: 60%;
    max-height: 400px;
    display: block;
}

@media(max-width: 990px) {
    .post-content iframe {
        max-width: 100%;
        /*max-height: 400px;*/
    }
}

.article-info {
    margin-top: 40px;
}

.article_body {
    margin: 50px 0;
}

.article_body iframe {
    width: 100%;
}

.article-info .title {
    font-size: 30px;
}

.article-content h2 {
    margin-top: 40px;
}

.post-more {
    font-family: 'Cormorant Garamond', cursive;
    font-weight: bold;
    font-size: 20px;
}

.post-more a {
    color: #333;
}

.post-more a:hover {
    text-decoration: none;
    color: #999;
}

.load-more {
    justify-content: center;
    display: flex;
}

#searchLoadingImg {
    text-align: center;
}


ul.pagination {
    clear: both;
    position: relative;
    width: 100%;
    text-align: right;
    display: flex;
    column-span: all;
}

ul.pagination > li {
    color: #707070;
    -moz-transition-duration: 100ms;
    -o-transition-duration: 100ms;
    -webkit-transition-duration: 100ms;
    transition-duration: 100ms;
    -moz-transition-property: color, background-color, border-color;
    -o-transition-property: color, background-color, border-color;
    -webkit-transition-property: color, background-color, border-color;
    transition-property: color, background-color, border-color;
    display: inline-block;
}

ul.pagination > li:not(:first-child) {
    margin-left: 5px;
}

ul.pagination > li:before {
    content: "";
}

.pagination > li > a {
    padding: 10px 15px;
}

.pagination > li > a {
    color: #333;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > li > a:hover {
    background-color: #333;
    border-color: #333;
    color: #fff !important;
}

ul.pagination > li.cur {
    background-color: #333;
    color: #fff;
}

ul.pagination > li:hover {
    cursor: pointer;
    background-color: #333;
    color: #fff;
}

ul.pagination > li:click {
    background-color: #e0e0e0;
}

@media (max-width: 767px) {
    ul.pagination {
        text-align: left;
    }

    ul.pagination > li {
        margin-left: 0px;
        margin-right: 5px;
    }
}

.cat-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cat-name a {
    color: #333;
}


/*------- Map --------*/

#map,#map2 {
    height: 300px;
    width: 100%;
}

@media(max-width: 990px) {
    #map, #map2 {
        height: 380px;
    }
}



/*-------- Service ----------*/

#service h5,
#snippets h5 {
    font-family: 'Cormorant Garamond', cursive;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 16px;
}

#service p,
#snippets p { 
    padding-bottom: 10px;
}

#service .disclaimer,
#snippets .disclaimer {
    font-size: 14px;
    color: #999;
    margin-top: 50px;
}

#service li,
#snippets li {
    list-style-type: square;
}

.footer-link {
    text-align: left;
    display: inline-block;
}

.footer-link a:after {
    content: '|';
    margin: 0 6px;
    font-size: inherit;
}

.footer-link a:last-child:after {
    content: '';
}








/*a[href$='/service'] {*/
/*    pointer-events: none;*/
/*    cursor: default;*/
/*}*/