@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap&subset=latin-ext');
/*
    font-family: 'Source Sans Pro', sans-serif;
    font-family: 'Raleway', sans-serif;
*/

[data-icon]:before {
    font-family: 'ElegantIcons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a,
img {
    outline: none;
    text-decoration: none;
}

a {
    cursor: pointer;
    color: #be931e;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}

a:hover {
    color: #be931e;
}

strong {
    font-weight: 600;
}

input {
    -webkit-border-radius: 0;
    border-radius: 0;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-family: 'Raleway', sans-serif;
    width: 100%;
    margin: 0;
    background: #fff;
    padding: 0;
    font-size: 1.2rem;
    overflow: hidden;
    color: #333e48;
}

.clear {
    clear: both
}

.clear.margin {
    height: 20px;
}


/* Loading */
#loading {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999999999;
    max-height: 100%;
    min-height: 100%;
    background: #fff;
}

#loading .loader {
    margin: 20% auto 0 auto;
    position: relative;
    text-indent: -9999em;
    border-top: .1em solid #be931e;
    border-right: .1em solid #fff;
    border-bottom: .1em solid #be931e;
    border-left: .1em solid #eee;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

#loading .loader,
#loading .loader:after {
    width: 3em;
    height: 3em;
    border-radius: 50%;
}

#loading .loader-text {
    display: block;
    overflow: hidden;
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    margin: 10px 0 0 0;
    color: #222;
}

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

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


/* Table */

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: .7rem;
}

table th {
    padding: 5px 5px;
    color: #91d041;
}

table td {
    padding: 5px 5px;
}

table td input {
    margin: 0;
    padding: 0;
}

table+tr {
    border-bottom: 1px solid #444;
}

table tr:nth-child(even) {
    background: #333;
}

table tr:last-child {
    border-bottom: 0;
}


/* hotline */

.hotline {
    display: block;
    height: 50px;
    overflow: hidden;
    float: right;
    font-size: 1.2rem;
}

.hotline a span {
    display: block;
    overflow: hidden;
    padding: 0;
    height: 50px;
    line-height: 50px;
    color: #555;
    float: left;
}

.hotline a span.icon {
    width: 60px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: #7d5a45;
}

.hotline a span.phone {
    background: none;
    font-weight: 300;
    padding: 0 15px;
}

.hotline a span.phone strong {
    font-weight: 700;
}

@media (max-width:480px) {
    .hotline {
        width: 17%;
        display: block;
        height: 50px;
        overflow: hidden;
        float: right;
        font-size: 1.8rem;
        background: #33DD46;
        border: 0;
    }
    .hotline a span {
        display: block;
        overflow: hidden;
        padding: 0;
        height: 50px;
        line-height: 50px;
        color: #333;
        float: left;
    }
    .hotline a span.icon {
        width: 100%;
        line-height: 50px;
        text-align: center;
        color: #fff;
    }
    .hotline a span.phone {
        display: none;
    }
}


/* HEADER */

header {
    display: block;
    width: 100%;
    height: 150px;
    margin: 0;
    padding: 0;
    -webkit-transition: .1s;
    transition: .1s;
    background: #fff;
    overflow: hidden;
}

header .header {
    display: block;
    width: 95%;
    margin: 0 auto;
    position: relative;
}

@media (max-width:480px) {
    header {
        height: auto;
        overflow: hidden;
    }
    header .header {
        width: 100%;
    }
}


/* Logo */

a.logo {
    width: 250px;
    height: 150px;
    display: block;
    overflow: hidden;
    float: left;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../images/logo.png");
    background-size: 100%;
}

@media (max-width:1024px) {
    a.logo {
        margin: 0;
        height: 120px;
        float: none;
        background-image: url("../images/logo.png");
        background-size: 90%;
        background-position: center center;
    }
}


/* Main Menu */

.toggleMenu {
    color: #fff!important;
    z-index: 10000;
    text-align: center;
    overflow: hidden;
    position: absolute;
    right: 20px;
    top: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #be931e;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 1;
    font-family: "dripicons-v2"!important;
    float: right;
    margin: 12px 0 0 0;
    font-size: 1.5rem;
    border-radius: 50%;
}

.toggleMenu:before {
    content: "\e020";
}

.toggleMenu.toogle_hover:before {
    content: "\39";
}

nav {
    float: right;
    margin: 50px 0 0 0;
    padding: 0;
    display: inline-block;
}

.nav {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 250;
}

.nav:before,
.nav:after {
    content: "";
    display: table;
}

.nav:after {
    clear: both;
}

.nav li {
    display: inline-block;
    padding: 0;
    margin: 0;
    float: left;
    position: relative;
}

.nav li a {
    display: block;
    height: 70px;
    line-height: 65px;
    font-size: 25px;
    overflow: hidden;
    margin: 0;
    font-weight: 300;
    padding: 0 10px;
    color: #111;
    margin-left: 25px;
}

