/* ========================================================================
 * Base
 * ======================================================================== */

/* Google fonts */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);

@import url(https://fonts.googleapis.com/css?family=Abril+Fatface);

@import url(https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap);
/* Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fix */

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

html {
	height: 100%;
	font-size: 14px;
}

html,
html a,
html button {
 color:rgb(55, 54, 53);
	-webkit-font-smoothing: antialiased !important;
	-moz-font-smoothing: antialiased !important;
	-o-font-smoothing: antialiased !important;
	text-shadow: 1px 1px 1px rgba(222, 222, 222, 0.004);
	transition: 0.2s ease;
	-moz-transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
}

html img {
  transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}

body {
	font-family: 'Open Sans', sans-serif;
  font-weight: 600;
	height: 100%;
  margin: auto;
  position: relative;
  overflow-x: hidden;
  color:rgb(78, 77, 77);
}

a {
  transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

a:hover,
a:active,
a:focus,
a:visited {
  text-decoration: none;
  color: inherit;
}

.btn:focus,
.btn:active {
  outline: none;
}

/* Other fixes*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1, 
h2, 
h3, 
h4, 
h5 {
  font-family: 'Rowdies', sans-serif;
  color: #f1f1f1;
  text-transform: uppercase;
  font-weight: 400;
}
.rowdies-light {
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.rowdies-regular {
  font-family: "Rowdies", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rowdies-bold {
  font-family: "Rowdies", sans-serif;
  font-weight: 700;
  font-style: normal;
}


h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.28rem;
}

h5 {
  font-size: 1.14rem;
}

p {
  font-size: 1rem;
}

hr {
  border-top: solid 2px #eee;
}

main,
section, 
footer {
  width: 100%;
  float: left;
}

/* Responsive */

@media only screen and (max-width: 992px) {
  html {
    font-size: 12px;
  }
}

@media only screen and (max-width: 769px) {
  html {
    font-size: 12px;
  }
}

/* ========================================================================
 * Common styles
 * ======================================================================== */

/* Underline link effect */
@media screen and (min-width: 768px) {
  a > .effect {
    position: relative;
    width: 100%;
    height: 100%;
  }

  a > .effect:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    color:rgb(242, 242, 242);
    visibility: hidden;
    transform: scaleX(0);
    transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
  }

  a:hover > .effect:after {
    visibility: visible;
    transform: scaleX(1);
  }

  .active > a > .effect:after {
    width: 0;
    height: 0;
    background: transparent;
  }
}

/* navigation - pagination */

.navigation {
  text-align: center;
  width: 100%;
  float: left;
  padding: 0;
}

.pagination > li > a,
.pagination > li > span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  background: #dedede;
  border-radius: 0 !important;
  border: none;
  font-size: 1.14rem;
  font-weight: 500;
  color: rgb(235, 235, 235);
  margin: 0 0.3rem;
}

.pagination > li > a i {
  font-size: 0.9rem;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #eeeeee;
  cursor: not-allowed;
  background-color: #d1d1d1;
  border-color: transparent;
  opacity: 0.4;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background: #f8f8f8;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #FFF;
  background: #ffffff;
}

/* text colors */

.text-pink {
  color: #ffffff;
}

.text-purple {
  color: #ffffff;
}


/* title decoration */

.title-decoration {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.title-decoration:before {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  background: #ebebeb;
}

.title-decoration h1,
.title-decoration h2,
.title-decoration h3,
.title-decoration h4,
.title-decoration h5 {
  display: inline-block;
  background: #fff;
  margin: 0;
  position: relative;
  padding: 0 10px;
  z-index: 1;
}

/* sections */

section.main-content {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  section.main-content {
    margin-bottom: 30px;
  }
}

/* highlighted text */

.highlighted {
   font-family: 'Abril Fatface', sans-serif;
   font-size: 1.4rem !important;
   font-weight: bold;
}

/* ========================================================================
 * Form
 * ======================================================================== */

.form-control {
  background: #F5F5F5;
  border: none;
  border-radius: 0;
  height: 55px;
  box-shadow: none !important;
  outline: none !important;
  margin-top: 5px;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .form-control {
    height: 50px;
    padding: 15px;
  }
}

/* radiobuttons & checkbox */

.checkbox {
  min-height: 30px;
  margin-bottom: 10px;
  font-size: 13px;
}

.radio-group {
  width: 100%;
  display: inline-block;
}

.radio-group li {
  padding: 5px 0;
  display: inline-table;
  width: 100%;
}

@media (min-width: 768px) {.radio-group li{display: block;}}

input[type=radio],
input[type=checkbox] {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
  width:0;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  padding-left: 24px;
  font-weight: 300;
  position: relative;
  cursor: pointer;
  font-size: 1.1rem;
}

input[type="radio"] + label::before,
input[type="radio"] + label::after,
input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}

input[type="radio"] + label::before,
input[type="checkbox"] + label::before {
  border: none;
  background: #F1F1F1;
  box-shadow: none;
}

input[type="radio"] + label::before,
input[type="radio"] + label::after {
  border-radius: 50%;
}

input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
  border-radius: 0;
}

