/* ==========================================================================
=============================================================================
==============================GENERAL STYLES=================================
=============================================================================
========================================================================== */

:root{
    --primary-color: #932916;
    --white-color: #ffffff;
    --space-xs: 2px;
    --space-s: 4px;
    --space-base: 8px;
    --space-m: 16px;
    --space-l: 32px;
    --space-xxl: 128px;
}

html, body{
    width: auto !important;
    overflow-x: hidden !important;
}

.margin-top-xs{
    margin-top: var(--space-xs);
}
.margin-top-s{
    margin-top: var(--space-s);
}
.margin-top-base{
    margin-top: var(--space-base);
}
.margin-top-m{
    margin-top: var(--space-m);
}
.margin-top-l{
    margin-top: var(--space-l);
}
.margin-top-xxl{
    margin-top: var(--space-xxl);
}

.margin-bottom-xs{
    margin-bottom: var(--space-xs);
}
.margin-bottom-s{
    margin-bottom: var(--space-s);
}
.margin-bottom-base{
    margin-bottom: var(--space-base);
}
.margin-bottom-m{
    margin-bottom: var(--space-m);
}
.margin-bottom-l{
    margin-bottom: var(--space-l);
}
.margin-bottom-xxl{
    margin-bottom: var(--space-xxl);
}

.margin-left-xs{
    margin-left: var(--space-xs);
}
.margin-left-s{
    margin-left: var(--space-s);
}
.margin-left-base{
    margin-left: var(--space-base);
}
.margin-left-m{
    margin-left: var(--space-m);
}
.margin-left-l{
    margin-left: var(--space-l);
}


.margin-right-xs{
    margin-right: var(--space-xs);
}
.margin-right-s{
    margin-right: var(--space-s);
}
.margin-right-base{
    margin-right: var(--space-base);
}
.margin-right-m{
    margin-right: var(--space-m);
}
.margin-right-l{
    margin-right: var(--space-l);
}

.custom-border-left{
    border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), black, rgba(0, 0, 0, 0.1)) 1;
    border-left: 0.5px solid transparent;
}
.custom-border-right{
    border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), black, rgba(0, 0, 0, 0.1)) 1;
    border-right: 0.5px solid transparent;
}
.custom-border-top{
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), black, rgba(0, 0, 0, 0.1)) 1;
    border-top: 0.5px solid transparent;
}
.custom-border-bottom{
    border-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), black, rgba(0, 0, 0, 0.1)) 1;
    border-bottom: 0.5px solid transparent;
}
/* ==========================================================================
FONT STYLES - GENERAL
========================================================================== */

.font-size-s{
    font-size: var(--space-s);
}
.font-size-base{
    font-size: var(--space-base);
}
.font-size-m{
    font-size: var(--space-m);
}
.font-size-l{
    font-size: var(--space-l);
}

html, body{
    font-family: 'Lato', sans-serif;
}

p, h1, h2, h3, h4, h5, h6 {
    -webkit-transform: translateZ(0); /* fix for blinking in safari */
}

h1{
    font-size: 48px;
    font-weight: 400;
}

h3{
    font-size: 28px;
}

p{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8em;
}

a, a:hover, a:focus{
    color: #fff;
}

.footer-bottom-bar p{
    font-size: 13px;
}

.form-control:focus {
    border-color: #676d74;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(119, 125, 132, 0.60);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(119, 125, 132, 0.60);
}

.footer-space{
    padding-top: 50px;
}

@media (max-width: 767px) {

    .footer-space{
        padding-top: 0px;
    }

}

@media (min-width: 768px){

    .footer-space{
        padding-top: 50px;
    }

}

@media (max-width: 767px) {

    .box{
        height: 100% !important;
    }
}

@media (min-width: 768px) {

    .box{
        height: 650px !important;
    }
}

.dancing-script-normal {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
  }

/* ==========================================================================
PADDINGS/MARGINS
========================================================================== */

/* useful to remove col-* paddings */
.no-padding {
    padding: 0 !important;
}

/* useful to remove col-* margins */
.no-margin {
    margin: 0 !important;
}

.div-pad{
    padding: 0 5em;
}

@media (max-width: 1199px) {
    .div-pad{
        padding: 0 4em;
    }
}

@media (max-width: 991px) {
    .div-pad{
        padding: 0 3em;
    }
}

