@import url(https://fonts.googleapis.com/css?family=Open+Sans|Bitter);
/*html{
	 box-sizing: border-box;
}
 *, *:before, *:after{
	 box-sizing: inherit;
}
 a, a:visited{
	 color: #76b7f7;
}
 body{
	 background-color: $bg;
	 color: #fff;
	 font-family: "Open Sans", sans-serif;
}
 h1, h2, h3, h4, h5, h6{
	 font-family: "Bitter", serif;
}
 body{
	 display: grid;
	 height: 100vh;
	 grid-template-rows: 1fr 50px;
	 justify-items: center;
	 align-items: center;
	 -webkit-perspective: 2000px;
	 perspective: 2000px;
}
*/
 .deck {
	 display: flex;
}
 .card-space:hover .car {
	 transform: rotateY(-180deg);
}
 .car {
	 border-radius: 10px;
	 height: 280px;
	 margin: 10px;
/*	 width: 200px;*/
	 position: relative;
	 transform-style: preserve-3d;
	 transition: all 0.5s ease;
}
 .car h1 {
	    margin-top: 65px;
}
 .car p {
	 margin-top: 0px;
	 color:#fff;
}
 .face {
	 border-radius: 10px;
	 box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
	 background: linear-gradient(#04b0e0, #18ad67);
	 padding: 20px;
	 position: absolute;
	 height: 100%;
	 width: 100%;
}
 .face h1 {
	 padding: 0;
}
 .face.front {
	 text-align: center;
	 z-index: 20;
	 backface-visibility: hidden;
	 transform: rotateY(0deg);
}
 .face.back {
	 transform: rotateY(180deg);
	 backface-visibility: hidden;
}
.whity{
	color:#fff;
	padding-top: 30px;
 }
h2 .vis{
	font-size: 38px;
}
/*response---*/
.deck {
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
    justify-content: center; /* Center items horizontally */
}
.car h1 {
    margin-top: 50px;
    font-size: 24px;
}

.car p {
    margin-top: 0;
    font-size: 16px;
    color: #fff;
}

@media (max-width: 576px) {
    .car h1 {
        font-size: 20px;
        margin-top: 30px;
    }
    
    .car p {
        font-size: 14px;
    }
}
.face {
    border-radius: 10px;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
    background: linear-gradient(#04b0e0, #18ad67);
    padding: 20px;
    position: absolute;
    height: 100%;
    width: 100%;
}

@media (max-width: 576px) {
    .face {
        padding: 10px;
    }
}
.about-left-items {
    padding: 20px;
}

@media (max-width: 576px) {
    .about-left-items {
        padding: 10px;
    }
}