/* ========================================================================
 * 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);

/* 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(242, 225, 218);
	-webkit-font-smoothing: antialiased !important;
	-moz-font-smoothing: antialiased !important;
	-o-font-smoothing: antialiased !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,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: 400;
	height: 100%;
  margin: auto;
  position: relative;
  overflow-x: hidden;
  color:rgb(228 209 202);
}

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: 'Abril Fatface', sans-serif;
  color: #f1f1f1;
  text-transform: uppercase;
  font-weight: 400;
}

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(55, 36, 29);
    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: #2f2e2e;
  border-radius: 0 !important;
  border: none;
  font-size: 1.14rem;
  font-weight: 500;
  color: rgb(48, 44, 44);
  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: #202020;
  cursor: not-allowed;
  background-color: #545151;
  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: #694545;
}

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

/* text colors */

.text-pink {
  color: #e9cbb2;
}

.text-purple {
  color: #bf9292;
}


/* 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: #e9cbb2;
}

.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: 60px;
  box-shadow: none !important;
  outline: none !important;
  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: #0f7c67;
  -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: #fff;
  color: #0f7c67;
  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: #aa7f5b;
  color: #fff;
}

.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: #202020;
}

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

.navbar-default {
  background:rgb(173, 167, 158);
  border: none;
  margin-bottom: 0;
  
}

.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: #8c7c6b !important;
}

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

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

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

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

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

.swiper-slide {
  overflow: hidden;
}

.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: #FFF;
  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;
}

.main-slider .swiper-slide-active > img {
  -webkit-animation: zoomin 50s 1;
  -moz-animation: zoomin 50s 1;
  animation: zoomin 50s 1;
}

@-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.12;
}

@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) {
  .swiper-container .caption,
  .swiper-overlay {
    display: none;
  }
}

/* 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;
  color: #ffffff !important;
  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: #202020;
}

.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) #8daea1 no-repeat center;
  background-size: cover;
}

.page-cover.purple h1:before  {
  background: #8daea1;
}

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

.page-cover.purple2 h1:before  {
  background: #8daea1;
}

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

.page-cover.purple3 h1:before  {
  background: #8daea1;
}

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

.page-cover.pink h1:before  {
  background: #8daea1;
}

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

.page-cover.pink2 h1:before  {
  background: #8daea1;
}

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

.page-cover.pink3 h1:before  {
  background: #8daea1;
}

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

#banners {
  margin: 60px 0;
}

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

#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: #000;
  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.pink .pattern {
  background-image: url(../img/pattern1.png);
}

#banners .banner.yellow .pattern {
  background-image: url(../img/pattern2.png);
}

#banners .banner.blue .pattern {
  background-image: url(../img/pattern3.png);
}

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

/* background colors */

/*#banners .banner.pink {
  background: #f2a1bd;
}

#banners .banner.yellow {
  background: #f4ee9e;
}

#banners .banner.blue {
  background: #b5e2f4;
}*/

#banners .banner.green {
  background: #b89685
}

#banners .banner.purple {
  background: #b89685
}

#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: #fff;
  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 {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #fff;
  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(192, 155, 143)
  -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: #fff;
  color: #b38c78;
  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: #676860;
  padding: 60px 0;
}

#lookbookHome .title-decoration h2 {
  background: #a4a696
}

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

#lookbookHome .photo {
  width: 100%;
  display: block;
  margin: 2rem 0;
  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);
}

/* ========================================================================
 * 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;
  }
}

/* ========================================================================
 * 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: #98afa4;
  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;
  }
}

/* ========================================================================
 * 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: #cc6699;
}

.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: #cc6699;
}

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

.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: #a56666;
  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: #c9a9a9;
  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(121, 79, 79, 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: #855f5f;
  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: #6e4646;
  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: #c68e8e;
}

.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: #202020;
  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: #e9b2c5;
}

@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: #FFF;
}

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: #161616;
  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 */
  }
}