input[type="radio"] + label::after,
input[type="checkbox"] + label::after {
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: none;
  display: none;
}

input[type="radio"] + label::after {
  background-image: url("../img/icons/icon-radio.svg");
}

input[type="checkbox"] + label::after {
  background-image: url("../img/icons/icon-check.svg");
}

/* checkbox focus */
input[type="radio"]:focus + label::before,
input[type="checkbox"]:focus + label::before {
  box-shadow: none;
}

input[type="radio"]:checked + label::after,
input[type="checkbox"]:checked + label::after {
  display: block;
}

input[type="radio"]:checked + label::before,
input[type="radio"]:checked + label::after,
input[type="checkbox"]:checked + label::before,
input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}

@-webkit-keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes cd-bounce {
  0%, 100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/* ========================================================================
 * Buttons and links
 * ======================================================================== */
.button {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  border: none;
}

/* button slide effect */

.btn-effect {
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.btn-effect span {
  display: block;
  background: #f1f1f1;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}

.btn-effect span,
.btn-effect::before {
  padding: 15px 20px;
}

@media screen and (max-width: 767px) {
  .btn-effect span,
  .btn-effect::before {
    padding: 12px 15px;
  }
}

.btn-effect::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #c8bfa1;
  color: #ffffff;
  content: attr(data-hover);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(-100%);
}

.btn-effect:hover span,
.btn-effect:focus span {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  transform: translateX(100%);
}

.btn-effect:hover::before,
.btn-effect:focus::before {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  transform: translateX(0%);
}

/* button pink */

.btn-pink span {
  background: #f5f5f5;
  color: #cac1b2;
}

.btn-pink::before {
  background: #202020; /*#7766a5;*/
  color: #FFF;
}

/* button ghost */

.btn-ghost {
  border: solid 1px #fff;
}

.btn-ghost span {
  background: transparent;
  color: #fff;
}

.btn-ghost::before {
  color: #ffffff;
}

/* ========================================================================
 * Main navigation bar
 * ======================================================================== */

.navbar-default {
  background:rgb(240, 240, 240);
  border: none;
  margin-bottom: 0;
  z-index: 1000;
  
}

.navbar-header {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .navbar-header {
    text-align: left;
    margin: 0 !important;
  }
}

.logo {
  display: inline-block;
  position: relative;
  width: 400px;
  margin: 15px 0;
}

.logo img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .logo {
    width: 190px;
  }
}

@media screen and (max-width: 767px) {
  .logo {
    width: 120px;
  }
}

@media screen and (min-width: 768px) {
  .navbar-nav {
    width: 100%;
    text-align: center;
    font-size: 0;
  }
  .navbar-nav > li {
    display: inline-block;
    float: none;
  }
}

.navbar-nav > li > a {
  font-size: 1.2rem;
  color: #202020 !important;
  position: relative;
}

.navbar-nav > li > a:hover {
  color: #f3dfd2 !important;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background: #c9c9c9;
  color: #FFF !important;
}

@media screen and (min-width: 768px) {
  .navbar-nav > li > a {
    padding: 15px 15px 20px;
    margin: 0 5px;
     
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}


.navbar-toggle {
  margin: 18px 0;
  background: #ececec !important;
  border: none;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 0px;
  background: #756548 !important;
}

  
/* ========================================================================
 * Swiper slider
 * ======================================================================== */

 .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.swiper-container .caption {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
}

.swiper-container .caption h2 {
  font-size: 5rem;
  color: #ffffff;
  text-shadow:rgba(222, 222, 222, 0.004);
  margin: 0;
  line-height: 5.5rem;
  display: inline-block;
  position: relative;
  padding: 5px 15px;
  overflow: hidden;
}


@media screen and (max-width: 991px) {
  .swiper-container .caption h2 {
    font-size: 4rem;
  }
}

.swiper-container .caption .description {
  font-size: 1.28rem;
  font-weight: 300;
  max-width: 450px;
  margin: 1rem auto;
  color: #fff;
}

.swiper-container .caption a {
  margin: 10px 0;
}

.swiper-slide > img {
  width: 100%;
}

.swiper-slide.main-slider > img {
  min-width: 480px;
}

/* Aplica zoom solo a la imagen del slide activo */
.main-slider .swiper-slide-active .slide-img {
  animation: zoomin 50s 1;
}

/* Definición de la animación */
@keyframes zoomin {
  0%   { transform: scale(1); }
  100% { transform: scale(1.5); }
}


@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
  }
}

.swiper-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(40, 37, 37);
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0.18;
}

@media screen and (max-width: 767px) {
  .swiper-container .caption h2 {
    font-size: 3rem;
    padding: 0px 10px;
  }

  .swiper-container .caption .description {
    font-size: 1.1rem;
    max-width: 80%;
  }

  .swiper-slide > img {
    width: 100% !important;
  }
}

@media screen and (max-width: 479px) {
  /* Permitimos que el contenido siga mostrándose */
  .swiper-container .caption {
    display: block;
  }

  .swiper-overlay {
    display: block;
  }
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'><path fill='%23ffffff' d='M0,22L22,0l2.1,2.1L4.2,22l19.9,19.9L22,44L0,22z'/></svg>");
}

