.text_area {
	margin: 0;
	padding: 0 20px;
	display: inline-block;
	width: 100%;
  height: 90px;
  border-radius: 0 0 10px 10px;
}

.text_area h2 {
  color: #fff;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}

.text_area p {
	color: #d3d3d3;
	margin-top: 5px;
}

.logo_area {
	width: 80px;
	height: 80px;
	padding: 2px;
	position: absolute;
	left: 25px;
	bottom: 60px;
	border: 1px solid #dadada;
	background: #fff;
}

.offer_area {
  width: 45% !important;
  margin: 20px 18px;
  -webkit-transition: all 400ms ease-in;
  -webkit-transform: scale(1); 
  -ms-transition: all 400ms ease-in;
  -ms-transform: scale(1); 
  -moz-transition: all 400ms ease-in;
  -moz-transform: scale(1);
  transition: all 400ms ease-in;
  transform: scale(1);
  padding: 0;
  height: 300px;
  cursor: pointer;
}

.offer_area:hover {
  z-index: 2;
  -webkit-transition: all 400ms ease-in;
  -webkit-transform: scale(1.05);
  -ms-transition: all 400ms ease-in;
  -ms-transform: scale(1.05);   
  -moz-transition: all 400ms ease-in;
  -moz-transform: scale(1.05);
  transition: all 400ms ease-in;
  transform: scale(1.05);
}

.akelni_offer > div:nth-child(odd) .text_area, {
	background-color: #f1f1f1;
}

.akelni_offer > div:nth-child(even) .text_area {
	background-color: #f1f1f1;
}

.akelni_offer > div:nth-child(3n+1) .text_area {
	background-color: #fd6514;
}

.akelni_offer > div:nth-child(3n+2) .text_area {
	background-color: #2a2a2a;
}

.akelni_offer > div:nth-child(3n+3) .text_area {
	background-color: #f5f5f5;
}

.akelni_offer > div:nth-child(3n+3) .text_area h2{
	color: #505050;
}

.akelni_offer > div:nth-child(3n+3) .text_area p{
	color: #9f9f9f;
}


.offer_area:hover .logo_area{
  animation: animationFrames linear 0.7s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: animationFrames linear 0.7s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animationFrames linear 0.7s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -ms-animation: animationFrames linear 0.7s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes animationFrames{
  0% {

    transform:  rotate(0deg) ;
  }
  100% {

    transform:  rotate(360deg) ;
  }
}

@-moz-keyframes animationFrames{
  0% {

    -moz-transform:  rotate(0deg) ;
  }
  100% {

    -moz-transform:  rotate(360deg) ;
  }
}

@-webkit-keyframes animationFrames {
  0% {

    -webkit-transform:  rotate(0deg) ;
  }
  100% {

    -webkit-transform:  rotate(360deg) ;
  }
}

@-ms-keyframes animationFrames {
  0% {

    -ms-transform:  rotate(0deg) ;
  }
  100% {

    -ms-transform:  rotate(360deg) ;
  }
}








