.neuropace-carousel-box {
	max-width: 1425px;
	padding: 0px 90px !important;
	margin: 0 auto;
}

.neuropace-carousel {

}

.neuropace-carousel-item {
	
}

.neuropace-carousel-item--container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.neuropace-carousel-item--left-side {
	width: 55%;
}

.neuropace-carousel-item--right-side {
	display: flex;
	padding-left: 50px;
	align-items: center;
	width: 45%;
}

.neuropace-carousel--display-box {
	position: relative;
	justify-content: center;
	padding-top: 56.25%;
	height: 0;
}

.neuropace-carousel--thumbnail,
.neuropace-video-frame {
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}

.neuropace-carousel--thumbnail {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.neuropace-carousel--play-button {
	position: absolute;
	left: 50%;
	top: 50%;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-width: 0;
	border-radius: 50%;
	background-color: rgba(16, 177, 228, 0.66);
	cursor: pointer;
	transition: .3s all ease-in-out;
	transform: translate(-50%, -50%);
}

.neuropace-carousel--play-button::after {
	content: '';
	position: absolute;
	width: 0; 
  height: 0; 
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;

  border-left: 35px solid #fff;
}

.neuropace-carousel--play-button:hover {
	background-color: rgba(16, 177, 228, 0.86);
}

.neuropace-video-frame {
	display: none;
}

.tns-slide-active .neuropace-video-frame {
	display: block;
}

.tns-slide-active .neuropace-video-frame.neuropace-carousel-video--is-playing {
	z-index: 3;
}

/* set non-active slides to be hidden (*not* display: none) - mk 210411 hbd2me */
#tns1 > .tns-item:not(.tns-slide-active) {
  visibility: hidden;
}

.neuropace-carousel--tagline-title,
.neuropace-carousel--tagline-subtitle {
	font-size: 20px;
	color: #494B4E;
	line-height: 1.2;
}

/* Overriding Salient's rule: .row .col h3 */
.neuropace-carousel-item--container h3.neuropace-carousel--tagline-title {
	margin-bottom: 0;
}

.neuropace-carousel--tagline-title {
	margin-top: 20px;
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 700;
}

.neuropace-carousel--tagline-subtitle {
	margin-bottom: 0;
	font-weight: 400;
}

.neuropace-carousel-content-wrapper {
	position: relative;
	top: -40px;
	width: 100%;
}

.neuropace-carousel-content {
	position: relative;
	font-weight: 400;
	font-size: 20px;
}

.neuropace-carousel-content h4,
.neuropace-carousel-content p {
	color: #05142D;
}

.neuropace-carousel-content h4 {
	font-size: 28px;
}

.neuropace-carousel-content p {
	font-size: 20px;
}

.neuropace-carousel-content-wrapper .neuropace-carousel-button {
	margin-top: 30px;
}

a.neuropace-carousel-button,
.neuropace-carousel-button {
	display: flex;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 40px;
	line-height: 0;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	background-color: #10B1E4;
	border-radius: 20px;
	box-shadow: 0px 4px 30px #05142D26;
	transition: .3s all ease-in-out;
}

.neuropace-carousel-button:hover {
	color: #000000;
	background-color: #fff;
}

.neuropace-carousel-wrapper .tns-nav {
	position: absolute;
	left: -20px;
	top: 50%;
	margin-top: -38px;
	width: 5px;
	z-index: 2;
	transform: translateY(-50%);
}

.neuropace-carousel-wrapper .tns-nav button {
	display: block;
	margin-bottom: 15px;
	padding: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #000;
	border-width: 0;
}

.neuropace-carousel-wrapper .tns-nav button.tns-nav-active {
	background-color: #777;
}

.neuropace-carousel-wrapper .tns-controls {
	display: flex;
	position: absolute;
	bottom: 25px;
	right: 45%;
}

.neuropace-carousel-wrapper .tns-controls button {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 25px;
	padding: 0;
	width: 30px;
	height: 30px;
	color: #fff;
	background-color: rgba(16, 177, 228, 0.6);
	border-radius: 50%;
	border-width: 0;
}

.neuropace-carousel-wrapper .tns-controls button:hover {
	background-color: rgba(16, 177, 228, 0.9);
}

.neuropace-carousel-wrapper .tns-controls button:disabled {
	background-color: rgba(16, 177, 228, 0.3);
	cursor: not-allowed;
}

/**
 * CSS Chevron
 *
 * @see https://codepen.io/stepher/pen/yLOaEOP
 */
.neuropace-carousel-wrapper .tns-controls button::before {
	display: inline-block;
	position: relative;
	content: '';
	width: 0.45em;
	height: 0.45em;
	vertical-align: top;
	border-style: solid;
	border-width: 0.25em 0.25em 0 0;
	border-color: #fff;
	transform: rotate(-45deg);
}

.neuropace-carousel-wrapper .tns-controls [data-controls="prev"]::before {
	transform: rotate(-135deg);
}

.neuropace-carousel-wrapper .tns-controls [data-controls="next"]::before {
	margin-left: -2px;
	transform: rotate(45deg);
}

@media screen and (max-width: 768.33px) {
	.neuropace-carousel-box {
		max-width: 100% !important;
		padding: 0px 10px !important;
    margin: 0 auto !important;
    float: none !important;
	}

	.neuropace-carousel-item--left-side,
	.neuropace-carousel-item--right-side {
		width: 100%;
	}

	.neuropace-carousel-item--right-side {
		padding-left: 0;
	}

	.neuropace-carousel-content-wrapper {
		top: 0;
	}
	
	.neuropace-carousel-content {
		display: none;
	}

	.neuropace-carousel-content-wrapper .neuropace-carousel-button {
		margin-left: auto;
		margin-right: auto;
	}

	.neuropace-carousel-wrapper .tns-nav {
		display: none;
	}

	.neuropace-carousel-wrapper .tns-controls {
		right: 0;
		bottom: 20px;
	}
	
	.neuropace-carousel-wrapper.has-content-button .tns-controls {
		bottom: 90px;
	}
}

@media screen and (max-width: 560.33px) {
	.neuropace-carousel-box.wpb_column {
		padding-left: 25px !important;
    padding-right: 25px !important;
	}
}