  /* --------------------------------------------
  Product Services Template STYELS 
  -------------------------------------------- */
.product-highlight-featured {
	display: flex;
	align-items: center;
	margin:75px 0px;
}
@media(max-width:480px){
	.product-hero-gradient-point-down{
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 0 93%);
		clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 0 93%);
	}
	.product-platform-img-container, .product-platform-highlight-image {
		width: 245px;
		height: 162px;
	}	
	.product-platform-highlight-text {
		font-size: 20px;
		line-height: 28px; 
	}
	#options-hpa img {
		border-radius: 5px;
	}	
}
@media(min-width:481px){
	.product-hero-gradient-point-down{
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
		clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
	}
	.product-platform-img-container, .product-platform-highlight-image {
		width: 405px;
		height: 266px;
		border-radius: 12px
	}
	.product-platform-highlight-text {
		font-size: 25px;
		line-height: 38px; 
	}	
	#options-hpa img {
		border-radius: 12px;
	}
}
@media(max-width:767px){
	.options-hero {
		background-size: 1480px !important;
		padding-bottom: 290px;
	}
	.product-highlight-featured {
		flex-direction: column-reverse;
		margin:75px 0px;
	}
	.product-platform-highlight-text {
		width: 100%;
		padding-bottom:35px;
		padding-left: 0px;
		text-align:center;
	}
}
@media(min-width:768px){
	.options-hero {
		background-size: 150% !important;
		padding-bottom: 375px;
	}	
	.product-highlight-featured {
		flex-direction: row;
		margin:75px 0px;
	}
	.product-platform-img-container, .product-platform-highlight-image {
		width: 460px;
		height: 303px;
	}
	.product-platform-highlight-text {
		width: 48%;
		padding-bottom:0px;
		padding-left: 30px;
		font-size: 25px; 
		line-height: 38px;
		text-align:left;
	}
}
@media(min-width:992px){
	.options-hero {
		background-size: 130% !important;
		padding-bottom: 330px;
	}
	.product-platform-img-container, .product-platform-highlight-image {
		width: 650px;
		height: 430px;
	}
	.product-platform-highlight-text {
		padding-bottom:5%;
	}
}
@media(min-width:1200px){
	.product-hero-gradient-point-down{
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
		clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
	}
	.options-hero {
		background-size: 110% !important;
		padding-bottom: 368px;
	}
	.product-platform-img-container, .product-platform-highlight-image {
		width: 700px;
		height: 463px;
	}
}
@media(min-width:1500px){
	.product-hero-gradient-point-down{
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
		clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
	}
	.options-hero {
		background-size: 75% !important;
		padding-bottom: 410px;
	}	
}
@media(min-width:2500px){
	.product-hero-gradient-point-down{
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
		clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
	}
	.options-hero {
		background-size: 60% !important;
		padding-bottom: 480px;
	}
}
  /* --------------------------------------------
  Hero Background images
  -------------------------------------------- */
.options-hero {
	background: url('https://ct-prod.s3.amazonaws.com/assets/wordpress_assets/product-img/options/options-hero.min.svg');
	background-repeat: no-repeat;
	background-position: bottom center;
}
  /* --------------------------------------------
  Options Highlight platform crossfade
  -------------------------------------------- */
 .product-platform-img-container {
	position:relative;
	margin:0 auto;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0,51,102,.2);
    box-shadow: 0 10px 30px 0 rgba(0,51,102,.2);
}
#options-hpa {
	position:relative;
	margin:0 auto;
	background-image: url(https://ct-prod.s3.amazonaws.com/assets/wordpress_assets/product-img/options/options-highlight-bg.min.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}	

#options-hpa img {
	position:absolute;
	top: 0;
	left: 0;
	animation-name: optionshpaFadeInOut;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 16s;
}
#options-hpa img:nth-of-type(1) {
  animation-delay: 10s;
}
#options-hpa img:nth-of-type(2) {
  animation-delay: 5s;
}
#options-hpa img:nth-of-type(3) {
  animation-delay: 0s;
}
@keyframes optionshpaFadeInOut {
  0% {
    opacity:1;
  }
  17% {
    opacity:1;
  }
  25% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}