@font-face {
    font-family: 'gilroy';
    src: url('../fonts/gilroy/Gilroy-Light.woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gilroyBold';
    src: url('../fonts/gilroy/Gilroy-Bold.woff');
    font-weight: bold;
    font-style: normal;
}


*{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}
html, body{
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: 'gilroy' !important;
}

body::-webkit-scrollbar {
    width: 10px;    
}
body::-webkit-scrollbar-thumb {
    background: #360C00; 
    border-radius: 10px;
}


/*
    ==================== NAVBAR
*/
header {
    position: relative;
}
header nav{
    background-color: #fff;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.137);
}
header .navbar-nav .nav-link{
    font-size: 13pt !important;
    transition: 0.3s ease-in-out;
    position: relative;
}
header .navbar-nav .nav-link::after{
    content: " ";
    width: 0%;
    height: 3px;
    position: absolute;
    background-color: #360C00;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
header .navbar-nav .nav-link:hover{
    color: #360C00;
    font-weight: bold;
}
header .navbar-nav .nav-link:hover::after{
    width: 100%;
}

header .navbar{
    z-index: 10;
    transition: 0.3s ease-in-out;
}
.navbar-brand img{
    transition: 0.5s ease-in-out;
}

.sticky {
    position: fixed;
    top: 0;
    padding: 0 20px;
    width: 100%
  }
/*
    ====================== BANNER =================
*/
.banner{
    background-color: #fff;
    height: 65vh;
    display: flex;
    color: #360C00 !important;
}
.banner .text-banner{
    padding-top: 9rem;
}
.banner .text-banner a{
    background-color: #360C00;
    color: #fff;
}
.banner .text-banner a:hover{
    animation-name: animationButton;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    box-shadow: 10px 2px 10px rgba(0, 0, 0, 0.274);
}
@keyframes animationButton{
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.banner .text-banner h1{
    font-size: 3.5rem;
}
.banner .text-banner p{
    font-size: 30px;
}
.img-banner{
   position: relative;
}
.img-banner img{
    position: absolute;
    right: 80px;
    bottom: -200px;
    width: 400px;
    z-index: 1;
}
.img-banner .circulo{
    position: absolute;
    background-color: #360c0026;
    padding: 20px;
    bottom: -300px;
    right: -150px;
    border-radius: 50%;
    width: 650px;
    height: 650px;
}

/*
    ========================== MAIN =====================
*/
p{ font-size: 12pt; }

h1, h2, h3, h4, h5, h6 { font-family: 'gilroyBold' !important; }

.title{
    color: #D66900;
    border-left: 4px solid #360C00 !important;
    padding-left: 10px;
    font-weight: bold;
    margin-bottom: 2rem;
}

.title h2{ 
    color: #360C00 !important; 
    font-family: 'gilroyBold' !important; 
    font-size: 1.4rem;
}

.icon-about{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.icon-about i{
    color: #360C00;
    font-size: 2.5em;
    margin-bottom: 5px;
}
.icon-about span {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-family: 'gilroyBold';
}

#service{
    background-color: #360C00 !important;
}
#service .title{
    color: #D66900;
    border-color: #D66900 !important;
}

#service .title h2{ 
    color: #fff !important;
}
#service img{
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}
#service strong{
    color: #fff !important;
}

#gallery .gallery-img div{
    margin-bottom: 1.5rem;
}
#gallery .gallery-img img{
    border: thick solid #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.075) !important;
    transition: 0.3s ease-in-out;
}
#gallery .gallery-img img:hover{
    transform: scale(1.1);
}

#contact button{
    background-color: #360C00;
    color: #fff;
}
#contact a{
    color: #360C00 !important;
}

#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%
}
footer a{
    color: #360C00 !important;
    font-size: 14px !important;
    font-weight: bold;
}
#preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #360C00;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

#preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #D66900;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s
}

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }

    10% {
        width: 10px;
        height: 10px;
        opacity: 1
    }

    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1
    }

    100% {
        width: 70px;
        height: 70px;
        opacity: 0
    }
}

@media (max-width: 1200px) {
    .img-banner img{
        position: absolute;
        right: 80px;
        bottom: -200px;
        width: 300px;
        z-index: 1;
    }
    .img-banner .circulo{
        position: absolute;
        background-color: #360c0026;
        padding: 20px;
        bottom: -300px;
        right: -150px;
        border-radius: 50%;
        width: 550px;
        height: 550px;
    }
}

@media (max-width: 991px) {
    .banner{
        background-color: #fff;
        height: 80vh;
        display: flex;
        color: #360C00 !important;
    }
    .img-banner img{
        position: absolute;
        right: 40px;
        bottom: 90px;
        width: 220px;
        z-index: 1;
    }
    .img-banner .circulo{
        position: absolute;
        background-color: #360c0026;
        padding: 20px;
        bottom: 0;
        right: -150px;
        border-radius: 50%;
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .banner .text-banner{
        padding-top: 5rem;
    }
    .img-banner img{
        position: absolute;
        right: 2%;
        bottom: 0px;
        width: 200px;
        z-index: 1;
    }
    .img-banner .circulo{
        position: absolute;
        background-color: #360c0026;
        padding: 20px;
        bottom: -80px;
        right: -150px;
        border-radius: 50%;
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .container{
        padding-left: 40px;
        padding-right: 40px;
    }
    .reservada{
        justify-content: center !important;
        padding-top: 2rem !important;
    }
}

@media (max-width: 431px) {
    .banner .text-banner h1{
        font-size: 3rem;
    }
    .banner .text-banner p{
        font-size: 26px;
    }
    .img-banner img{
        position: absolute;
        right: 2%;
        bottom: 25px;
        width: 130px;
        z-index: 1;
    }
    .img-banner .circulo{
        position: absolute;
        background-color: #360c0026;
        padding: 20px;
        bottom: -45px;
        right: -150px;
        border-radius: 50%;
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 415px) {
    .banner{
        background-color: #fff;
        height: 55vh;
        display: flex;
        color: #360C00 !important;
    }
    .img-banner img{
        position: absolute;
        right: 2%;
        bottom: 25px;
        width: 100px;
        z-index: 1;
    }
    .img-banner .circulo{
        position: absolute;
        background-color: #360c0026;
        padding: 20px;
        bottom: -45px;
        right: -150px;
        border-radius: 50%;
        width: 270px;
        height: 270px;
    }
}

@media (max-width: 368px) {
    .banner .text-banner h1{
        font-size: 2.5rem;
    }
    .banner .text-banner p{
        font-size: 26px;
    }
    .img-banner img{
        position: absolute;
        right: 2%;
        bottom: 25px;
        width: 100px;
        z-index: 1;
    }
    .img-banner .circulo{
        position: absolute;
        background-color: #360c0026;
        padding: 20px;
        bottom: -45px;
        right: -150px;
        border-radius: 50%;
        width: 270px;
        height: 270px;
    }
}

.alerta{
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999999;
    border-radius: 0 !important;
    padding: 20px 80px !important;
    font-size: 14px !important;
    font-weight: normal !important;
}
.alert-success{
    background-color: #00984C!important;
    border: thin solid #00984C !important;
    color: #fff !important;
}
.alert-danger{
    background-color: #b00000!important;
    border: thin solid #b00000 !important;
    color: #fff !important;
}