.nav li a.whatsapp {
    display: block;
    height: 70px;
    overflow: hidden;
    background: transparent url(../svg/whatsapp.svg) left center no-repeat;
    background-size: 30px;
    float: left;
    padding-left: 35px;
    color: #be931e!important;
}

.nav li:hover>a {
    color: #be931e;
    opacity: 1;
}

@media (max-width:1024px) {
    nav {
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    .nav {
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        overflow: hidden;
        background: #fff;
        text-align: center;
        position: relative;
    }
    .nav>li {
        width: 100%;
        display: block;
        padding: 0;
        margin: 0;
        position: relative;
        border-bottom: 1px solid #eee;
    }
    .nav>li a {
        display: block;
        color: #444;
        height: 50px;
        padding: 0;
        line-height: 50px;
        font-weight: 800;
        transition: .3s;
        -webkit-transition: .3s;
        border-bottom: 0;
        margin-left: 0;
    }
    .nav li:hover>a {
        background: #444;
        color: #be931e;
    }
    .nav li a.whatsapp {
        display: block;
        height: 50px;
        line-height: 50px;
        overflow: hidden;
        background: none;
        background-size: 30px!important;
        float: none;
        padding-left: 0;
        color: #be931e!important;
    }
}


/* CONTAINER */

.container {
    margin: 0;
    padding: 0;
    perspective: 1px;
    transform-style: preserve-3d;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.container.half {
    height: auto;
}

.parallax {
    display: flex;
    flex: 1 0 auto;
    position: relative;
    z-index: -1;
    height: 100vh;
    transform: translateZ(-1px) scale(2.1);
    background: url("../images/banner.jpg") top left;
    background-color: rgb(250, 228, 216);
}

@media (max-width:768px){
    .parallax {
        display: flex;
        flex: 1 0 auto;
        position: relative;
        z-index: -1;
        height:100mvh;
        transform: translateZ(-1px) scale(1.9);
        background: url("../images/banner-m.jpg") center center;
        background-color: rgb(250, 228, 216);
    }
}

.content {
    position: relative;
    display: block;
    background-color: #fff;
    z-index: 1;
}

.content .wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.caption {
    width: 100%;
    height: 100%;
    padding: 12% 0 0 0;
    text-align: center;
    margin: 0;
    z-index: 7;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.50);
}

.caption .title {
    width: 100%;
    display: block;
    overflow: hidden;
    color: #fff;
    opacity: 0;
    font-size: 100px;
    font-weight: 100;
    padding: 0;
    animation: title .2s .4s linear forwards;
    position: relative;
    transform: scale(0);
}

.caption .desc {
    display: block;
    width: 50%;
    opacity: 0;
    margin: 0 auto;
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    overflow: hidden;
    animation: desc .2s .5s linear forwards;
    position: relative;
}

@media (max-width:768px) {
    .caption {
        padding: 40% 0 0 0;
        word-break: break-all
    }
    .caption .title {
        font-size: 3rem;
        line-height: 3rem;
    }
    .caption .desc {
        width: 80%;
        font-size: 1.2rem;
    }
}

@keyframes title {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes desc {
    from {
        opacity: 0;
        top: 0;
    }
    to {
        opacity: 1;
        top: 4%;
    }
}


/* ABOUT */

.about {
    width: 100%;
    margin: 0;
    padding: 100px 0;
    display: block;
    overflow: hidden;
    background: #eee;
    color: #111;
}

.about .wrapper {
    width: 1200px;
}

.about .title {
    display: block;
    width: 65%;
    float: left;
}

.about .title h1 {
    display: block;
    font-size: 4rem;
    font-weight: 100;
    margin: 0;
    padding: 0;
}

.about .title h1 span {
    font-weight: 600;
}

.about .title h2 {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    margin: 10px 0 0 0;
    padding: 0;
    color: #666;
}

.about .title h3 {
    font-size: 1.6rem;
}

.about a {
    display: block;
    width: 260px;
    height: 90px;
    line-height: 90px;
    margin: 25px 0 0 0;
    padding: 0 20px;
    background: #be931e;
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    position: relative;
    text-align: center;
    float: right;
}

.about a:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: #be931e;
    border-width: 25px;
    margin-left: -25px;
}

@media (max-width:768px) {
    .about {
        width: 100%;
        margin: 0;
        padding: 50px 10px;
    }
    .about .wrapper {
        width: 95%;
    }
    .about .title {
        width: 100%;
        text-align: center;
    }
    .about .title h1 {
        font-size: 3rem;
        line-height: 3rem;
    }
    .about .title h1 span {}
    .about .title h2 {
        padding: 0 20px;
    }
    .about a {
        width: 100%;
    }
}


/* CAROUSEL */

.carousel {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    background: #fff;
    color: #111;
}

.carousel .wrapper {
    width: 100%;
    text-align: center;
}

.carousel .wrapper h3 {
    font-size: 3rem;
    font-weight: 300;
}
.carousel .wrapper h4 {
    font-size: 2.4rem;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

@media (max-width:480px) {
    .carousel .wrapper {
        width: 95%;
    }
}


/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    text-align: center;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 1.4rem;
    overflow: hidden;
    font-weight: 100;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
 
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color:#111;
    font-weight: 600;
    color: #fff;
  }
  
  /* Style the tab content */
  .tabcontent {
        width: 100%;
        display: none;
        padding: 35px 0;
        border-top: none;
        font-size: 1.4rem;
  }
  .tabcontent h3 { font-weight: 700!important;}
  .tabcontent p { line-height: 15px; }
  .tabcontent.active { display:block;overflow: hidden; }
/* Products */

ul.products {
    width: 95%;
    margin: 0 auto;
    padding: 25px 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

ul.products li {
    width: 25%;
    display: block;
    float: left;
    padding: 0;
    margin: 0;
    border: 1px solid #eee;
    transition: .3s linear;
    position: relative;
    overflow: hidden;
}

ul.products li a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    text-align: center;
    position: relative;
}

ul.products li a img {
    width: 100%;
    vertical-align: bottom;
    text-align: center;
}

ul.products li a .view {
    opacity: 0;
    content: "";
    font-size: 3rem;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #fff;
    padding: 40% 0 0 0;
    background-color: rgba(0, 0, 0, 0.20);
    transition: .1s;
}

ul.products li:hover a .view {
    opacity: 1;
}

@media (max-width:480px) {
    ul.products li {
        width: 50%;
    }
}


/* SOCIAL */

.social {
    width: 100%;
    display: block;
    overflow: hidden;
    text-align: center;
    padding: 50px 0;
    margin: 0;
    color: #fff;
    background: #be931e;
}

.social .title {
    display: block;
    font-weight: 300;
    font-size: 2rem;
    padding: 0 0 25px 0;
    margin: 0 15px 0 0;
}

.social a {
    display: inline-block;
    width: 65px;
    height: 65px;
    text-align: center;
    margin: 0 10px 0 0;
    overflow: hidden;
    position: relative;
    border: 2px solid #fff;
    border-radius: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px;
}

.social a:hover {
    background-color: #111;
    border: 2px solid #111;
}

.social a.social_facebook {
    content: "";
    background-image: url("../svg/social_facebook.svg");
}

.social a.social_twitter {
    content: "";
    background-image: url("../svg/social_twitter.svg");
}

.social a.social_instagram {
    content: "";
    background-image: url("../svg/social_instagram.svg");
}

.social a.social_youtube {
    content: "";
    background-image: url("../svg/social_youtube.svg");
}


/* FOOTER */

footer {
    width: 100%;
    display: block;
    padding:50px 0;
    margin: 0;
    color: #fff;
    position: relative;
    border-top: 1px solid #333;
    background: #111;
    text-align: center;
    font-size: 1.5rem;
    overflow: hidden;
}

@media (max-width:480px) {
}


/* CONTACT */
#map_container {
    width: 100%;
    height: 400px;
    filter: gray;
    opacity: 1;
    -webkit-filter: grayscale(100%);
    -webkit-backface-visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s;
    border-bottom: 1px solid #333;
    display: block;
    overflow: hidden;
}
/* LIGHTBOX */