.swiper-button-next {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'><path fill='%23ffffff' d='M27,22L5,44l-2.1-2.1L22.8,22L2.9,2.1L5,0L27,22z'/></svg>");
}








/* animations */

.swiper-container .swiper-slide-active .caption h2 {
  -webkit-animation: scaleX 0.5s ease 0.3s both;
  -moz-animation: scaleX 0.5s ease 0.3s both;
  -o-animation: scaleX 0.5s ease 0.3s both;
  -ms-animation: scaleX 0.5s ease 0.3s both;
  animation: scaleX 0.5s ease 0.3s both;
}

.swiper-container .swiper-slide-active .caption h2 > span {
  -webkit-animation: fadeInDown 0.5s ease 0.8s both;
  -moz-animation: fadeInDown 0.5s ease 0.8s both;
  -o-animation: fadeInDown 0.5s ease 0.8s both;
  -ms-animation: fadeInDown 0.5s ease 0.8s both;
  animation: fadeInDown 0.5s ease 0.8s both;
}

.swiper-container .swiper-slide-active .caption .description {
  -webkit-animation: fadeInUp 0.5s ease 1.1s both;
  -moz-animation: fadeInUp 0.5s ease 1.1s both;
  -o-animation: fadeInUp 0.5s ease 1.1s both;
  -ms-animation: fadeInUp 0.5s ease 1.1s both;
  animation: fadeInUp 0.5s ease 1.1s both;
}

.swiper-container .swiper-slide-active .caption .button {
  -webkit-animation: fadeInUp 0.5s ease 1.5s both;
  -moz-animation: fadeInUp 0.5s ease 1.5s both;
  -o-animation: fadeInUp 0.5s ease 1.5s both;
  -ms-animation: fadeInUp 0.5s ease 1.5s both;
  animation: fadeInUp 0.5s ease 1.5s both;
}


@-webkit-keyframes scaleX {
  from {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
 
@keyframes scaleX {
  from {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/* Controls */

.swiper-button-prev,
.swiper-button-next {
  
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-top: -40px;
  text-align: center;
  
  transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  margin-left:15px;
  margin-right:15px;
}

.swiper-button-prev {
  left: 0px;
  
}

.swiper-button-next {
  right: 0px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #202020;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: #bababa;
}

.swiper-pagination-bullet-active {
  background: #b8a599;
}

/* ========================================================================
 * Page cover
 * ======================================================================== */

.page-cover {
  width: 100%;
  height: 30%;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
  background: #ccc;
  padding: 3rem 0;
}

@media screen and (min-width: 768px) {
  .page-cover {
    margin-bottom: 60px;
    padding: 5rem 0;
  }
}

.page-cover h1 {
  font-size: 4.6rem;
  color: #FFF;
  margin: 0;
  line-height: 5.5rem;
  display: inline-block;
  position: relative;
  padding: 5px 15px;
  overflow: hidden;
  -webkit-animation: scaleX 0.5s ease 0.3s both;
  -moz-animation: scaleX 0.5s ease 0.3s both;
  -o-animation: scaleX 0.5s ease 0.3s both;
  -ms-animation: scaleX 0.5s ease 0.3s both;
  animation: scaleX 0.5s ease 0.3s both;
}

.page-cover h1 > span {
  position: relative;
  z-index: 1;
  -webkit-animation: fadeInDown 0.5s ease 0.8s both;
  -moz-animation: fadeInDown 0.5s ease 0.8s both;
  -o-animation: fadeInDown 0.5s ease 0.8s both;
  -ms-animation: fadeInDown 0.5s ease 0.8s both;
  animation: fadeInDown 0.5s ease 0.8s both;
}



@media screen and (max-width: 767px) {
  .page-cover h1 {
    font-size: 3rem;
    line-height: 2.8rem;
    padding: 10px 15px;
  }
}

/* colors */

/* purple */
.page-cover.purple {
  background: url(../img/cover-purple.jpg) #c9c9c9 no-repeat center;
  background-size: cover;
}

.page-cover.purple h1:before  {
  background: #c9c9c9 no-repeat center;
}

.page-cover.purple2 {
  background: url(../img/cover-purple2.jpg) #c9c9c9 no-repeat center;
  background-size: cover;
}

.page-cover.purple2 h1:before  {
  background: #c9c9c9 no-repeat center
}

.page-cover.purple3 {
  background: url(../img/cover-purple3.jpg) #c9c9c9 no-repeat center;
  background-size: cover;
}

.page-cover.purple3 h1:before  {
  background: #c9c9c9 no-repeat center;
}

/* pink */
.page-cover.pink {
  background: url(../img/cover-pink.jpg) #c9c9c9 no-repeat center;
  background-size: cover;
}

.page-cover.pink h1:before  {
  background: #c9c9c9 no-repeat center;
}

.page-cover.pink2 {
  background: url(../img/cover-pink2.jpg) #c9c9c9 no-repeat center;
  background-size: cover;
}

.page-cover.pink2 h1:before  {
  background: #c9c9c9 no-repeat center;
}

.page-cover.pink3 {
  background: url(../img/cover-pink3.jpg) #c9c9c9 no-repeat center;
  background-size: cover;
}

.page-cover.pink3 h1:before  {
  background: #c9c9c9 no-repeat center;
}

/* ========================================================================
 * Banners
 * ======================================================================== */

#banners {
  margin: 60px 0;
}

#banners .banner {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 15px auto;
  background: #706b6b;
}

#banners .banner.small {
  height: 280px;
}

@media screen and (max-width: 991px) {
  #banners .banner.small {
    height: 200px;
  }
}

