@charset "UTF-8";

/* General */
body {
	background: #111111;
	font-family: 'Montserrat', sans-serif;
	color: #333;
	font-weight: 400;
}
body p {
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 200;
}
.stop-scroll {
	overflow: hidden;
}
.wrapper {
	background: #fff;
	box-shadow: 0 5px 30px rgba(0,0,0,.1);
	position: relative;
}
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	padding: 15px 0;
	z-index: 60;
	transition: all .3s ease-in-out;
}
.scrolled {
	background: #0e1629;
}
.header img {
	margin-left: 2px;
	height: 30px;
}
.header__hamburger {
	position: relative;
	height: 23px;
	width: 27px;
	overflow: hidden;
	text-indent: -9999px;
	border: 0;
	background: transparent;
	padding: 0;
	outline: 0;
	cursor: pointer;
	float: right;
	right: 2px;
	top: 5px;
}
.header__hamburger span {
	top: 50%;
	margin-top: -2.5px;
	left: 0;
	right: 0;
	position: absolute;
	height: 2px;
	background: #fff;
	display: block;
	transition: background .3s linear;
	-moz-transition: background .3s linear;
	-webkit-transition: background .3s linear;
	-webkit-backface-visibility: hidden;
}
.header__hamburger span:before, .header__hamburger span:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
}
.header__hamburger span:before {
	transition: top .3s .3s, -webkit-transform .3s 0s;
	-moz-transition: top .3s .3s, -webkit-transform .3s 0s;
	-webkit-transition: top .3s .3s, -webkit-transform .3s 0s;
	top: -8px;
	-webkit-transform: rotate(0);
}
.header__hamburger span:after {
	transition: bottom .2s .3s, -webkit-transform .3s 0s;
	-moz-transition: bottom .2s .3s, -webkit-transform .3s 0s;
	-webkit-transition: bottom .2s .3s, -webkit-transform .3s 0s;
	bottom: -8px;
	-webkit-transform: rotate(0);
}
.header__hamburger.is-active span {
	background: transparent;
}
.header__hamburger.is-active span:before {
	transition: top .3s 0s, transform .3s .3s;
	top: 0;
	background: #fff;
	transform: rotate(45deg);
}
.header__hamburger.is-active span:after {
	transition: bottom .3s 0s, transform .3s .3s;
	bottom: 0;
	transform: rotate(-45deg);
	background: #fff;
}
.mobile__menu {
	top: 0;
	background: #0e1629;
	position: fixed;
	right: -100%;
	height: 100%;
	width: 100%;
	z-index: 50;
	opacity: 0;
	padding-top: 90px;
	transition: all .5s ease-out;
}
.mobile__menu.is-visible {
	right: 0;
	opacity: 1;
}
.mobile__menu ul {
	margin: 30px;
	padding: 0;
	text-align: center;
}
.mobile__menu li {
	display: block;
	margin: 0 0 15px 0;
}
.mobile__menu a {
	font-size: 18px;
	color: #fff;
	-webkit-font-smoothing: antialiased;
}
.mobile__menu a:hover {
	color: #199ada;
	text-decoration: none;
}
.mobile__menu li:last-child a {
	background: #199ada;
	padding: 15px 0;
	border-radius: 100px;
	display: block;
	margin-top: 20px;
}
.header ul {
	display: none;
}

.featured {
	padding: 100px 0;
	text-align: center;
	background: url('../img/bg-hero.jpg')no-repeat center;
	background-position: bottom right;
	background-size: auto auto;
}
.featured h1 {
	font-weight: 500;
	color: #fff;
	font-size: 21px;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,1);
}
.section h2 {
	font-size: 21px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}
.section h3 {
	font-size: 18px;
	margin: 0 0 10px 0;
}
.intro {
	background: #020e26;
	padding: 30px 0;
	text-align: center;
}
.intro h2, .intro h3, .intro p {
	color: #fff;
}
.intro__carousel {
	margin-top: 20px;
	margin-bottom: -100px;
}
.intro__carousel--box {
	padding: 20px 12px;
	background: #fff;
	border-radius: 20px;
	font-weight: bold;
	margin: 10px 15px 20px 15px;
	box-shadow: 0 5px 7px rgba(0,0,0,.1);
	transition: all .3s ease-in-out;
}
.intro__carousel--box:hover {
	transform: scale(1.08);
}
.intro__carousel--box p {
	color: #0076bf;
	font-size: 14px;
}
.intro__carousel .slick-dots {
	bottom: -30px;
}

