/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.features-wrap {
	display: grid;
	grid-template-columns: 1fr;
    grid-row-gap: 2rem;
	padding: 4rem 0;
	text-align: center;
}
.features-wrap.content-wrap-wide {
	width: 80%;
}
.features-wrap .icon {
	display: block;
	margin-bottom: .6rem;
}
.features-wrap h4 {
	text-align: center;
	font-size: 18px;
    font-weight: 200;
    font-family: 'MarkOT', Helvetica, sans-serif;
    margin-bottom: .6rem;
    color: #213262;
}
.features-wrap p {
	font-size: 1rem;
}
@media screen and (min-width: 1024px) {
	.features-wrap {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	    grid-auto-rows: minmax(150px, auto);
	    grid-gap: 2rem;
	}
	.features-wrap.content-wrap-wide {
		width: 80%;
	}
}



/* Feature - General Styles */
.feature {
	margin: 0 auto;
	display: grid;
	justify-content: center;
	align-items: start;
	grid-template-columns: 1fr;
	grid-template-rows: min-content;
	grid-column: 1 / -1;
}
.feature-card {
	position: relative;
    z-index: 2;
}
.feature-image-card {
	position: relative;
	z-index: 0;
}
.feature-card-content {
    background: #f7f7f7;
    padding: 3em 2.25em;
}

.feature-card-content ul li {
	font-size: 1.2em;
	text-align: left;
}

.feature .card-title, .offset-feature .card-title {
	margin-bottom: 2.5em;
}
.card-title h6 {
	text-transform: uppercase;
}
.feature-card-content h6 {
	text-align: left;
}
.feature-card h2 {
    margin-bottom: 1em;
    text-align: left;
}

@media screen and (min-width: 768px) {
	.feature-card-content {
	    padding: 5em 4.25em;
	}
	[id$='-header'] .card-title h6, [id$='-header'] h2, #feature-foot-title h6, [class$='-wrap'] > .card-title h6, [class$='-wrap'] > h4, [class$='-wrap'] .card-title + h2, [class$='-wrap'] > h2 {
		text-align: center;
	}
}

@media screen and (min-width: 1024px) {
	.feature {
		align-items: center;
		grid-template-rows: 1fr;
	}
	.feature-card-content {
	    padding: 4em 4.25em;
	}
}

@media screen and (min-width: 1440px) {
	.feature {
		align-items: center;
		grid-template-rows: 1fr;
	}
	.feature-card-content {
	    padding: 6em 4.25em;
	}
}


.bar {
	display: block;
    width: 2rem;
	max-width: 2rem;
	margin-bottom: .5rem;
}
@media screen and (min-width: 768px) {
	.bar {
	    width: 2.75rem;
	    max-width: 2.75rem;
	    margin-bottom: 1rem;
	}
}
.bar-blue {
	border-top: .1em solid #1e306e;
}
.bar-left {
	margin-left: 0;
}
.offset-feature .bar-left {
	margin-left: auto;
	margin-right: auto;
}
.bar-center {
	margin-left: auto;
	margin-right: auto;
}

.feature-card-content a {
	display: inline-block;
}
.feature-card-content a:hover, .product-buttons a:hover {
	text-decoration: none;
}
.btn.btn-arrow .arrow-button-icon .arrow-button-lines, .btn.btn-arrow.btn-outline-blue-hover .arrow-button-icon .arrow-button-lines {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    stroke-width: .1rem;
}
.btn.btn-arrow:hover .arrow-button-icon {
    margin-left: 0;
    opacity: 1;
}
.btn-outline.btn-arrow .arrow-button-icon .arrow-button-lines, .btn-outline-dark.btn-arrow .arrow-button-icon .arrow-button-lines {
	stroke: #404040;
}
.btn-blue.btn-arrow .arrow-button-icon .arrow-button-lines {
	stroke: #fff;
}
@media screen and (min-width: 768px) {
	.btn.btn-arrow .arrow-button-icon {
		height: 1rem;
	    opacity: 0;
	    margin-top: 0;
	    margin-right: 1rem;
	    margin-left: -2rem;
	    width: 1rem;
	    -webkit-transition: margin-left .3s ease-out,opacity .3s ease-out;
	    transition: margin-left .3s ease-out,opacity .3s ease-out;
	}
}
@media screen and (min-width: 1024px) {
	.offset-feature .bar-left {
		margin-left: 0;
	}
}

