@font-face {
  font-family: 'playfairdisplay-bold';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/playfair-display/playfairdisplay-bold-webfont.eot');
  src: local('playfair-display/playfairdisplay-bold-webfont'), local('playfairdisplay-bold-webfont'),
  url('../fonts/playfair-display/playfairdisplay-bold-webfont.woff') format('woff'),
  url('../fonts/playfair-display/playfairdisplay-bold-webfont.ttf') format('truetype'),
  url('../fonts/playfair-display/playfairdisplay-bold-webfont.woff2') format('woff2');  
}

@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: 'futurastd-light';
  src: url('../fonts/futurastd/light.eot');
  src: local('futurastd-light'), local('futurastd-light'),
  url('../fonts/futurastd/light.woff') format('woff'),
  url('../fonts/futurastd/light.ttf') format('truetype'),
  url('../fonts/futurastd/light.svg#heavy') format('svg');
}

@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: 'futurastd-book';
  src: url('../fonts/futurastd/book.eot');
  src: local('futurastd-book'), local('futurastd-book'),
  url('../fonts/futurastd/book.woff') format('woff'),
  url('../fonts/futurastd/book.ttf') format('truetype'),
  url('../fonts/futurastd/book.svg#heavy') format('svg');  
}

/* Animación spinner preload */

.overlay {
  width: 100%;
  height: 100vh;
  background-color: #ffffffe0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.spinner { 
  width: 80px;
  height: 80px;
  border: 2px solid #de5689;
  border-top:3px solid #fff;
  border-radius: 100%;
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right: 0;
  margin: auto;
  animation: spin 1s infinite linear;
}

@keyframes spin {

    from {

        transform: rotate(0deg);
  }   
    to {
        transform: rotate(360deg);
  }

}

/* Animación hero */

.hero-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  padding: 0px 30px;
  position: relative;
  z-index: 2;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
}

.hero-container p {
    color: #af7f8b;
    font: 2rem "playfairdisplay-bold";
    text-align: left;
    letter-spacing: 1px;
    text-shadow: 0px 1px 2px #0000003b;
}

