/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/* ========================================================================
   Use this file to add custom CSS easily
 ========================================================================== */
html {
    background: #054ddf;
}

.flex-container {
			display: flex;
			flex-wrap: wrap;
			align-content: flex-end;
}

		/* flip card container
		Set the width and height to whatever you want.
		We have added the border property to demonstrate that the flip itself goes out of the box on hover
		(remove perspective if you don't want the 3D effect */
		.flip-card {
			background-color: transparent;
			width: 300px;
			height: 300px;
			perspective: 1000px; /* Remove this if you don't want the 3D effect */
			flex-grow: 1;
		}

		/* this container is needed to position the front and back side */
		.flip-card-inner {
			position: relative;
			width: 100%;
			height: 100%;
			text-align: center;
			transition: transform 0.8s;
			transform-style: preserve-3d;
			transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
			transition-duration: .5s;
			transition-property: transform, opacity;
		}

		/* do an horizontal flip when you move the mouse over the flip box container */
		.flip-card:hover .flip-card-inner {
			transform: rotateY(180deg);
		}

		/* position the front and back side */
		.flip-card-front, .flip-card-back {
			position: absolute;
			width: 100%;
			height: 100%;
			backface-visibility: hidden;
		}

		/* style the front side (fallback if image is missing) */
		.flip-card-front {
			background-color: #054ddf;
			color: black;
			transform: rotateY(0deg);
		}

		/* style the back side */
		.flip-card-back {
			background-color: #00DFCA;
			color: white;
			transform: rotateY(180deg);

			/* center items on card-back */
			display: flex;
			justify-content: center;
			flex-direction: column;
			align-items: center;
			/* flex-wrap: wrap; */
		}

		@media only screen and (max-width: 600px) {
			img {
				width: 60%;
				height: 60%;
			}
		}