@media (max-width: 767px) {
    .div-pad{
        padding: 0 1em;
    }
}

/* ==========================================================================
LOADING SPINNER
========================================================================== */
.spinner {
    height: 100%;
    width: 100%;
    z-index: 25;
    position: absolute;
    margin: auto;
    left: -50%;
    top: -50%;
    -webkit-transform: translateY(50%) translateX(50%);
    -moz-transform: translateY(50%) translateX(50%);
    -ms-transform: translateY(50%) translateX(50%);
    -o-transform: translateY(50%) translateX(50%);
    transform: translateY(50%) translateX(50%);
}

.spinner-content {
    width: 80px;
    height: 80px;
    position: relative;
    top: 50%;
    left: 50%;
    margin: 0;

    -webkit-transform: translateY(-50%) translateX(-50%) scale(0.5,0.5);
    -moz-transform: translateY(-50%) translateX(-50%) scale(0.5,0.5);
    -ms-transform: translateY(-50%) translateX(-50%) scale(0.5,0.5);
    -o-transform: translateY(-50%) translateX(-50%) scale(0.5,0.5);
    transform: translateY(-50%) translateX(-50%) scale(0.5,0.5);
    -webkit-animation: loading 1.2s steps(14) infinite;
    animation: loading 1.2s steps(14) infinite;
}

@-webkit-keyframes loading{
    0%{
        background-position: 0;
    }
    30%{
        background-position: -1120px;
    }
    70%{
        background-position: -1120px;
    }
}

@keyframes loading {
    0% {
        background-position: 0;
    }
    30%{
        background-position: -1120px;
    }
    70%{
        background-position: -1120px;
    }
}

/* ==========================================================================
BUTTON STYLES
========================================================================== */
/* SUBMIT BUTTONS */

.submit-form-btn {
    border: 3px solid #932916;
    font-family: inherit;
    border-radius: 8px;
    color: #fff;
    background-color: #932916;
    cursor: pointer;
    padding: 3px 25px;
    display: inline-block;
    font-weight: 400;
    font-size: 21px;
    outline: none;
    position: relative;

    -webkit-transition: all 0.3s;
    -moz-animation: all 0.3s;
    -ms-animation: all 0.3s;
    -o-animation: all 0.3s;
    transition: all 0.3s;
}

.submit-form-btn:hover,
.submit-form-btn:active {
    /*color: rgba(75,75,74,0.95);*/
    background: #932916;
}

.submit-form-btn:active{
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .3);
}

/* ==========================================================================
Waypoints
========================================================================== */
@media screen and (min-width : 990px) {
    .wp1, .wp2, .wp3, .wp4, .wp5, .wp6, .wp61 { visibility: hidden; }
    .bounceInLeft, .bounceInRight, .fadeInUp, .fadeInUpDelay, .fadeInDown, .fadeInUpD, .fadeInLeft, .fadeInRight { visibility: visible; }
    .delay-05s { animation-delay: 0.5s; -webkit-animation-delay: 0.5s; }
    .delay-1s { animation-delay: 1s; -webkit-animation-delay: 1s; }
}

/* ==========================================================================
=============================================================================
==================================HEADER=====================================
=============================================================================
========================================================================== */


/* ==========================================================================
NAV-BAR
========================================================================== */
/* set navbar text style */
.navbar{
    text-transform: uppercase;
    /*font-weight: 700;*/
}

/* to allow the logo to be the same size as the text */
/* remove navbar-brand negative margin */
.navbar-brand{
    padding: 0;
    height: 100%;
    margin-left: 0 !important;
}

/* remove navbar-right negative margin */
.navbar-right{
    margin-right: 0;
}

/* set navbar colors */
.navbar-default{
    background-color: rgb(0,0,0); 
    padding-bottom: 10px !important;
}

/* remove navbar border */
.navbar-fixed-top{
    border-width: 0;
}

/* navbar link styles */
.navbar-default .navbar-nav > li > a{
    padding: 0;
    margin: 5px 0 0 15px;
    font-size: 18px;
    color: #fff;
    background-color: transparent;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: rgb(150,150,150);
    background-color: transparent;
}

/* mobile navbar styles */
.navbar-default .navbar-toggle{
    border-color: #7F2D1D;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus{
    background-color: #33383d;
}
.navbar-default .navbar-toggle .icon-bar{
    background-color: #f5f5f5;
}

