body {
    font-family: Quicksand, sans-serif;
    font-size: 16px;
    color: #505050;
    opacity: 1;
    transition: 1.3s opacity;
}
body.fade {
    opacity: 0;
    transition: none;
}
.h-100 {
    height: 100%;
}
.w-100 {
    width: 100%;
}
.m-b-10 {
    margin-bottom: 10px;
}
.m-b-30 {
    margin-bottom: 30px;
}
.m-t-10 {
    margin-top: 10px;
}
.m-t-20 {
    margin-top: 20px;
}
.p-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.p-rl-5 {
    padding-right: 5px;
    padding-left: 5px;
}
.p-t-10 {
    padding-top: 10px;
}
.p-t-20 {
    padding-top: 20px;
}
.p-t-50 {
    padding-top: 50px;
}
.p-b-40 {
    padding-bottom: 40px;
}
.p-b-50 {
    padding-bottom: 50px;
}
.dis-i-b {
    display: inline-block;
}
.pos-rel {
    position: relative;
}
.f-s-12 {
    font-size: 12px;
}
.f-s-15 {
    font-size: 15px;
}
.f-s-32 {
    font-size: 32px;
}
.f-s-60 {
    font-size: 60px;
}
.f-sec {
    font-family: Quicksand, sans-serif;
}
.f-w-300 {
    font-weight: 300;
}
.f-w-400 {
    font-weight: 400;
}
.f-w-500 {
    font-weight: 500;
}
.f-w-600 {
    font-weight: 600;
}
.l-s-1 {
    letter-spacing: 1px;
}
.l-s-2 {
    letter-spacing: 2px;
}
.color-white {
    color: #fff;
}
.color-l-g {
    color: #777;
}
.bg-d-g {
    background-color: #222;
}
.b-r-0 {
    border-radius: 0;
}
.b-t-light {
    border-top: 1px solid #dbdbdb;
}
.b-b-light {
    border-bottom: 1px solid #dbdbdb;
}
.container-fluid {
    padding: 0;
}
.row {
    margin-left: 0;
    margin-right: 0;
}
.header-large {
    display: block;
    color: #494949;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.header-small {
    display: block;
    color: #a2a2a2;
    font-size: 14px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.anchor {
    display: block;
    height: 70px;
    margin-top: -70px;
    visibility: hidden;
}
@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.title-border-wrap {
    width: 100%;
    margin-bottom: 40px;
    height: 3px;
    background-color: #e5e5e5;
}
.title-border {
    width: 20%;
    height: 3px;
    background-color: #ffd700;
}
#map {
    height: 250px;
}
/*-- NAVIGATION--*/
.nav-wrapper {
    -webkit-box-shadow: 0px 0px 5px 3px rgba(255,215,0,0.35);
    -moz-box-shadow: 0px 0px 5px 3px rgba(255,215,0,0.35);
    box-shadow: 0px 0px 5px 3px rgba(255,215,0,0.35);
}
nav {
    background-color: #fff;
    font-family: Arimo, sans-serif;
    width: 100%;
    height: 70px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
.logo-wrapper {
    height: 100%;
    width: 180px;
    display: inline-flex;
    align-items: center;
}
nav img {
    max-height: 80%;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
nav ul {
    height: 100%;
    display: table;
    float: right;
    list-style: none;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
nav ul li {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    padding: 0 20px 0 20px;
}
nav a {
    text-decoration: none;
    text-transform: uppercase;
    color: #757575;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
.nav-item {
    position: relative;
}
nav ul a:hover {
    text-decoration: none;
    color: #3f3f3f;
}
nav ul a:after {
    background: gold;
    bottom: -5px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
nav ul a:hover:after {
    width: 100%;
    left: 0;
}
.nav-check {
    float: right;
    font-size: 50px;
    line-height: 70px;
    margin-right: 20px;
    cursor: pointer;
    display: none;
}
#check {
    display: none;
}
#check:checked ~ ul {
    left: 0;
}
#check:not(:checked) ~ ul {
    left: -100%;
}
@media (max-width: 768px) {
    .nav-item {
        display: inline-block;
    }
    .nav-check {
        display: block;
    }
    nav ul {
        position: fixed;
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        top: 70px;
        left: -100%;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
        transition: all 0.4s ease;
    }
    nav ul li {
        display: block;
        height: 30px;
        padding: 35px 20px 35px 20px;
    }
    nav ul li a {
        font-size: 17px;
        color: #fff;
    }
    nav ul li a:hover {
        color: gold;
    }
}
.expand {
    height: 100px;
}
.progress-container-expand {
    top: 130px !important;
}
.top-bar-wrapper {
    height:30px;
    background-color: #333;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    visibility: hidden;
}
.top-bar{
    height:30px;
    margin-left: auto;
    width:670px;
    display:flex;
    align-items: stretch;
    justify-content: space-evenly;
}
.top-bar-delimiter{
    line-height: 30px;;
    color:#eee;
    font-family: "Montserrat", sans-serif;
}
.material-icons.md-18{
    font-size:18px;
}
.material-icons.md-24{
    font-size:24px;
}
.material-icons.md-36{
    font-size:36px;
}
.material-icons.md-48{
    font-size:48px;
}
.material-icons.md-52{
    font-size:52px;
}
.top-bar-icon{
    font-size: 15px;
}
.top-bar-item{
    margin:2px;
    transition: all 0.3s ease;
}
.top-bar-text {
    color: #eee;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.top-bar-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #eee;
}
.top-bar-a:hover .top-bar-text{
    color: gold;
    text-decoration: none;
}

.top-bar-a:hover .top-bar-item{
    color: gold;
    text-decoration: none;
}

.progress-container {
    position: fixed;
    top: 70px;
    width: 100%;
    height: 3px;
    background: 0 0;
    z-index: 9999;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
.progress-bar {
    width: 0;
    height: 3px;
    background: gold;
}
/*-- NAVIGATION--*/

/*-- LANDING --*/
.jarallax {
    position: relative;
    z-index: -10;
}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: "object-fit: cover;";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.landing-clouds {
    margin-top: -100px;
}
.landing-section {
    position: relative;
    min-height: 340px;
}
.landing-header-wrapper {
    margin-top: 100px;
}
.landing-header-lg {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
}
.landing-header-lg:before {
    content: "";
    position: absolute;
    top: 22px;
    width: 100%;
    height: 2px;
    background-color: gold;
}
.landing-header-sm {
    font-family: Arimo, sans-serif;
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: gold;
    letter-spacing: 4px;
    white-space: nowrap;
}
/*-- LANDING --*/

/*-- SERVICES --*/
.service-container {
    display: flex;
    align-items: center;
    min-height: 150px;
    border: none;
    border-left: 4px solid #f0f0f0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
.service-container:hover {
    border: none;
    border-left: 4px solid gold;
}
.service-container:hover .service-icon {
    color: #393939;
}
.service-container:hover p {
    color: #616161;
}
.service-icon{
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.service-header {
    font-size: 18px;
    font-weight: 400;
}
.service-info {
    font-family: "Montserrat", sans-serif;
    max-width: 350px;
}
.service-info p {
    color: #9b9b9b;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
.inquiry-parallax {
    background-size: cover;
}
.inquiry-wrapper {
    display: flex;
    justify-content: center;
    align-items:stretch;
    height: 200px;
}
.inquiry-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    color: #fff;
    font-family: Quicksand, sans-serif;
}
.inquiry-header {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
}
.inquiry-text {
    font-size: 14px;
    font-weight: 400;
}
.btn-inq {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    font-weight: 500;
    padding-left: 25px;
    padding-right: 25px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
}
.btn-inq:hover {
    color: #fff;
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
}
.advantage-container{
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
}
.advantage-icon {
    color: #ffc312;
    display: block;
    font-size: 60px;
    text-align: center;
}
.advantage-item{
    margin: 10px 0 10px 0;
}
.advantage-header {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.advantage-text {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 15px;
    color: #8a8a8a;
    font-weight: 500;
}
/*-- SERVICES --*/

/*-- GALLERY --*/
.card-container {
    height: 280px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
.card-image {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -webkit-box-shadow: 3px 3px 7px -1px rgba(0, 0, 0, 0.78);
    -moz-box-shadow: 3px 3px 7px -1px rgba(0, 0, 0, 0.78);
    box-shadow: 3px 3px 7px -1px rgba(0, 0, 0, 0.78);
    text-align: center;
    margin-bottom: 70px;
}
.card-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.7s ease;
    -webkit-transition: 0.7s ease;
    background-color: #000;
}
.card-container:hover .card-overlay {
    opacity: 0.65;
}
.card-container:hover {
    transform: scale(1.07);
}
.gallery-icon {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
/*-- GALLERY --*/

/*-- CONTACT --*/
.company-info {
    display: inline-block;
    text-align: left;
    padding: 30px 40px 30px 40px;
    border: 1px solid #dedede;
    font-size: 14px;
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.18);
}
.contact-header {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 40px;
}
.contact-header::after {
    content: "";
    margin-top: 15px;
    display: block;
    width: 50px;
    height: 3px;
    background-color: gold;
}
.contact-item-wrapper{
    display: flex;
    justify-content:flex-start;
    align-items:center;
}
.contact-item{
    margin-left: 5px;
}
.contact-img{
    -webkit-box-shadow: 0px 0px 12px 4px rgba(122,122,122,0.3);
    -moz-box-shadow: 0px 0px 12px 4px rgba(122,122,122,0.3);
    box-shadow: 0px 0px 12px 4px rgba(122,122,122,0.3);
    border: 5px solid white;
}
.contact-bar-icon {
    vertical-align: middle;
    font-size: 17px;
}
.input-style {
    height: 50px;
    background-color: #fff;
}
.form-note {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #393939;
}
.form-control {
    border: none;
    border-left: 3px solid gold;
    background-color: #fafafa;
    transition: all 0.3s ease;
}
.form-control:focus {
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.11);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.11);
    border-left: 3px solid gold;
}
.form-control::placeholder {
    font-size: 15px;
}
.form-control:focus::placeholder {
    color: #444;
}
.btn-style {
    background-color: #fff;
    border-color: #a8a8a8;
    color: #575757;
    font-weight: 500;
    line-height: 30px;
    width: 120px;
    font-size: 15px;
    transition: all 0.4s ease;
}
.btn-style:hover {
    background-color: #222;
    color: #f2f2f2;
}
label.error {
    padding-left: 10px;
    font-size: 14px;
    padding-top: 10px;
    color: #da1313;
}
.form-check{
    margin-top: 10px;
}
.form-check-label {
    font-size: 14px;
}
.alert-box{
    margin-top: 20px;
    height:50px;
    
    display:flex;
    align-items: center;
    justify-content:flex-start;
    padding:15px;
    padding: 10px 5px 10px 15px;
    -webkit-box-shadow: 5px 5px 13px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 5px 5px 13px 0px rgba(0,0,0,0.3);
    box-shadow: 5px 5px 13px 0px rgba(0,0,0,0.3);
}
.alert-box-success{
    border-left: 5px solid #2ecc71;
}
.alert-box-failure{
    border-left: 5px solid #e74c3c;
}
.alert-text{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-left: 20px;
}
.alert-icon{
    color: #adadad;
}
/*-- CONTACT --*/

/*-- FOOTER --*/
.footer-content {
    color: #ababab;
    font-size: 14px;
    list-style: none;
}
.footer-content a {
    color: #ababab;
    text-decoration: none;
    transition: 0.2s linear;
}
.footer-content a:hover {
    color: gold;
}
.footer-header {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #ececec;
}
.footer-header::after {
    content: "";
    margin-top: 15px;
    display: block;
    width: 50px;
    height: 3px;
    background-color: gold;
    -webkit-box-shadow: 2px 2px 5px 2px rgba(224,192,52,0.5);
    -moz-box-shadow: 2px 2px 5px 2px rgba(224,192,52,0.5);
    box-shadow: 2px 2px 5px 2px rgba(224,192,52,0.5);
}
.footer {
    font-weight: 500;
    font-size: 9px;
}
.footer-data {
    color: #777;
    text-decoration: none;
    transition: 0.2s linear;
}
.footer-data:hover {
    text-decoration: none;
    color: gold;
}
.fb-link-large {
    display: none;
}
.fb-link-small {
    display: flex;
}
.btn-top {
    color: rgba(247, 203, 26, 0.65);
    display: inline-block;
    position: fixed;
    bottom: 60px;
    right: 40px;
    z-index: 99;
    transition: color 0.3s, opacity 0.5s, visibility 0.5s;
    line-height: 10px;
    opacity: 0;
    visibility: hidden;
}
.btn-top.show{
    opacity: 1;
    visibility: visible;
}
@media (hover: hover) {
    .btn-top:hover {
        color: #f7cb1a;
    }
}
.cookie-consent-wrapper {
    font-family: "Montserrat";
    position: fixed;
    padding: 20px 25px 20px 25px;
    width: 100%;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #f5f5f5;
    display: block;
    transition: opacity 1s;
}
.cookie-consent-header {
    font-size: 16px;
    font-weight: 500;
    color: #f7cb1a;
}
.cookie-consent-text {
    font-size: 12px;
    font-weight: 500;
}
.cookie-consent-link a {
    color: #daa520;
}
.cookie-consent-button {
    display: block;
    background-color: #19191a;
    color: #f5f5f5;
    border: none;
    padding: 8px 22px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    transition: 0.2s linear;
}
.cookie-consent-button:hover {
    color: #f7cb1a;
}
.cookie-consent-button a {
    text-decoration: none;
}
.hidden {
    display: none;
}
/*-- FOOTER --*/

/*-- PRIVACY --*/
.privacy{
  margin-top: 30px;
}
.privacy-header{
  margin-top:40px;
}
.table{
  color: #505050;
}
/*-- PRIVACY --*/

@media (min-width: 768px) {
    .p-10 {
        padding: 10px;
    }
    .top-bar-wrapper {
        visibility: visible;
    }
    .top-bar ul li {
        padding: 5px 10px;
    }
    .top-bar-text {
        font-size: 10px;
    }
    nav {
        margin-top: 30px !important;
    }
    .progress-container {
        top: 100px;
    }
    .landing-header-wrapper {
        margin-top: 150px;
    }
    .landing-header-lg {
        font-size: 30px;
    }
    .landing-header-sm {
        font-size: 15px;
    }
    .landing-header-lg:before {
        width: 50%;
    }
    .advantage-wrapper {
        border-left: 4px solid #fff6d9;
        border-right: 4px solid #fff6d9;
    }
    .advantage-wrapper::before {
        content: "";
        background-color: #fff6d9;
        top: 0;
        left: 0;
        width: 30%;
        height: 4px;
        position: absolute;
    }
    .advantage-wrapper::after {
        content: "";
        background-color: #fff6d9;
        right: 0;
        width: 30%;
        height: 4px;
        position: absolute;
        bottom: 0;
    }
    .inquiry-header {
        font-size: 18px;
    }
    .inquiry-text {
        font-size: 17px;
    }
    .contact-bar-text {
        padding-left: 5px;
        vertical-align: middle;
    }
    .form-note {
        font-size: 13px;
    }
    .footer {
        font-size: 12px;
    }
    .footer-header {
        margin-top: 0;
    }
    .footer-left {
        border-right: 1px solid #777;
    }
    .footer-middle {
        border-right: 1px solid #777;
    }
    .fb-link-large {
        display:flex;
    }
    .fb-link-small {
        display: none;
    }
    .cookie-consent-wrapper {
        font-family: "Montserrat";
        position: fixed;
        padding: 20px 25px 20px 25px;
        width: 370px;
        bottom: 20px;
        right: 30px;
        background-color: rgba(0, 0, 0, 0.7);
        color: #f5f5f5;
        transition: opacity 1s;
    }
}
@media (min-width: 1000px) {
    .logo-wrapper {
        width: 200px;
    }
}
@media (min-width: 1200px) {
    /*
    .top-bar-icon {
        font-size: 18px;
    }
    */
    .top-bar-text {
        font-size: 11px;
    }
    #map {
        height: 350px;
    }
    .card-container {
        max-width: 300px;
        height: 300px;
    }
    .landing-section {
        min-height: 600px;
    }
    .landing-header-wrapper {
        margin-top: 180px;
    }
    .landing-header-sm {
        font-size: 20px;
    }
    .landing-header-lg {
        font-size: 45px;
        letter-spacing: 5px;
    }
    .landing-header-lg:before {
        top: 32px;
        height: 3px;
    }
    .footer-header {
        font-size: 20px;
    }
    .footer-content {
        font-size: 15px;
    }
    .footer-align {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