.image-responsive {
    display: block;
    max-width: 100%;
    margin: auto;
}

.feature .feature-image-card img, .feature .feature-image-card video {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}


/* Feature Text Right */
.feature-right .feature-card {
	order: 2;
	margin: 0 auto;
	grid-column: 1 / -1;
	grid-row: 2 / -1;
	margin-bottom: 3em;
}
.feature-right .feature-image-card {
	order: 1;
	grid-column: 1 / -1;
	grid-row: 1 / -1;
	margin-bottom: 0em;
}

@media screen and (min-width: 1024px) {
	.feature-right {
		grid-template-columns: repeat(6, 1fr);
	}
	.feature-right .feature-card {
		grid-column: 4 / 7;
		grid-row: 1 / -1;
		text-align: left;
		margin: 0;
	}
	.feature-right .feature-image-card {
		grid-column: 1 / 6;
		margin-bottom: 0;
	}
}


/* Feature Text Left */
.feature-left .feature-card {
	order: 1;
	margin: 0 auto;
	grid-column: 1 / -1;
	grid-row: 2 / -1;
	margin-bottom: 0em;
}
.feature-left .feature-image-card {
	order: 2;
	grid-column: 1 / -1;
	grid-row: 1 / -1;
	margin-bottom: 1em;
}

@media screen and (min-width: 1024px) {
	.feature-left {
		grid-template-columns: repeat(6, 1fr);
	}
	.feature-left .feature-card {
		grid-column: 1 / 4;
		grid-row: 1 / -1;
		text-align: left;
		margin-bottom: 0;
	}
	.feature-left .feature-image-card {
		grid-column: 2 / -1;
		grid-row: 1 / -1;
		margin-bottom: 0;
	}
}

/* Feature Right - no overlap */
@media screen and (min-width: 1024px) {
	#feature-2 .feature-right .feature-card {
		grid-column: 5 / 7;
	}
	#feature-2 .feature-right .feature-card .feature-card-content {
		background: transparent;
		padding: 6em 0 6em 4.25em;
	}
	#feature-2 .feature-right .feature-image-card {
		grid-column: 1 / 5;
	}
}


/* Offset Feature */
.offset-features-wrap {
	display: grid;
	grid-template-rows: min-content min-content;
	grid-template-columns: 1fr;
	margin-bottom: 3em;
}
.offset-features-wrap .feature-card {
	margin-top: 3em;
}
.offset-feature.feature {
	max-width: 100%;
	grid-template-columns: 100px 1fr 100px 1fr 100px;
}
.offset-feature:first-child {
	grid-row: 1 / 2;
}
.offset-feature:last-child {
	grid-row: 2 / -1;
	margin-top: 0;
}
.offset-feature .feature-card {
	max-width: 85%;
	text-align: center;
	grid-column: 1 / -1;
}
.offset-feature .feature-card-content {
	background: transparent;
	margin: 0;
	padding: 0;
}
.offset-feature .feature-card-content h6 {
	text-align: center;
}
.offset-feature .feature-card h2 {
	font-size: 2.1rem;
	text-align: center;
}

@media screen and (min-width: 1024px) {
	.offset-features-wrap {
		margin-bottom: 6em;
	}
	.offset-feature:first-child {
		grid-row: 1 / 2;
	}
	.offset-feature:last-child {
		grid-row: 2 / -1;
	}
	.offset-feature .feature-card {
		text-align: left;
	}
	.offset-feature.feature-right .feature-card {
		grid-column: 4 / 5;
		grid-row: 1 / -1;
		margin-top: 14em;
		margin-bottom: 3em;
	}
	.offset-feature.feature-left .feature-card {
		grid-column: 2 / 3;
		grid-row: 1 / -1;
		margin-bottom: 3em;
	}
	.offset-feature .feature-card h2, .offset-feature .feature-card-content h6 {
		text-align: left;
	}
	.offset-feature.feature-right .feature-image-card {
		grid-column: 2 / 3;
		grid-row: 1 / -1;
	}
	.offset-feature.feature-left .feature-image-card {
		grid-column: 4 / 5;
		grid-row: 1 / -1;
	}
}

