/*
CATEGORY PAGES
*/
:root {
  --pulse: 255, 255, 255;
}

.cat_article img{
    display: block;
    box-sizing: border-box;
    width: 100%;
}
.category-image-wrapper {
    margin-bottom: 40px;
}
.cat_article .cat_half {
    float: left;
}
.cat_article {
	text-align:center;
    display: inline-block;
    padding: 20px 0;
	width: 100%;
}
.cat_half{
	padding:10px 0;
}
.cat_half img {
    width: 100%;
}
.cd_usp span {
    display: inline-block;
    float: left;
    width: calc(100% - 70px);
	width:100%;
}
.cd_usp {
    float: left;
    padding: 10px 0;
    width:100%;
}
.cd_usp img {
    display: none;
    width: 90px;
    float: left;
    box-sizing: border-box;
    padding: 0px 30px 0px 20px;
}
.cat_cta{
    height: 300px;
    background-size: 100%;
    box-shadow: inset 0px 0px 0px 300px rgba(0,0,0,0.5);
}
.cat_cta .button{
	background: #151f42;
}
.cat_cta h3 {
    text-align: center;
    width: 65%;
    margin: auto;
    box-sizing: border-box;
    color: white;
    margin-top: 40px;
    font-size: 30px;
}
.cat_cta .button {
    background: #ED2B4E;
    margin: auto;
    text-align: center;
    display: table;
    box-sizing: border-box;
    padding: 20px 50px;
    margin-top: 40px;
    background: linear-gradient(to right, #ED2B4E 50%, #164a5e 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s ease-out;
	border: none;
	box-shadow: 0 0 0 rgba(var(--pulse), 0.4);
    animation: pulse 3s infinite;
}
.cat_cta .button:hover {
    background-position: left bottom;
    animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(var(--pulse), 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 5px rgba(var(--pulse), 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(var(--pulse), 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(var(--pulse), 0.4);
    box-shadow: 0 0 0 0 rgba(var(--pulse), 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 5px rgba(var(--pulse), 0);
      box-shadow: 0 0 0 5px rgba(var(--pulse), 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(var(--pulse), 0);
      box-shadow: 0 0 0 0 rgba(var(--pulse), 0);
  }
}
/* SMARTPHONES LANDSCAPE */
@media only screen and (min-width: 480px) {

}


/* TABLETS PORTRAIT */
@media only screen and (min-width: 768px) {
	.cd_usp img {
		display:block;
	}
	.cd_usp span {
	    width: calc(100% - 90px);
	}
	.cat_usp{
		padding-top:0;
	}
	.cat_article .cat_half {
	    width: 50%;
	}
	.cat_article .cat_half_first {
		padding-right:20px;
	}
	.cat_article .cat_half_second {
		padding-left:20px;
	}
	.cat_article {
		text-align:left;
	}
}
