@charset "utf-8";
/* CSS Document */

/*------------------------------------*\
#FLIP BOX
\*------------------------------------*/
/* Necesarias */
.flips {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.col-sm-4 {position: relative;
  width: 33.3333333333%;}




@media (max-width: 800px){
.col-sm-4 {
    width: 50%;
	
}}

@media (max-width: 680px){
.col-sm-4 {
    width: 100%;
	
}}

.flip-box {
  transform-style: preserve-3d;
  perspective: 1000px;
  color: #141c1c;
  
}

.flip-box-front,
.flip-box-back,
.flip-box-bg {
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.flip-box-front {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
	cursor: pointer;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateY(180deg);
  transform-style: preserve-3d;
}

.flip-box:not(.flip-single-clic):not(.flip-multi-clic):hover .flip-box-front,
.flip-box.flip-active .flip-box-front {
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
}
.flip-box:not(.flip-single-clic):not(.flip-multi-clic):hover .flip-box-back,
.flip-box.flip-active .flip-box-back {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

/* Imagen de fondo */
.flip-box-bg {
position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    color: #cd3530;
    font-family: 'Open Sans';
    font-weight: 800;
    font-size: 22rem;
    display: flex;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;

}
.flip-box-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
      background-color: transparent;
    mix-blend-mode: hard-light;
}
.flip-box-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Para 3d */
.flip-box-3d .flip-box-inner {
  transform: translateZ(60px);
}

/* Para personalizar */
.flip-box {
  margin: 8px auto;
  max-width: 400px;
  width: 95%;
}

.flip-box-front,
.flip-box-back,
.flip-box-bg {
  border-radius: 10px;
  min-height: 400px;
}

.flip-box-front {
  background-color: #ffffff;
    box-shadow: 0 0 20px 0px rgb(0 0 0 / 23%);
}

.flip-box-back {
  background-color: #243333;
}


.flip-box-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
	    text-align: center;
}
.flip-box-inner h4,
.flip-box-inner h3 {

	font-family: 'Cormorant Garamond';
  padding: 0;
}
.flip-box-inner h3 {
  font-size: 2rem;
  text-transform: none;
  padding-bottom: 16px;
  line-height: 1;
}
.flip-box-inner h4 {
  font-size: 1.5rem;
  text-transform: none;
  padding: 16px 0 24px;
  line-height: 1;
  font-weight: bold;
}
.flip-box-inner h3 + h4 {
  padding-top: 0;
}
.flip-box-inner p + h4 {
  margin-top: 16px;
}
.flip-box-inner p {
  font-family: 'Pt Serif';
    font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 1.2em;
  color: #c00;
}

.flip-box-back .flip-box-inner p {
  font-family: 'Pt Serif';
    font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 1.2em;
  color: #ffffff;
}

.flip-box-inner a {

    text-decoration: none;
}
.flip-box-inner a:active, .flip-box-inner a:hover {

}
.flip-box-inner a:visited {
  
}

/* Icono centrado */
.flip-box-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 8px;

    border-radius: 50%;
    
}

.flip-box-call {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgb(36, 51, 51, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.flip-box-call:hover {
  background: rgba(255, 255, 255, 0.4);
  scale: 1.2;
  transition: all 0.15s;
}
.flip-box-3d .flip-box-call {
  bottom: 20px;
  right: 20px;
}

.icon-add:before {
    content: "+";
	    font-weight: bold;
}

.btn {
    background-color: #fff;
    padding: 1rem;
    display: block;
    color: #c00;
    border-radius: 15px;
    margin-top: 10px;
}

.btn:hover {
  opacity: .8;

}