html {
	font: 16px 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}
body, h1, h2, h3, h4, h5, h6, p, ul, input, button, textarea {
	margin: 0;
	padding: 0;
}
a {
	color: inherit;
	outline: none;
	text-decoration: none;
}
ul {
	list-style: none;
}

.wrapper {
	padding: 0 40px;
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
}

.navbar-container {
	height: 75px;
}
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #fff;
	height: 75px;
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	display: flex;
	justify-content: center;
}

.navbar-logo {
	font-size: 24px;
	font-weight: 700;
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px 40px;
	text-transform: uppercase;
	color: royalblue;
}

.navbar-menu-primary {
	float: left;
	position: relative;
}

.navbar-menu-primary-link {
	display: block;
	padding: 25px 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	color: #888;
}
.navbar-menu-primary:hover .navbar-menu-primary-link {
	color: royalblue;
}

.navbar-menu-dropdown:after {
	content: '';
	display: inline-block;
	margin-bottom: 4px;
	margin-left: 10px;
	width: 5px;
	height: 5px;
	border-right: 1px solid;
	border-bottom: 1px solid;
	transform: rotate(45deg);
}

.navbar-menu-sub {
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	padding-top: 10px;
	width: 300px;
}
.navbar-menu-primary:hover .navbar-menu-sub {
	display: block;
}
.navbar-menu-sub ul {
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	background: royalblue;
	color: #fff;
}
.navbar-menu-sub a {
	display: block;
	padding: 15px 20px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	opacity: 0.8;
}
.navbar-menu-sub a:hover {
	opacity: 1;
}

.navbar-navicon {
	position: absolute;
	top: 13px;
	right: 40px;
	width: 50px;
	height: 50px;
}
.navbar-navicon:before {
	content: '';
	position: absolute;
	top: 24px;
	left: 12px;
	width: 15px;
	height: 2px;
	background: #ccc;
}
.navbar-navicon:after {
	content: '';
	position: absolute;
	top: 18px;
	left: 12px;
	width: 25px;
	height: 2px;
	background: #ccc;
	color: #ccc;
	box-shadow: 0 12px;
}
.navbar-navicon:hover {
	background: royalblue;
}
.navbar-navicon:hover:before {
	background: #fff;
}
.navbar-navicon:hover:after {
	background: #fff;
	color: #fff;
}

.sidemenu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	width: 290px;
	background: #fff;
	box-shadow: 0px 0 10px rgba(0,0,0,0.05);
	transition: 600ms cubic-bezier(1,0,0,1);
	transform: translate3d(400px,0,0);
}
.sidemenu.active {
	transform: translate3d(0,0,0);
}

.sidemenu-close {
	position: absolute;
	top: 13px;
	right: 40px;
	width: 50px;
	height: 50px;
}
.sidemenu-close:before,
.sidemenu-close:after {
	content: '';
	position: absolute;
	top: 14px;
	left: 24px;
	width: 2px;
	height: 25px;
	background: #ccc;
	transform: rotate(45deg);
}
.sidemenu-close:after {
	transform: rotate(-45deg);
}
.sidemenu-close:hover {
	background: royalblue;
}
.sidemenu-close:hover:before,
.sidemenu-close:hover:after {
	background: white;
}

.title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: bold;
	height: 1000px;
	color: royalblue;
}

.footer {
	padding: 80px 0;
	background: rgb(0,50,150);
	color: #fff;
}
.footer-col {
	float: left;
	width: 25%;
	padding-bottom: 40px;
}

.footer h3 {
	font-size: 21px;
	padding-bottom: 10px;
}
.footer-list li {
	padding-bottom: 5px;
}
.footer-list li:before {
	content: '';
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #fff;
	margin-bottom: 4px;
	margin-right: 10px;
	display: inline-block;
}

.footer-copy {
	background: rgb(0,40,120);
	color: #fff;
	padding: 30px;
	font-size: 14px;
	line-height: 1.3;
	text-align: center;
}