@media screen and (max-width: 767px) {
  #banners .banner {
    max-width: 360px;
  }
}

#banners .banner.small:before {
  content: '';
  width: 450px;
  height: 450px;
  position: absolute;
  background: #756f6f;
  top: 50%;
  margin-top: -225px;
  left: 50%;
  margin-left: -225px;
  border-radius: 50%;
  opacity: 0.08;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);

  transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}

#banners .banner.small:hover:before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
}

@media screen and (max-width: 991px) {
  #banners .banner.small:before {
    width: 250px;
    height: 250px;
    margin-top: -125px;
    margin-left: -125px;
  }
}

#banners .banner > img {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

#banners .banner:hover > img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

/* border animation */

#banners .banner .border {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 20px;
}

#banners .banner .border > div {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
}

#banners .banner .border > div:before,
#banners .banner .border > div:after {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  border: double 3px #FFF;
  transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;

  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

#banners .banner .border > div:before {
  top: 0;
  left: 0;
  border-bottom: none;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}

#banners .banner .border > div:after {
  bottom: 0;
  left: 0;
  border-top: none;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

#banners .banner:hover .border > div:before,
#banners .banner:hover .border > div:after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

/* pattern background */

#banners .banner .pattern {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  background-position: center;
  background-size: 200%;
}



#banners .banner:hover .pattern {
  background-size: 185%;
  opacity: 0.95;
}


#banners .banner.green {
  background: rgb(225, 224, 206);
}

#banners .banner.purple {
  background: rgb(225, 224, 206);
}

#banners .banner .caption {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
}

#banners .banner.small .caption {
  padding-bottom: 1.1rem;
}

#banners .banner .caption .icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.1rem auto;
  position: relative;
}

@media screen and (max-width: 991px) {
  #banners .banner .caption .icon {
    width: 5rem;
    height: 5rem;
  }
}

#banners .banner:hover .caption .icon {
  -webkit-animation: jump 1.5s ease 0s infinite normal ;
  animation: jump 1.5s ease 0s infinite normal ;
}

#banners .banner .caption .icon img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

@-webkit-keyframes jump {
 0%{
  -webkit-transform: translateY(0);
  transform: translateY(0);
 }
 20%{
  -webkit-transform: translateY(0);
  transform: translateY(0);
 }
 40%{
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
 }
 50%{
  -webkit-transform: translateY(0);
  transform: translateY(0);
 }
 60%{
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
 }
 80%{
  -webkit-transform: translateY(0);
  transform: translateY(0);
 }
 100%{
  -webkit-transform: translateY(0);
  transform: translateY(0);
 }
}

@keyframes jump {
 0%{
  transform: translateY(0);
 }
 20%{
  transform: translateY(0);
 }
 40%{
  transform: translateY(-20px);
 }
 50%{
  transform: translateY(0);
 }
 60%{
  transform: translateY(-10px);
 }
 80%{
  transform: translateY(0);
 }
 100%{
  transform: translateY(0);
 }
}

#banners .banner .caption h3,
#banners .banner .caption h4 {
  display: inline-block;
  color: #ccad0f;
  margin: 0;
  position: relative;
  
  
}

#banners .banner .caption h3 {
  font-size: 3rem;
  overflow: hidden;
}

#banners .banner .caption h4 {
  font-size: 2.6rem;
}

#banners .banner .caption h4.underline:before {
  
  position: absolute;
  width: 40px;
  height: 3px;
  background: #ffffff;
  bottom: -10px;
  left: 50%;
  margin-left: -20px;
  transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;

  -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

#banners .banner:hover .caption h4.underline:before {
  -webkit-transform: scaleX(2);
    transform: scaleX(2);
}

@media screen and (max-width: 991px) {
  #banners .banner .caption h3 {
    font-size: 2.5rem;
  }

  #banners .banner .caption h4 {
    font-size: 2rem;
  }
}

/* banner h3 animation */

#banners .banner .caption h3 span {
  display: block;
  background: rgb(255, 254, 254)
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}

#banners .banner .caption h3 span,
#banners .banner .caption h3::before {
  padding: 5px 10px 7px;
}

#banners .banner .caption h3::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #ffffff;
  color: #aeab9b;
  content: attr(data-hover);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(-101%);
}

#banners .banner:hover .caption h3 span,
#banners .banner:focus .caption h3 span {
  -webkit-transform: translateX(105%);
  -moz-transform: translateX(105%);
  transform: translateX(105%);
}

#banners .banner:hover .caption h3::before,
#banners .banner:focus .caption h3::before {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  transform: translateX(0%);
}

/* ========================================================================
 * Lookbook Home
 * ======================================================================== */
#lookbookHome {
  background: rgb(196, 191, 175);
  padding: 60px 0;
}

