
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 16px;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #B32325;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #C61517;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  /*max-height: 42px;*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #DFA52B;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #B32325;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #B32325;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #B32325;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .4);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #C61517;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #DFA52B;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #C61517;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #DFA52B;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: no-repeat center center url("../../images/pomba.jpg");
}

#hero .container {
  /*padding-top: 72px;*/
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 72px;
  font-weight: 400;
  line-height: 70px;
  color: #DFA52B;
  font-family: 'Trajan Pro', sans-serif;
  text-align: center;
}

#hero h2 {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 50px;
  font-family: 'Open sans', sans-serif;
  font-size: 24px;
}

#hero h2.destaque {
  color: #DFA52B;
  margin: 28px 0 0 0;
  font-family: 'Trajan Pro', sans-serif;
  font-size: 30px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {

}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #fff;
}

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

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Apresentacao
--------------------------------------------------------------*/
.apresentacao {
  padding: 12px 0;
  text-align: center;
  width: 100%;
  min-height: 60vh;
  background: no-repeat center center url("../../images/bg_red.jpg") #6B1516;
  background-size: cover;
}

.apresentacao h2 {
  color: #ffffff;
  margin: 60px 0 30px 0;
  font-family: 'Trajan Pro', sans-serif;
  font-size: 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.apresentacao h2.segundo {
  margin: 5px 0 30px 0;
}

.apresentacao p {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 24px;
}

.apresentacao p.frase-mc {
  color: #DFA52B;
  margin-bottom: 10px;
  margin-top: 40px;
}

.apresentacao img {
  /*max-width: 45%;*/
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0 15px 0;
  /*filter: grayscale(100);*/
}

.apresentacao .btn-nofill {
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 80px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.apresentacao .btn-nofill:hover {
  color: #B32325;
  background: #ffffff;
  border: 1px solid #ffffff;
}

@media (max-width: 768px) {
  .apresentacao h2, .apresentacao p{
    text-align: left;
  }
  .apresentacao img {
    max-width: 97%;
  }
}

/*--------------------------------------------------------------
#Historias
--------------------------------------------------------------*/
.historias h3 {
  color: #C49B6C;
  font-family: 'Trajan Pro', sans-serif;
  font-size: 32px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.historias .content {
  margin-top: 20px;
}

.historias .content .item {
  margin-top: 20px;
  margin-bottom: 40px;
  background: rgba(246, 246, 246, 0.35);
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
}

.historias .content .item:hover {
  background: rgba(246, 246, 246, 0.3);
  box-shadow: 0px 0px 30px rgba(223, 165, 43, 0.25);
}

.historias .content .item .foto {
  margin-left: -1.5rem;
  min-height: 220px;
  background: #e9e9e9;
  transition: 0.3s;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  border-radius: 5px 0 0 5px;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.historias .content .item:hover .foto {
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}

.historias .content .item h4 {
  margin-top: 57px;
  color: #393939;
  font-size: 40px;
  font-family: 'Trajan Pro', sans-serif;
  transition: 0.3s;
}

.historias .content .item:hover h4 {
  color: rgba(223, 165, 43, 1);
}

/*.historias .content .item .foto {*/

/*}*/

.historias .content .datas {
  color: #393939;
  font-weight: bold;
  margin-bottom: 7px;
}

.historias .content .bio {
  color: #A7A8A9;
}

.historias .content .dividor {
  margin-bottom: 7px;
}


/*--------------------------------------------------------------
#Detalhe
--------------------------------------------------------------*/

.detalhe {
    padding-top: 120px;
    min-height: 1185px;
    /*background: no-repeat center center url("../../images/bg_santo.jpg");*/
    /*background-size: cover;*/
}

.detalhe .img {
    width: 93%;
}

.detalhe .separador {
    margin-bottom: 15px;
}

.detalhe .separador_titulo {
    margin-top: 40px;
}

.detalhe h3 {
  color: #393939;
  font-family: 'Trajan Pro', sans-serif;
  font-size: 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 60px;
  margin-bottom: 0px;
}

.detalhe h4 {
  color: #C61517;
  font-family: 'Trajan Pro', sans-serif;
  font-size: 32px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 30px;
}

.detalhe h5 {
  color: #C61517;
  font-family: 'Trajan Pro', sans-serif;
  font-size: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 30px;
}

.detalhe .titulo_bloco_lugares {
  margin-bottom: 10px;
  margin-top: 30px;
}

.detalhe .datas {
  display: block;
  color: #393939;
  margin-bottom: 30px;
}

.detalhe .bloco_lugares {
    padding: 40px;
    background: rgba(246, 246, 246, .75);
    border-radius: 30px;
    min-height: 424px;
}

.detalhe .flores {
    position:absolute; 
    bottom: 10px; 
    right: -40px; 
    border:none;
}


@media (max-width: 768px) {
.detalhe .img {
    width: 100%;
}
}



 .custom-navigation {
  z-index: 99;
  top: -300px;
  position: relative;
}

@media (max-width: 768px) {
 .custom-navigation {
    top: -50px;
}
}

.custom-navigation .custom-controls-container {
  display: none;
}

 .custom-navigation .flex-prev,
 .custom-navigation .flex-next {
  font-weight: 700;
  height: 64px;
  width: 64px;
  padding: 0;
  position: absolute;
  border: none;
  text-align: center;
  overflow: hidden;
  font-size: 52px;
  line-height: 64px;
  border-radius: 50px;
  color: #ffffff;
  background: #C49B6C;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
 .custom-navigation .flex-prev:hover,
 .custom-navigation .flex-next:hover {
  background: #B32325;
  transform: scale(1.0);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.custom-navigation .flex-prev {
  left: 15px;
  top: 20px;
}
 .custom-navigation .flex-next {
  right: 15px;
  top: 20px;
}

/*--------------------------------------------------------------
#Lista
--------------------------------------------------------------*/
.lista {
  border-top: 1px solid #DFDFDF;
}

.lista h3 {
  color: #C49B6C;
  font-family: 'Trajan Pro', sans-serif;
  font-size: 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 30px;
}

.lista .content {
  margin-top: 60px;

}

.lista .content .item img { 
  width: 100%;
}

.lista .content .item .bloco_foto {
  min-height: 320px;
  background: #e9e9e9;
  transition: 0.3s;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  border-radius: 5px 5px 0 0;
}

.lista .content .item .bloco_nome {
  text-align: center;
  min-height: 110px;
  margin-bottom: 40px;
  background: #A7A8A9;
  transition: 0.3s;
  border-radius:  0 0 5px 5px;
  padding: 10px 10px;
}

.lista .content .item:hover {
  background: rgba(246, 246, 246, 0.3);
  box-shadow: 0px 0px 30px rgba(223, 165, 43, 0.25);
}

.lista .content .item .nome {
  display: block;
  color: #ffffff;
  font-size: 24px;
  font-family: 'Trajan Pro', sans-serif;
  transition: 0.3s;
}

.lista .content .item:hover nome {
  color: rgba(223, 165, 43, 1);
}

.lista .content .item .foto {
  margin-left: -1.5rem;
}

.lista .content .datas {
  color: #ffffff;
  margin-bottom: 7px;
}

.lista .content .bio {
  color: #A7A8A9;
}

.lista .content .dividor {
  margin-bottom: 7px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    background: #F6F6F6;
    border-bottom: 1px solid #DFDFDF;
    
}

.contact .info {
  border: 1px solid #A7A8A9;
  padding: 24px;
  width: 100%;
  border-radius: 30px;
}

.contact .info i {
  color: #C61517;
}

.contact h2 {
  color: #C49B6C;
  font-family: 'Trajan Pro', sans-serif;
  font-size: 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contact h2.segundo {
    font-size: 32px;
  color: #333;
  margin: 5px 0 30px 0;
}

.contact h4 {
font-size: 20px;
  color: #222222;
  margin: 5px 0 20px 0;
}

.contact .info p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #A7A8A9;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {

}

.contact .php-email-form {
  width: 100%;
  padding: 0 0 30px 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 8px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 30px;
  border-color: #C49B6C;
  padding: 16px 16px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #C49B6C;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 16px 16px;
}

.contact .php-email-form button[type=submit] {
  background: #C61517;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  width: 100%;
}

.contact .php-email-form button[type=submit]:hover {
  background: #C61517;
}

.pesquisar {
    margin-top: 16px;
}
.pesquisar .form-group {
  margin-bottom: 8px;
}

.pesquisar  label {
  padding-bottom: 8px;
}

.pesquisar  input,
.pesquisar  textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 30px;
  border-color: #C49B6C;
  padding: 13px 13px;
}

.pesquisar  input:focus,
.pesquisar  textarea:focus {
  border-color: #C49B6C;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
    .contact .info {
      border: none;
      padding: 24px;
      width: 100%;
      border-radius: 30px;
    }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #F6F6F6;
}

#footer .footer-top {
  padding: 170px 0 00px 0;
  border-top: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
  background: no-repeat center center url("../../images/bg_footer_top2.jpg") #361708;
  background-size: cover;
}

#footer .footer-top p {
  font-size: 31px;
  line-height: 37px;
  color: #ffffff;
  font-family: 'Hello Angeline', sans-serif;
  padding-bottom: 12px;
  
}
#footer .footer-top p.texto {
margin-top: 250px;
}

#footer .footer-top p.secundario {
  color: #DFA52B;
}



#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #C61517;
}