.hero-button {
    color: #95bdcd;
    font: 14px "futurastd-book";
    float: left;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 30px;
    padding: 10px 45px;
    border: 2px solid #af7f8b;
    box-shadow: 6px 5px 0px 0px #95bdcd;
    background-color: #fff;
}

 .hero-title {
    color: #d4af37;
    text-align: left;
    font: 6rem "playfairdisplay-bold";
    line-height: 1;
    text-shadow: 0px 1px 2px #0000005c;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-52px, 0, 0);
    transform: translate3d(-52px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-52px, 0, 0);
    transform: translate3d(-52px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.animate {
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
          animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
}

.delay {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-400 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-500 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-600 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-700 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.delay-800 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

/* parallax*/

.parallax {
    transition: transform 10s cubic-bezier(0,1,.5,1);
}

.yellow-fakebox {
    background: #d4af37;
    position: absolute;
    width: 200px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.05), 0 6px 12px rgba(0,0,0,0.12);
    height: 100px;
    top: -65px;
    left: 0px;
    z-index: -1;
}

.pink-fakebox {
    background: #93bccc;
    position: absolute;
    width: 200px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.05), 0 6px 12px rgba(0,0,0,0.12);
    height: 100px;
    top: -60px;
    left: 0px;
    z-index: -1;
}

/* Estilos varios */

.content {
  padding: 30px;
}

.modal-body {
  margin-top: 50px;
}

.content h2 {
    font: 5rem "playfairdisplay-bold";
    letter-spacing: 1px;
    color: #af7f8b;
}
.pink h2:after{
    content: "";
    display: block;
    width: 155px;
    border-top: 8px solid;
    margin-left: -27px;
    color: #93bccc;
    margin-bottom: 30px;
}

.yellow h2:after{
    content: "";
    display: block;
    width: 155px;
    border-top: 8px solid;
    margin-left: -27px;
    color: #d4af37;
    margin-bottom: 30px;
}

.gallery-content:after{
    content: "";
    display: block;
    width: 155px;
    border-top: 8px solid;
    margin-left: -27px;
    color: #d4af39;
    margin-bottom: 30px;

}

.content p {
    margin: 0 auto;
    font: 1.7rem "futurastd-book";
    letter-spacing: 1px;
    padding-bottom: 20px;
    color: #000;
}

.dark {
  background:#f2f2f2;
  padding: 40px 0;
}

.wrap {
  width: 100%;  
  margin: 0 auto;
  position: relative;
  padding: 0 15px;
}

.stripes_top {
  height: 25vh;
    background: #d39bc08c;
    -webkit-clip-path: polygon(100% 0, 100% -41%, 0 100%, 0 0);

}

.heros {
  position: absolute;
  background-color: #9dc1cf78;
    width: 100%;
    height: 150px;
    top: 0;
    right: 0;
}

.hero_imagen-flores{
  position: relative;
}

.rrss {
  padding-bottom: 3rem;
  vertical-align: top;
}

.hero_imagen-flores img{
  width: 50%;
    position: absolute;
    left: 40%;
}

.hero {
  background: url(../img/atelier-cabecera.jpg) no-repeat center center fixed;
  background-size: cover;
  text-align: center;
  height: 100vh;
  position: relative;
  
}
.bg-attached{
  position: relative;

}
.bg-attached h2{
  color: #af7f8b;
  display: inline-block;
  float: right;

}

.bg-attached:before {
  content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-contact h2{
  display: inline-block;
  float: right;

}
.scroll{
  cursor: pointer;
}

.scroll svg {
    position: absolute;
    bottom: 35px;
    left: 50%;
    height: 100px;
    transform: translateX(-50%);
    z-index: 5;
}

.hero:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffffe8;
}

.main_header {
  position: fixed;
  top: 0px;
  max-height: 85px;
  z-index: 999;
  width: 100%;
  padding-top: 20px;
  background: none;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0;
  top: -100px;
  padding-bottom: 6px;
}

.open-nav {
  max-height: 100% !important;
  background-color: #ffffff !important;
}

.open-nav nav ul a{
  font: 3rem "playfairdisplay-bold";
    color: #93bccc;
}

.open-nav nav ul a:after {
    content: "";
    display: block;
    width: 150px;
    border-top: 2px solid;
    margin-left: 210px;
    color: #af7f8b;
    margin-bottom:20px;
  }

.open-nav .mobile-toggle {
  transform: rotate(-90deg);
}

.sticky {
    background-color: #ffffffc4;
    opacity: 1;
    top: 0px;
    bottom: 0px;
    box-shadow: -1px -3px 11px 0px #888888;
}

.logo {
  width: 50px;
    float: left;
    margin-bottom: 10px;
}

nav {
  float: right;
  
}

nav ul {
  list-style: none;
  overflow: hidden;

}

nav ul li {
  display: inline-block;
  margin: 15px;

}

nav ul a {
  color: #93bccc;
  font: 16px "futurastd-book";
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 500ms linear;
}

nav ul a.active {
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  transition: all 500ms 100ms linear;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 25px;
  top: 12px;
  width: 30px;
  transition: all 200ms ease-in;
}

.mobile-toggle span {
  width: 30px;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 1000px;
  background: #95bdcd;
  display: block;
}

.black{
  background-color: #000;
}

.logo-footer{
  width: 200px;
  margin: 0 auto;
  display: block;
  padding: 15px;
}

/* Contacto */

.contact-wrapper {
  margin: 0 auto;
  position: relative;
  max-width: 650px;
  padding-bottom: 50px;
}

.contact-list {
  list-style-type: none;
  padding: 10px;
  
}

.list-item {
  line-height: 4;
  color: #af7f8b;
}

.contact-text {
  font: 1.4rem "futurastd-book";
  letter-spacing: 1px;
  color: #000;
}

.place {
  margin-left: 12px;
}

.phone {
  margin-left: 12px;
}

.gmail {
  margin-left: 12px;
}

.contact-text a {
  color: #000;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.contact-text a:hover {
  color: #a0306d;
  text-decoration: none;
}


.social-media-list {
  position: relative;
  font-size: 2.3rem;
  text-align: center;
  width: 100%;
}

.social-media-list li a {
  color: #fff;
}

.social-media-list li {
  position: relative; 
  top: 0;
  left: -20px;
  display: inline-block;
  height: 70px;
  width: 70px;
  margin: 10px auto;
  line-height: 70px;
  border-radius: 50%;
  color: #fff;
  background-color: #93bccc;
  cursor: pointer; 
  -webkit-transition: all .2s ease-in-out; 
  transition: all .2s ease-in-out;
}

.social-media-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #af7f8b;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.social-media-list li:hover {
  background-color: #af7f8b; 
}

.social-media-list li:hover:after {
  opacity: 1;  
  -webkit-transform: scale(1.12);  
          transform: scale(1.12);
  -webkit-transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
          transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}

hr {
  border-color: #af7f8b;
}

/* ------------------ SECTION PORTFOLIO------------------*/ 

.btn-primary {
    background-color: white;
    color: #ab7c88;
    display: inline-block;
    letter-spacing: 2px;
    padding: 8px 30px;
    text-transform: uppercase;
    transition: all .3s ease-in;
    margin-bottom: 100px;
    margin: 45px 0 110px 0;
    border: 2px solid #af7f8b;
    box-shadow: 6px 5px 0px 0px #95bdcd;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    border-color: #ab7c88;
    color: #95bdcd;
    background-color: white;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: #1ee2e7;
    background-color: #1ee2e7;
}

