@charset "utf-8";
/* CSS Document */

.tiles-row {
	height: 500px;
	display: flex;
	position: relative;
}

.tiles-row.opened .tile-col {
	max-width: 9999px;
}

.tile-col {
	height: 100%;
	
	-webkit-transition: all .5s ease-in-out .25s;
	-moz-transition: all .5s ease-in-out .25s;
	transition: all .5s ease-in-out .25s;
}

.title-col:focus, .tile:focus {
	outline: none;
}

.tile {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background: #242729;
	border-top: 7px solid #53c0e9;
	padding: 60px 30px;
	color: #fff;
	text-align: center;
}

.tile:after {
	content: '';
	display: block;
	background: rgba(0,82,137,.8);
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 1;
	opacity: 1;
	visibility: visible;
}

.tile:hover:after {
	background: rgba(0,82,137,.95);
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	transition: all .25s ease;
}

.active .tile:after {
	display: none;
}

.tile-col.active {
	pointer-events: none;
}
.bg-img-dynamic {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	
	-webkit-transition: opacity .25s ease;
	-moz-transition: opacity .25s ease;
	transition: opacity .25s ease;
}

.tile-col.active .bg-img-dynamic {
	width: 25%;
	left: 0px;
	top: 0px;
	bottom: 0px;
}

.animating .bg-img-dynamic {
	display: none;
}

.tile .inner {
	position: relative;
	z-index: 2;
}

.active .tile .inner {
	display: none;
}

.opened .tile .desc{
	display: none;
}

.innerExpanded {
	display: none;
	position: absolute;
	left: 25%;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 75%;
	text-align: left;
	padding: 60px 30px;
}

.active .tile .innerExpanded {
	display: block;
}

.innerExpanded .expandedImg {
	width: 25%;
	background-size: cover;
	float: left;
}

.tile .title .h5 {
	font-size: 24px;
	line-height: 28px;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 60px;
}

.tile .desc {
	opacity: 0;
	-webkit-transform: translateY(60px);
	-moz-transform: translateY(60px);
	transform: translateY(60px);
	
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	transition: all .25s ease;
}

.tile:hover .desc {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

.tile-col.active .tile .desc {
	display: none;
}

.tile .expand {
	height: 31px;
	line-height: 31px;
	color: #53c0e9;
	background-image: url(../images/expand.png);
	background-size: 31px 31px;
	background-repeat: no-repeat;
	background-position: left top;
	padding-left: 45px;
	display: block;
	margin: 20px auto;
	width: 100px;
}

.tile-col.active {
	z-index: 6;
}

.tile-close {
	position: absolute;
	top: 20px;
	right: 30px;
	width: 30px;
	height: 30px;
	opacity: 0;
	visibility: hidden;
	z-index: 20;
	cursor: pointer;
	
	-webkit-transition: opacity .25s ease;
	-moz-transition: opacity .25s ease;
	transition: opacity .25s ease;
}

.tile-close:before, .tile-close:after {
	content: '';
	display: block;
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -1px;
	background: #fff;
	
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	
	-webkit-transition: background .25s ease;
	-moz-transition: background .25s ease;
	transition: background .25s ease;
}

.tile-close:before {	
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.tile-close:after {	
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.tile-close:hover:before, .tile-close:hover:after {
	background: #53c0e9;
}

.tiles-row.opened .tile-close {
	opacity: 1;
	visibility: visible;
}

.tiles-row.animating .tile-close {
	opacity: 0 !important;
	visibility: hidden !important;
}

.tile-animate-fltr {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background: #005289;
	display: none;
	z-index: 20;
}

.animating .tile-animate-fltr {
	display: block;
}

.nav-arrow {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	display: none;
	z-index: 20;
	border-top: 2px solid #f6f6f6;
	border-left: 2px solid #f6f6f6;
	cursor: pointer;
	pointer-events: none;
}

.nav-arrow.left {
	left: -80px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.nav-arrow.right {
	right: -80px;
	
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}

.opened .nav-arrow {display: block;}
.animating .nav-arrow {display: none !important;}

@media screen and (max-width: 1200px) {
	.tile .title .h5 {
		font-size: 20px;
		line-height: 24px;
	}
}

@media screen and (max-width: 991px) {
	
	.tiles-row {
		height: auto;
		display: block;
	}
	
	.tile .desc {
		opacity: 1;
		visibility: visible;
		
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	
	.tile:hover:after {
		background: rgba(0,82,137,.8);
	}
	
	.tile .expand {
		height: 16px;
		line-height: 16px;
		color: #53c0e9;
		background-image: url(../images/down-arrow.png);
		background-size: 20px 11px;
		background-repeat: no-repeat;
		background-position: left 1px;
		padding-left: 27px;
		display: block;
		margin: 20px auto;
		width: 82px;
	}
	
	.mobileActive .tile .expand {
		background-image: url(../images/up-arrow.png);
	}
	
	.tile .innerExpanded {
		position: relative;
		width: calc(100% + 60px);
		left: 0px;
		bottom: 0px;
		height: 0px;
		margin-top: 40px;
		margin-left: -30px;
		background: #242729;
		overflow: hidden;
		
		-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
		transition: all .5s ease;
	}
	
	.mobileActive .tile {
		padding-bottom: 0px;
	}
	
	.mobileActive .tile .innerExpanded {
		display: block;
		height: auto;
		z-index: 10;
	}
	
	.tile .title .h5 {
		margin-bottom: 30px;
		font-size: 24px;
		line-height: 28px;
	}
}
/*
     FILE ARCHIVED ON 21:25:39 Oct 10, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 01:17:23 Dec 14, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.784
  exclusion.robots: 0.032
  exclusion.robots.policy: 0.014
  esindex: 0.013
  cdx.remote: 26.274
  LoadShardBlock: 219.923 (3)
  PetaboxLoader3.datanode: 257.193 (5)
  load_resource: 135.247
  PetaboxLoader3.resolve: 75.594
  loaddict: 25.789
*/