/* =================================== */
/*	Basic Style
/* =================================== */
body {
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  line-height: 24px;
  font-size: 16px;
  color: #555555;
}

figure, p, address {
  margin: 0;
}

p {
  line-height: 25px;
}

iframe {
  border: 0;
}

a {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a, a:hover, a:focus, .btn:focus {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Open Sans', sans-serif;
  color: #252525;
}

h1, .h1 {
  font-size: 30px;
}

h2, .h2 {
  font-size: 24px;
}

h3, .h3 {
  font-size: 18px;
}

main>section {
  padding: 50px 0;
}

.btn {
  border-radius: 0;
  border: 0;
  position: relative;
  text-transform: uppercase;
}

.btn-white {
  background-color: #ffffff;
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
  padding: 15px 55px;
  color: #ff525e;
  font-size: 1.5em;
  border-radius: 4px;
}

.btn-border {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 35px;
}

.bg-blue {
  background-color: #009EE3;
}

/* Sweep To Right */
.btn-effect {
  vertical-align: middle;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  display: inline-block;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: color;
  -moz-transition-property: color;
  -ms-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -moz-osx-font-smoothing: grayscale;
}

.btn-effect:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff525e;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -ms-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn-effect:hover, .btn-effect:focus, .btn-effect:active {
  color: #ffffff;
}

.btn-effect:hover:before, .btn-effect:focus:before, .btn-effect:active:before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.sec-title {
  margin-bottom: 50px;
}

.sec-title.white {
  color: #fff;
}

.sec-title h2 {
  font-size: 36px;
  margin: 0 0 30px;
  padding-bottom: 30px;
  position: relative;
  text-transform: uppercase;
}

.sec-title.white h2 {
  color: #fff;
}

.sec-title h2:after {
  border-bottom: 1px solid #ccc;
  content: "";
  display: block;
  left: 45%;
  bottom: 0;
  position: absolute;
  width: 115px;
}

.sec-title.white h2:after {
  border-bottom: 1px solid #fff;
}

.parallax {
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/**
/*	Preloader
/* ==========================================*/
#preloader {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

/*Battery*/
.loder-box {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 1px;
  height: 100px;
  left: 50%;
  margin-left: -64px;
  margin-top: -50px;
  position: absolute;
  top: 50%;
  width: 128px;
}

.battery {
  width: 60px;
  height: 25px;
  top: 35%;
  border: 1px #2E2E2E solid;
  border-radius: 2px;
  position: relative;
  -webkit-animation: charge 5s linear infinite;
  -moz-animation: charge 5s linear infinite;
  animation: charge 5s linear infinite;
  margin: 0 auto;
}

.battery:after {
  background-color: #2E2E2E;
  border-radius: 0 1px 1px 0;
  content: "";
  height: 10px;
  position: absolute;
  right: -5px;
  top: 7px;
  width: 3px;
}

@-webkit-keyframes charge {
  0% {
    box-shadow: inset 0px 0px 0px #2E2E2E;
  }

  100% {
    box-shadow: inset 60px 0px 0px #2E2E2E;
  }
}

@-moz-keyframes charge {
  0% {
    box-shadow: inset 0px 0px 0px #2E2E2E;
  }

  100% {
    box-shadow: inset 60px 0px 0px #2E2E2E;
  }
}

@keyframes charge {
  0% {
    box-shadow: inset 0px 0px 0px #2E2E2E;
  }

  100% {
    box-shadow: inset 60px 0px 0px #2E2E2E;
  }
}

/**
/*	Header
/* ==========================================*/
#navigation {
  -webkit-transition: all 0.8s ease 0s;
  -moz-transition: all 0.8s ease 0s;
  -ms-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  padding: 5px 0;
}

#navigation.animated-header {
  padding: 20px 0;
}

.dropup {
  bottom: 100% !important;
  top: auto !important;
  width: 100%;
}

h1.navbar-brand {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  padding: 0 15px;
}

.navbar-inverse .navbar-nav>li>a {
  color: #000;
  font-size: 15px;
  text-transform: uppercase;
	background-color: transparent !important;
}

.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus {
	color: #ff525e !important
}

.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus {
  color: #ff525e !important;
	background-color: transparent !important;
}

/*=================================================================
	Home Slider
==================================================================*/
#home-slider {
  position: relative;
  padding: 0;
}

#home-slider.homeSlider {
  background: url(../img/slider/fiestas2018pisocompartido.jpg);
  background-size: cover;
}

@media (max-width: 640px) {
  #home-slider.homeSlider {
    max-height: 300px;
  }
}

.sl-slider-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sl-slider {
  position: absolute;
  top: 0;
  left: 0;
}

/* Slide wrapper and slides */
.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sl-slide {
  z-index: 1;
}

.slide-caption {
  color: #fff;
  display: table;
  height: 100%;
  left: 0;
  min-height: 100%;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 11;
}