@media (max-width: 767px){
    /* remove navbar-brand negative margin */
    .navbar-brand{
        margin-left: 15px !important;
    }

    .navbar-default .navbar-nav > li > a{
        font-size: 14px;
        color: #f5f5f5;
    }

    #nav-content{
        padding: 0 1em;
    }

    .navbar-toggle{
        margin: 13px 15px 13px 0;
    }

    .navbar-brand{
        margin: 5px 0 5px 15px;
    }
}

/* navbar logos mobile */
#nav-logo{
    display: none;

}

#nav-logo-white{
    display: block;
}

@media (min-width: 768px){
    /* default navbar */
    .navbar-default{
        background-color: rgba(0,0,0, 0);
        border-color: transparent;
        /*padding: 50px 0;*/
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    /* shrinked navbar: background color and padding */
    .navbar-default.navbar-shrink{
        background-color: rgb(0,0,0);
        padding: 10px 0;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .navbar-default:not(.navbar-shrink) .navbar-nav > li > a:hover,
    .navbar-default:not(.navbar-shrink) .navbar-nav > li > a:focus,
    .navbar-default:not(.navbar-shrink) .navbar-nav > .active > a,
    .navbar-default:not(.navbar-shrink) .navbar-nav > .active > a:hover,
    .navbar-default:not(.navbar-shrink) .navbar-nav > .active > a:focus,
    .navbar-default:not(.navbar-shrink) .navbar-nav > .open > a,
    .navbar-default:not(.navbar-shrink) .navbar-nav > .open > a:hover,
    .navbar-default:not(.navbar-shrink) .navbar-nav > .open > a:focus {
        color: #333333;
        background-color: transparent;
    }

    /* navbar logos desktop */
    .navbar:not(.navbar-shrink) #nav-logo{
        display: block;
    }

    .navbar:not(.navbar-shrink) #nav-logo-white{
        display: none;
    }
}

/* left and right padding animation */
#nav-content{
    -webkit-transition: padding .3s;
    -moz-transition: padding .3s;
    -ms-transition: padding .3s;
    -o-transition: padding .3s;
    transition: padding .3s;
}


header{
    /*height: 100vh;*/
    width: 100%;
    padd
}

header .banner-title{
    position: absolute;
    z-index: 1;
    font-size: 1.8em;
    color: white;
    text-shadow: 0.5px 0.5px black;
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 4em;
}

@media (max-width: 425px){
    header .banner-title{      
        align-items: center;
        justify-content: center;
    }
}

header #floating-btn{
    position: absolute;
    bottom: 0;
    height: 48px;
    width: 48px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    z-index: 2;
}
#anchor{
    margin-bottom: 32px;
}

header .banner-title-small{
    z-index: 1;

    opacity: 0;
    position: absolute;
    height: 200px;
    width: 100%;
    top: 0;
}

@media (min-width: 768px){
    .banner-small {
        height: 300px;
    }
    header .banner-title-small{
        padding-top: 160px;
    }
}

header .banner-title h1{
    color: rgba(0,0,0,1);
    font-size: 65px;
    font-weight: 300;
    position: relative;
    top: 15%;
    margin: 0;
    -webkit-transform: translateY(-50%) translateZ(0) !important; /* fix for blinking in safari */
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

header .banner-title h2{
    color: rgba(5, 5, 5,1);
    font-size: 30px;
    font-weight: 200;
    position: relative;
    top: 15%;
    margin: 0;
    -webkit-transform: translateY(-50%) translateZ(0) !important; /* fix for blinking in safari */
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

#welcome h1{
    color: #333333;
}

#welcome p{
    color:#000;
}

#welcome a{
    color: #1b0a0a;
}

#about-content h1{
    margin-top: 10px;
}

#specialties h2{
    color: #333333;
}

#specialties p{
    color:#000;
}

#welcome{
    width: 100%;
    min-height: 100%;
    padding-top: 3em;
    padding-bottom: 3em;
    background-color: white;
    text-align: center;
}

@media (min-width: 768px){

    #welcome img {
        display: block;
        /*float: right;*/
        margin-left: 100px;
    }
}

@media (max-width: 767px){

    #welcome img {
        display: none;
    }
}

