@font-face {
	font-family: 'Gotham-Book';
	src: url('./fonts/Gotham-Book.woff') format('woff');
}

@font-face {
	font-family: 'Gotham-Med';
	src: url('./fonts/Gotham-Medium.woff') format('woff');
}

@font-face {
	font-family: 'Gotham-Book-Regular';
	src: url('./fonts/Gotham-Book-reg.woff') format('woff');
}

.dev {
	display: none;
}

* {
	padding: 0;
	margin: 0;
}

body {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


/*** Animation ****/

.slide-left {
	opacity: 0;
	-webkit-transform: translateX(-50px);
	-ms-transform: translateX(-50px);
	transform: translateX(-50px);
	overflow: hidden;
}

.slide-left.visible {
	-webkit-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	-o-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	transition: all 5s cubic-bezier(.19, 1, .22, 1);
	-webkit-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform: translateX(0px);
	-webkit-transition-delay: 0.25s;
	-o-transition-delay: 0.25s;
	transition-delay: 0.25s;
	opacity: 1;
}

.slide-right {
	opacity: 0;
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
	overflow: auto;
}

.slide-right.visible {
	-webkit-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	-o-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	transition: all 5s cubic-bezier(.19, 1, .22, 1);
	-webkit-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform: translateX(0px);
	-webkit-transition-delay: 0.25s;
	-o-transition-delay: 0.25s;
	transition-delay: 0.25s;
	opacity: 1;
}

.fade-in {
	opacity: 0;
}

.fade-in.visible {
	-webkit-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	-o-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	transition: all 5s cubic-bezier(.19, 1, .22, 1);
	opacity: 1;
	-webkit-transition-delay: 0.25s;
	-o-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.load-one {
	opacity: 0;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
}

.load-one.visible {
	-webkit-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	-o-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	transition: all 5s cubic-bezier(.19, 1, .22, 1);
	opacity: 1;
	-webkit-transition-delay: 0.15s;
	-o-transition-delay: 0.15s;
	transition-delay: 0.15s;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.load-two {
	opacity: 0;
	-webkit-transform: translateY(60px);
	-ms-transform: translateY(60px);
	transform: translateY(60px);
}

.load-two.visible {
	-webkit-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	-o-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	transition: all 5s cubic-bezier(.19, 1, .22, 1);
	opacity: 1;
	-webkit-transition-delay: 0.20;
	-o-transition-delay: 0.20s;
	transition-delay: 0.20s;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.load-three {
	opacity: 0;
	-webkit-transform: translateY(70px);
	-ms-transform: translateY(70px);
	transform: translateY(70px);
}

.load-three.visible {
	-webkit-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	-o-transition: all 5s cubic-bezier(.19, 1, .22, 1);
	transition: all 5s cubic-bezier(.19, 1, .22, 1);
	opacity: 1;
	-webkit-transition-delay: 0.25s;
	-o-transition-delay: 0.25s;
	transition-delay: 0.25s;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

@media (min-width: 768px) and (max-width: 1024px) {
	.flex-show {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important;
		-webkit-box-orient: horizontal!important;
		-webkit-box-direction: normal!important;
		-ms-flex-direction: row!important;
		flex-direction: row!important;
	}
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
}

@media only screen and (max-width: 768px) {
	.row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

@media only screen and (max-width: 768px) {
	.flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.img-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.cta-item {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.white {
	color: #ffffff;
}

.cf-blue-bg {
	background-color: #E7F3FF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cf-white-bg {
	background-color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.flex-end {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.logo-right {
	padding-top: 19px;
	padding-right: 65px;
}

@media only screen and (max-width: 767px) {
	.logo-right {
		padding-top: 19px;
		padding-right: 0px;
	}
}

.logo-header {
	width: 128px;
	height: 48px;
}

.full-contianer {
	width: 100%;
	height: 80px;
	background-color: #ffffff;
}

@media only screen and (max-width: 767px) {
	.full-contianer {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.container-banner {
	width: 100%;
	height: calc(100vh - 80px);
}

@media only screen and (max-width: 767px) {
	.container-banner {
		background-color: rgba(0, 0, 70, 0.5);
	}
}

.banner-img {
	background-image: url('./imgs/HEADER.png'), -o-linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
	background-image: url('./imgs/HEADER.png'), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 1)));
	background-image: url('./imgs/HEADER.png'), linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
	display: block;
}

@media only screen and (max-width: 767px) {
	.banner-img {
		position: relative;
	}
}

.social-bar-hoz {
	right: 0;
	width: 155px;
	position: absolute;
	bottom: 0;
	background-color: #C1D300;
	padding: 14px 0 14px 0;
}

@media only screen and (min-width: 767px) {
	.social-bar-hoz {
		display: none;
	}
}

.social-bar-hoz .social-row {
	margin-left: 19px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.social-bar-hoz .social-row .icon img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.social-bar-hoz .social-row .icont img {
	width: 24px;
	height: 20px;
	margin-right: 12px;
}

.message-box {
	position: absolute;
	width: calc(55% - 75px);
	background-color: rgba(0, 0, 70, 0.5);
	left: 75px;
	bottom: 0;
}

@media only screen and (max-width:1420px) {
	.message-box {
		height: calc(100vh - 20%)
	}
}

@media only screen and (max-width: 767px) {
	.message-box {
		width: 100%;
		top: 0;
		left: 0;
		right: 0;
		bottom: 55px;
	}
}

.message-box .para-title {
	color: #C1D300;
	display: block;
	font-size: 52px;
	padding-top: 116px;
	padding-left: 90px;
	font-family: abril-display, serif;
	font-weight: 600;
	font-style: normal;
	padding-right: 62px;
}

@media only screen and (max-width:1420px) {
	.message-box .para-title {
		padding-top: calc(100% - 90%);
		font-size: 2em;
	}
}

@media only screen and (max-width: 1109px) {
	.message-box .para-title {
		font-size: 30px;
		padding-top: 40px;
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media only screen and (max-width: 900px) {
	.message-box .para-title {
		padding-left: 22px;
		padding-right: 26px;
		font-size: 34px;
		line-height: 42px;
		padding-top: 10%;
	}
}

@media only screen and (max-width: 767px) {
	.flex-reverse {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}

.d-flex {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	max-width: 55%;
	width: 55%;
}

.d-flex2 {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	max-width: 45%;
	width: 45%;
}

@media only screen and (max-width: 768px) {
	.d-flex {
		width: 100%;
		max-width: 100%;
	}
	.d-flex2 {
		max-width: 100%;
		width: 100%;
	}
}

.message-box .para {
	padding-right: 62px;
	font-family: 'Gotham-Book-Regular';
	font-weight: 500;
	padding-left: 90px;
	display: block;
	font-size: 18px;
	line-height: 28px;
}

@media only screen and (max-width: 1109px) {
	.message-box .para {
		padding-left: 30px;
		padding-right: 30px;
		font-size: 16px;
	}
}

@media only screen and (max-width: 767px) {
	.message-box .para {
		padding-left: 22px;
		padding-right: 26px;
		line-height: 24px;
		font-size: 16px;
		padding-right: 26px;
		width: 280px;
	}
}

.message-box .para-two {
	padding-bottom: 10%;
}

@media only screen and (max-width: 1109px) {
	.message-box .para-two {
		padding-bottom: 55px;
	}
}

.alink {
	text-decoration: none;
	color: #000046;
}

.alink-doc {
	text-decoration: none;
	color: #C1D300;
}

.pt40 {
	padding-top: 40px;
}

@media only screen and (max-width: 767px) {
	.pt40 {
		padding-top: 10px;
	}
}

.pb30 {
	padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
	.pb30 {
		padding-bottom: 10px;
	}
}

.jc {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.img-column {
	width: 100%;
	height: 100%;
}

.img-column img {
	width: 100%;
	height: 100%;
	display: block;
}

.text-container {
	padding-left: 92px;
	padding-right: 138px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.text-container {
		padding: 10%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.text-container {
		padding: 10%;
	}
}

@media only screen and (max-width: 767px) {
	.text-container {
		padding-top: 56px;
		padding-left: 22px;
		padding-right: 22px;
		padding-bottom: 32px;
	}
	.row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.text-container h2 {
	font-size: 48px;
	line-height: 56px;
	padding-bottom: 20px;
	font-family: abril-display, serif;
	font-weight: 600;
	font-style: normal;
	color: #000046;
}

@media only screen and (max-width: 767px) {
	.text-container h2 {
		/*         max-width: 200px; */
		padding-bottom: 32px;
		font-size: 34px;
		line-height: 42px;
	}
}

.text-container p {
	font-size: 18px;
	line-height: 28px;
	font-family: 'Gotham-Book';
	font-weight: 500;
	font-style: normal;
	padding-bottom: 55px;
	color: #323232;
}

@media only screen and (max-width: 767px) {
	.text-container p {
		padding-bottom: 50px;
		font-size: 16px;
		line-height: 24px;
	}
}

.button-cta {
	cursor: pointer;
	text-align: center;
	width: 200px;
	padding-left: 14px;
	padding-right: 14px;
	padding-top: 14px;
	padding-bottom: 14px;
	background-color: #C0D500;
	position: relative;
}

.btn-text {
	font-family: 'Gotham-Med';
	font-weight: 500;
	font-style: normal;
	z-index: 2;
	display: block;
	position: relative;
}

.button-cta:hover {
	color: #C0D500!important;
	-webkit-transition: .5s ease-in;
	-o-transition: .5s ease-in;
	transition: .5s ease-in;
}

.btn-cta-gtc:hover {
	color: #C0D500;
	-webkit-transition: .5s ease-in;
	-o-transition: .5s ease-in;
	transition: .5s ease-in;
}

.button-cta:hover .anim-line {
	width: 100%;
}

.btn-ctl:hover {
	color: #C0D500;
	-webkit-transition: .5s ease-in;
	-o-transition: .5s ease-in;
	transition: .5s ease-in;
}

.btn-ctl:hover .anim-line {
	width: 100%;
}

.btn-cta-gtc:hover .anim-line {
	width: 100%;
}

.anim-line {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000046;
	overflow: hidden;
	width: 0;
	height: 100%;
	-webkit-transition: .42s ease;
	-o-transition: .42s ease;
	transition: .42s ease;
	/* transition: transform .42s cubic-bezier(.645, .045, .355, 1); */
}

.full-width-space {
	text-align: center;
	padding-top: 90px;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.full-width-space {
		padding-top: 56px;
	}
}

.full-width-space .title {
	padding-bottom: 20px;
}

@media only screen and (max-width: 767px) {
	.full-width-space .title {
		padding-bottom: 38px;
	}
}

.full-width-space .title h2 {
	color: #000046;
	font-size: 48px;
	line-height: 56px;
	font-family: abril-display, serif;
	font-weight: 600;
	font-style: normal;
}

@media only screen and (max-width: 767px) {
	.full-width-space .title h2 {
		font-size: 34px;
		line-height: 42px;
		padding-left: 54px;
		padding-right: 54px;
	}
}

.full-width-space .para-sub {
	font-size: 18px;
	line-height: 26px;
	padding-bottom: 84px;
	font-family: 'Gotham-Book';
	font-weight: 500;
	font-style: normal;
	color: #323232;
}

@media only screen and (max-width: 767px) {
	.full-width-space .para-sub {
		line-height: 24px;
		font-size: 16px;
		padding-left: 22px;
		padding-right: 22px;
		padding-bottom: 64px;
	}
}

.full-width-space .events-img {
	max-width: 919px;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 80px;
	display: block;
}

.full-width-space .events-img::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 200px;
	background-color: #E7F3FF;
	z-index: -1;
}

.full-width-space .events-img img {
	background-size: contain;
	width: 100%;
}

.img-gallery-row {
	padding-bottom: 94px;
}

@media only screen and (max-width: 767px) {
	.img-gallery-row {
		padding-bottom: 0px;
	}
}

.img-gallery-row .img-item {
	width: 100%;
	height: 100%;
}

.img-gallery-row .img-item img {
	width: 100%;
	/* max-height: 272px; */
}

.key-section {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 66px;
	max-width: 1110px;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.key-section {
		padding-bottom: 20px;
	}
}

.key-section .heading-paceholder {
	text-align: center;
	padding-bottom: 65px;
}

.key-section .heading-paceholder h2 {
	font-size: 48px;
	line-height: 56px;
	font-family: abril-display, serif;
	font-weight: 600;
	font-style: normal;
	padding-bottom: 66px;
	color: #000046;
}

@media only screen and (max-width: 767px) {
	.key-section .heading-paceholder h2 {
		font-size: 34px;
		line-height: 42px;
		padding-top: 50px;
		padding-bottom: 40px;
	}
}

.key-section .heading-paceholder .sub-para {
	font-family: 'Gotham-Med';
	font-weight: 500;
	font-style: normal;
	font-size: 36px;
	line-height: 36px;
	text-transform: uppercase;
	color: #000046;
}

@media only screen and (max-width: 767px) {
	.key-section .heading-paceholder .sub-para {
		font-size: 28px;
		line-height: 28px;
	}
}

.key-section .cta-item {
	padding-left: 10%;
	padding-right: 10%;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.key-section .cta-item {
		padding-left: 5%;
		padding-right: 5%;
	}
}

@media only screen and (max-width: 767px) {
	.key-section .cta-item {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 55px;
	}
}

.key-section .cta-item .left-img {
	width: 220px;
	height: 66px;
	margin: 0 auto;
	/* padding-bottom: 40px; */
}

.key-section .cta-item .right-img {
	width: 70px;
	height: 96px;
	margin: 0 auto;
}

.key-section .cta-item .image-hold {
	height: 100px;
	text-align: left;
}

@media only screen and (max-width: 767px) {
	.key-section .cta-item .image-hold {
		height: auto;
	}
}

.cta-item .para-breif {
	padding-top: 33px;
	text-align: left;
	color: #323232;
}

@media only screen and (max-width: 767px) {
	.cta-item .para-breif {
		padding-top: 20px;
	}
}

.cta-item .para-breif h3 {
	padding-bottom: 34px;
	font-family: 'Gotham-Med';
	font-weight: 500;
	font-style: normal;
	color: #000046;
}

@media only screen and (max-width: 767px) {
	.cta-item .para-breif h3 {
		font-size: 18px;
		line-height: 18px;
		padding-bottom: 20px;
	}
}

.cta-item .para-breif p {
	color: #323232;
	height: 100px;
	font-family: 'Gotham-Book';
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	padding-bottom: 24px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.cta-item .para-breif p {
		height: 120px;
	}
}

@media only screen and (max-width: 767px) {
	.cta-item .para-breif p {
		height: auto;
		padding-bottom: 38px;
	}
}

.cta-item .btn-ctl {
	cursor: pointer;
	font-family: 'Gotham-Med';
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	line-height: 14px;
	width: 130px;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: #C0D500;
	position: relative;
}

.pt90 {
	padding-top: 90px;
}

.pt118 {
	padding-top: 118px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.pt118 {
		padding-top: 5%;
	}
}

.london-container {
	padding-bottom: 120px;
	max-width: 1110px;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.container-row {
		display: block;
	}
	.london-container {
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 110px;
	}
}

.london-container .sub-title {
	padding-top: 64px;
}

.london-container .sub-title h2 {
	font-family: 'Gotham-Med';
	font-weight: 500;
	font-style: normal;
	font-size: 36px;
	line-height: 36px;
	text-transform: uppercase;
	text-align: center;
	color: #000046;
}

@media only screen and (max-width: 767px) {
	.london-container .sub-title h2 {
		padding-top: 54px;
		font-size: 28px;
		line-height: 28px;
		padding-bottom: 60px;
	}
}

.the-three-row {
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.the-three-row {
		padding-left: 8%;
		padding-right: 8%;
	}
	.mr20t {
		margin-right: 20px;
	}
}
@media only screen and (max-width: 1024px) {
	.historic-row .row{
		display: block;
	}
	.historic-row .row > div{
		max-width: 100%;
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.the-three-row {
		padding-top: 0px;
		display: block;
	}
}

.the-three-row .container-info .title {
	font-size: 18px;
	line-height: 18px;
	color: #000046;
	font-family: 'Gotham-Med';
	font-weight: 500;
	font-style: normal;
	height: 40px;
	padding-bottom: 26px;
}

@media only screen and (max-width: 767px) {
	.the-three-row .container-info .title {
		padding-bottom: 40px;
		height: auto;
	}
}

.the-three-row .container-info .title h3 {
	font-size: 18px;
	line-height: 18px;
}

.the-three-row .container-info {
	max-width: 285px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.the-three-row .container-info {
		padding-top: 5%;
	}
}

@media only screen and (max-width: 767px) {
	.the-three-row .container-info {
		max-width: 100%;
		padding-bottom: 60px;
	}
}

.the-three-row .container-info .logo-here {
	height: 100px;
	padding-bottom: 18px;
}

@media only screen and (max-width: 767px) {
	.the-three-row .container-info .logo-here {
		padding-bottom: 15px;
	}
}

.the-three-row .container-info .logo-here img {
	height: 100%;
	display: block;
}

.btn-cta-gtc {
	cursor: pointer;
	font-family: 'Gotham-Med';
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	line-height: 14px;
	width: 130px;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: #C0D500;
	position: relative;
	text-align: center;
}

.the-three-row .container-info .description {
	font-family: 'Gotham-Book';
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	height: 110px;
	color: #323232;
	max-width: 285px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.the-three-row .container-info .description {
		height: 120px;
		padding-bottom: 26px;
	}
}

@media only screen and (max-width: 767px) {
	.the-three-row .container-info .description {
		height: auto;
		padding-bottom: 40px;
	}
}

.the-three-row .container-info .descriptionh {
	font-family: 'Gotham-Book';
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	height: 210px;
	max-width: 285px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.the-three-row .container-info .descriptionh {
		height: 210px;
		padding-bottom: 26px;
		line-height: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.the-three-row .container-info .descriptionh {
		height: auto;
		padding-bottom: 40px;
	}
}

.future-reading-area {
	background-color: #FAFAFA;
	text-align: center;
}

.future-reading-area::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 40%;
	background-color: #000046;
	z-index: 0;
}

.future-reading-area h3 {
	padding-top: 88px;
	color: #FFFFFF;
	font-size: 48px;
	line-height: 56px;
	z-index: 4;
	position: relative;
	font-family: abril-display, serif;
	font-weight: 600;
	font-style: normal;
}

@media only screen and (max-width: 767px) {
	.future-reading-area h3 {
		padding-top: 84px;
		font-size: 34px;
		line-height: 42px;
		padding-bottom: 105px;
	}
}

.three-column-cards::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 240px;
	background-color: #000046;
	z-index: 1;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.three-column-cards::before {
		height: 225px;
	}
}

.future-reading-area .three-column-cards {
	background-color: #FAFAFA;
	padding-top: 74px;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	padding-bottom: 77px;
	max-width: 1110px;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.future-reading-area .three-column-cards {
		background-color: #ffffff;
		display: block;
		padding-bottom: 40px;
		padding-top: 0px;
	}
}

.list-card {
	width: 350px;
	color: #000000;
	background-color: #ffffff;
	z-index: 4;
}

@media only screen and (max-width: 768px) {
	.list-card {
		width: 100%;
	}
}

.mr20 {
	margin-right: 20px;
}

.list-card:hover {
	-webkit-box-shadow: 10px 10px 21px 9px rgba(0, 0, 0, 0.11);
	box-shadow: 10px 10px 21px 9px rgba(0, 0, 0, 0.11);
	-webkit-transition: .45s ease-in;
	-o-transition: .45s ease-in;
	transition: .45s ease-in;
}

.list-card .card-holder img {
	width: 100%;
}

.list-card .card-holder {
	position: relative;
}

@media only screen and (max-width: 767px) {
	.list-card .card-holder {
		z-index: 4;
	}
}

.list-card .text-here {
	padding-left: 24px;
	padding-right: 24px;
	display: block;
}

hr {
	width: 90%;
	margin: 0 auto;
}

.list-card .card-holder .caption {
	font-family: 'Gotham-Med';
	text-align: left;
	font-weight: 500;
	font-style: normal;
	padding-top: 24px;
	height: 104px;
	font-size: 20px;
	line-height: 26px;
	position: absolute;
	max-width: 306px;
	color: #000046;
	bottom: 0;
	margin: 0 auto;
	background: #ffffff;
	width: 100%;
	left: 0;
	right: 0;
	text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
	.list-card .card-holder .caption {
		-webkit-transform: translateY(12px);
		-ms-transform: translateY(12px);
		transform: translateY(12px);
	}
}

.card-info {
	padding-top: 14px;
	max-width: 306px;
	margin: 0 auto;
	background-color: #ffffff;
}

@media only screen and (max-width: 767px) {
	.card-info {
		padding-left: 36px;
		padding-right: 36px;
	}
}

.card-info .green-line {
	display: block;
	width: 36px;
	height: 4px;
	background: #C1D300;
	margin-left: 24px;
}

.card-info p {
	padding-bottom: 42px;
	height: 162px;
	text-align: left;
	padding-top: 20px;
	font-family: 'Gotham-Book';
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
}

@media only screen and (max-width: 767px) {
	.card-info p {
		padding-bottom: 60px;
	}
}

.card-info .link-cta {
	cursor: pointer;
	text-align: left;
	padding-bottom: 40px;
	font-family: 'Gotham-Book';
	font-weight: 500;
	font-style: normal;
	padding-left: 24px;
}

.card-info .link-cta a {
	text-decoration: none;
	color: #C1D300;
	font-size: 16px;
	line-height: 24px;
}

.card-info .link-cta::after {
	content: '';
	display: block;
	width: 150px;
	position: absolute;
	height: 4px;
	background-color: #C1D300;
}

.get-in-touch {
	text-align: center;
	width: 100%;
	background-color: #C1D300;
	color: #000046;
}

.get-in-touch .title {
	padding-top: 104px;
	font-size: 48px;
	line-height: 56px;
	font-family: abril-display, serif;
	font-weight: 600;
	font-style: normal;
	padding-bottom: 70px;
}

@media only screen and (max-width: 767px) {
	.get-in-touch .title {
		font-size: 34px;
		line-height: 42px;
		padding-bottom: 60px;
		padding-top: 64px;
	}
}

.get-in-touch a {
	color: #000046;
}

.get-in-touch .description {
	font-family: 'Gotham-Book';
	font-weight: 500;
	font-style: normal;
	font-size: 22px;
	line-height: 38px;
	margin: 0 auto;
	text-align: center;
	max-width: 789px;
	padding-bottom: 110px;
}

@media only screen and (max-width: 768px) {
	.get-in-touch .description {
		font-size: 16px;
		line-height: 30px;
		padding-left: 36px;
		padding-right: 36px;
		padding-bottom: 95px;
	}
}

.gt-med {
	font-family: 'Gotham-Med';
	font-weight: 500;
	font-style: normal;
}

.under-line {
	text-decoration: underline;
}

.footer {
	background-color: #323233;
	padding-top: 44px;
	padding-bottom: 62px;
}

@media only screen and (max-width: 767px) {
	.footer {
		padding-top: 94px;
		padding-bottom: 94px;
	}
}

.footer .site-logo {
	width: 254px;
	height: 94px;
	margin: 0 auto;
	padding-bottom: 48px;
}

@media only screen and (max-width: 767px) {
	.footer .site-logo {
		width: 195px;
		height: 74px;
		padding-bottom: 67px;
	}
}

.footer .site-logo img {
	width: 100%;
	height: 100%;
}

.footer .social-icons-row li {
	color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer .social-icons-row ul {
	margin: 0 auto;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer .social-icons-row .icon {
	width: 36px;
	height: 36px;
	margin-right: 16px;
}

.footer .social-icons-row .icon img {
	width: 100%;
	height: 100%;
}

.footer .social-icons-row .icon:nth-child(4) {
	margin-right: 0px;
}

.social-bar {
	padding-top: 44px;
	padding-bottom: 40px;
	background: #C1D300;
	position: absolute;
	width: 75px;
	bottom: 0;
	z-index: 10;
}

@media only screen and (max-width: 767px) {
	.social-bar {
		display: none;
	}
}

.social-bar a {
	display: block;
	text-align: center;
	cursor: pointer;
}

.social-bar .icon {
	margin-bottom: 26px;
}

.social-bar .icon img {
	width: 24px;
	height: 24px;
}

.social-bar .socail-twitter img {
	width: 24px;
	height: 20px;
}
.style-link{
	text-decoration: none;
	color: inherit;
	
}