@media screen and (min-width: 1440px) {
	.offset-features-wrap .feature {
		grid-template-rows: min-content;
	}
	.offset-feature:last-child {
		margin-top: -2em;
	}
	.offset-feature.feature-right .feature-card {
		grid-row: 1 / -1;
		margin-top: 0em;
	}
	.offset-feature.feature-left .feature-card {
		grid-row: 1 / -1;
	}
}



/* Features Table */
#features-table-wrap {
	margin-top: 5em;
	margin-bottom: 9em;
}
#features-table {
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	margin-top: 3em;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	grid-auto-rows: minmax(150px, auto);
	grid-gap: 5em;
}
.features-table-cell {
	margin-left: 5px;
	margin-right: 5px;
	flex: 1 1 220px;
}
#features-table .icon {
	margin-bottom: 1.5rem;
    display: block;
}
#features-table .icon svg {
    max-height: 2.5rem;
}
#features-table.content-wrap h4 {
	color: #060606;
	font-size: 1rem;
    font-weight: 400;
    font-family: 'MarkOTMedium', Helvetica, sans-serif;
    margin-bottom: .75rem;
    text-align: left;
}
#features-table p {
	color: #4d4d4d;
	font-size: 1rem;
    font-weight: 400;
    font-family: 'MarkOT', Helvetica, sans-serif;
}

@supports (display: grid){
	#features-table > * {
		margin: 0;
	}
}

@media screen and (min-width: 1024px) {
	#features-table .icon {
	    text-align: left;
	}
}



/* Compare Table */
#comparison-table-wrap {
	margin-top: 4em;
}
#comparison-table {
	text-align: left;
	margin: 0 auto;
	margin-top: 2rem;
	display: grid;
	grid-template-columns: [content-col-start] 2fr [content-col-end rayless-mask-col-start] 1fr [rayless-mask-col-end other-mask-col-start] 1fr [other-mask-col-end];
}
.comparison-table-header-row {
	grid-column: rayless-mask-col-start / other-mask-col-end;
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.comparison-table-header-row > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.comparison-table-header-row .mask-col-wrap {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.comparison-table-header-row svg {
	width: 80%;
	max-width: 120px;
	max-height: 53px;
	display: none;
}
.comparison-table-header-row h4 {
	font-size: 18px;
	font-weight: 200;
    font-family: 'MarkOT', Helvetica, sans-serif;
    text-align: center;
    margin-top: 0;
    margin: 20px 0;
}
.table-row {
	display: grid;
	grid-template-columns: [content-col-start] 2fr [content-col-end rayless-mask-col-start] 1fr [rayless-mask-col-end other-mask-col-start] 1fr [other-mask-col-end];
	grid-column: content-col-start / other-mask-col-end;
	border-bottom: 1px solid #e0e0e0;
}
.table-row svg {
	width: 30%;
	max-width: 30px;
}
.table-content-cell {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	grid-column: content-col-start / content-col-end;
	padding: 20px 20% 20px 0;
}
.table-row .checkmark, .table-row .x-mark {
	display: flex;
	justify-content: center;
	align-items: center;
}
.comparison-table-header-row .rayless-col, .table-row .checkmark {
	background-color: #f7f7f7;
}
.table-row .checkmark {
	grid-column: rayless-mask-col-start / rayless-mask-col-end;
}
.table-row .x-mark {
	grid-column: other-mask-col-start / other-mask-col-end;
}
.table-content-cell h4 {
	font-size: 18px;
	font-weight: 200;
    font-family: 'MarkOT', Helvetica, sans-serif;
    margin-bottom: .6rem;
}
.table-content-cell p {
	font-size: 16px;
	display: none;
}

@media screen and (min-width: 768px){
	.comparison-table-header-row .mask-col-wrap {
	    padding: 2rem;
	}
	.comparison-table-header-row svg {
		display: block;
	}
	.comparison-table-header-row h4 {
		font-size: 18px;
		font-weight: 800;
	    margin-top: .6rem;
	}
	.table-content-cell {
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}
	.table-content-cell h4 {
		font-weight: 800;
	}
	.table-content-cell p {
		display: block;
	}
}
@media screen and (min-width: 1024px){
	#comparison-table-wrap {
		margin-top: 7em;
	}
	#comparison-table, .table-row {
		grid-template-columns: [content-col-start] 4fr [content-col-end rayless-mask-col-start] 1fr [rayless-mask-col-end other-mask-col-start] 1fr [other-mask-col-end];
	}
}