#about-content{
    color: #fff;
    height: 300px;
    padding-top: 90px;
    text-align: center;
}

@media (min-width: 992px){

    .v-align{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
     }
}

#specialties{
    width: 100%;
    height: auto;
    background-color: #ffffff;
    text-align: center;
    padding-top: 3em;
    padding-bottom: 3em;
}

@keyframes slideLeft {
    0% {
        transform: translateX(150%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-150%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(-150%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
}


@-webkit-keyframes animatedBackground {
    0% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    100% {
        -webkit-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1)
    }

}


@-moz-keyframes animatedBackground {
    0% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    100% {
        -webkit-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1)
    }

}
@keyframes animatedBackground {
    0% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    100% {
        -webkit-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1)
    }

}

.art-image-wrapper{
    border: 1px solid #dee0e0;
    background-color: #f9fbfb;
    margin-top: 20px;
    margin-bottom: 35px;
}

.art-image-wrapper img {
    opacity: 0;
    margin: 0;
    height: auto;
    width: 100%;
}

.art-image-caption{
    opacity: 0;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .art-image-caption{
        font-size: 16px;
    }
}



/*@media (max-width: 991px) {*/


    /*#contacts-banner-map{*/
        /*height: 300px !important;*/
    /*}*/
/*}*/

/*@media (min-width: 992px){*/

    /*#contacts-banner-map{*/
        /*height: 100%;*/
    /*}*/

/*}*/

.contact-top-box{
    margin: auto;
}

.text-bold{
    font-weight: 700;
}

.add-cont-text {
    font-size: 16px;
}

@media (max-width: 767px) {

    #add-box{
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 15px;
    }

    #cont-box {
        margin-left: -15px;
        margin-right: -15px;
    }

}

@media (min-width: 768px){

    .contact-top-pad{
        padding-top: 1em;
        padding-bottom: 1em;
    }

}

.form-divs{
    height: 70px;
    margin-bottom: 0;
}

.form-divs-text-area{
    margin-bottom: 0;
}

.form-margins{
    margin: 5px 0 15px 0;
}


.contacts-v-align{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

@media (max-width: 767px) {
    .contacts-v-align{
        display: block;
        text-align: center;
    }
}

.contact-text{
    color: #ffffff;
    margin-top:auto;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.footer-bar-background{
    background-color: #33383d;
}



.footer-bottom-bar{
    background-color: #787775;
    padding: 1em 0;
}

@media (max-width: 767px) {

    .btn-facebook {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-bottom-bar-pad{

        text-align: center;
    }

    #footer-copyright{
        margin-top: 2em;
    }
}

footer{
    -webkit-transform: translateZ(0);
}


#owl-demo .item img{
    display: block;
    margin:auto;
    height: auto;
}

#owl-demo2 .item img{
    display: block;
    margin:auto;
    width: 80%;
    height: auto;
}

#bar{
    width: 0%;
    max-width: 100%;
    height: 4px;
    background: rgb(54, 161, 55);
}
/*#progressBar{*/
    /*display: none;*/
/*}*/


/*NEW*/

#contact{
    background-color: #F4F4F2;
}

#contact-form{
    -webkit-transform: translateZ(0); /* fix for blinking in safari */
    padding-top: 50px;
    padding-bottom: 50px;
}

.form-background{
    background-color: #ffffff;
}

.bar-style{
    text-transform: none;
}

.bar-style a{
    padding-top: 30px !important;
    /*padding-bottom: 20px !important;*/
}


#home-bg-1{
    background: url('../img/home-banner.jpg') no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: auto;
    padding-top:-40px;
    height: 100vh;
    width: 100%;
}
#home-bg-1::after {
    content: '';
    background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.6));
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
}

#home-bg-2{
    background: url('../img/home-banner2.jpg') no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: auto;
    padding-top:-40px;
    height: 100vh;
    width: 100%;
}

#home-bg-3{
    background: url('../img/home-banner3.jpg') no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: auto;
    padding-top:-40px;
    height: 100vh;
    width: 100%;
}

#home-bg-4{
    background: url('../img/home-banner4.jpg') no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: auto;
    padding-top:-40px;
    height: 100vh;
    width: 100%;
}

#owl-demo2 .owl-controls{
    display: none !important;
}

