


.innerWrap{
	
	width:80%;
	margin:60px auto;
	max-width:1600px;
}

.boxesContainer, .boxesContainer1, .boxesContainer2, .boxesContainer4 {
	display:grid;
	grid-gap: 1rem;
	margin-top:15px;
}

.boxesContainer{grid-template-columns: repeat(3, 1fr);}
.boxesContainer1{grid-template-columns: repeat(1, 1fr);}
.boxesContainer2{grid-template-columns: repeat(2, 1fr);}
.boxesContainer4{grid-template-columns: repeat(4, 1fr);}



.cardBox {
  float: left;
  font-size: 1.2rem;
/*  margin: 1% 0 0 1%;*/
  perspective: 800px;
  transition: all 0.3s ease 0s;
/*  width: 23.7%;*/
}
.cardBox {cursor:pointer!important;}

.cardBox:hover .card {
  transform: rotateY( 180deg);
}

.card {
  /*background: #FAF1D7;*/
  cursor: pointer;
  height: 130px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease 0s;
  width: 100%;
  -webkit-animation: giro 1s 1;
  animation: giro 1s 1;
}



.card .front,
.card .back {
  backface-visibility: hidden;
  box-sizing: border-box;
  display: block;
  height: 100%;
  padding: 2% ;
  position: absolute;
  text-align: center;
  width: 100%;
	border:1px solid #ddd;
}

.card .front {color: #333;}
.card .back {color: #fff;}



.card .front strong {
  background: #fff;
  border-radius: 100%;

  padding: 0 7px 4px 6px;
}


.card .front img {
    max-width: 40px!important;
}
.card .back {
  transform: rotateY( 180deg);
}


.card .front h4, .card .back h4{
font-family: 'Ubuntu', sans-serif!important;
    font-weight: 500;
    font-style: normal;
    font-size: 1.3rem;
    line-height: 1.5rem;
    text-align: center;
    width: 100%;
    float: left;
	margin-top: 3px;
}

.card .front p, .card .back p{
font-family: 'Ubuntu', sans-serif!important;
    font-weight: 500;
    font-style: normal;
    font-size: 1.05rem!important;
    line-height: 1.5rem;
    text-align: center;
    width: 100%;
    float: left;
	margin-top:0px;
}

.card .back p{padding: 1%!important;}


.card .back a:hover {
  background: #fff;
  color: #fff;
  border:1px solid rgba(0,0,0,0)
}

.cardBox .card .back {
  background: linear-gradient(45deg, #24567F, #3494B2);
}



@-webkit-keyframes giro {
  from {
    transform: rotateY( 180deg);
  }
  to {
    transform: rotateY( 0deg);
  }
}

@keyframes giro {
  from {
    transform: rotateY( 180deg);
  }
  to {
    transform: rotateY( 0deg);
  }
}




@media screen and (max-width: 1100px) {
	
	.boxesContainer, .boxesContainer4{
	grid-template-columns: repeat(2, 1fr);}
	
	.boxesContainer2{
	grid-template-columns: repeat(2, 1fr);}
	


  .cardBox:last-child {
    margin-bottom: 3%;
  }
}

@media screen and (max-width: 600px) {
	
	.boxesContainer, .boxesContainer4{
	grid-template-columns: repeat(1, 1fr);
	grid-gap:1rem!important;}
 
	.card{height:150px;}
	
	.boxesContainer2{
	grid-template-columns: repeat(1, 1fr);}
  
}