.lightbox {
    cursor: pointer;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 1.00);
    -webkit-filter: none !important;
    z-index: 999999999999 !important;
}

.lightbox img {
    display: block;
    position: absolute;
}

.lightbox-loading {
    background: url(../images/loading.gif) center center no-repeat;
    width: 80px;
    height: 80px;
    margin: -20px 0 0 -16px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.lightbox-caption {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 9998;
}

.lightbox-caption p {
    margin: 0 auto;
    max-width: 70%;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
}

.lightbox-button {
    position: absolute;
    z-index: 9999;
    background: no-repeat center center;
    width: 60px;
    height: 60px;
    opacity: 0.9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    background-size: 30px;
}

.lightbox-button:hover,
.lightbox-button:focus {
    opacity: 1;
}

.lightbox-close {
    right: 30px;
    top: 20px;
    background-image: url('../svg/close.svg');
}

.lightbox-nav {
    top: 85%;
    width: 100%;
    margin-top: -16px;
}

.lightbox-nav-next {
    right: 30px;
    width: 60px;
    height: 60px;
    background-image: url('../svg/next.svg');
    background-size: 80px;
}

.lightbox-nav-prev {
    left: 30px;
    width: 60px;
    height: 60px;
    background-image: url('../svg/prev.svg');
    background-size: 80px;
}