.figure-text{
    position:absolute;
    z-index:1;
    width: 100%;
    text-align: right;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-top: 10px;

    /*background with gradient*/
    background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,1) 100%); /* IE10+ */
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */

}

.speciality{
    text-align: left;
    padding-left: 5em;
    padding-right: 5em;
}

.speciality-photo{

}


.icon-bar {
    background-color: #7F2D1D !important;
}

/*#index-btn.active, #casas-btn.active, #galeria-btn.active, #turismo-btn.active, #contactos-btn.active{
    background-color: rgb(164, 164, 164);
}*/

/*#topBarMenu > li > a:focus{
    background-color: transparent;
}*/

/*#topBarMenu > li > a:hover{
    background-color: rgba(180, 180, 180,1);
}*/

#topBarMenu{
    padding-right: 30px;
    padding-top: 24px;
}

#start-btn{
    padding-top: 100px;

}

.form-background h1{
    padding-left: 5%;
}


@media (max-height: 400px){
    #start-btn{
        display: none;
    }
}

@media (min-height: 401px){
    #start-btn{
        display: block;
    }
}

.logo-footer{
    margin-left: 5px;
    margin-right: 5px;
}

#footer-copyright{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1.5em;
}

#social-icons{
    display: flex;
    align-items: center;
    justify-content: center;
        gap: 16px;
}
#social-icons img{
    height: 32px;
    width: 32px;
    
}

#reserve-btn{
    margin-top: 15px;
}

.lb-cancel{
    background: none;
}

.btn-facebook{
    margin-left: auto;
    margin-bottom: 5px;
    width: 120px;
    padding-top: 1px!important;
    padding-bottom: 1px!important;
}

.fa-facebook{
    margin-top: -8px !important;
}

#alert-form-box{
    color: green;
    display:none;
}

#alert-form-box p{
    font-size: 17px;
}

.start-btn-li {
    list-style: none;
    position: relative;
    display: inline-block;
    width: 65px;
    height: 65px;
}

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

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

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

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

.round {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 30px;
    text-decoration: none;
    text-align: center;
    font-size: 25px;
    text-shadow: 0 1px 0 rgba(255,255,255,.7);
    letter-spacing: -.065em;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    box-shadow: 2px 2px 7px rgba(0,0,0,.2);
    border-radius: 300px;
    z-index: 1;
    border-width: 4px;
    border-style: solid;
}

a.orange {
    background-color: rgba(217, 86, 44,0.5);
    color: rgba(153,38,0,1);
    border-width: 2px;
    border-color: rgba(255, 255, 255, 1);
}



.round span.round {
    display: block;
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    font-size: 1px;
    border: none;
    padding: 40% 20% 0 20%;
    color: #fff;
}


.orange span {
    background: rgba(217, 86, 44,.7);
}

.arrow_box {
    top: 45%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    z-index: 9999;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: rgba(255, 255, 255, 1);
    border-width: 15px;
    margin-left: -15px;
}

@media (min-width: 768px) {

    .round span:hover {
        opacity: .85;
        font-size: 20px;
        -webkit-text-shadow: 0 1px 1px rgba(0,0,0,.5);
        -moz-text-shadow: 0 1px 1px rgba(0,0,0,.5);
        -o-text-shadow: 0 1px 1px rgba(0,0,0,.5);
        text-shadow: 0 1px 1px rgba(0,0,0,.5);
    }
    a.orange:hover {
        color: rgba(217, 86, 44,1);
    }
    .round:hover {
        width: 130%;
        height: 130%;
        left: -15%;
        top: -15%;
        font-size: 33px;
        padding-top: 38px;
        -webkit-box-shadow: 5px 5px 10px rgba(0,0,0,.3);
        -o-box-shadow: 5px 5px 10px rgba(0,0,0,.3);
        -moz-box-shadow: 5px 5px 10px rgba(0,0,0,.3);
        box-shadow: 5px 5px 10px rgba(0,0,0,.3);
        z-index: 2;
        border-size: 10px;
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

#gallery{
    background-color: #F4F4F2;
}

hr{
    height: 2px;
    margin-top: 3px;
    margin-bottom: 20px;
    background-color: black;
}

.main_hr{
    width: 60%;
}


#presentation{
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    min-height: 100%;
    text-align: center;
}

#presentation-img{
    width: 100%;
}

#presentation-box{
    margin-left: 1em;
    margin-right: 1em;
}