/* Gallery */
#features-gallery {
	width: 100%;
	display: block;
	margin: 0 auto;
	margin-bottom: 4rem;
	margin-top: 4rem;
}
.owl-carousel.owl-loaded {
	display: flex;
    flex-direction: column;
    align-items: center;
}
.owl-carousel .owl-stage {
	display: flex;
	align-items: center;
}
.owl-carousel div {
	width: 100%;
}
.owl-item {
	display: flex;
    justify-content: center;
}
.owl-carousel .gallery-image {
	width: 60%;
}
.owl-carousel .owl-item img {
	height: max-content;
}
.owl-dot {
	border: 1px solid transparent;
}
.owl-dot.active {
	border: 1px solid #5d77f1;
}
.owl-nav.disabled {
	display: none;
}
.owl-carousel .owl-dots {
	width: 60%;
	display: flex;
}
.owl-carousel .owl-dots .owl-dot {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin-top: 10px;
}
.gallery-thumbnail:hover {
	cursor: pointer;
}


/* Special Features Row */
#special-features-row {
	background-color: #f7f7f7;
}
#special-features-row .features-wrap {
	grid-template-columns: 1fr;
	grid-gap: 2rem;
}
@media screen and (min-width: 768px) {
	#special-features-row .features-wrap {
		grid-template-columns: 1fr 1fr 1fr;
	}
}



/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#colophon {
	background: #192048;
    color: #fff;
    padding: 2.65rem 0 3rem;
    
}
.footer-row {
	display: grid;
	grid-template-columns: 83vw;
	grid-template-rows: min-content;
	justify-content: center;
}

/* Footer Nav */
.footer-nav {
	order: 1;
	margin-bottom: 2.2rem;
}
#footer-menu ul, #social-menu ul {
	list-style: none;
	margin: 0;
	margin-left: 0;
	padding-left: 0;
}
#footer-menu ul {
	display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-auto-flow: column;
}
#footer-menu ul li {
	margin: 0 0 .2rem;
}
#footer-menu ul li a {
	color: #fff;
	font-family: 'MarkOT', Helvetica, sans-serif;
	font-size: .8rem;
	line-height: 1.2;
	font-weight: 100;
	text-transform: uppercase;
	padding-bottom: .5rem;
	margin-bottom: .5rem;
	border-bottom: 1px solid transparent;
	transition: .15s all ease-out;
	text-decoration: none;
	white-space: nowrap;
}
#footer-menu ul li a:hover {
	opacity: 0.7;
	border-bottom: 1px solid #4e6bf9;
}
#footer-menu ul li.active a {
	border-bottom: 1px solid #4e6bf9;
}

/* Newsletter */
.footer-newsletter {
	order: 3;
}
.newsletter-signup form .mc4wp-form-fields {
	display: flex;
	width: 100%;
	margin-bottom: 2rem;
}
input:focus {
	outline: 0;
}
.newsletter-signup input[type="email"] {
	flex: 3;
    padding: 1rem 2.5rem 1rem 1rem;
    margin: 0;
    font-size: .85rem;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    background-color: transparent;
    -webkit-transition: background-color .15s ease-out,color .15s ease-out;
    transition: background-color .15s ease-out,color .15s ease-out;
}
.newsletter-signup input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.newsletter-signup input::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.newsletter-signup input:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.newsletter-signup input:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.newsletter-signup input[type="email"]:focus {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.newsletter-signup input[type="submit"] {
	flex: 1;
	position: relative;
    display: inline-block;
    padding: 10px;
    font-size: .85rem;
    line-height: 1.3;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color .15s ease-out,color .15s ease-out;
    transition: background-color .15s ease-out,color .15s ease-out;
    -webkit-appearance: none;
    min-width: 6rem;
    margin-left: -1px;
    padding-right: 1rem;
    padding-left: 1rem;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
}
.newsletter-signup input[type="submit"]:hover {
    background: #fff;
    color: #192048;
}

/* Social Menu */
.footer-social-menu {
	order: 2;
}
#social-menu {
	margin-bottom: 1rem;
}
#social-menu-row-wrap ul {
	list-style: none;
	display: flex;
	justify-content: space-around;
	margin-left: -10px;
}
#social-menu-row-wrap a {
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    margin-right: .4375rem;
	color: #fff;
	opacity: 0.9;
	transition: .15s opacity ease-out;
}
#social-menu-row-wrap a:hover {
	opacity: 0.7;
}