.centrar {
  display: block; /* Cambia el span a bloque */
  text-align: center; /* Centra el texto dentro del span */
  width: 100%;
  color:#737272 /* Asegura que el span ocupe el ancho completo del h2 */
}

/* novedades */
#lookbookHome .title-decoration h2 {
  background: rgb(149, 145, 127);
}

#lookbookHome p {
  max-width: 500px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 1.28rem;
  font-weight: 300;
}


#lookbookHome .photo {
  width: 100%;
  height: 100%;
  display: grid;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
  margin-bottom: 20px;
  overflow: hidden;
}

#lookbookHome .photo img {
  transform: scale(1);
  transition: 0.7s ease;
  -moz-transition: 0.7s ease;
  -webkit-transition: 0.7s ease;
  -o-transition: 0.7s ease;
}

#lookbookHome .photo:hover img {
  transform: scale(1.03);
}

.photo {
    margin-bottom: 20px; /* Ajusta el valor según sea necesario */
}


/* ========================================================================
 * Products showcase
 * ======================================================================== */

#catalogo .showcase-box {
  margin: auto;
  height: auto;
  width: 100%;
  max-width: 700px;
}

#catalogo .swiper-button-prev,
#catalogo .swiper-button-next {
 
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  display: none;
}

@media screen and (max-width: 991px) {
  .swiper-button-prev, .swiper-button-next {
    font-size: 1.7rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-top: -30px;
  }
}

@media screen and (max-width: 479px) {
  .swiper-button-prev, .swiper-button-next {
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: -15px;
  }
}

.btn-download {
  display: grid;
  margin-top: 10px;
  text-align: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #dfb406; 
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
  font-size: large;
}

.btn-download:hover {
  background-color: #be9905; 
}

.pdf-viewer {
  width: 90%; /* Ajustar ancho al 90% para dar aire a los lados */
  margin: 0 auto; /* Centrar el contenedor horizontalmente */
  padding: 0;
  box-sizing: border-box; /* Asegura que el padding no afecte el ancho */
}

.pdf-viewer iframe {
  width: 100%; /* Mantener el iframe al 100% del contenedor */
  border: none;
}

/* Media Queries para ajustar la altura del iframe */
@media (max-width: 767px) {
  .pdf-viewer iframe {
      height: 600px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pdf-viewer iframe {
      height: 900px;
  }
}

@media (min-width: 992px) {
  .pdf-viewer iframe {
      height: 1200px;
  }
}


/* ========================================================================
 * Lookbook
 * ======================================================================== */

#lookbook p {
  /*max-width: 600px;*/
  margin:  0 auto 2rem;
  text-align: center;
  font-size: 1.28rem;
  font-weight: 300;
}

#lookbook .photo {
  margin: 7px 0;
  position: relative;
}

#lookbook .photo .overlay {
  width: 400px; /* Nuevo ancho del círculo */
  height: 400px; /* Nuevo alto del círculo */
  position: absolute;
  background: #908683;
  top: 50%;
  margin-top: -200px; /* Mitad del nuevo alto */
  left: 50%;
  margin-left: -200px; /* Mitad del nuevo ancho */
  z-index: 1;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  opacity: 0.85;
}


#lookbook .photo:hover .overlay {
   transform: scale(1);
 }

@media screen and (min-width: 768px) {
  #lookbook .photo {
    margin: 15px 0;
  }
}

#lookbook .photo > a {
  display: block;
  position: relative;
  overflow: hidden;
}

#lookbook .photo > a:before,
#lookbook .photo > a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 5px;
  transform: scale(0);
}

#lookbook .photo > a:before {
  content: '';
  background: #FFF;
  transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

#lookbook .photo > a:after {
  content: '';
  z-index: 2;
  color: #FFF;
  background: url(../img/icons/zoom-in.svg) no-repeat center;
  background-size: contain;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  line-height: 80px;
  text-align: center;
  transition: 0.2s ease 0.2s;
  -moz-transition: 0.2s ease 0.2s;
  -webkit-transition: 0.2s ease 0.2s;
  -o-transition: 0.2s ease 0.2s;
}

#lookbook .photo > a:hover:before,
#lookbook .photo > a:hover:after {
  transform: scale(1);
}

#lookbook .photo > a > img {
  width: 100%;
  transform: scale(1);
  transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}

#lookbook .photo > a:hover > img {
  transform: scale(1.03);
}