.slide-caption .caption-content {
  bottom: 100px;
  position: absolute;
}

.caption-content h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.caption-content>span {
  display: block;
  font-size: 24px;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.caption-content p {
  font-size: 29px;
  margin-bottom: 65px;
}

/* The duplicate parts/slices */
.sl-content-slice {
  overflow: hidden;
  position: absolute;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 1;
}

/* Horizontal slice */
.sl-slide-horizontal .sl-content-slice {
  width: 100%;
  height: 50%;
  left: -200px;
  -webkit-transform: translateY(0%) scale(1);
  -moz-transform: translateY(0%) scale(1);
  -o-transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
  top: -200px;
  padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
  top: 50%;
  padding: 0px 200px 200px 200px;
}

/* Vertical slice */
.sl-slide-vertical .sl-content-slice {
  width: 50%;
  height: 100%;
  top: -200px;
  -webkit-transform: translateX(0%) scale(1);
  -moz-transform: translateX(0%) scale(1);
  -o-transform: translateX(0%) scale(1);
  -ms-transform: translateX(0%) scale(1);
  transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
  left: -200px;
  padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
  left: 50%;
  padding: 200px 200px 200px 0px;
}

/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
  position: absolute;
}

.sl-content {
  width: 100%;
  height: 100%;
}

/* Default styles for background colors

.btn-effect:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    content: "";
    position: absolute;
    z-index: -1;

    -webkit-transition: all 0.3s ease-out 0s;
       -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
         -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
}

.btn-effect:hover,
.btn-effect:active {
    color: #0e83cd;
}

.btn-effect:hover:after,
.btn-effect:active:after {
    width: 100%;
} */
/* Project laughtbox setup */
.fancybox-item.fancybox-close {
  background: url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
  height: 50px;
  right: 0;
  top: 0;
  width: 50px;
}

.fancybox-next span {
  background: url("../img/right.png") no-repeat scroll center center #009ee3;
  height: 50px;
  width: 50px;
  right: 0;
}

.fancybox-prev span {
  background: url("../img/left.png") no-repeat scroll center center #009ee3;
  height: 50px;
  width: 50px;
  left: 0;
}

.latestalbums {
  background-color: rgb(0, 102, 204);
  min-height: 510px;
  position: relative;
  display: table;
  float: left;
  width: 35%;
  margin: 5px;
}

.latestalbums h2 {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 102, 204);
  font-weight: bold;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

/*=================================================================
	Contact
==================================================================*/
#contact {
  background-color: #3b3e68;
}

#contact .container.contact {
  color: white;
  margin-top: 0px;
  padding: 0;
}

#contact .container.contact .row .col-sm-12 {
  padding: 40px 0;
  position: relative;
}

#contact .container.contact .row .col2:before,
#contact .container.contact .row .col3:before,
#contact .container.contact .row .col5:before,
#contact .container.contact .row .col6:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 20%;
  width: 1px;
  height: 60px;
  border-left: 1px solid #2e3052;
}

/*============================================================
	Footer
==============================================================*/
#footer {
  background-color: #2E2E2E;
  padding: 20px 0 70px;
  color: #fff;
}

#footer p {
  font-size: 12px;
}

/*============================================================
	Responsive Styles
 ============================================================*/
/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/
@media (min-width: 768px) and (max-width: 979px) {

  /* home slider  */
  .caption-content h2 {
    font-size: 40px;
  }

  .caption-content p {
    font-size: 25px;
  }

  .caption-content strong {
    font-size: 45px;
  }
}

/*============================================================
	Mobile (Portrait) Design for a width of 320px
==============================================================*/
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .parallax {
    background-position: centet tip !important;
  }

  .sec-title h2 {
    font-size: 25px;
  }

  .sec-title h2:after {
    left: 30%;
  }

  /*navigation*/
  .navbar-inverse .navbar-toggle {
    border-color: #333;
  }

  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #333;
  }

  .navbar-inverse .navbar-toggle:hover,
  .navbar-inverse .navbar-toggle:focus {
    background-color: transparent;
  }

  /* slider */
  .caption-content h2 {
    font-size: 18px;
  }

  .caption-content>span {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .caption-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .caption-content strong {
    font-size: 22px;
  }

  /* lightbox */
  .fancybox-title h3 {
    font-size: 20px;
  }

  .fancybox-title p {
    font-size: 14px;
  }

  /* footer */
  .footer-content {
    width: 100%;
  }

  .footer-social ul li {
    margin: 0 7px;
  }
}

/*============================================================
	Mobile (Landscape) Design for a width of 480px
==============================================================*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .sec-title h2:after {
    left: 38%;
  }

  /* home slider */
  .caption-content h2 {
    font-size: 35px;
  }

  .caption-content p {
    font-size: 25px;
  }

  .caption-content strong {
    font-size: 35px;
  }

  /* footer */
  .footer-content {
    width: 380px;
  }
}