.comments {
	padding: 120px 0 30px 0;
	text-align: center;
}
.comments__carousel {
	padding: 0 30px;
}
.comments__carousel p {
	padding: 0 0 20px 0;
}

.government {
	padding: 30px 0;
	text-align: center;
}
.government h2, .government h3 {
	color: #0076bf;
}
.government h3 {
	text-transform: uppercase;
}
.government__box {
	border: 1px solid;
	padding: 20px;
	border-radius: 10px;
}
.government__box p {
	margin: 0;
}
.government__box + .government__box {
	margin-top: 15px;
}
.government__box--blue, .services__box.services__box--blue {
	border-color: #5d91cc;
}
.government__box--yellow, .services__box.services__box--yellow {
	border-color: #f3d339;
}
.government__box--lblue, .services__box.services__box--lblue {
	border-color: #6cafe0;
}
.government__box--green, .services__box.services__box--green {
	border-color: #4d8744;
}
.government__box--gray, .services__box.services__box--gray {
	border-color: #7b8791;
}

.modules {
	padding: 30px 0;
}
.modules h2 {
	text-align: center;
	color: #0076bf;
}
.modules__carousel--item {
	margin: 10px 15px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.modules__carousel--item h3 {
	font-weight: bold;
	text-transform: uppercase;
	min-height: 50px;
}

.services {
	padding: 30px 0 230px 0;
	background: #020e26 url('../img/bg-mockup.jpg')no-repeat bottom right;
	background-size: 320px auto;
	text-align: center;
}
.services h2, .services h3 {
	color: #fff;
}
.services h3 {
	text-transform: uppercase;
}
.services__box {
	padding: 15px;
	border-radius: 10px;
	border: 1px solid;
	margin: 0 0 20px 0;
	transition: all .3s ease-in-out;
}
.services__box.services__box--blue:hover {
	background: #5d91cc;
}
.services__box.services__box--yellow:hover {
	background: #f3d339;
}
.services__box.services__box--lblue:hover {
	background: #6cafe0;
}
.services__box.services__box--green:hover {
	background: #4d8744;
}
.services__box.services__box--gray:hover {
	background: #7b8791;
}
.services__box p {
	font-weight: bold;
	color: #fff;
}

.strategy {
	padding: 0 0 30px 0;
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
}
.strategy h2 {
	margin: 20px 0 5px 0;
	text-transform: uppercase;
	color: #0076bf;
}
.strategy p {
	margin: 0;
}

.analysis {
	padding: 30px;
	text-align: center;
}
.analysis h2 {
	color: #0076bf;
	margin: 0 0 30px 0;
}
.analysis__carousel--image {
	display: inline-block;
	position: relative;
	background: #0076bf;
	text-align: center;
	margin: 0 0 10px 0;
}
.analysis__carousel--image img {
	display: block;
	transition: all .3s ease-in-out;
}
.analysis__carousel--image:hover img:last-child {
	opacity: .45;
}
.analysis__carousel--image img:first-child {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 25px;
}
.analysis__carousel--image:hover img:first-child {
	opacity: 1;
	height: 35px;
	z-index: 10;
}
.analysis__carousel--item {
	margin: 0 0 20px 0;
}

.contact {
	background: #2e3646;
}
.contact iframe {
	width: 100%;
	min-height: 350px;
}
.contact h2 {
	margin: 30px 0 10px 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 21px;
	font-weight: 500;
}
.box__form {
	max-width: 555px;
}
.form-control {
	margin: 0 0 20px 0;
	border: 0;
	width: 100%;
	padding: 0 15px;
	height: 55px;
	border-radius: 10px;
	transition: all .3s ease-in-out;
}
textarea.form-control {
	height: 100px;
	padding: 15px;
	resize: none;
}
.form-control:focus {
	background: rgba(255,255,255,.9);
	outline: 0;
}
.button {
	background: #199ada;
	padding: 12px 40px;
	border-radius: 100px;
	display: block;
	border: 0;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	margin: 0 0 30px 0;
}

.footer {
	padding: 15px 0;
	background: #0e1629;
}
.footer img {
	height: 30px;
}
.footer a {
	color: #fff;
	text-decoration: none;
}
.footer a:hover {
	color: #5999d7;
}
.footer .col-md-4 + .col-md-4 {
	margin-top: 20px;
}

.copyright {
	background: #2e3646;
	padding: 10px 0;
	text-align: center;
}
.copyright p {
	color: #fff;
	font-size: 14px;
	margin: 0;
}

.blue {
	color: #20396d;
}
.yellow {
	color: #daa126;
}
.lblue {
	color: #5999d7;
}
.green {
	color: #436b2e;
}
.gray {
	color: #7f909d;
}

/* Misc */
.slick-slide:focus {
	outline: 0;
}
.slick-dots {
	position: absolute;
	text-align: center;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	left: 0;
}
.slick-dots li {
	display: inline-block;
}
.slick-dots button {
	padding: 0;
	border: 0;
	width: 10px;
	height: 10px;
	background: #fff;
	border: 1px solid #a9a9a9;
	display: block;
	border-radius: 200px;
	text-indent: -9999px;
	margin: 0 10px;
	transition: all .3s ease-in-out;
}
.slick-dots button:focus {
	outline: 0;
}
.slick-active button {
	background: #a9a9a9;
	width: 10px;
}
.slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -9.5px;
	width: 12px;
	height: 19px;
	display: block;
	text-indent: -9999px;
	border: 0;
	z-index: 20;
}
.slick-arrow:focus {
	outline: 0;
	opacity: .8;
}
.slick-prev {
	left: 0;
	background: url('../img/arrow-left.png')no-repeat center;
}
.slick-next {
	right: 0;
	background: url('../img/arrow-right.png')no-repeat center;
}