/* Site Info */
.site-info {
	order: 4;
}
.site-info a {
	font-family: 'MarkOT',Helvetica,sans-serif;
	color: #fff;
}
small {
	font-size: 70%;
    line-height: 1.6;
    font-weight: 100;
}

@media screen and (min-width: 1024px) {
	#colophon {
		padding: 3rem;
	}
	.footer-row {
		grid-template-columns: 50% 50%;
		grid-auto-rows: min-content;
	}
	.footer-nav {
		order: 1;
	}
	.footer-social-menu {
		order: 3;
	}
	#social-menu-row-wrap ul {
		justify-content: flex-start;
	}
	.footer-newsletter {
		order: 2;
		grid-column-start: 2;
	}
	.newsletter-signup button {
		min-width: 12rem;
	}
	.phone-number {
		text-align: left;
	}
	.site-info {
		text-align: right;
	}
}

@media screen and (min-width: 1540px) {
	.footer-row {
		grid-template-columns: 1fr 1fr 1fr;
		grid-auto-rows: min-content;
	}
	.footer-newsletter {
		grid-column-start: 3; 
	}
	.site-info {
		grid-column-start: 3; 
	}
}

/* additional */

.xoo-wsc-basket {display: none;}
.svg-inline--fa.fa-w-16 {width: 4em;}
.video_grid {display: grid; grid-template-columns: 20% 80%; grid-gap: 0 30px; max-width: 205px;}
.video_block a {color: #1d2f84;}

/* posts */

.header-wrap {
	text-align: center;
	padding: 250px 50px;
	background-size: cover !important;
	background-position: center !important;
}

.feautred_image {
	padding: 250px 50px;
	background-size: cover !important;
	background-position: center !important;
}


@media (min-width: 767px) {
	.feautred_image {
		padding: 150px 50px;
	}
}

@media (min-width: 1300px) {
	.feautred_image {
		padding: 200px 50px;
	}
}

h1.title {
  font-weight: 400;
  color: #000;
  font-size: 2.6em;
  line-height: 1.2em;
  text-align: left;
}


.header-wrap h1.entry-title {
  font-weight: 400;
  color: #FFF;
  font-size:3em;
  line-height: 1.2em;
  text-align: center;
}

.entry-content-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 0 100px
}

@media (min-width: 767px) {
	.entry-content-grid {
		grid-template-columns: 69% 1fr;
	}
}

.widget_search {
	display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 767px) {
	.widget_search {
		grid-template-columns: 70% 1fr;
	}
}

h2.widget-title {
	background: #192048;
    padding: 10px 10px 12px 15px;
    color: #fff;
    font-size: 1.5em;
}
	
.main-posts {
	width: 95%;
	margin: 0 auto;
}

.post-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 0 50px;
	margin-top: 100px;
	margin-bottom: 50px;
}
	
@media (min-width: 767px) {
	.post-grid {
		grid-template-columns: repeat(2,1fr);
	}
}	

@media (min-width: 1024px) {
	.post-grid {
		grid-template-columns: repeat(3,1fr);
	}
}	
	
h2.entry-title {
    font-size: 1.8em;
}

@media (min-width: 700px) {
	h2.entry-title {
	background: #fff;
    width: 80%;
    margin-top: -40px;
    margin-left: 20px;
    padding: 20px;
	}
}

.entry-meta {margin-left: 40px;}


@media (max-width: 767px) {
	.entry-meta {text-align: center;}
}

.content a {
	border-bottom: 2px solid #192048;
    padding-bottom: 3px;
    color: #192048;
    font-weight: 600;
    text-decoration: none;
}

.content a:hover {
	border-bottom: 2px solid #4e6bf9;
    padding-bottom: 3px;
    color: #4e6bf9;
    font-weight: 600;
    text-decoration: none;
}


.content h2 {
	font-size: 2em;
	text-align: left;
}

.content h3 {
	text-align: left;
}