@media screen and (max-width: 479px) {
  #lookbook .photo > a:before,
  #lookbook .photo > a:after {
    margin-top: -20px;
    margin-left: -20px;
    width: 40px;
    height: 40px;
  }
  #lookbook .photo > a:after {
    line-height: 40px;
  }
}
/* ========================================================================
 * Productos
 * ========================================================================*/ 

 .familias-productos {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between; 
}


 .custom-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 750px; 
  position: relative;
  overflow: hidden; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0; 
  transition: box-shadow 0.3s ease; 
}
    
    .card {
        margin: 10px;
      
    }

    .card img {
        max-height: 100%;
        max-width: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .card .description {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.7);
        color: #ffffff;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .ej{
      margin-bottom: 20px;
      color:#413e3e;
      font-size: 15px;
    }

    .card:hover img {
        transform: scale(1.05);
    }

    .card:hover .description {
        opacity: 1;
    }

    .card-title {
        font-weight: bold;
        font-size: 2.5rem;
        text-align: center;
        color:#ffffff

    }

    .card-text {
        font-size: 1.2rem;
        color: #ffffff;
        text-align: center;
    }
    .card-body {
      margin-bottom: 20px; 
  }


  
  /*-------------------------------------------------------*/
  
  .button-container {
    display: flex; /* Utiliza flexbox para alinear los botones */
    flex-wrap: wrap; /* Permite que los botones se envuelvan en varias líneas si es necesario */
    justify-content: center; /* Centra los botones horizontalmente */
    max-width: 100%; /* Asegura que el contenedor no exceda el ancho de la pantalla */
    margin: 0 auto; /* Centra el contenedor en la página */
    padding: 15px; /* Espaciado interno del contenedor */
}

.btnb {
  flex: 1 1 45%; /* Permite que los botones ocupen hasta el 45% del ancho del contenedor */
  margin: 10px; /* Espacio entre los botones */
  text-align: center; /* Centra el texto dentro del botón */
  padding: 10px; /* Ajusta el padding para que el botón no sea demasiado ancho */
  max-width: 180px; /* Ajusta el ancho máximo del botón */
  background-color: #b1b1af; /* Color de fondo del botón */
  border-radius: 10px; /* Bordes redondeados */
  text-decoration: none; /* Sin subrayado */
  transition: background-color 0.3s; /* Transición para el cambio de color */
}

.btnb:hover {
    background-color: #cdccca; /* Color al pasar el mouse */
}

/* Media query para pantallas pequeñas */
@media (max-width: 600px) {
  .btnb {
      flex: 1 1 100%; /* En pantallas pequeñas, los botones ocuparán el 100% del ancho */
      max-width: none; /* Elimina el ancho máximo para que se ajusten completamente */
      margin: 5px 0; /* Espacio vertical entre los botones */
  }
}

  .small-gallery {
    position: relative;
    
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;  /* Centra verticalmente los botones y la galería */
}

.gallery {
  display: flex;
  
  overflow-x: scroll;
  scroll-behavior: smooth;
  width: 100%; /* Ajusta el tamaño según sea necesario */
}



.small-image {
  max-width: 100%; /* Asegúrate de que las imágenes no excedan el ancho del contenedor */
    height: auto;
  width: 200px; /* Ajusta el ancho de las imágenes según sea necesario */
  margin-right: 10px;
  flex-shrink: 0;
}

.small-image:hover {
  transform: scale(1.2); /* Aumenta el tamaño al 120% */
}

.modal {
  display: none; /* Oculto por defecto */
  position: fixed; 
  z-index: 1000; /* Asegúrate de que este valor sea menor que el de las flechas */
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative; 
  max-width: 800px; 
  margin: auto; 
  text-align: center; 
}

#modalImage {
  width: 100%; /* Ajusta el tamaño de la imagen */
  height: auto; 
}

.nav-button {
  position: absolute; /* Mantiene las flechas en posición absoluta */
  top: 50%; /* Centra verticalmente */
  transform: translateY(-50%); /* Ajusta para centrar verticalmente */
  background-color: rgba(255, 255, 255, 0.8); /* Fondo semi-transparente */
  border: none; 
  cursor: pointer; 
  font-size: 2rem; 
  padding: 10px; 
  z-index: 10; /* Asegúrate de que estén por encima de otros elementos */
}

.nav-button.left {
  left: 10px; /* Ajusta la distancia desde la izquierda */
}

.nav-button.right {
  right: 10px; /* Ajusta la distancia desde la derecha */
}

#caption {
  position: absolute; /* Posiciona el caption sobre la imagen */
  bottom: 60px; /* Espacio desde el fondo de la imagen */
  left: 50%; /* Centra el caption horizontalmente */
  transform: translateX(-50%); /* Ajusta el centro del caption */
  text-align: center; /* Centra el texto */
  font-size: 1.3rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente para mejorar la legibilidad */
  padding: 5px; /* Espaciado interno */
  border-radius: 5px; /* Bordes redondeados */
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb; /* Color al pasar el mouse */
  text-decoration: none; /* Sin subrayado */
}

 
  .banner-image {
      margin-top: 20px; /* Espacio superior para la imagen banner */
  }
  
  .small-image {
      margin-top: 15px; /* Espacio superior para las imágenes pequeñas */
  }

    /* Cardb */

    .gallery {
      text-align: center; /* Centra el texto y las imágenes */
  }
  
  
  .banner-image {
      width: 100%; /* Hace que la imagen del banner ocupe todo el ancho disponible */
      max-width: 1600px; /* Limita el ancho máximo a 1600px */
      height: auto; /* Mantiene la relación de aspecto */
  }
  
  .small-image {
      width: 100%; /* Hace que las imágenes más pequeñas ocupen todo el ancho disponible */
      max-width: 250px; /* Limita el ancho máximo a 600px */
      height: auto; /* Mantiene la relación de aspecto */
      margin-bottom: 20px; /* Espaciado entre las imágenes pequeñas */
  }

   
  .cardb .description {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: rgba(0, 0, 0, 0.7);
      color: #ffffff;
      opacity: 0;
      transition: opacity 0.3s ease;
      
  }
  
  .card-text {
    margin-bottom: 30px; /* Agregar margen inferior al texto */
  }
   /* Boton volver a productos */

  