#portfolio .portfolio-item {
    right: 0;
    margin: 0 0 15px;
}

#portfolio .portfolio-item .portfolio-link {
    display: block;
    position: relative;
    margin: 0 auto;
   
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(145 117 29 / 67%);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(135 94 104 / 62%);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(72 127 148 / 66%);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover-4 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(95 146 110 / 72%);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover {
    opacity: 2;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 20px;
    margin-top: -12px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    font-family: "futurastd-light",sans-serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px #000000cc;
}

#portfolio * {
    z-index: 2;
}

.portfolio-modal .modal-content {
    min-height: 100%;
    border: 0;
    border-radius: 0;
    text-align: center;
    background-clip: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portfolio-modal .modal-content h2 {
    margin-bottom: 15px;
    font-size: 3em;
}
.portfolio-modal .modal-content h3 {
    font-size: 2.2em;
    font-family: futurastd-light, sans-serif;
    letter-spacing: 2px;
    padding-bottom: 20px;
}

.portfolio-modal .modal-content p {
    margin-bottom: 30px;
}

.portfolio-modal .modal-content p.item-intro {
    margin: 20px 0 30px;
    font-family: futurastd-book,sans-serif;
    font-size: 16px;
    font-style: italic;
}

.portfolio-modal .modal-content ul.list-inline {
    margin-top: 0;
    margin-bottom: 30px;
}

.portfolio-modal .modal-content img {
    margin-bottom: 30px;
}

.portfolio-modal .close-modal {
    position: sticky;
    z-index: 9;
    float: right;
    top: 13px;
    right: 12px;
    width: 75px;
    height: 75px;
    background-color: transparent;
    color: black;
    cursor: pointer;
}

.portfolio-modal .close-modal:hover {
    opacity: .3;
}

.portfolio-modal .close-modal .lr {
    z-index: 1051;
    width: 3px;
    height: 40px;
    margin-left: 35px;
    background-color: #af7f8b;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.portfolio-modal .close-modal .lr .rl {
    z-index: 1052;
    width: 3px;
    height: 40px;
    background-color: #af7f8b;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

::-moz-selection {
    text-shadow: none;
    background: #85d5f7;
}

::selection {
    text-shadow: none;
    background: #85d5f7;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}
.gallery img.mix {
  
    display: none;
}

.secondary{

  text-align: center;
}

.secondary button {
 
  letter-spacing:2px; 
  text-transform: uppercase;
  padding: 0 25px;
  font-size: 1.4em;
  line-height: 3em;
  font-family: "futurastd-light",sans-serif;
}

.lateral-lines {

  display: inline-block;
  position: relative
}

.lateral-lines::before, .lateral-lines::after {

    content:"";
    border-bottom: 1px solid white;
    bottom: 50%;
    margin: 0 10px;
    position: absolute;
    width: 35px;
    color: white;
}

.lateral-lines::before {
    left: -60px;
}

.lateral-lines::after {
    right: -60px;
}
.img-responsive, .thumbnail a>img, .thumbnail>img {
  
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.modal-body p {

    font-size: 1.1em;
    font-family: futurastd-book,sans-serif;
    line-height: 1.7em;
    text-align: center;
}




/* RESPONSIVE */

@media only screen and (max-width: 320px){

  .hero-title {
    font: 5rem "playfairdisplay-bold";
  }
}

@media only screen and (max-width: 767px){

  .mobile-toggle {
    display: block;
  }
  .heros {
    height: 85px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    text-align: center;
    padding: 0;
  }

  nav ul li {
    width: 100%;
    padding: 15px 0;
    margin: 0;
  }

  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }

  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

}
@media (min-width: 596px){

    .hero_imagen-flores img {
        width: auto;
        left: 50%;
        top: -25px;
    }

}


@media only screen and (min-width: 768px) {

  .hero-title {
    font-size: 15rem;    
  }
  .contact-text {
    font: 1.9rem "futurastd-book";
  }

  .hero-container p{
    font-size: 4.55rem;
    width: 45%;
  }

  .hero-container{
    padding: 0px 80px;
  }

  .heros {
    top: 85px;
  }

  .hero {
    padding-top: 84px;
  }
  .hero-container h1 {
    width: 60%;

  }
  .content {
  padding: 30px;
  max-width: 1240px;
  margin: 0 auto;

  }
  .content h2{
  font-size: 10rem ;
  padding-left: 50px;
  
  }
  .content p {
    max-width: 50%;
  }
  .bg-attached{
    padding: 30px 0 100px 0;
  }

}

@media only screen and (min-width: 768px) and (max-width: 1390px){

  .hero-title {
    font-size: 8rem;
  }

  .hero-container p {
    font-size: 3rem;
    width: 65%;
  }

}