#social{
    padding-left: 0;
    padding-right: 0;
    min-height: 500px;
    width: 100%;
    z-index: -1;
    background: url(../img/social-bg.jpg) no-repeat fixed center center;
    background-size: cover;
    text-align: center;
}

#fb-wrapper{
    min-height: 420px;
    width: 525px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 3em;
    margin-bottom: 3em;
    background-color: white;
    border-radius: 8px;
}

#social-text h1{
    color: white;
    padding-left: 1em;
    padding-right: 1em;
}

#promotions{
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    height: 300px;
    background-color: #e5e5e5;
    text-align: center;
}

@media (max-width: 991px) {

    #promotions{
        height: 600px;
    }

}

@media (min-width: 992px){

    #promotions{
        height: 300px;
    }

}

.promotion-info p{
    text-align: left;
}

.promotion-info h1{
    text-align: left;
    font-size: 30px;
}

#promotion-1{
    position: relative;
    height: 300px;
    width: 100%;
    background: url(../img/promotion1.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
}
#promotion-2{
    height: 300px;
    width: 100%;
    background: url(../img/promotion2.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-right: 0;
    padding-left: 0;
}

.promotion-info{
    height: 100px;
    padding-top: 1px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: rgba(255,255,255,0.7);
    width: 100%;
}

.textbox-promotion:hover {
    opacity:1;
}
.text-promotion {
    text-align: center;
    padding-top: 20px;
    color: #fff;
    padding-left: 2em;
    padding-right: 2em;
    font-size: 20px;
}
.textbox-promotion {
    width:100%;
    height:200px;
    margin-top: 100px;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    background-color: rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 15px 2px rgba(255,255,255,.75);
    box-shadow: 0px 0px 15px 2px rgba(255,255,255,.75);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

/* ==========================================================================
=============================================================================
==================================CASAS=====================================
=============================================================================
========================================================================== */

#casas-banner{
    /* background: url('../img/casas-banner.jpg') no-repeat center 40%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; */
    height: auto;
    padding-top:-40px;
    height: 400px;
    width: 100%;
}
#casas-banner video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#bem-estar-banner{
    background: url('../img/massage4.jpg') no-repeat center 40%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: auto;
    padding-top:-40px;
    height: 400px;
    width: 100%;
}

#galeria-banner{
    background: url('../img/galeria-banner.jpg') no-repeat center 70%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: auto;
    padding-top:-40px;
    height: 400px;
    width: 100%;
}
#contact-banner{
    background: url('../img/contact-banner.jpeg') no-repeat 70%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: auto;
    padding-top:-40px;
    height: 400px;
    width: 100%;
}

#turismo-banner{
    background: url('../img/turismo-banner.jpg') no-repeat center 75%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: auto;
    padding-top:-40px;
    height: 400px;
    width: 100%;
}

#intro-casas{
    width: 100%;
    min-height: 100%;
    padding-top: 3em;
    padding-bottom: 3em;
    background-color: white;
    text-align: center;
}

.casa-mae-img{
    background: url('../img/casa-mae.jpg') no-repeat center center;
    height: 600px;
    background-size: cover;
}
.casa-eira-img{
    background: url('../img/casaDaEira.JPG') no-repeat center center;
    height: 600px;
    background-size: cover;
    background-size: cover;
}

.alpendre-img{
    background: url('../img/alpendre.jpg') no-repeat center center;
    height: 600px;
    background-size: cover;
}

.cortico-img{
    background: url('../img/cortico.jpg') no-repeat center center;
    height: 600px;
    background-size: cover;
}

.vinha-img{
    background: url('../img/vinha.jpg') no-repeat center center;
    height: 600px;
    background-size: cover;
}

.casa-description h1{
    margin-top: 10px !important;
    margin-bottom: 5px !important;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 30px;
}

.casa-description p{
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
}

.white-bg{
    background-color: white;
}

.gray-bg{
    background-color: #e5e5e5;
}

.light-gray-bg{
    background-color: #f9f9f9;
}

.cal-frame{
    height: 250px;
    border: 0px;
}


h1.available-title{
    font-size: 18px;
}

/*Calendário*/

.fc-time{
    display: none;
}

.fc-title{
    display: none;
}

