body{
    color: black; 
    height: 100%;
    margin: 0;
    background: rgb(33, 102, 84);
    background: linear-gradient(180deg, rgba(33, 102, 84, 0.7) 0%, rgba(255, 255, 255, 0.6) 160%),
    url("https://s-media-cache-ak0.pinimg.com/originals/7a/8d/51/7a8d51f4968960334274ac7959d31a7d.jpg");
    background-repeat: no-repeat;
    background-size: cover;


}

h1 {
    font-family: coolvetica-compressed-hv_1;
    font-size: 5rem;
    text-transform: uppercase;
    color: white;
    text-align: center;
}

p{

    font-family: coolvetica-condensed;
    font-size: 1.5rem;
    color: white;
        

}


#mitos-carusel{
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.carousel-contain {
    width: 90%;
    justify-content: center;
    padding-left: 750px;


}

.flip-card-container {
    width: 300px;
    height: 500px;
    perspective: 1000px;
}

.flip-card {
    position: relative;
    width: 90%;
    height: 90%;
    transition: transform 1s;
    transform-style: preserve-3d;
}

.flip-card-container:hover .flip-card {
    transform: rotateY(180deg);
    /* <=>  rotateY(.5turn) */
}
.flip-card-container:hover #card-question-box{
    display: none;

}


/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 0.5rem; */
}

.flip-card-front {
    background-color: #333;
    color: #fff;
}

#card-question-box{ 
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgb(33, 102, 84,0.85);
    width: 100%;
    height: 25%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    
}

 .circle {
  height: 50px;
  width: 50px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: yellow;
}

.badge {
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;

}

.positive{
      background: rgb(83, 216, 21);
}
.negative{
     background: rgb(255, 64, 64);
     color: #fff;

}

.flip-card-back {
    background-color: white;
    color: black;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
	object-fit:cover;
    /* border-radius: 0.5rem; */
}

.inversion-img{
	object-position:right;
}

.flip-card-back h3{
    font-size: 2rem;
}

.flip-card-back p {
    text-align: center;
    margin: 1rem;
    font-size: 1.4rem;
    line-height: 1.5rem;
    color:#000;
}

.flip-card-back p span {
    display: block;
    font-size: 1rem;
    font-style: italic;
    font-weight: bold;
    margin-top: 1.25rem;
}

.flip-slide-container{
    display: flex;
}



/* CSS */
.button-59 {
    align-items: center;
    background-color: #fff;
    border: 2px solid #000;
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    fill: #000;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    letter-spacing: -.8px;
    line-height: 24px;
    min-width: 340px;
    outline: 0;
    padding: 0 17px;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-59:focus {
    color: #171e29;
}

.button-59:hover {
    border-color: #06f;
    color: #06f;
    fill: #06f;
}

.button-59:active {
    border-color: #06f;
    color: #06f;
    fill: #06f;
}


.swiper {
        width: 90%;
        height: 100%;
		left:15px;
      }

      .swiper-slide {
        text-align: center;
        font-size: 18px;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
      }





@media (max-width:650px) {

	h1{
		font-size: 3.5rem;
		margin: 0 0.5rem;
	}
	
    .flip-card-container {
            width: 75vw;
            height: 70vh;
            perspective: 1000px;
        }
    
}

