/* These are updated styles implemented to override and (hopefully) not break already existing code */

/*GENERAL STYLES*/
.full-width-grey {
    background-color: #F2F2F2;
    padding: 2rem;
}

.full-width-hero{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.centered{
	text-align: center;
}

html,body{
	height: 100% !important;
/* should fix sticky footer on all pages */
}

/***************************
**
**HOMEPAGE SUBSECTION BANNER
**
****************************/
.homepage-section-split-wrap {
    display: flex;
    height: 250px;
    font-size: 1em;
    background: linear-gradient(to right, #06384F 50%, #262626 50%);
}
a.section-split-item, a.section-split-item:visited, a.section-split-item:active, a.section-split-item:hover {
    color: #0EA6ED;
    text-shadow: 0px 1px 1px rgba(0,0,0,.75);
    transition: background-size 1000ms ease-out, color 250ms ease;
}
a.section-split-item:hover {
    background-size: 1000px 260px;
    color: #FFF;
}
.section-split-item {
    padding: 4rem;
    width: 100%;
    height: 100%;
    background-size: 960px 250px;
    background-repeat: no-repeat;
    display: flex;
}
.section-split-item p {
    font-size: 1.5em;
}
.section-split-item h1 {
    font-size: 3em;
    font-weight: bolder;
    text-transform: uppercase;
}
.section-split-left {
    text-align: right;
    background-position: center right;
}
.section-split-left .section-split-inner {
    margin-top: auto;
    margin-left: auto;
}
.section-split-right .section-split-inner {
    margin-top: auto;
    margin-right: auto;
}
.section-split-right {
    background-position: center left;
}
.section-split-inner {
    margin-top: auto;
}

@media screen and (max-width: 1600px) {
    .section-split-left, .section-split-right {
        background-position: 35% 50%;
    }
}

@media screen and (max-width:1000px) {
    .homepage-section-split-wrap, a.section-split-item {
        display: block;
        height: auto;
    }
    .homepage-section-split-wrap {
        background: linear-gradient(#06384F 50%, #262626 50%);
    }
    .section-split-left {
        background-position: 25% 50%;
    }
    .section-split-right {
        background-position: 75% 50%;
    }
}

@media screen and (max-width:500px) {
    .homepage-section-split-wrap {
        font-size: 0.7em;
    }
}

@media screen and (max-height:770px) {
    .homepage-section-split-wrap {
        font-size: 0.7em;
    }
}



/*depreciated style*/
.homepage-subsection-banner-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.homepage-subsection-banner-wrap a, .homepage-subsection-banner-wrap a:hover, .homepage-subsection-banner-wrap a:visited, .homepage-subsection-banner-wrap a:active {
    color: #fff;
}
.gaming-desktop-laptop-banner, .professional-workstation-banner {
    width: 100%;
    background-repeat: no-repeat;
    background-size: 275px;
    background-position: 95% 35%;
}
.subsection-banner-inner {
    max-width: 620px;
    width: 100%;
    padding: 50px;
    height: 100%;
}
.subsection-banner-inner-left {
/*    float: right;*/
}
.gaming-desktop-laptop-banner {
    background-color: #0A82AF;
    background-image: url(../img/desktops-and-laptops.png);
}
.professional-workstation-banner {
    background-color: #2A2A2A;
    background-image: url(../img/HD80.png);
}

@media screen and (max-width:1110px) {
    .homepage-subsection-banner-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .subsection-banner-inner-left {
        float: none;
    }
}

@media screen and (max-width:530px) {
    .gaming-desktop-laptop-banner, .professional-workstation-banner {
        background-size: 150px;
        background-position: 95% 95%;
    }
    .professional-workstation-banner {
        background-position: right 95%;
    }
}
/******************************
**
**CUSTOM PC SUBSECTION BANNERS
**
*******************************/

.custom-gaming-enthusiast-banner, .custom-home-office-banner, .custom-laptop-banner {
    width: 100%;
    background-repeat: no-repeat;
}
.custom-gaming-enthusiast-banner {
    background-color: #262626;
    background-image: url("../img/PC/GX6/gx6-category-thumbnail.png");
    background-size: 205px;
    background-position: 100% 50%;
}
.custom-home-office-banner {
    background-color: #0A82AF;
    background-image: url("../img/PC/mx5/mx5-angle-500.png");
    background-size: 205px;
    background-position: 100% 25%;
}
.custom-laptop-banner {
    background-color: #262626;
    background-image: url("../img/PC/laptops/t15/T15-front-angle-left-500.png");
    background-size: 250px;
    background-position: 95% 35%;
}

@media screen and (max-width:500px) {
.custom-gaming-enthusiast-banner, .custom-home-office-banner, .custom-laptop-banner {
    background-size: 150px;
    background-position: bottom right;
}
}
/***********************
**
**WORKSTATION PCs
**
************************/

.desktop-workstations-banner, .gpu-computing-banner, .mobile-workstations-banner {
    width: 100%;
    background-repeat: no-repeat;
}
.desktop-workstations-banner {
    background-color: #0A82AF;
    background-image: url("../img/PC/GX6/gx6-halflight-500.png");
    background-size: 245px;
    background-position: 100% 50%;
}
.gpu-computing-banner {
    background-color: #2A2A2A;
    background-image: url(../img/PC/G480/promagix-g480-angle-shop-500.png);
    background-size: 300px;
	background-position: 95% 60%;
}
.mobile-workstations-banner {
    background-color: #0A82AF;
    background-image: url(../img/category-thumbnails/signature17-category-thumbnail.png);
    background-size: 250px;
    background-position: 104% 55%;;
}

@media screen and (max-width:1300px) {
.desktop-workstations-banner, .gpu-computing-banner, .mobile-workstations-banner {
    background-size: 150px;
    background-position: 95% bottom;
}
}
/**************************
**
** WIZARD STYLES
**
***************************/
.buy-now-buttons {
    border: none;
    color: #FFF;
    font-family: 'roboto', 'arial', sans-serif;
    border-radius: 4px;
    padding: .5em 2em;
    font-size: 1.5em;
    max-width: 300px;
    width: 100%;
    text-transform: uppercase;
}
.buy-now-button-primary {
    background: #3086AB;
}
.buy-now-button-primary:hover {
    background: #063950;
}
.buy-now-button-secondary {
    background: #536a69;
}
.buy-now-button-secondary:hover {
    background: #262626;
}
.buy-now-small {
    font-size: 1em;
    margin-bottom: 1em;
}
.wizdd {
    width: 100%;
}
.wiz-title {
    text-transform: capitalize;
    font-weight: bold;
    color: #2a2a2a;
    margin-bottom: .8em;
}
h1.wiz-title {
    font-size: 2.5em;
}
h2.wiz-title {
    font-size: 1.8em;
    margin-top: 1em;
}
h3.wiz-title {
 margin-top 1em;
}
td a[alt="Details"] {
    display: block;
    float: right;
    position: absolute;
    right: -20px;
    top: 0;
}
.wiz-award {
    padding: .5em;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.wiz-award-image {
    max-width: 150px;
    margin-right: 2em;
}
.wiz-award-text {
    font-style: italic;
    color: #2a2a2a;
}
.wiz-prefooter-content {
    background: #F2F2F2;
    padding: 4em 0 2em 0;
    overflow: auto;
}
.wiz-prefooter-inner {
    max-width: 1170px;
    margin: 0 auto;
}
.wiz-specialty-parts {
}
.wiz-vm-difference {
}
.vm-difference-awards {
    display: inline-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.vm-difference-awards img {
    max-width: 100%;
}
.wiz-sale-banner {
    text-align: center;
    padding: 2rem 2rem 1rem 2rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.wiz-sale-banner h4, .wiz-sale-banner p {
    color: #fff;
}

@media screen and (max-width:1020px) {
.wiz-prefooter-content .wiz-title {
    margin-top: 1.5em;
}
.wiz-prefooter-content .product-img {
    max-width: 150px;
}
}

/***********************
**
** PROCESSOR LOGOS 
**
************************/
span[data-processor="intel"]:after {
    content: url('https://www.velocitymicro.com/img/intel-logo-25.png');
}
span[data-processor="amd"]:after {
    content: url('https://www.velocitymicro.com/img/amd-logo-25.png');
}
span[data-processor="both"]:after {
    content: url('https://www.velocitymicro.com/img/intel-amd-logo-25.png');
}
span[data-processor="intel"]:after, span[data-processor="amd"]:after, span[data-processor="both"]:after {
    max-width: 30px;
    margin-left: 15px;
    position: relative;
    bottom: -5px;
}
span[data-processor="intel"], span[data-processor="amd"] {
}
span[data-processor="both"] {
}

/***********************
** Customer testimonials
************************/
.testimonial-wrapper{
				display: grid;
				grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
				grid-gap:4rem;
			}
			.testimonial-card{
			}
			.testimonial-card img{
				max-width: 100%;
				width: 100%;
				max-height: 200px;
				object-fit: cover;
				background-color: #f2f2f2;
				margin-bottom: 2rem;
				border-radius: 3px;
			}
			.testimonial-card h4{
				font-weight: bold;
			}
			.testimonial-card a{
				color: #eee;
				background-color: #3086ab;
				padding: .5em 1em;
				border-radius: 3px;
				line-height: 2.5;
			}
			.testimonial-card a:hover{
				color: #fff;
				background-color: #063950;
			}


/*******************************
** Responsive Youtube Embed
********************************/
.embed-container { 
	position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; 
	margin: 6rem auto;
} 
.embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
}

/*******************************
** 2021 Category page redesign
********************************/
.product-grid a.btn, .product-specs a.btn{
	background-color: #008AFF;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	padding: 1em 2em;
	border-radius: 50px;
	font-size: .8em;
	font-weight: bold;
	align-self:center;
	letter-spacing: 1px;
}

.product-grid a.btn:hover, .product-specs a.btn:hover {
    background-color: #ffd400;
    color: #2a2a2a;
    transition: all .2s;
}

.product-specs a.btn{
	padding: .5em 2em;
	margin: 1em;
}

.product-specs a.btn img{
	width: 35px;
	height: auto;
	margin-right: 1.5em;
}

.product-grid{
	margin: 2rem auto;
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	column-gap:2rem;
	row-gap:2rem;
	font-size:.8em;
}

.product-grid .product{
	background-color:#f1f1f1;
	color:#333;
	display:flex;
	overflow:hidden;
	position:relative;
	flex-direction:column;
	text-align:center;
	z-index:0;
	border-radius:5px;
}

.product-grid .product h3{
	margin-bottom:.5em;
}

.product-grid .product-thumbnail{
	max-width:350px;
	width: 100%;
	align-self:center;
}

.product-grid .product-thumbnail img{
	max-width: 100%;
}

.product-grid .processor-images{
	display:flex;
	height:25px;
	position:absolute;
	top:1em;
	left:1em;
	z-index:10;
}

.product-grid .processor-images img{
	margin-right:.5em;
}

.product-grid .product-description{
	padding:.5rem 2rem 1rem 2rem;
}

.product-grid .config-buttons{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin:auto;
}

.product-grid .config-buttons .config-alt{
	margin: 1em .5em;
}

.product-grid .config-buttons .config-notify{
	background-color: transparent;
	border: 2px solid #008AFF;
	color: #008AFF;
}

.product-grid .config-buttons .config-notify:hover{
	border: 2px solid #ffd400;
}

.product-grid .config-buttons .btn{
	flex-basis: 130px;
}

.product-grid .product .learn-more{
	color:#9C9C9C;
	padding: 1em;
}

.product-grid .product .learn-more:hover{
	text-decoration: underline;
}

.product-grid .product .btn{
	margin-top:auto;
}

@media screen and (max-width:990px){
	.product-grid{
		grid-template-columns:1fr 1fr;
	}
}

@media screen and (max-width:520px){
	.product-grid{
		grid-template-columns:1fr;
	}
	
	.product-grid .product{
		height:auto;
	}
	
	.product-grid .product-thumbnail{
		position:absolute;
		width:200px;
		top: 2rem;
		left: 0;
	}
	
	.product-grid .product-description{
		margin-left:175px;
		margin-top:2rem;
		text-align:left;
	}
}

.award-grid, .customer-grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.award, .customer-grid .customer{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem;
}
.award img{
	max-width: 100px;
}

.customer-grid .customer img{
	max-width: 50px;
}

.category-boxes, .featured-spotlight{
	display:grid;
	grid-template-columns:1fr 1fr 1fr 1fr;
	column-gap:2rem;
	row-gap:2rem;
	margin: 2rem;
}

.featured-spotlight{
	grid-template-columns:1fr 1fr;
}

.category-boxes a.btn{
	background-color:#008AFF;
	text-decoration:none;
	color:#fff;
	text-transform:uppercase;
	padding:1em 2em;
	border-radius:50px;
	font-size:.6em;
	font-weight:bold;
	display:inline-block;
	letter-spacing: 1px;
}

.category-boxes a.btn:hover{
	background-color:#ffd400;
	color:#2a2a2a;
	transition:all .2s;
}

.category-item, .spotlight-item{
	display:flex;
	align-items:center;
	overflow:hidden;
	position:relative;
	height: 250px;
	background-color:#F2F2F2;
	padding:2rem;
	border-radius: 5px;
}

.category-item.dark{
	background-color: #06384f;
	color: #ebebeb;
}

.spotlight-item{
	height:350px;
	justify-content:center;
	height:auto;
}

.category-item img{
	max-width:300px;
	position:absolute;
	left:-70px;
	z-index:1;
}

.spotlight-item img{
	display:block;
	max-width:250px;
}

.category-item .text{
	z-index:5;
	margin-left:200px;
}

.spotlight-item .text{
	flex-basis:400px;
}

.category-item .title, .spotlight-item .title{
	font-size:1.5em;
}

.category-item p, .spotlight-item p{
	margin-bottom:.3em;
}

.category-item .btn, .spotlight-item .btn{
	margin-top:2em;
}



@media screen and (max-width:1700px){
	.category-boxes{
		grid-template-columns:repeat(4,450px);
		overflow-x:scroll;
		pointer-events:auto;
	}

	.cb-mobile-overlay{
		position:relative;
		pointer-events:none;
	}
	.cb-mobile-overlay::before{
		position:absolute;
		content:'';
		background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
		width:100px;
		top:0;
		right:1rem;
		bottom:0;
		z-index:10;
	} 
	.cb-mobile-overlay::after{
		content:url('/img/icons/icon-right-50-2a2a2a.png');
		position:absolute;
		top:50%;
		right:1rem;
		transform:translatey(-50%);
		z-index:15;
	}
}

@media screen and (max-width:1350px){
	.spotlight-item{
		height:auto;
	}
	.spotlight-item img{
		max-width:200px;
	}
}

@media screen and (max-width:1100px){
	.spotlight-item{
		flex-direction:column;
	}
	.spotlight-item .text{
		flex-basis:0;
	}
}

@media screen and (max-width:700px){
	.featured-spotlight{
		grid-template-columns:1fr;
		grid-template-rows:1fr 1fr;
	}

	.spotlight-item img{
		max-width:250px;
	}
}

@media screen and (max-width:500px){
	.category-item img{
		max-width:200px;
		left:-60px;
	}
	.category-item .text{
		margin-left:120px;
	}
}

.category-header{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 75% 50%;
	color: #ebebeb;
	position: relative;
}
.category-header .container{
	padding: 12rem 4rem;
	position: relative;
}
.category-header h1, .category-header p{
	max-width: 550px;
}
.category-header h1{
	font-size: 3em;
	margin-bottom: .5em;
}
.category-header p{}

@media screen and (max-width: 1000px){
	.category-header::before{
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,.3) 100%);
	}
}

@media screen and (max-width:690px){
	.category-header .container{
		padding: 12rem 4rem 6rem 4rem;
	}
}


/*******************************
** 2021 Product page redesign
********************************/
.hero-grid{
	display:grid;
	background-color:#2a2a2a;
	color:#ebebeb;
	grid-template-columns: 2rem 1fr 1fr 1fr 2rem;
	grid-template-rows: 2rem 1fr 1fr 1fr;
	margin-bottom: 4rem;
}

.hero-grid .bg-video{
	background-size:cover;
	background-repeat:no-repeat;
	background-position:50% 50%;
	grid-column: 1 / -1;
	grid-row: 1 / 4;
}

.hero-grid .title-text{
	text-align:center;
	grid-column:2 / 4;
	grid-row:2 / 4;
	display:flex;
	flex-direction:column;
	justify-content: center;
	max-width:690px;
	margin:auto auto 4rem auto;
}

.hero-grid .title-text h1{
	font-size:6em;
	font-weight:900;
}

.hero-grid .title-text p{
	margin-top: 1em;
}

.hero-grid .cta-area{
	text-align:center;
	grid-column:2 / 4;
	grid-row:4 / -1;
	margin:2rem auto;
	display:flex;
	flex-direction: column;
	justify-content: center;
}

.hero-grid .cta-area .configure-buttons{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	margin-top: 1em;
}

.hero-grid .cta-area .configure-buttons a.btn{
	margin:.5em;
}

.hero-grid a.btn{
	background-color: #008AFF;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	padding: 1em 2em;
	border-radius: 50px;
	font-size: .8em;
	font-weight: bold;
	align-self:center;
	letter-spacing: 1px;
}

.hero-grid a.btn:hover {
    background-color: #ffd400;
    color: #2a2a2a;
    transition: all .2s;
}

.hero-grid .product-thumbnail{
	display:block;
	width:100%;
	grid-column: 4 / -1;
	grid-row: 1 / -1;
	align-self:end;
}

@media screen and (max-width:1100px){
	.hero-grid{
		grid-template-columns:2rem 1fr 1fr 1fr 1fr 1fr 1fr 1fr 2rem;
		grid-template-rows: 1fr 1fr 1fr 1fr;
	}
	
	.hero-grid .bg-video{
		grid-row:1 / span 1;
	}
	
	.hero-grid .product-thumbnail{
		grid-column:4 / span 3;
		grid-row: 1 / 3;
	}
	
	.hero-grid .title-text{
		grid-column:3 / span 5;
		grid-row: 3 / 4;
		margin-bottom:0;
		margin:auto;
	}
	
	.hero-grid .cta-area{
		grid-column: 3 / span 5;
		grid-row: 4 / -1;
	}
}

@media screen and (max-width: 700px){
	.hero-grid .product-thumbnail{
		grid-column: 2 / span 7;
	}
}

@media screen and (max-width: 600px){
	.hero-grid .title-text{
		grid-column:2 / span 7;
	}
	
	.hero-grid .cta-area{
		grid-column: 2 / span 7;
	}
}

.product-description-block{
	max-width: 690px;
	margin: 12rem auto;
	text-align: center;
	padding: 0 2rem;
}

.product-description-block h2, .bread-block h2{
	margin-bottom: 1em;
}

.product-description-block p, .bread-block p{
	margin-bottom: 1em;
	line-height: 2;
}

.product-page-spotlight, .product-page-spotlight .product-description-block, .product-page-spotlight .spotlight-bg, .product-page-spotlight .spotlight-img{
	position: relative;
}

.product-page-spotlight{
	width: 100vw;
	display: grid;
	grid-template-columns: minmax(4rem, 1fr) 2fr 2fr minmax(4rem, 1fr);
	grid-template-rows:1fr 3fr 1fr;
	align-items: center;
	z-index: 1;
}

.product-page-spotlight .product-description-block{
	z-index: 20;
	color: #ebebeb;
	text-align: left;
	margin: 12rem auto;
	grid-column: 2/3;
	grid-row: 2/3;
}

.product-page-spotlight .spotlight-bg{
	z-index: 1;
	grid-column: 1/-1;
	grid-row: 2/3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-page-spotlight .spotlight-img{
	z-index: 10;
	margin: 0 auto;
	grid-column: 3/-1;
	grid-row: 1/-1;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width:1150px){
	.product-page-spotlight{
		grid-template-columns: 2rem 1fr 2rem;
		grid-template-rows: 4rem 1fr 2fr 1fr 4rem;
	}
	
	.product-page-spotlight .product-description-block{
		grid-row: 4/5;
		margin: 0 auto;
	}
	
	.product-page-spotlight .spotlight-bg{
		grid-row: 3/-1;
	}
	
	.product-page-spotlight .spotlight-img{
		grid-column: 1/-1;
		grid-row: 2/4;
	}
}

@media screen and (max-width:770px){
	.product-page-spotlight{
		grid-template-rows: 4rem 1fr 2fr 2fr 4rem;
	}
}

@media screen and (max-width:520px){
	.product-page-spotlight{
		grid-template-rows: 4rem 1fr 2fr 3fr 4rem;
	}
}

.lightbox{
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 2rem;
	margin: 6rem auto;
}

.lb-image{
	overflow:hidden;
	height: 250px;
	border-radius: 5px;
	position:relative;
	background:#f1f1f1;
	cursor: pointer;
}

.lb-image.w2{
	grid-column:span 2;
}

.lb-image.w3{
	grid-column:span 3;
}

.lb-image::after{
	content:'\f00e';
	color:#fff;
	font-family:'Font Awesome 5 Free';
	font-weight:900;
	font-size:100px;
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	opacity:0;
	transition: all 150ms ease;
}

.lb-image:hover, .lb-image:active{
	background:#2d2d2d;
}

.lb-image:hover::after, .lb-image:focus::after{
	opacity:1;
}

.lb-image:hover img, .lb-image:focus img{
	opacity:.3;
}

.lightbox img{
	display:block;
	object-fit:cover;
	width:100%;
	height:100%;
	position:relative;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	transition: all 150ms ease;
}

.lightbox-overlay{
	color:#ebebeb;
	text-decoration:none;
	font-size:35px;
	display:flex;
	background-color:rgba(0,0,0,.9);
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	visibility:hidden;
	z-index:100;
}

.lightbox-overlay::after{
	content:'\f410';
	font-family: 'font awesome 5 free';
	font-weight:900;
	display:block;
	position:fixed;
	top:1em;
	right:1em;
}

.lightbox-overlay:hover{
	color:#fff;
}

.lightbox-overlay img{
	margin:auto;
	padding:2rem;
	max-width:100%;
	max-height: 100%;
}

.lightbox-overlay.visible{
	visibility:visible;
	cursor: pointer;
}

@media screen and (max-width: 700px){
	.lightbox{
		grid-template-columns: 1fr 1fr;
	}
}

.pitch-block{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	grid-gap: 2rem;
	margin: 6rem auto;
}

.pitch-header, .pitch-block > a{
	grid-column: 1 / -1;
	align-self: center;
	margin: 1em auto 3rem auto;
	text-align: center;
}

.pitch-header h2, .pitch-header p{
	max-width: 690px;
	margin-bottom: 1em;
	line-height: 2;
}

.pitch-block .pitch{
	background-color:#f1f1f1;
	border-radius:5px;
	padding:2rem;
	text-align:center;
	display: grid;
	grid-template-rows:3fr 1fr;
	align-items: center;
	line-height: 2;
}

.pitch-block img{
	display:block;
	max-width:150px;
	max-height: 150px;
	margin: 0 auto;
	padding: 2rem;
}

.pitch-block h5{
	line-height: 2;
}

@media screen and (max-width: 1000px){
	.pitch-block .pitch{
		grid-template-rows: 2fr 1fr;
	}
}

@media screen and (max-width: 760px){
	.pitch-block{
		grid-template-columns: 1fr;
	}
	
	.pitch-block .pitch{
		text-align:left;
		display:grid;
		grid-template-columns:1fr 4fr;
		grid-template-rows: 1fr;
		grid-gap:2rem;
		align-items:center;
	}
	
	.pitch-block h5{
		margin-bottom: 0;
	}
	
	.pitch-block img{
		max-width:90px;
		margin:0;
	}
}

.bread-block{
	display: flex;
	padding:0 2rem;
	align-items: center;
	margin: 6rem auto;
}

.bread-block .text{
	max-width: 690px;
}

.bread-block img{
	display: block;
	max-width: 350px;
	margin-left: 4rem;
}

@media screen and (max-width:950px){
	.bread-block img{
		max-width: 200px;
	}
}

@media screen and (max-width: 670px){
	.bread-block{
		display: block;
	}
	.bread-block img{
		max-width: 200px;
		margin-left: 0;
	}
}

video{
	width: 100%;
	max-height: 100%;
}

.award-text-block, .pc-experience{
	margin: 10rem auto 2rem auto;
}

.award-text-block h1, .award-text-block h4, .award-text-block p{
	max-width: 550px;
	text-align: center;
	margin: 0 auto;
}

.award-text-block h1{
	margin-bottom: .5em;
	line-height: 1.2;
}

.award-text-block h4{
	margin-bottom: 1em;
	line-height: 1.5;
}

.award-text-block p{
	margin-bottom: 1em;
	line-height: 2;
}

.pc-experience{
	display: grid;
	grid-template-columns: 2rem 1fr 1fr 2rem;
	grid-template-rows: 2rem 1fr 2rem;
}

.product-specs{
	margin: 6rem auto;
	padding: 0 2rem;
}
.product-specs h2, .product-specs p{
	max-width: 690px;
	text-align: center;
	margin: 0 auto 1em auto;
}
.product-specs p{
	line-height: 2;
}
.product-specs table{
	max-width: 100%;
	width: 100%;
	border-collapse: separate;
	border-spacing: 3px;
}
.product-specs th, .product-specs td{
	padding: .8em;
}
.product-specs th{
	background-color:#2d2d2d;
	color:#ebebeb;
	text-align: right;
	border-radius: 5px 0px 0px 5px;
}
.product-specs td{
	background-color: #f1f1f1;
	text-align: left;
	border-radius: 0px 5px 5px 0px;
}
.product-specs table h3{
	margin: .5em 0;
	font-weight: bold;
}


.product-specs .product-options{
	display: grid;
	grid-template-columns: 50% 50%;
	grid-gap: 4rem;
	margin: 6rem auto;
}
.product-specs .product-options .option{}
.product-specs .thumbnail{
	background-color: #f1f1f1;
	border-radius: 5px;
	border: none;
	padding: 0;
	margin:3px 3px 0 3px; /* Match the table cell spacing */
	max-width: 100%;
	max-height: 250px;
	height: 100%;
}
.product-specs .thumbnail img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.product-specs .buttons{
	display: flex;
	justify-content: center;
	margin-top: 1rem;
	flex-wrap: wrap;
}
.product-specs .buttons .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: .6em;
	padding-bottom: .5em;
}

@media screen and (max-width:850px){
	.product-specs .product-options{
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
		grid-gap: 10rem;
	}
	.product-specs .product-options .option{
		display: grid;
		grid-template-columns: 1fr 2fr;
		grid-template-rows: auto auto;
		grid-gap: 2rem;
	}
	.product-specs .thumbnail{
		grid-column: 1 / span 1;
		grid-row: 1 / span 1;
		margin: 0;
	}
	.product-specs table{
		grid-column: 2 / span 1;
		grid-row: 1 / span 1;
	}
	.product-specs .buttons{
		grid-column: 1 / -1;
		grid-row: 2 /span 1;
		margin: 0;
	}
}

@media screen and (max-width:600px){
	.product-specs .product-options .option{
		grid-template-columns: 1fr;
		grid-template-rows: 200px auto auto;
	}
	.product-specs .thumbnail{
		grid-column: 1 / -1;
		grid-row: 1 / span 1;
	}
	.product-specs table{
		grid-column: 1 / -1;
		grid-row: 2 / span 1;
	}
	.product-specs .buttons{
		grid-row: 3 / span 1;
	}
}

.product-cta{
	display: grid;
	grid-template-columns: 4rem 1fr 1fr 4rem;
	grid-template-rows: 24rem 36rem 24rem;
	margin-top: -25rem;
	position: relative;
	z-index: 30;
}
.product-cta::before{
	content: '';
	display: block;
	background-color: #2d2d2d;
	grid-column: 1 / -1;
	grid-row: 2 / span 1;
}
.product-cta img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	grid-column: 1 / span 2;
	grid-row: 1 / -1;
}
.product-cta .text{
	grid-column: 3 / span 1;
	grid-row: 2 / span 1;
	align-self: center;
	color: #ebebeb;
	max-width: 550px;
}

.product-cta h1{
	font-size: 4em;
	margin-bottom: .5em;
}

.product-cta p{
	line-height: 2;
	margin-bottom: 1em;
}
.product-cta .buttons{}

.product-cta a.btn, .product-page-testimonial .buttons a.btn, .product-description-block a.btn, .product-specs a.btn{
	background-color: #008AFF;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	padding: 1em 2em;
	border-radius: 50px;
	font-size: .8em;
	font-weight: bold;
	align-self:center;
	letter-spacing: 1px;
	margin-right: 2em;
	border: 2px solid #008AFF; 
	margin-top: 1em;
}

.product-cta a.btn:hover, .product-page-testimonial .buttons a.btn:hover, .product-description-block a.btn:hover, .product-specs a.btn:hover{
	background-color: #ffd400;
	color: #2a2a2a;
	transition: all .2s;
	border: 2px solid #ffd400;
}

.product-cta a.ghost-btn, .product-page-testimonial .buttons a.ghost-btn, .product-description-block a.ghost-btn, .product-specs a.ghost-btn{
	background-color: transparent;
}
.product-description-block a.ghost-btn, .product-specs a.ghost-btn{
	color: #008AFF;
}
.product-specs a.ghost-btn{
	display: block;
	max-width: 250px;
	margin: 1em auto;
}

@media screen and (max-width:840px){
	.product-cta{
		grid-template-columns: 4rem 1fr 4rem;
		grid-template-rows: 12rem 2fr 1fr 4rem;
		margin-top: -13rem;
	}
	.product-cta::before{
		grid-row: 2 / -1;
	}
	.product-cta img{
		grid-column: 2 / span 1;
		grid-row: 1 / span 2;
	}
	.product-cta .text{
		grid-column: 2 / span 1;
		grid-row: 3 / span 1;
	}
}

@media screen and (max-width:550px){
	.product-cta{
		grid-template-rows: 6rem 1fr 1fr 4rem;
		margin-top: -6.6rem;
	}
}

.product-page-testimonial{
	padding: 6rem 2rem;
	background-color: #f2f2f2;
}
.product-page-testimonial .container{
	display: flex;
	align-items: center;
}
.product-page-testimonial .testimonial{
	display: flex;
	align-items: center;
}
.product-page-testimonial .testimonial img{
	display: block;
	margin-right: 4rem;
	max-width: 200px;
}
.product-page-testimonial .product-thumbnail{
	margin-left: 2rem;
}
.product-page-testimonial .product-thumbnail img{
	max-width: 450px;
	max-height: 100%;
	object-fit: contain;
}
.product-page-testimonial blockquote{
	margin: 0 0 1em 0;
	font-size: 20px;
	border: none;
	padding: 0;
	line-height: 2;
	font-style: italic;
}
.product-page-testimonial small{
	font-weight: bold;
}
.product-page-testimonial .buttons{
	margin-top: 2rem;
}
.product-page-testimonial .buttons a.ghost-btn{
	color: #008AFF;
}

@media screen and (max-width: 900px){
	.product-page-testimonial .product-thumbnail{
		display: none;
	}
}
@media screen and (max-width: 610px){
	.product-page-testimonial .testimonial img{
		display: none;
	}
}

.product-page-logo-grid{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.product-page-logo-grid img{
	display: block;
	max-width: 100px;
	max-height: 100px;
	width: 100%;
	height: 100%;
	object-fit: contain;
	margin: 2rem;
}

@media screen and (max-width:1000px){
	.product-page-logo-grid img{
		max-width: 60px;
		max-height: 60px;
	}
}

.video-crop{
	max-height: 50vh;
	overflow: hidden;
}

video{
	width: 100%;
	max-height: 100%;
}

.bg-video{
	position: relative;
	overflow: hidden;
	z-index: 5;
}

.bg-video video{
	position: absolute;
	width: auto;
	height: 100%;
	top: 0;
	right: 0;
}

.hero-grid .product-thumbnail, .hero-grid .title-text{
	z-index: 10;
}

/* Return to top button */
a#return-to-top{
	z-index: 500;
}

/*******************************
** 2021 Solutions page redesign
********************************/
section.solutions-header{
	padding: 12rem 4rem;
	color: #ebebeb;
	background-size: cover;
	background-position: 75% 50%;
	background-repeat: no-repeat;
}
.solutions-header ol{
	margin-bottom: 1em;
}
.solutions-header h1{
	font-size: 3em;
	margin-bottom: 0.5em;
}
.solutions-header p{
	line-height: 2;
}

.solutions-header .anchor-links a.btn{
	padding: 1em 2em;
	background-color: #008AFF;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	border-radius: 50px;
	font-size: .8em;
	font-weight: bold;
	align-self: center;
	letter-spacing: 1px;
	margin-right: 1em;
	margin-top: 1em;
}
.solutions-header .anchor-links a.btn:hover{
	background-color: #ffd400;
	color: #2a2a2a;
	transition: all .2s;
}

@media screen and (max-width:690px){
	.solutions-header .container{
		flex-direction: column-reverse;
	}
	.solutions-header .text{
		margin-right: 0;
		margin-top: 2em;
		flex-basis: auto;
	}
}

.solutions-copy{
	padding: 12rem 4rem;
	text-align: center;
}
.solutions-copy h3{
	margin-bottom: .5em;
	font-weight: bold;
}
.solutions-copy p{
	margin-bottom: 1em;
	line-height: 2;
}

.solution-pc{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	position: relative;
}
.solution-pc.dark{
	color: #ebebeb;
}
.solution-pc .pc-img{
	grid-column: 1/2;
	grid-row: 1/-1;
	position: absolute;
	top:-25%;
	bottom: -25%;
	left: 0;
	right: 0;
	z-index: 15;
}
.solution-pc .bg-img{
	position: absolute;
	z-index: 1;
	grid-column: 1/-1;
	grid-row: 1/-1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.solution-pc .bg-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.solution-pc.alternate .pc-img{
	grid-column: 3/4;
}
.solution-pc .pc-img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 20;
}
.solution-pc .text{
	grid-column: 2/3;
	grid-row: 1/-1;
	text-align: center;
	padding: 6rem 0;
	position: relative;
	z-index: 20;
}
.solution-pc h2{
	font-size: 1em;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 1em;
}
.solution-pc h3{
	font-size: 3em;
	margin-bottom: .5em;
}
.solution-pc p{
	line-height: 2;
	margin-bottom: 1em;
}
.solution-pc .buttons{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.solution-pc a.btn{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .6em 2em .5em 1.5em;
	background-color: #008AFF;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	border-radius: 50px;
	font-size: .8em;
	font-weight: bold;
	align-self: center;
	letter-spacing: 1px;
	margin: 1em;
}
.solution-pc a.btn:hover{
	background-color: #ffd400;
	color: #2a2a2a;
	transition: all .2s;
}
.solution-pc .btn img{
	max-width: 30px;
	margin-right: 1em;
}

@media screen and (max-width:760px){
	.solution-pc{
		grid-template-columns: 1fr 5fr 1fr;
		grid-template-rows: minmax(150px, 350px) 3fr;
	}
	.solution-pc .pc-img, .solution-pc.alternate .pc-img{
		grid-column: 2/3;
		grid-row: 1/2;
	}
	.solution-pc .text{
		grid-column: 2/3;
		grid-row: 2/3;
	}
}

section.testimonial{
	background-color: #f2f2f2;
	padding: 0 4rem;
	text-align: center;
}
.testimonial .content-block{
	max-width: 690px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 0;
	margin-top: 1rem;
}
.testimonial .content-block img{
	margin-right: 3em;
	max-width: 150px;
}
.testimonial q{
	font-size: 1.2em;
	font-style: italic;
	position: relative;
}
.testimonial q::before{
	font-size: 7em;
	position: absolute;
	opacity: .1;
	top: -55px;
	left: -30px;
	z-index: 500;
}
.testimonial p{
	margin-top: 1em;
	margin-bottom: 0;
}

section.faq{
	padding: 12rem 0;
}
.faq h2{
	text-align: center;
}
.faq h4{
	font-weight: bold;
	margin-top: 2em;
	margin-bottom: 1em;
}
.faq p{
	margin-bottom: 1em;
}

section.meta-sales{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin-bottom: -3rem;
}
.meta-sales .meta-section{
	padding: 6rem;
	color: #ebebeb;
}
.meta-sales .meta-section:hover{
	color: #fff;
}
.meta-section h2{
	margin-bottom: 0.5em;
}
.meta-section p{
	margin-bottom: 1em;
}
.meta-section p:last-of-type{
	margin-bottom: 0;
}

@media screen and (max-width:860px){
	section.meta-sales{
		grid-template-columns: 1fr 1fr;
		grid-template-rows: repeat(auto, 1fr);
	}
	.meta-sales .meta-section:first-of-type{
		grid-column: 1/-1;
	}
}
@media screen and (max-width:600px){
	section.meta-sales{
		grid-template-columns: 1fr;
	}
}


/*******************************
** Footer/Searchbar changes
********************************/

.sticky-footer-wrapper .main-footer{
	height: auto;
}
.sticky-footer-wrapper, .global-wrapper::after{
	height: auto;
}
.sticky-footer-wrapper .copyright-area{
	height: auto;
}
.main-footer-links-list > li > a, .main-footer-links-list-lg > li > a{
	padding: .5em 1em;
}
.main-footer-links-list-lg > li{
	margin-right: 0;
}
.main-footer-links-list, .main-footer-links-list-lg{
	margin: 2em 0 1em 0;
}
.main-footer-social-list li > a{
	padding: .5em;
}
.main-footer-social-list > li{
	margin-right:0;
}
.main-footer-social-list{
	margin: 1em 0;
}
.sticky-footer-wrapper .copyright-area{
	padding: 2em 0;
}
#site-search-bar{
	margin:2em 0 1em auto;
}
#global-wrapper{
	margin-bottom: 0;
}