/* ========================================================================
 *    Galeria de productos - maquetas
 * ======================================================================== */



.gallery-image:hover {
  transform: scale(1.1); /* Aumenta el tamaño al pasar el mouse */
  z-index: 10; /* Asegura que la imagen aumentada esté encima */
}



/* ========================================================================
 * Simple Lightbox
 * ======================================================================== */

.sl-overlay {
  background: #202020;
  opacity: 0.8;
}

.sl-wrapper .sl-close {
  color: #fff;
}

.sl-wrapper .sl-navigation button {
  background: #fff;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  text-indent: -99999px;
  z-index: 10000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  outline: none;
  opacity: 1;
  border-radius: 0;
}

@media screen and (max-width: 600px) {
  .sl-wrapper .sl-navigation button {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    background-size: 16px;
  }
}

.sl-wrapper .sl-navigation button.sl-next {
  right: 0;
  background-image: url(../img/icons/icon-right-arrow.svg);
}

.sl-wrapper .sl-navigation button.sl-next:hover {
  background-image: url(../img/icons/icon-right-arrow-hover.svg);
}

.sl-wrapper .sl-navigation button.sl-prev {
  left: 0;
  background-image: url(../img/icons/icon-left-arrow.svg);
}

.sl-wrapper .sl-navigation button.sl-prev:hover {
  background-image: url(../img/icons/icon-left-arrow-hover.svg);
}

.sl-wrapper .sl-image .sl-caption {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  color: #444;
  background: transparent;
  opacity: 1;
}

/* ========================================================================
 * Contact page and Price List page
 * ======================================================================== */

#contact .left-col p,
#price-list .left-col p {
  font-size: 1.2rem;
  font-weight: 300;
}
@media screen and (max-width: 991px) {
  #contact .right-col > img {
    display: none;
  }
}

#contact form,
#price-list form {
  margin: 2rem 0;
}

.formulario .radiobuttons {
  font-size: 1.1rem;
  font-weight: 300;
}

.formulario .required-fields {
  font-size: 1rem;
  font-weight: 300;
  display: block;
  margin-bottom: 1.5rem;
}

.formulario .request-data {
  font-size: 1.2rem;
  display: block;
  margin: 1.5rem 0;
  font-weight: 300;
}

.formulario .request-data a {
  text-transform: none;
  color: #f6deae;
}

.formulario .request-data a:hover {
  text-decoration: underline;
}

.contact-info {
  display: block;
  width: 100%;
  margin: 1rem 0;
}

.contact-info .icon {
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
}

.contact-info .icon img {
  width: 100%;
}

.contact-info li {
  display: block;
  width: 100%;
  padding: 4px 2.2rem;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: left;
  position: relative;
}

.contact-info a {
  text-transform: none;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #444444;
}

.contact-info li i {
  position: absolute;
  right: 0;
  color: #232323;
}

.contact-info li.contact-logo {
  padding: 10px 0;
}

.contact-info li.contact-logo img {
  width: 200px;
}

@media screen and (max-width: 991px) {
  .contact-info li {
    text-align: left;
  }

  .contact-info li i {
    right: initial;
    left: 0;
  }

  .contact-info li.contact-logo img {
    width: 150px;
  }
}

/* ========================================================================
 * Info box (Cómo comprar, Quiénes somos, F.A.Q.)
 * ======================================================================== */

#como-comprar h2,
#faq h2 {
  font-size: 2rem;
  margin: 0;
  max-width: 480px;
}

.info-box p {
  font-size: 1.5rem;
  font-weight: 300;
  text-align: justify;
  margin-bottom: 2rem;
}

/* text normal list */

.text-list {
  margin-bottom: 2.3rem;
}

.text-list h4 {
  color: #131212;
  margin-top: 0;
  margin-bottom: 1.3rem;
  font-size: 1.8rem;
}

.text-list p {
  font-size: 1.2rem;
}

.text-list hr {
  margin-bottom: 0;
}

.text-list li {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 15px 0 15px 40px;
  position: relative;
  text-align: justify;
}

.text-list li > span.number {
  font-family: 'Abril Fatface', sans-serif;
  position: absolute;
  left: 0;
  width: 30px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  color: #f6deae;
  line-height: 45px;
  font-size: 3.2rem;
  top: 6px;
}

/* preguntas frecuentes */

#faq .text-list li {
  background: #f9f9f9;
  padding: 30px 30px 30px 55px;
  margin-bottom: 1.5rem;
}

#faq .text-list li > span.number {
  font-size: 3rem;
  text-align: right;
  width: 45px;
  top: 21px;
  color: #ebceb2;
}

@media screen and (max-width: 767px) {
  #faq .text-list li {
    padding: 15px 15px 15px 45px;
    margin-bottom: 1.5rem;
  }

  #faq .text-list h4 {
    font-size: 1.5rem;
  }

  #faq .text-list li > span.number {
    font-size: 2.5rem;
    text-align: center;
    width: 40px;
    top: 6px;
  }
}