.fc-event{
    pointer-events: none;
    cursor: default;
    height: 10px;
    background-color: rgba(184,184,190,0.5) !important;
    border: 1px solid rgba(140, 140, 140, 0.95);
}

.fc-day-number{
    background-color: #a6e1ec !important;
}

.fc-left{
    font-size: 8px;
    margin-top: 10px;
}

.graph-description{
    height: 100%;
    width: 100px;
    background-color: rgba(184,184,190,0.5) !important;
    border: 1px solid rgba(140, 140, 140, 0.95) !important;
    border-radius: 3px;
    margin-bottom: 40px;
}

.graph-description p{
    font-size: 11px;
    padding: 0;
    text-align: center;
    margin: 0 0 2px 0;
    font-weight: 700;
}

.fc button{
    padding: 0;
}

.legend{
    padding-left: 10px;
}

.legend p{
    /*padding-top: 7px;*/
    /*padding-left: 5px;*/
    /*font-size: 11px;*/
}

.fc-today-button{
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.fc-day-header{
    font-size: 10px;
}

.fc-day-number{
    font-size: 7px;
}

.fc-day{
    height: 13px !important;
}

.fc-basic-view .fc-body .fc-row {
    min-height: 20px !important;
}

.price-table{
    margin-top: 5%;
    margin-bottom: 5%;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
}

.fc-view{
    background-color: white;
}

.availability{
    margin-right: auto;
    margin-left: auto;
    display: table;
}

#gastronomia{
    background: url('../img/turismo1.jpg') no-repeat 70% 60%;
    height: 300px;
}

#tradicoes{
    background: url('../img/turismo2.jpg') no-repeat center 60%;
    height: 300px;
}

#segredos{
    background: url('../img/turismo3.jpg') no-repeat center center;
    height: 300px;
}

.interesses-text p{
    color:#000;
    text-align: center;
    font-size: 18px;
    margin-left: 15px;
    margin-right: 15px;
}

.interesses-text h1{
    color: #333333;
    font-size: 26px;
    text-align: center;
}

#contacts-banner-map{
    height: 400px;
}

#reservas p{
    color:#000;
    text-align: center;
    font-size: 18px;
    margin-left: 15px;
    margin-right: 15px;
}

#reservas h1{
    color: #333333;
    font-size: 26px;
    text-align: center;
}

#contactos p{
    color:#000;
    text-align: center;
    font-size: 20px;
    margin-left: 15px;
    margin-right: 15px;
}

#contactos h1{
    color: #333333;
    font-size: 26px;
    text-align: center;
}

#contactos a{
    color: #9a9a9a;
    font-size: 20px;

}


/* ==========================================================================
FILE UPLOADS
========================================================================== */
.upload-date-div {
    display: block;
    color: #555;
    width: 100%;
    height: 46px;
}

.upload-date-label{
    display: block;
    color: #555;
    height: 46px;
    padding: 6px 16px;
    font-size: 18px;
    border-radius: 6px 0 0 6px;
    background-color: #fff;
    border: 1px solid #ccc;
}

.upload-date-btn-div {
    position: relative;
    overflow: hidden;
    height: 46px;
    border-radius: 0 6px 6px 0;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.upload-date-btn-div p{
    margin-top: 12px;
    font-size: 16px;
}

.upload-date-btn-div input{
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.form-control:focus {
    border-color: #676d74;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(119, 125, 132, 0.60);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(119, 125, 132, 0.60);
}

.box{
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 8px;
    background: white;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
    margin-top: 40px;
    height: 650px;

}

.more-details {
    text-align: center !important;
    padding-top: 78px;
}

#nav-logo{
    padding-top: 30px;
    padding-left: 30px;
}

@media (max-width: 700px) {

    .fb-page{
        width: 350px !important;
    }
    #fb-wrapper{
        width: 370px;
    }
}

@media (min-width: 701px){

    .fb-page{
        width: 500px !important;
    }

    #fb-wrapper{
        width: 525px;
    }

}

table{
    text-align: left !important;
}

.note-text{

    padding-top: 20px;
    font-size: 12px !important;
    text-align: left;
}

.note-text a{
    color: black;
    font-weight: 500;
}

.contact-icon{
    padding-right: 5px;
}

.nav-pad .bar-style a{
    padding-top: 0px !important;
}

#contact-submit {
    margin-bottom: 10px;
}