.modules__carousel .slick-arrow {
	margin: 0 10px;
}
.modules__carousel .slick-dots {
	margin-top: 10px;
}
.modules__carousel .slick-dots li:first-child button {
	border-radius: 5px 0 0 5px;
}
.modules__carousel .slick-dots li:last-child button {
	border-radius: 0 5px 5px 0;
}
.modules__carousel .slick-dots button {
	height: 5px;
	width: 30px;
	border-radius: 0;
	margin: 0;
	border: 0;
	background: #e4e4e4;
}
.modules__carousel .slick-active button {
	background: #a7a7a7;
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(2,14,38,.8);
	z-index: 9999;
	display: none;
}
.modal {
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	height: 200px;
	text-align: center;
	display: none;
}
.modal img {
	height: 100%;
	width: auto;
	display: inline-block;
}
.close {
	color: #fff;
	display: block;
	text-align: right;
	font-size: 32px;
	max-width: 1000px;
	margin: 0 auto;
	cursor: pointer;
}
.success {
	display: none;
	background: #4d8744;
	padding: 5px 10px;
	color: #fff;
	border-radius: 5px;
}

@media screen and (min-width: 992px) {
	body {
		background: #020e26;
	}
	.wrapper {
		background: #fff;
		max-width: 1920px;
		margin: 0 auto;
		box-shadow: 0 30px 200px rgba(255,255,255,.2);
	}
	body p {
		font-size: 16px;
	}
	.header {
		padding: 30px 0 25px 0;
	}
	.header img {
		height: 56px;
		transition: all .3s ease-in-out;
	}
	.header.scrolled img {
		height: 30px;
	}
	.header__hamburger {
		display: none;
	}
	.header ul {
		display: block;
		list-style: none;
		margin: 15px 0 0 0;
		padding: 0;
		text-align: right;
		transition: all .3s ease-in-out;
	}
	.header.scrolled ul {
		margin: 0;
	}
	.header li {
		display: inline-block;
		margin-left: 25px;
	}
	.header li:first-child {
		margin-left: 0;
	}
	.header li:last-child a {
		padding: 13px 20px;
		background: #199ada;
		border-radius: 100px;
	}
	.header li:last-child a:hover {
		color: #fff;
		background: #0f7fb6;
	}
	.header a {
		font-size: 15px;
		color: #fff;
		transition: all .3s ease-in-out;
	}
	.header a:hover {
		color: #199ada;
		text-decoration: none;
	}

	.featured {
		padding: 200px 0 300px 0;
		background-size: cover;
	}
	.featured h1 {
		font-size: 36px;
		text-shadow: none;
	}

	.section h2 {
		font-size: 22px;
	}
	.section h3 {
		margin: 0 0 40px 0;
	}

	.intro {
		padding: 60px 0;
		background: #020e26;
	}
	.intro__carousel {
		max-width: 80%;
		margin: 20px auto -130px auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.intro__carousel--box {
		flex-basis: 29%;
	}
	.intro__carousel--box p {
		font-size: 15px;
	}
	
	.comments__carousel {
		max-width: 80%;
		margin: 0 auto;
	}
	.comments__carousel p {
		font-size: 22px;
		margin: 20px;
	}

	.government {
		padding: 60px 0;
	}

	.government__holder {
		margin-top: 40px;
		position: relative;
		height: 500px;
		background: url('../img/img-services.png')no-repeat bottom center;
	}
	.government__box {
		width: 220px;
		background: #fff;
		position: absolute;
		text-align: left;
	}
	.government__box p {
		font-size: 15px;
	}
	.government__box:nth-child(1) {
		left: 50%;
		margin-left: -110px;
	}
	.government__box:nth-child(2) {
		left: 0;
		top: 130px;
	}
	.government__box:nth-child(3) {
		left: 0;
		top: 280px;
	}
	.government__box:nth-child(4) {
		right: 0;
		top: 130px;
	}
	.government__box:nth-child(5) {
		right: 0;
		top: 280px;
	}

	.modules {
		padding: 60px 0 100px 0;
	}
	.modules h2 {
		margin: 0 0 30px 0;
	}
	.slick-slide.modules__carousel--item {
		min-height: 250px;
		margin-bottom: 40px;
	}
	.modules__carousel--item h3 {
		margin-bottom: 0;
	}
	.modules .slick-prev {
		left: 20%;
		bottom: -22px;
		top: auto;
	}
	.modules .slick-next {
		right: auto;
		left: 23%;
		bottom: -22px;
		top: auto;
	}
	.modules__carousel .slick-dots button {
		width: 40px;
	}

	.services {
		padding: 60px 0;
		background: #020e26 url('../img/bg-mockup-md.jpg')no-repeat center;
	}
	.services__box {
		text-align: left;
	}
	.services__box p {
		font-size: 14px;
	}
	.services__box:last-child {
		padding: 5px 10px;
		line-height: 1.4;
	}
	.services .col-md-6:last-child .services__box:last-child p {
		line-height: 1.4;
		margin: 9px 0;
		font-size: 13px;
	}

	.strategy {
		padding: 60px 0;
		background: url('../img/bg-strategy.jpg')no-repeat center;
	}
	.strategy h2 {
		margin: 0 0 10px 0;
	}
	
	.analysis {
		padding: 60px 0;
	}
	.analysis__carousel {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.analysis__carousel--item {
		flex-basis: 33%;
	}

	.contact h2 {
		margin: 0 0 30px 0;
	}
	.contact iframe {
		display: block;
		height: 500px;
	}
	.box__form {
		padding: 50px 0 0 50px;
	}

	.footer {
		padding: 30px 0;
	}
	.footer img {
		height: 50px;
	}
	.footer .col-md-4 + .col-md-4 {
		margin: 0;
	}
	.footer a {
		font-size: 18px;
	}

	.modal {
		height: 400px;
	}
}
@media screen and (min-width: 1200px) {
	.header li {
		margin-left: 45px;
	}
	.header li a {
		font-size: 18px;
	}
	.intro__carousel--box {
		flex-basis: 30%;
	}
	.intro__carousel--box p {
		font-size: 16px;
	}
	.modules__carousel .slick-dots button {
		width: 60px;
	}
	.slick-slide.modules__carousel--item {
		min-height: 200px;
	}
}