.testimonial-slider {
	padding: 80px 0;
}
.testimonial-slider img {
	display: block;
	height: 400px;
}
.testimonial-col {
	width: 30%;
	height: 400px;
	float: left;
}
.testimonial-col:last-child {
	width: 70%;
	display: table;
}
.testimonial-text {
	display: table-cell;
	vertical-align: middle;
}
.testimonial-slider h2 {
	font-size: 40px;
	font-style: italic;
	color: royalblue;
	position: relative;
	padding-left: 10px;
}
.testimonial-slider h2:before,
.testimonial-slider h2:after {
	content: '\201D';
	position: absolute;
	font-size: 60px;
	line-height: 70px;
}
.testimonial-slider h2:before {
	content: '\201C';
	left: -20px;
}
.testimonial-slider p {
	padding-bottom: 20px;
	font-size: 18px;
	color: #888;
}

.testimonial-slider-bullets {
	position: static;
	padding-top: 40px;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	padding: 10px;
	margin: 0;
	width: auto;
	height: auto;
	background: none;
	opacity: 1;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #eee;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active:before {
	background: royalblue;
}

.content-bg {
	background: #fafafa;
}

.content {
	padding: 80px 0;
}
.content h2 {
	font-size: 30px;
	padding-bottom: 20px;
	color: royalblue;
}
.content h3 {
	font-size: 21px;
	padding-bottom: 10px;
	color: royalblue;
}
.content p {
	line-height: 1.5;
	font-size: 18px;
	padding-bottom: 20px;
	color: #333;
}
.content-long {
	width: 70%;
	padding-bottom: 40px;
}
.content-half {
	overflow: hidden;
}
.content-half div {
	width: 45%;
	padding-bottom: 20px;
	float: left;
}
.content-half div:nth-child(odd) {
	padding-right: 10%;	
}
.content-half p {
	font-size: 16px;
}

.expandable-list li {
	border-bottom: 1px solid #eee;
}
.expandable-list h3 {
	padding: 20px 0 20px 30px;
	position: relative;
	cursor: pointer;
}
.expandable-list h3:before,
.expandable-list h3:after {
	content: '';
	position: absolute;
	top: 34px;
	left: 0;
	width: 14px;
	height: 2px;
	background: royalblue;
}
.expandable-list h3:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
/*
.expandable-list .active h3:before,
.expandable-list .active h3:after,
.expandable-list h3:hover:before,
.expandable-list h3:hover:after {
	background: royalblue;
}
*/
.expandable-list .active h3:after {
	display: none;
}
.expandable-list p {
	display: none;
	padding-left: 30px;
}
.expandable-list .active p {
	display: block;
}

.list-bulleted,
.list-checked {
	font-size: 18px;
	line-height: 1.5;
	padding-bottom: 20px;
	color: #333;
}
.list-bulleted li,
.list-checked li {
	position: relative;
	padding: 0 0 10px 30px;
}
.list-bulleted li:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: royalblue;

}
.list-checked li:before {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 5px;
	height: 10px;
	border-bottom: 2px solid royalblue;
	border-right: 2px solid royalblue;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}

.img-right {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}

.heading-bg {
	background: rgb(0,50,150);
	color: #fff;
	padding: 80px 0;
}

@media (max-width: 1100px) {
	.navbar-menu {
		display: none;
	}
	.testimonial-col,
	.testimonial-slider img {
		height: 300px;
	}
	.img-right {
		float: none;
		margin-left: 0;
		max-width: 100%;
	}
}

@media (max-width: 720px) {
	.testimonial-slider {
		padding: 40px 0;
	}
	.testimonial-slider img {
		width: 300px;
		max-width: 100%;
		height: auto;
		margin: auto;
	}
	.testimonial-slider p {
		text-align: center;
	}
	.testimonial-col {
		width: 100%;
		height: auto;
	}
	.testimonial-col:last-child {
		width: 100%;
		padding-top: 20px;
	}
	.testimonial-slider h2 {
		font-size: 30px;
	}
	.wrapper {
		padding: 0 20px;
	}
	.navbar-navicon {
		right: 20px;
	}
	.navbar-logo {
		padding: 20px;
	}
	.sidemenu-close {
		right: 20px;
	}
	.content-long,
	.content-half div {
		width: 100%;
	}
	.footer-col {
		width: 100%;
	}
}