
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

[v-cloak] {
    display: none;
}

body {
    background: #fff;
    color: #111;
    font-family: "Open Sans", 'Microsoft JhengHei', sans-serif;
    letter-spacing: 1px;
    font-weight: 340;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
    font-size: 1.05rem;
    line-height: 1.8rem;
    overflow-x: hidden;
}

section {
    width: 100%;
    overflow-x: hidden;
}

a {
    color: #F78B2B;
    transition: 0.5s;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", 'Microsoft JhengHei', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

.container {
    max-width: 1400px !important;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #F78B2B;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.btn-primary {
    border: 1px solid #F78B2B;
    border-radius: 0;
    background-color: #fff;
    color: #F78B2B;
}

.btn-primary:hover {
    border: 1px solid #F78B2B;
    background-color: #F78B2B;
    color: #fff;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}

#list-container #page-title, 
#detail-container #page-title {
	background-color: #f6f6f6;
	margin: 0 0 30px 0;
	padding-top: 120px;
    text-align: center;
}


/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #F78B2B;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 30px 0;
    height: 85px;
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.2);
}

#header #logo {
    float: left;
}

#header #logo .title {
    text-shadow: 1px 0 3px rgba(255, 255, 255, 0.8);
    color: #000;
    margin-top: -10px;
    font-size: 1.75rem;
    font-weight: 600;
}

#header #logo .subtitle {
    text-shadow: -1px -1px 1px rgba(255, 255, 255, .4), 1px 1px 1px rgba(255, 255, 255, .4);
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
}

#header #logo a img {
    margin-top: -10px;
    padding-left: 2.5vw;
    height: 45px;
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
    height: 72px;
    transition: all 0.5s;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.5);
}

#header.header-scrolled #logo a img {
    margin-top: 15px;
    height: 40px;
}

#header.header-scrolled #logo .title {
    text-shadow: 1px 0 3px rgba(255, 255, 255, 0.8);
    color: #000;
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

#header.header-scrolled #logo .subtitle {
    text-shadow: -1px -1px 1px rgba(255, 255, 255, .4), 1px 1px 1px rgba(255, 255, 255, .4);
    color: #000;
    font-weight: 400;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* 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: 30px;
}

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

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


/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
    font-size: 0.975rem;
    letter-spacing: 2px;
}

.header-scrolled #nav-menu-container {
    margin-top: 23px;
}


/* Nav Meu Styling */

.nav-menu a {
    padding: 0 8px 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #333;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    outline: none;
}

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

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

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    background: #fff;
}

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

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

.nav-menu ul li:hover>a {
    color: #F78B2B;
}

.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: #000;
}


/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
    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: 1rem;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

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

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

#mobile-nav ul li.menu-active a {
    color: #F78B2B;
}

#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: #F78B2B;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

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

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    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: #000;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
Section {
    padding: 80px 0;
}

/* Sections Header
--------------------------------*/

.section-header h3 {
    font-size: 1.75rem;
    color: #111;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    position: relative;
    padding-bottom: 15px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #F7862B;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
}


/* Section with background
--------------------------------*/

.section-bg {
    background: #f7f7f7;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
    background: url(/files/Layout/contact-bg.jpg) center top no-repeat fixed;;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

section#contact {
    padding: 0;
}

section#contact .section-header h3 {
    color: #fff;
}

section#contact .section-header p {
    color: #ccc;
}

#contact-overlay {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.4);
}

#contact .contact-info a {
	color: #fff;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #171717;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 0.975rem;
}

#footer #sitemap {
    text-align: center;
    padding-top: 40px;
    margin: 0 auto 30px auto;
}

#footer #sitemap li {
    text-decoration: none;
    display: inline-block;
    padding: 0 10px;
    letter-spacing: 1px;
}

#footer #sitemap li a {
    color: #fff;
}

#footer .copyright {
    text-align: center;
}


/* Flters Styling
--------------------------------*/

#portfolio-flters {
    padding: 0;
    list-style: none;
    text-align: center;
  }
  
  #portfolio-flters li {
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    margin: 15px 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    line-height: 20px;
    color: #666666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  #portfolio-flters li:hover,
  #portfolio-flters li.filter-active {
    background: #F78B2B;
    color: #fff;
  }
  
  #portfolio-flters li:last-child {
    margin-right: 0;
  }


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (max-width: 992px) {
    .form {
        padding: 30px 0;
    }
    #header {
        height: 70px;
    }
    #header #logo h1 {
        font-size: 28px;
    }
    #header.header-scrolled #logo img {
        margin-top: 15px !important;
    }
    #header #logo img {
        margin-top: -20px !important;
        max-height: 40px;
    }
    #nav-menu-container {
        display: none;
    }
    #mobile-nav-toggle {
        display: inline;
        color: #000;
    }
}

@media (min-width: 1024px) {
    #intro .carousel-control-prev,
    #intro .carousel-control-next {
        width: 5%;
    }
    #nav-menu-container {
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
    #intro h2 {
        font-size: 28px;
    }
    #list-container #page-title, 
    #detail-container #page-title {
    	background-color: #f6f6f6;
    	margin: -20px 0 30px 0;
    	padding-top: 120px;
    }
}

.circles{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
  }
  
  .circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(128, 128, 128, 0.2);
    animation: animate 30s linear infinite;
    bottom: -150px;
    font-weight: 800;
    color: #fff;
    text-align: center;
  }
  
  .circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    font-size: 70px;
  }
  
  
  .circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
    font-size: 70px;
  }
  
  .circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
    font-size: 70px;
  }
  
  .circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
    font-size: 50px;
  }
  
  .circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    font-size: 70px;
  }
  
  .circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
    font-size: 100px;
  }
  
  .circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
    font-size: 140px;
  }
  
  .circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
    font-size: 70px;
  }
  
  .circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
    font-size: 70px;
  }
  
  .circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
    font-size: 140px;
  }
  
  
  
  @keyframes animate {
  
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
  
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
  
  }