/* ========================================================================
 * Google maps
 * ======================================================================== */

#google-container {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #e7eaf0;
}

@media only screen and (min-width: 1170px) {
  #google-container {
    height: 445px;
  }
}

#cd-google-map {
  position: relative;
}

#cd-google-map address {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1em 1em;
  background-color: rgba(99, 94, 94, 0.9);
  color: white;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media only screen and (min-width: 768px) {
  #cd-google-map address {
    font-size: 15px;
    font-size: 0.9375rem;
    text-align: center;
  }
}

#cd-zoom-in, #cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: #706a6a;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("../img/icons/icon-controller.svg");
}

#cd-zoom-in:hover, #cd-zoom-out:hover {
  background-color: #565555;
}

@media only screen and (min-width: 768px) {
  #cd-zoom-in, #cd-zoom-out {
    margin-left: 30px;
  }
}

#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 1px;
}

@media only screen and (min-width: 768px) {
  #cd-zoom-in {
    margin-top: 30px;
  }
}

#cd-zoom-out {
  background-position: 50% -32px;
}

/* ========================================================================
 * Go to top button
 * ======================================================================== */

.btn-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  /* image replacement properties */
  overflow: hidden;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  color: #FFF !important;
  font-size: 1.5rem;
  text-align: center;
  background: #b5b1a5;
  border-radius: 50%;
  transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.btn-top:hover {
  color: #fff;
  background: #5d5651;
}

.btn-top.is-visible, .btn-top.fade-out, .no-touch .btn-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.btn-top.is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.btn-top.fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .btn-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .btn-top {
    height: 60px;
    width: 60px;
    line-height: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/* ========================================================================
 * Footer
 * ======================================================================== */

footer {
  background: #908d8b;
  padding-top: 40px;
  text-align: center;
}

footer ul.menu {
  width: 100%;
  display: block;
  font-size: 0;
  float: left;
  text-align: left;
}

footer ul.menu > li {
  display: inline-block;
  position: relative;
}

footer ul.menu > li > a {
  display: block;
  font-size: 0.9rem;
  padding: 0 15px;
  color: #FFF;
  font-weight: 300;
}

footer ul.menu > li > a:hover {
  color: #ffefce;
}

@media screen and (min-width: 768px) {
  footer ul.menu {
    width: auto;
    display: inline-block;
    float: right;
    text-align: center;
    margin-top: 0;
  }
  footer ul.menu > li:after {
    content: '|';
    position: absolute;
    right: -0.28rem;
    top: 0;
    font-size: 1rem;
    line-height: initial;
    color: #7f7f7f;
  }
}

footer ul.menu > li:last-of-type:after {
  content: '';
}

@media screen and (max-width: 991px) {
  footer ul.menu {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
  footer ul.menu > li > a {
    font-size: 0.9rem;
    padding: 0 10px;
  }
   footer ul.menu > li:first-of-type > a {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  footer {
    text-align: left;
  }
  footer ul.menu > li {
    display: block;
    text-align: left;
  }
  footer ul.menu > li > a {
    padding: 5px 0;
  }
}



footer ul.social {
  font-size: 0;
  float: left;
  display: inline-block;
}

footer ul.social > li {
  display: inline-block;
  position: relative;
}

footer ul.social > li > span {
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 20px;
  margin-right: 10px;
  float: left;
  color: #ffffff;
}

footer ul.social > li > a {
  margin: 0 2px;
  display: block;
  width: 30px;
  height: 30px;
  float: left;
  
}

footer ul.social > li > a > img {
  width: 100%;
  -webkit-transition: all 0.2s linear;
          transition: all 0.2s linear;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

footer ul.social > li > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
          transform: scale3d(1.1, 1.1, 1);
}


footer .copyright {
  background: #363535;
  width: 100%;
  margin-top: 40px;
  padding: 20px 0; 
  color: #bdbbbb;
  font-size: 0.86rem;
}

footer .copyright > .container {
  position: relative;
}

footer .copyright .left {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

footer .copyright .right {
  float: right;
}

@media screen and (max-width: 767px) {
  footer .copyright {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 400px) {
  footer .copyright .left {
    position: relative;
    float: left;
    left: 0;
    top: 0;
    transform: translateY(0%);
    width: 100%;
    margin-bottom: 15px;
  }

  footer .copyright .right {
    float: left;
  }
}

/* Estilos para el botón de WhatsApp en dispositivos grandes */
.whatsapp-button {
  position: fixed;
  bottom: 115px;
  right: 38px;
  z-index: 1000;
}

.whatsapp-button a {
  display: block;
}

.whatsapp-button img {
  width: 55px; /* Ajusta el tamaño según sea necesario */
  height: auto;
}

/* Estilos para dispositivos móviles */
@media screen and (max-width: 767px) {
  .whatsapp-button {
    bottom: 95px; /* Cambia la posición vertical para dispositivos móviles */
    right: 12px; /* Puedes ajustar esto según tus necesidades */
  }

  .whatsapp-button img {
    width: 35px; /* Ajusta el tamaño para dispositivos móviles */
  }
}