#footer .footer-bottom .social-links a {
  color: #C61517;
   text-decoration: none;
   font-size: 24px;
}

#footer .footer-bottom .social-links a:hover {
  color: #C61517;
  text-decoration: none;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 20px;
  line-height: 30px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
    
    #footer .footer-top {
  padding: 0px 0 0px 0;
}

#footer .footer-top p.texto {
margin-top: 50px;
}


  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}



.paginationjs{
    display:flex;
    line-height:1.6;
    font-family:Marmelad,"Lucida Grande",Arial,"Hiragino Sans GB",Georgia,sans-serif;
    font-size:14px;
    box-sizing:initial;
    align-items: center;
    justify-content: center;
}
.paginationjs:after{
    display:table;
    content:" ";
    clear:both
}
.paginationjs .paginationjs-pages{
    float:left;
    margin-left:10px
}
.paginationjs .paginationjs-pages ul{
    float:left;
    margin:0;
    padding:0
}
.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input,.paginationjs .paginationjs-size-changer{
    margin-left:10px;
    float:left;
    font-size:14px
}
.paginationjs .paginationjs-pages li{
    float:left;
    border:1px solid #C49B6C;
    border-right:none;
    list-style:none
}
.paginationjs .paginationjs-pages li>a{
    min-width:36px;
    height:40px;
    line-height:42px;
    display:block;
    background:#fff;
    font-size:16px;
    color:#333;
    text-decoration:none;
    text-align:center;
    cursor:pointer
}
.paginationjs .paginationjs-pages li>a:hover{
    background:#eee
}
.paginationjs .paginationjs-pages li.active{
    border:none
}
.paginationjs .paginationjs-pages li.active>a{
    height:42px;
    line-height:42px;
    background:#C49B6C;
    color:#fff;
    cursor:default
}
.paginationjs .paginationjs-pages li.disabled>a{
    opacity:.3;
    cursor:default
}
.paginationjs .paginationjs-pages li.disabled>a:hover{
    background:0 0
}
.paginationjs .paginationjs-pages li:first-child,.paginationjs .paginationjs-pages li:first-child>a{
    border-radius:20px 0 0 20px
}
.paginationjs .paginationjs-pages li:last-child{
    border-right:1px solid #C49B6C;
    border-radius:0 20px 20px 0
}
.paginationjs .paginationjs-pages li:last-child>a{
    border-radius:0 20px 20px 0
}
.paginationjs .paginationjs-size-changer>select{
    height:40px;
    background:#fff;
    border-radius:20px;
    border:1px solid #C49B6C;
    padding:0;
    font-size:16px;
    text-align:center;
    vertical-align:baseline;
    outline:0;
    box-shadow:none;
    box-sizing:initial
}
.paginationjs .paginationjs-go-input>input[type=text]{
    width:36px;
    height:40px;
    background:#fff;
    border-radius:20px;
    border:1px solid #C49B6C;
    padding:0;
    font-size:16px;
    text-align:center;
    vertical-align:baseline;
    outline:0;
    box-shadow:none;
    box-sizing:initial
}
.paginationjs .paginationjs-go-button>input[type=button]{
    min-width:40px;
    height:40px;
    line-height:42px;
    background:#fff;
    border-radius:20px;
    border:1px solid #C49B6C;
    text-align:center;
    padding:0 8px;
    font-size:14px;
    vertical-align:baseline;
    outline:0;
    box-shadow:none;
    color:#333;
    cursor:pointer;
    vertical-align:middle\9
}
.paginationjs .paginationjs-go-button>input[type=button]:hover{
    background-color:#f8f8f8
}
.paginationjs .paginationjs-nav{
    float:left;
    height:42px;
    line-height:44px;
    font-size:16px
}
.paginationjs.paginationjs-small{
    font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-pages li>a{
    min-width:26px;
    height:24px;
    line-height:24px;
    font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-pages li.active>a{
    height:26px;
    line-height:26px
}
.paginationjs.paginationjs-small .paginationjs-size-changer{
    font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-size-changer>select{
    height:24px;
    font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-go-input{
    font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text]{
    width:26px;
    height:24px;
    font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-go-button{
    font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button]{
    min-width:30px;
    height:26px;
    line-height:24px;
    padding:0 6px;
    font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-nav{
    height:26px;
    line-height:26px;
    font-size:12px
}
.paginationjs.paginationjs-big{
    font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-pages li>a{
    min-width:36px;
    height:34px;
    line-height:34px;
    font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-pages li.active>a{
    height:36px;
    line-height:36px
}
.paginationjs.paginationjs-big .paginationjs-size-changer{
    font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-size-changer>select{
    height:34px;
    font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-go-input{
    font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{
    width:36px;
    height:34px;
    font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-go-button{
    font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button]{
    min-width:50px;
    height:36px;
    line-height:34px;
    padding:0 12px;
    font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-nav{
    height:36px;
    line-height:36px;
    font-size:16px
}
.paginationjs>:first-child{
    margin-left:0
}
.paginationjs.paginationjs-theme-blue .paginationjs-pages li{
    border-color:#289de9
}
.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a{
    color:#289de9
}
.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a:hover{
    background:#e9f4fc
}
.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a{
    background:#289de9;
    color:#fff
}
.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled>a:hover{
    background:0 0
}
.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-blue .paginationjs-size-changer>select{
    border-color:#289de9
}
.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]{
    background:#289de9;
    border-color:#289de9;
    color:#fff
}
.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover{
    background-color:#3ca5ea
}
.paginationjs.paginationjs-theme-green .paginationjs-pages li{
    border-color:#449d44
}
.paginationjs.paginationjs-theme-green .paginationjs-pages li>a{
    color:#449d44
}
.paginationjs.paginationjs-theme-green .paginationjs-pages li>a:hover{
    background:#ebf4eb
}
.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a{
    background:#449d44;
    color:#fff
}
.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled>a:hover{
    background:0 0
}
.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-green .paginationjs-size-changer>select{
    border-color:#449d44
}
.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]{
    background:#449d44;
    border-color:#449d44;
    color:#fff
}
.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover{
    background-color:#55a555
}
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li{
    border-color:#ec971f
}
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a{
    color:#ec971f
}
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a:hover{
    background:#fdf5e9
}
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a{
    background:#ec971f;
    color:#fff
}
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled>a:hover{
    background:0 0
}
.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-yellow .paginationjs-size-changer>select{
    border-color:#ec971f
}
.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]{
    background:#ec971f;
    border-color:#ec971f;
    color:#fff
}
.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover{
    background-color:#eea135
}
.paginationjs.paginationjs-theme-red .paginationjs-pages li{
    border-color:#c9302c
}
.paginationjs.paginationjs-theme-red .paginationjs-pages li>a{
    color:#c9302c
}
.paginationjs.paginationjs-theme-red .paginationjs-pages li>a:hover{
    background:#faeaea
}
.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a{
    background:#c9302c;
    color:#fff
}
.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled>a:hover{
    background:0 0
}
.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-red .paginationjs-size-changer>select{
    border-color:#c9302c
}
.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]{
    background:#c9302c;
    border-color:#c9302c;
    color:#fff
}
.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover{
    background-color:#ce4541
}
.paginationjs .paginationjs-pages li.paginationjs-next{
    border-right:1px solid #aaa;
}
.paginationjs .paginationjs-size-changer{
    margin-left:5px;
}
.paginationjs .paginationjs-size-changer>select{
    line-height:28px;
    vertical-align:middle;
}
.paginationjs .paginationjs-go-input{
    margin-left:5px;
}
.paginationjs .paginationjs-go-input>input[type=text]{
    line-height:28px;
    vertical-align:middle;
}
.paginationjs .paginationjs-go-button{
    margin-left:5px;
}
.paginationjs.paginationjs-big .paginationjs-pages li>a{
    line-height:36px;
}
.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{
    height:36px;
    line-height:36px;
}
