@charset "UTF-8";
/* CSS Document */
/*==============================================================
	Common Styles Initials
==============================================================*/

html {
	-webkit-text-size-adjust: none;
	/* Prevent font scaling in landscape */
	width: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

input[type="submit"] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border-radius: 0;
}

*,
*:after,
*:before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Nunito', sans-serif;
	-webkit-font-smoothing: antialiased;
	width: 100%;
	min-height: 100%;
	color: #727384;
	background: #ffffff;
}

a {
	outline: none;
	text-decoration: none;
	color: #555;
}

a:hover,
a:focus {
	outline: none;
	text-decoration: none;
}

input,
textarea,
select {
	outline: none;
	resize: none;
	font-family: 'Nunito', sans-serif;
}

a,
input,
button {
	outline: none !important;
}

button::-moz-focus-inner {
	border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: 600;
	color: #434343;
	font-family: 'Montserrat', sans-serif;
}

img {
	border: 0;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.disc {
	margin: 0;
	padding: 0;
	list-style: disc;
}

p {
	margin: 0 0 15px 0;
	padding: 0;
}

.slick-slide {
	outline: none !important;
}

/*==============================================================
	Bootstrap Hack
==============================================================*/

.form-control::-webkit-input-placeholder {
	opacity: 1;
}

.form-control:-moz-placeholder {
	opacity: 1;
}

.form-control::-moz-placeholder {
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	opacity: 1;
}

/*==============================================================
	Custom Style
==============================================================*/

.container {
	max-width: 1200px;
	width: 100%;
	padding: 0 15px;
}

.bootstrap-select .dropdown-menu .inner {
	overflow-y: visible !important;
}

/*==============================================================
	CTA style start
==============================================================*/
.cta-btn .cta-link {
	position: relative;
	display: inline-block;
	background: #ffffff;
	color: rgba(0, 33, 71, 1);
	font-size: 15px;
	min-width: 220px;
	text-align: center;
	letter-spacing: 2.5px;
	line-height: 18px;
	font-weight: 700;
	padding: 15px 30px;
	border: 2px solid rgba(0, 33, 71, 1);
	cursor: pointer;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.cta-btn .cta-link.cta-sm {
	padding: 10px 15px;
	min-width: 120px;
	font-size: 14px;
}

.cta-btn .cta-link.cta-arrow {
	padding-left: 0;
	padding-right: 40px;
	border: 0;
	min-width: 140px;
}

.cta-btn .cta-link.cta-arrow:after {
	content: "\eb23";
	font-family: 'boxicons';
	position: absolute;
	right: 15px;
	top: 50%;
	font-size: 25px;
	line-height: 25px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.cta-btn .cta-link.cta-arrow:hover {
	padding-left: 15px;
}

.cta-btn .cta-link.cta-arrow:hover:after {
	right: 5px;
	opacity: 1;
	visibility: visible;
}

.cta-btn .cta-link.cta-outline-white {
	background: transparent;
	color: #ffffff;
	border-color: #ffffff;
}

.cta-btn .cta-link.cta-outline-white:hover {
	background: rgba(0, 33, 71, 1);
}

.cta-btn .cta-link .icon {
	margin-right: 10px;
}

.cta-btn .cta-link.cta-block {
	display: block;
	width: 100%;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
}

.cta-btn .cta-link i {
	margin-right: 5px;
}

.cta-btn .cta-link.cta-fill {
	background: rgba(0, 33, 71, 1);
	color: #ffffff;
}

.cta-btn .cta-link:hover {
	background: rgba(0, 33, 71, 1);
	color: #ffffff;
	-webkit-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	-moz-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
}

/*==============================================================
	CTA style end
==============================================================*/

/*==============================================================
	Title style start
==============================================================*/
.title {
	padding-bottom: 35px;
}

.title .sub-text {
	font-size: 20px;
	line-height: 30px;
	color: #696B80;
	font-weight: 400;
	letter-spacing: 0.010em;
	padding-top: 20px;
}

.title.text-center .sub-text {
	max-width: 500px;
	margin: 0 auto;
}

.title h2 {
	font-size: 40px;
	color: #202342;
	font-weight: 700;
	letter-spacing: -.1rem;
}

/*==============================================================
	Title style end
==============================================================*/
/*==============================================================
	Form style start
==============================================================*/

.form-wrap .form-group {
	margin-bottom: 20px;
}

.form-wrap .form-label {
	font-size: 16px;
	color: #6D6D6D;
	font-weight: 400;
	text-transform: capitalize;
	margin: 0 0 4px 0;
	letter-spacing: 0.010em;
	display: block;
}

.form-wrap .form-label em {
	color: #ea5351;
	font-size: 20px;
	line-height: 14px;
}

.form-wrap .custom-file {
	height: auto
}

.form-wrap .custom-file .custom-file-label {
	border: 0;
	height: 50px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	font-size: 18px;
	padding: 12px 130px 0 24px;
	font-weight: 400;
	color: #696B80;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	top: 0;
	margin: 0;
}

.form-wrap .custom-file .custom-file-label:focus {
	-webkit-box-shadow: none;
	box-shadow: none
}

.form-wrap .custom-file .custom-file-label:after {
	content: "Choose file";
	height: 100%;
	border-radius: 0;
	border: 0;
	padding: 0;
	width: 120px;
	text-align: center;
	line-height: 50px;
	background: rgba(0, 33, 71, 1);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.check-list {
	padding-bottom: 13px;
}

.check-list .custom-control {
	padding-left: 30px;
	margin-bottom: 8px;
	position: relative;
}

.check-list .custom-control .custom-control-input {
	left: 0;
	width: 20px;
	height: 20px;
	z-index: 1;
	cursor: pointer;
}

.check-list .custom-control-label {
	font-size: 16px;
	line-height: 20px;
	color: #AFAFAF;
}

.check-list .custom-control-label::before {
	width: 20px;
	height: 20px;
	left: -30px;
	top: 0;
	background: #FCFBFB;
	border: 1px solid #DADEEA;
}

.check-list .custom-control-input:active~.custom-control-label::before {
	background: #FCFBFB;
}

.check-list .custom-control-label::after {
	width: 20px;
	height: 20px;
	left: -30px;
	top: 0;
	background-image: url(../images/check.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.check-list .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
	background: #FCFBFB;
	border-color: #37B448;
}

.check-list .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	background-image: url(../images/check.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
}

.custom-control-input:focus~.custom-control-label::before {
	box-shadow: none;
}

/*==============================================================
	Form style end
==============================================================*/
/*==============================================================
	header Style start
==============================================================*/

.header-wrap header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	z-index: 1234;
	padding-left: 45px;
	padding-right: 45px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-wrap.shrink-nav header {
	background: rgba(0, 33, 71, 1);
	-webkit-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	-moz-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
}

.header-wrap header .container-fluid {
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.header-wrap header .logo {
	min-width: 200px;
}

.header-wrap header .logo a {
	display: inline-block;
	color: #ffffff;
	font-size: 25px;
	line-height: 30px;
	/*text-transform: uppercase;*/
	font-weight: 600;
	letter-spacing: 0.05em;
}

.header-wrap header .logo img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	max-width: 186px
}

.header-wrap.shrink-nav header .logo img {
	max-width: 130px;
}

.header-wrap .header-right {
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 100%;
}

.header-wrap header .menu {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.header-wrap header .menu>ul {
	display: -ms-flexbox;
	display: flex;
}

.header-wrap header .menu>ul>li {
	padding: 0 15px;
	position: relative;
}

.header-wrap header .menu>ul>li>a {
	display: inline-block;
	color: #ffffff;
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding-top: 25px;
	padding-bottom: 25px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-wrap header .menu a:hover,
.header-wrap header .menu ul li.active a {
	color: #36D3E8;
}

.header-wrap header .menu>ul>li .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	min-width: 200px;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	background: #ffffff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 1px 11px 28px rgba(0, 0, 0, .08);
	-moz-box-shadow: 1px 11px 28px rgba(0, 0, 0, .08);
	box-shadow: 1px 11px 28px rgba(0, 0, 0, .08);
	-webkit-transform: translate(-50%, -10px);
	-moz-transform: translate(-50%, -10px);
	-o-transform: translate(-50%, -10px);
	-ms-transform: translate(-50%, -10px);
	transform: translate(-50%, -10px);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-wrap header .menu>ul>li .sub-menu:before {
	content: "\ea3b";
	font-family: boxicons;
	position: absolute;
	top: -19px;
	color: #ffffff;
	font-size: 38px;
	text-align: center;
	line-height: 29px;
	left: 0;
	width: 100%;
}

.header-wrap header .menu>ul>li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%, 0px);
	-moz-transform: translate(-50%, 0px);
	-o-transform: translate(-50%, 0px);
	-ms-transform: translate(-50%, 0px);
	transform: translate(-50%, 0px);
}

.header-wrap header .menu>ul>li .sub-menu li a {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #696B80;
	padding: 8px 20px;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-wrap header .menu>ul>li .sub-menu li a:hover {
	background: #36D3E8;
	color: rgba(0, 33, 71, 1);
}

.nav-link-toggle {
	display: none;
	position: absolute;
	color: #ffffff;
	right: 10px;
	top: 0;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
	cursor: pointer;
}

.nav-link-toggle.open .bx:before {
	content: "\e9c2"
}

.header-social {
	margin-left: auto;
}

.menu-close {
	display: none;
	text-align: right;
}

.menu-close a {
	font-size: 14px;
	letter-spacing: 0.150em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 15px 25px;
	display: inline-block;
	color: rgba(255, 255, 255, 0.5);
}

.menu-close a .bx {
	font-size: 25px;
	line-height: 25px;
	vertical-align: middle;
}

.menu-toggle {
	display: none;
	margin: 25px 0;
}

.menu__icon {
	position: relative;
	width: 30px;
	height: 20px;
	cursor: pointer;
}

.menu__line {
	position: absolute;
	left: 0;
	background-color: #ffffff;
	height: 3px;
	width: 100%;
	border-radius: 3px;
	pointer-events: none;
}

.menu__line--1 {
	top: 0;
}

.menu__line--2 {
	top: 0;
	bottom: 0;
	margin: auto;
}

.menu__line--3 {
	bottom: 0;
}

.menu--close .menu__line--4,
.menu--close .menu__line--5 {
	opacity: 0;
	top: 8.5px;
	transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
	transition: opacity .2s ease-in-out, transform .2s ease-in-out;
	transition: opacity .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.menu--close .menu__line--1 {
	transition: width .2s ease-in-out .4s;
}

.menu--close .menu__line--2 {
	transition: width .2s ease-in-out .3s;
}

.menu--close .menu__line--3 {
	transition: width .2s ease-in-out .2s;
}

.menu--close .menu__line--4 {
	-webkit-transform: rotate(45deg) translate3d(-30px, 0, 0);
	transform: rotate(45deg) translate3d(-30px, 0, 0);
	transition: opacity .2s ease-in-out .2s, -webkit-transform .2s ease-in-out .2s;
	transition: opacity .2s ease-in-out .2s, transform .2s ease-in-out .2s;
	transition: opacity .2s ease-in-out .2s, transform .2s ease-in-out .2s, -webkit-transform .2s ease-in-out .2s;
}

.menu--close .menu__line--5 {
	-webkit-transform: rotate(-45deg) translate3d(30px, 0, 0);
	transform: rotate(-45deg) translate3d(30px, 0, 0);
	transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
	transition: opacity .2s ease-in-out, transform .2s ease-in-out;
	transition: opacity .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.menu--close.open .menu__line--1 {
	width: 0;
	transition: width .2s ease-in-out;
}

.menu--close.open .menu__line--2 {
	width: 0;
	transition: width .2s ease-in-out .1s;
}

.menu--close.open .menu__line--3 {
	width: 0;
	transition: width .2s ease-in-out .2s;
}

.menu--close.open .menu__line--4 {
	opacity: 1;
	-webkit-transform: rotate(45deg) translate3d(0, 0, 0);
	transform: rotate(45deg) translate3d(0, 0, 0);
	transition: opacity .2s ease-in-out .2s, -webkit-transform .2s ease-in-out .2s;
	transition: opacity .2s ease-in-out .2s, transform .2s ease-in-out .2s;
	transition: opacity .2s ease-in-out .2s, transform .2s ease-in-out .2s, -webkit-transform .2s ease-in-out .2s;
}

.menu--close.open .menu__line--5 {
	opacity: 1;
	-webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
	transform: rotate(-45deg) translate3d(0, 0, 0);
	transition: opacity .2s ease-in-out .4s, -webkit-transform .2s ease-in-out .4s;
	transition: opacity .2s ease-in-out .4s, transform .2s ease-in-out .4s;
	transition: opacity .2s ease-in-out .4s, transform .2s ease-in-out .4s, -webkit-transform .2s ease-in-out .4s;
}

/*==============================================================
	header Style end
==============================================================*/

.social-icons ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
}

.social-icons ul li {
	padding: 0 5px;
}

.social-icons ul li a {
	color: #ffffff;
	font-size: 25px;
	line-height: 20px;
	padding: 5px 5px;
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.social-icons ul li a:hover {
	color: #36D3E8;
}

.banner-wrap {
	background: rgb(0, 33, 71);
	background: linear-gradient(30deg, rgba(0, 33, 71, 1) 0%, rgba(23, 65, 115, 1) 100%);
	height: 910px;
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.banner-wrap.inner-banner {
	height: 550px;
}

.hero-image {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center center;
	opacity: 0.4;
}

.banner-wrap .container {
	position: relative;
}

.hero-content {
	max-width: 760px;
	color: #ffffff;
}

.blog-detail-banner .hero-content {
	max-width: 900px;
}

.blog-detail-banner .hero-content h1 {
	font-size: 53px;
}

.hero-content p {
	font-size: 20px;
	line-height: 32px;
	max-width: 600px;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.010em;
}

.hero-content h3 {
	font-size: 16px;
	color: rgba(255, 255, 255, .6);
	text-transform: uppercase;
	letter-spacing: 3px;
	position: relative;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 12px;
	margin-left: 6px;
}

.hero-content h1 {
	font-size: 63px;
	line-height: 1.333;
	margin-bottom: 18px;
	color: #fff;
	font-weight: 700;
	letter-spacing: -.1rem;
}

.hero-content .cta-btn {
	padding-top: 60px;
}

.hero-content .cta-btn .cta-link.cta-outline-white:hover {
	background: #36D3E8;
	border-color: #36D3E8;
	color: rgba(0, 33, 71, 1);
}

.about-us-wrap {
	padding: 160px 0;
	font-size: 16px;
	color: #727384;
	letter-spacing: 0.010em;
}

.about-text {
	max-width: 460px;
}

.about-text .cta-btn {
	padding-top: 20px;
}

.about-img .svg {
	width: 100%;
	height: auto;
}

.services-wrap {
	background: #F3F5F9;
	padding: 100px 5px;
}

.service-list ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -20px;
}

.service-list ul li {
	width: calc(33.33% - 40px);
	margin: 20px;
	background: #ffffff;
	padding: 30px;
	font-size: 18px;
	color: #727384;
	letter-spacing: 0.010em;
	-webkit-transform: translate(0%, 0px);
	-moz-transform: translate(0%, 0px);
	-o-transform: translate(0%, 0px);
	-ms-transform: translate(0%, 0px);
	transform: translate(0%, 0px);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.service-list ul li:hover {
	-webkit-box-shadow: 1px 11px 28px rgba(0, 0, 0, .1);
	-moz-box-shadow: 1px 11px 28px rgba(0, 0, 0, .1);
	box-shadow: 1px 11px 28px rgba(0, 0, 0, .1);
	-webkit-transform: translate(0%, -10px);
	-moz-transform: translate(0%, -10px);
	-o-transform: translate(0%, -10px);
	-ms-transform: translate(0%, -10px);
	transform: translate(0%, -10px);
}

.service-list ul li .icon {
	padding-bottom: 10px;
}

.service-list ul li .icon .svg {
	width: 100px;
	height: 100px;
}

.service-list ul li .icon .svg circle {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.service-list ul li:hover .icon .svg circle {
	fill: rgba(32, 35, 66, 0.30);
}

.service-list ul li h3 {
	color: #202342;
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 25px;
}

.service-list ul li h3 a {
	color: #202342;
}

.portfolio-wrap {
	padding-bottom: 100px;
}

.portfolio-title {
	position: relative;
	background: rgba(0, 33, 71, 1);
	padding: 150px 0 250px;
}

.portfolio-title .bg-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	opacity: 0.4;
}

.portfolio-title .container {
	position: relative;
}

.portfolio-title .title h2 {
	color: #ffffff;
	max-width: 700px;
	margin: 0 auto;
}

.portfolio-title .title .sub-text {
	color: #F3F5F9;
	opacity: 0.8;
}

.portfolio-list-wrap ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -200px;
}

.portfolio-list-wrap ul li {
	width: 50%;
	position: relative;
	overflow: hidden;
}

.portfolio-list-wrap ul li .portfolio-thumb a {
	display: block;
	position: relative;
}

.portfolio-list-wrap ul li .portfolio-thumb a:before {
	display: block;
	background-color: rgba(0, 0, 0, .8);
	content: "";
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	z-index: 1;
}

.portfolio-list-wrap ul li .portfolio-thumb a:after {
	/* content: "\e9c4";
	font-family: boxicons;
	font-size: 30px; */
	display: block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	margin-left: -15px;
	margin-top: -15px;
	position: absolute;
	left: 50%;
	top: 50%;
	text-align: center;
	color: rgba(255, 255, 255, .8);
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);
	z-index: 1;
}

.portfolio-list-wrap ul li .portfolio-thumb a img {
	width: 100%;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.portfolio-list-wrap ul li .portfolio-link {
	display: block;
	color: #F3F5F9;
	box-shadow: 0 0 0 2px #F3F5F9;
	border-radius: 50%;
	height: 42px;
	width: 42px;
	line-height: 42px;
	font-size: 24px;
	text-align: center;
	z-index: 500;
	position: absolute;
	top: 30px;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.portfolio-list-wrap ul li .portfolio-link:hover {
	background: #F3F5F9;
}

.portfolio-list-wrap ul li .portfolio-link a {
	display: block;
	color: #F3F5F9;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.portfolio-list-wrap ul li .portfolio-link:hover a {
	color: rgba(0, 33, 71, 1);
}

.portfolio-list-wrap ul li .portfolio-link a .bx {
	line-height: 40px;
}

.portfolio-list-wrap ul li .portfolio-name {
	position: absolute;
	left: 0;
	bottom: 30px;
	padding: 0 30px;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.010em;
	-webkit-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.portfolio-list-wrap ul li .portfolio-name h3 {
	font-size: 16px;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 0.020em;
	padding-bottom: 5px;
}

.portfolio-list-wrap ul li:hover .portfolio-thumb a:before {
	opacity: 1;
	visibility: visible;
}

.portfolio-list-wrap ul li:hover .portfolio-thumb a:after {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.portfolio-list-wrap ul li:hover .portfolio-thumb a img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.portfolio-list-wrap ul li:hover .portfolio-link {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.portfolio-list-wrap ul li:hover .portfolio-name {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.customer-say-wrap {
	padding: 100px 0;
	background: #F3F5F9;
}

.testimonial-slider {
	margin-top: 40px;
}

.testimonial-box {
	max-width: 600px;
	margin: 0 auto 0;
}

.testimonial-slide {
	padding: 20px 50px 40px;
}

.testimonial-text {
	display: flex;
  justify-content: center;
  align-items: center;
	height: 250px;
	background: #ffffff;
	padding: 60px 50px;
	font-size: 20px;
	line-height: 32px;
	color: #727384;
	letter-spacing: 0.020em;
	text-align: center;
	margin-bottom: 40px;
	-webkit-box-shadow: 1px 11px 28px rgba(0, 0, 0, .1);
	-moz-box-shadow: 1px 11px 28px rgba(0, 0, 0, .1);
	box-shadow: 1px 11px 28px rgba(0, 0, 0, .1);
	-webkit-border-radius: 12px 12px 12px 0px;
	-moz-border-radius: 12px 12px 12px 0px;
	border-radius: 12px 12px 12px 0px;
}

.testimonial-text strong {
	color: #000000;
	font-weight: 600;
}

.testimonial-by {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
}

.testimonial-by .photo {
	width: 60px;
}

.testimonial-by .photo img {
	width: 60px;
	height: 60px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-box-shadow: 1px 11px 28px rgba(0, 0, 0, .35);
	-moz-box-shadow: 1px 11px 28px rgba(0, 0, 0, .35);
	box-shadow: 1px 11px 28px rgba(0, 0, 0, .35);
}

.testimonial-by .name {
	width: calc(100% - 60px);
	padding-left: 25px;
}

.testimonial-by .name h4 {
	color: #202342;
	font-size: 20px;
	letter-spacing: 0.030em;
}

.testimonial-by .name span {
	display: block;
	color: #696B80;
	font-size: 16px;
}

.testimonial-slider .slick-arrow {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -70px;
	font-size: 0;
	z-index: 12;
	background: transparent;
	color: rgba(32, 35, 66, 0.75);
	border: 2px solid rgba(32, 35, 66, 0.25);
	cursor: pointer;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .slick-arrow:hover {
	color: #ffffff;
	background: rgba(32, 35, 66, 1);
	-webkit-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	-moz-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
}

.testimonial-slider .slick-arrow:before {
	font-size: 26px;
	line-height: 46px;
	text-align: center;
	font-family: "boxicons";
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .slick-arrow.slick-prev {
	left: 0;
}

.testimonial-slider .slick-arrow.slick-prev:before {
	content: "\eac9";
}

.testimonial-slider .slick-arrow.slick-next {
	right: 0;
}

.testimonial-slider .slick-arrow.slick-next:before {
	content: "\eb23";
}

.client-logo-wrap {
	padding: 100px 0 0;
}

.client-logo-list ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
	margin: 0 -15px;
}

.client-logo-list ul li {
	/* width: calc(25% - 30px);
	margin: 20px 15px; */
	width: calc(26% - 30px);
  margin: 20px 50px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.client-logo-list ul li img {
	display: block;
	margin: 0 auto;
	-webkit-filter: grayscale(100%);
	/* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.client-logo-list ul li:hover {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 28px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 28px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 28px rgba(0, 0, 0, .1);
}

.client-logo-list ul li:hover img {
	-webkit-filter: grayscale(0);
	/* Safari 6.0 - 9.0 */
	filter: grayscale(0);
}

.contact-form-wrap {
	padding: 100px 0;
	/* background: #F3F5F9; */
}

.contact-form-wrap.contact-page-contact {
	padding: 100px 0 350px;
	position: relative;
}

.contact-form-wrap.contact-page-contact .bg-img {
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	height: 50%;
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: contain;
}

.contact-form-wrap.contact-page-contact .container {
	position: relative;
}

.contact-form-wrap .title {
	padding-bottom: 60px;
	max-width: 500px;
}

.form-wrap .form-group {
	position: relative;
	margin-bottom: 45px;
}

.form-wrap .form-control {
	font-size: 18px;
	padding: 10px 10px 10px 5px;
	display: block;
	width: 100%;
	color: rgba(32, 35, 66, 1);
	height: 50px;
	border: none;
	border-radius: 0;
	background: transparent;
	border-bottom: 1px solid rgba(32, 35, 66, .25);
	box-shadow: none;
}

.form-wrap .error {
	color: #f9243f;
}

.form-wrap label.error {
	margin-top: 42px;
	margin-left: 10px;
	font-size: small;
}

.margin-left-1 {
	margin-left: 1px !important;
}

.form-wrap label.error-textarea {
	margin-top: 133px !important;
}

.form-wrap textarea.form-control {
	height: 140px;
}

.form-wrap .form-control:focus {
	outline: none;
}

.form-wrap label {
	color: #696B80;
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 10px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

/* active state */
.form-wrap .has-value label {
	top: -20px;
	font-size: 14px;
	color: rgba(32, 35, 66, 1);
}

.form-wrap .bar {
	position: relative;
	display: block;
	width: 100%;
}

.form-wrap .bar:before,
.form-wrap .bar:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 1px;
	position: absolute;
	background: #202342;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

.form-wrap .bar:before {
	left: 50%;
}

.form-wrap .bar:after {
	right: 50%;
}

/* active state */
.form-wrap .has-value .bar:before,
.form-wrap .has-value .bar:after {
	width: 50%;
}

.form-wrap .highlight {
	position: absolute;
	height: 60%;
	width: 100px;
	top: 25%;
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}

/* active state */
.form-wrap .has-value .highlight {
	-webkit-animation: inputHighlighter 0.3s ease;
	-moz-animation: inputHighlighter 0.3s ease;
	animation: inputHighlighter 0.3s ease;
}

.success-text-contact-us {
	margin-top: 15px;
	font-size: larger;
	color: #29a60f;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from {
		background: #5264AE;
	}

	to {
		width: 0;
		background: transparent;
	}
}

@-moz-keyframes inputHighlighter {
	from {
		background: #5264AE;
	}

	to {
		width: 0;
		background: transparent;
	}
}

@keyframes inputHighlighter {
	from {
		background: #5264AE;
	}

	to {
		width: 0;
		background: transparent;
	}
}

.footer-wrap {
	background: rgba(0, 33, 71, 1);
}

.footer-wrap footer {
	padding: 50px 0 40px;
}

.footer-wrap .f-logo {
	font-size: 30px;
	color: #ffffff;
	font-weight: 300;
	font-family: 'Montserrat', sans-serif;
}

.footer-wrap h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
	font-family: 'Nunito', sans-serif;
	letter-spacing: 0.020em;
	margin-bottom: 25px;
}

.quick-links>ul>li {
	margin-bottom: 10px;
}

.quick-links>ul>li a {
	font-size: 18px;
	letter-spacing: 0.010em;
	color: rgba(255, 255, 255, 0.6);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.quick-links>ul>li a:hover {
	color: rgba(255, 255, 255, 1);
}

.copy-right {
	padding: 20px 10px;
	font-size: 14px;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.2);
	text-align: center;
}

.home-blog-wrap {
	padding: 100px 0;
}

.blog-list-wrap ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.blog-list-wrap ul li {
	width: calc(33.33% - 30px);
	margin: 15px 15px 30px;
}

.blog-box {
	background: #ffffff;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.blog-box:hover,
.blog-box:focus {
	-webkit-box-shadow: 0px 0px 28px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 28px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 28px rgba(0, 0, 0, .1);
}

.blog-box .blog-img {
	position: relative;
	overflow: hidden;
}

.blog-box .blog-img img {
	width: 100%;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.blog-box:hover .blog-img img,
.blog-box:focus .blog-img img {
	-webkit-transform: rotate(-2deg) scale(1.08);
	-moz-transform: rotate(-2deg) scale(1.08);
	-o-transform: rotate(-2deg) scale(1.08);
	-ms-transform: rotate(-2deg) scale(1.08);
	transform: rotate(-2deg) scale(1.08);
}

.blog-box .blog-info {
	padding: 20px;
	font-size: 18px;
	color: #727384;
	letter-spacing: 0.010em;
}

.blog-box .label {
	position: absolute;
	left: 0;
	bottom: 0;
}

.blog-box .label a {
	display: inline-block;
	color: #202342;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	padding: 3px 10px;
	font-size: 12px;
	background: #ffffff;
	font-family: 'Montserrat', sans-serif;
}

.blog-box .blog-info h3 {
	font-size: 17px;
	line-height: 28px;
	font-weight: 700;
	color: #202342;
	margin-bottom: 20px;
}

.blog-box .blog-info h3 a {
	color: #202342;
}

.blog-box .blog-info .cta-btn {
	padding-top: 10px;
}

.blog-box.style2:hover .blog-img img,
.blog-box.style2:focus .blog-img img {
	-webkit-transform: rotate(0deg) scale(1);
	-moz-transform: rotate(0deg) scale(1);
	-o-transform: rotate(0deg) scale(1);
	-ms-transform: rotate(0deg) scale(1);
	transform: rotate(0deg) scale(1);
}

.breadcrumb-wrap {
	padding: 15px 0;
	background: #F3F5F9;
}

.breadcrumb-wrap .breadcrumb {
	margin: 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item {
	color: #696B80;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.030em;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
	color: #696B80;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
	color: #202342;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	content: "\ea4a";
	font-family: "boxicons";
	font-size: 18px;
	line-height: 18px;
	vertical-align: middle;
}

.blog-wrap {
	padding: 100px 0 70px;
}

.sidebar-box {
	padding: 40px 30px;
	margin-bottom: 40px;
	background-color: #F3F5F9;
}

.sidebar-box.mobile-show {
	display: none;
}

.sidebar-box h4 {
	font-size: 16px;
	color: #202342;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 25px;
	letter-spacing: 1px;
}

.search-box .form-group {
	position: relative;
	margin: 0;
}

.search-box .form-group .form-control {
	height: 60px;
	padding: 0 50px 0 15px;
	font-size: 18px;
	color: rgba(0, 33, 71, 1);
	background: #F3F5F9;
	border: 2px solid rgba(0, 33, 71, 0.2);
	font-weight: 400;
	box-shadow: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.search-box .form-group .form-control:focus {
	-webkit-box-shadow: 0px 5px 20px rgba(0, 33, 71, .2);
	-moz-box-shadow: 0px 5px 20px rgba(0, 33, 71, .2);
	box-shadow: 0px 5px 20px rgba(0, 33, 71, .2);
}

.search-box .form-group .form-control::-webkit-input-placeholder {
	opacity: 1;
	color: #696B80;
}

.search-box .form-group .form-control:-moz-placeholder {
	opacity: 1;
	color: #696B80;
}

.search-box .form-group .form-control::-moz-placeholder {
	opacity: 1;
	color: #696B80;
}

.search-box .form-group .form-control:-ms-input-placeholder {
	opacity: 1;
	color: #696B80;
}

.search-box .search-icon {
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 30px;
	color: rgba(0, 33, 71, 0.7);
}

.search-box .search-icon .bx {
	line-height: 60px;
}

.subscribe-form .newsletter-field-email {
	margin-bottom: 25px;
}

.subscribe-form .newsletter-email {
	height: 60px;
	width: 100%;
	padding: 0 50px 0 15px;
	font-size: 18px;
	color: rgba(0, 33, 71, 1);
	background: #F3F5F9;
	border: 2px solid rgba(0, 33, 71, 0.2);
	font-weight: 400;
	box-shadow: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.subscribe-form .newsletter-email::-webkit-input-placeholder {
	opacity: 1;
	color: #696B80;
}

.subscribe-form .newsletter-email:-moz-placeholder {
	opacity: 1;
	color: #696B80;
}

.subscribe-form .newsletter-email::-moz-placeholder {
	opacity: 1;
	color: #696B80;
}

.subscribe-form .newsletter-email:-ms-input-placeholder {
	opacity: 1;
	color: #696B80;
}

.subscribe-form .newsletter-email:focus {
	-webkit-box-shadow: 0px 5px 20px rgba(0, 33, 71, .2);
	-moz-box-shadow: 0px 5px 20px rgba(0, 33, 71, .2);
	box-shadow: 0px 5px 20px rgba(0, 33, 71, .2);
}

.subscribe-form .newsletter-submit {
	position: relative;
	display: inline-block;
	background: rgba(0, 33, 71, 1);
	color: #ffffff;
	font-size: 15px;
	width: 100%;
	height: 52px;
	max-width: 220px;
	text-align: center;
	letter-spacing: 2.5px;
	line-height: 18px;
	font-weight: 700;
	border: 2px solid rgba(0, 33, 71, 1);
	cursor: pointer;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.subscribe-form .newsletter-submit:hover {
	-webkit-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	-moz-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
}

.categories-toggle {
	display: none;
}

.categories-toggle a {
	display: block;
	position: relative;
	background: rgba(0, 33, 71, 1);
	color: #ffffff;
	font-size: 14px;
	text-transform: uppercase;
	padding: 11px 40px 11px 20px;
	letter-spacing: 2px;
}

.categories-toggle a:after {
	content: "\e9c4";
	font-family: "boxicons";
	position: absolute;
	right: 15px;
	top: 10px;
	font-size: 22px;
	line-height: 22px;
}

.categories-toggle a.open:after {
	content: "\e9c2";
}

.categories-list ul li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 30px;
}

.categories-list ul li:last-child {
	margin-bottom: 0;
}

.categories-list ul li:before {
	content: "\ea4a";
	font-family: "boxicons";
	position: absolute;
	left: 0;
	top: 3px;
	font-size: 24px;
	line-height: 24px;
	color: #696B80;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.categories-list ul li:hover:before {
	left: 5px;
	color: rgba(0, 33, 71, 1);
}

.categories-list ul li a {
	display: inline-block;
	color: #696B80;
	font-size: 18px;
	letter-spacing: 0.010em;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.categories-list ul li:hover a {
	color: rgba(0, 33, 71, 1);
}

.blog-wrap .blog-list-wrap ul li {
	width: calc(50% - 30px);
	margin: 0 15px 30px;
}

.pagination-wrap #pagination {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	background: #F3F5F9;
	padding: 10px;
	margin-top: 15px;
	margin-bottom: 30px;
}

.pagination-wrap .page-numbers {
	padding: 10px 15px;
	display: inline-block;
	margin: 0 3px;
	font-size: 16px;
	line-height: 18px;
	font-weight: 600;
	color: #212529;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
	background: rgba(0, 33, 71, 1);
	color: #ffffff;
	-webkit-box-shadow: 0px 5px 11px rgba(0, 33, 71, .4);
	-moz-box-shadow: 0px 5px 11px rgba(0, 33, 71, .4);
	box-shadow: 0px 5px 11px rgba(0, 33, 71, .4);
}

.call-to-action {
	background: #F3F5F9;
	padding: 100px 0 150px;
	position: relative;
}

.call-to-action .bg-img {
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	height: 50%;
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: contain;
}

.blog-detail-desc {
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.010em;
}

.blog-detail-desc strong {
	color: #000000;
	font-weight: 700;
}

.blog-detail-desc mark {
	background: rgba(0, 33, 71, .15);
	color: rgba(0, 33, 71, 1);
}

.blog-detail-desc p,
.blog-detail-desc h2,
.blog-detail-desc h3,
.blog-detail-desc h4,
.blog-detail-desc .blog-box {
	margin-bottom: 25px;
}

.blog-detail-desc h2,
.blog-detail-desc h3,
.blog-detail-desc h4 {
	color: #202342;
	font-weight: 700;
}

.blog-detail-desc h2 {
	font-size: 26px;
}

.blog-detail-desc h3 {
	font-size: 24px;
}

.blog-detail-desc h4 {
	font-size: 22px;
}

.blog-detail-desc img {
	width: 100%;
}

.blog-detail-desc blockquote {
	margin-bottom: 25px;
	background: url(../images/quotation.svg) no-repeat #F3F5F9;
	padding: 30px 40px;
	color: rgba(0, 33, 71, .7);
	font-size: 22px;
	line-height: 35px;
	background-size: 60% 60%;
	background-position: center center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.blog-detail-desc blockquote::first-letter {
	font-size: 300%;
	color: rgba(0, 33, 71, 1);
}

.blog-detail-desc ul {
	margin-bottom: 25px;
	padding-left: 15px;
}

.blog-detail-desc ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}

.blog-detail-desc ul li:before {
	content: "\ec28";
	font-family: "boxicons";
	position: absolute;
	left: 0;
	top: 3px;
	font-size: 9px;
	line-height: 21px;
	color: rgba(0, 33, 71, 0.7);
}

.blog-detail-desc>ol {
	margin-bottom: 25px;
	padding-left: 15px;
	counter-reset: my-badass-counter;
}

.blog-detail-desc>ol>li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}

.blog-detail-desc>ol>li:before {
	content: counter(my-badass-counter);
	counter-increment: my-badass-counter;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 90%;
	text-align: center;
	font-weight: 700;
	color: rgba(0, 33, 71, 0.7);
}

.share-this-article {
	padding: 30px;
	background: #F3F5F9;
	margin-bottom: 30px;
}

.share-this-article h4 {
	font-size: 16px;
	color: #202342;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.share-this-article .social-icons ul li a {
	color: rgba(0, 33, 71, 0.7);
	font-size: 30px;
}

.share-this-article .social-icons ul li a:hover {
	color: rgba(0, 33, 71, 1);
}

.comment-wrap .title h2 {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.comment-wrap .commentlist {
	font-size: 16px;
	line-height: 26px;
}

.comment-wrap .commentlist>li {
	border-bottom: 1px solid #ececec;
	padding-bottom: 60px;
	padding-top: 50px;
}

.comment-wrap .commentlist>li:first-child {
	padding-top: 0;
}

.comment-wrap .commentlist>li:last-child {
	border: 0;
}

.comment-wrap .commentlist .comment-box .comment-author-left {
	float: left;
	width: 93px;
}

.comment-wrap .commentlist .comment-box .comment-author-left img {
	width: 65px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
}

.comment-wrap .commentlist .comment-box .comment-author-right {
	float: right;
	width: calc(100% - 93px);
}

.comment-wrap .commentlist .comment-box .comment-author-right .comment-author-info {
	padding-bottom: 10px;
}

.comment-wrap .commentlist .comment-box .comment-author-right .comment-author-info .fn {
	float: left;
	font-weight: 700;
	color: rgba(0, 33, 71, 1);
	font-style: normal;
}

.comment-wrap .commentlist .comment-box .comment-author-right .comment-author-info .comment-meta {
	float: right;
}

.comment-wrap .commentlist .comment-box .comment-author-right .comment-author-info .comment-meta a {
	color: #9fa3a7;
	font-weight: 300;
}

.comment-wrap .commentlist .comment-box .reply a {
	display: inline-block;
	color: rgba(0, 33, 71, 1);
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.comment-wrap .commentlist .children {
	padding-left: 93px;
	padding-top: 30px;
}


.services-list-wrap {
	padding: 100px 0 70px;
}

.services-list ul li {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
	background: #F3F5F9;
	border: 2px solid #F3F5F9;
	padding: 40px;
	margin-bottom: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.services-list ul li:hover {
	-webkit-box-shadow: 10px 10px 0px rgba(0, 33, 71, .15);
	-moz-box-shadow: 10px 10px 0px rgba(0, 33, 71, .15);
	box-shadow: 10px 10px 0px rgba(0, 33, 71, .15);
}

.services-list ul li:nth-child(2n) {
	background: #ffffff;
}

.services-list ul li .services-icon {
	width: 300px;
}

.services-list ul li .services-desc {
	width: calc(100% - 300px);
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0.010em;
}

.services-list ul li .services-desc p {
	max-width: 80%;
}

.services-list ul li .services-desc .cta-btn {
	padding-top: 15px;
}

.services-list ul li .svg circle {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.services-list ul li:hover .svg circle {
	fill: rgba(32, 35, 66, 0.30);
}

.services-list ul li h3 {
	color: #202342;
	font-size: 28px;
	font-weight: 700;
	padding-bottom: 25px;
}

.services-list ul li h3 a {
	color: #202342;
}

.services-detail-desc {
	text-align: center;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.010em;
	padding: 100px 0 85px;
}

.services-detail-desc .container {
	max-width: 900px;
}

.services-detail-desc h3 {
	font-size: 30px;
	color: #202342;
	font-weight: 700;
	letter-spacing: 0.020em;
	margin-bottom: 25px;
}

.work-section {
	padding: 100px 0 0;
}

.work-section .portfolio-list-wrap ul {
	margin-top: 0;
	-webkit-justify-content: center;
	justify-content: center;
}

.work-section .portfolio-list-wrap ul li {
	width: 25%;
}

.work-section .title h2 {
	max-width: 700px;
	margin: 0 auto;
}

.features-wrap {
	padding: 100px 0 85px;
	background: #F3F5F9;
}

.features-list ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 -15px;
}

.features-list ul li {
	width: calc(50% - 30px);
	margin: 15px;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.010em;
	color: #202342;
	padding: 30px 30px 10px 30px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.features-list ul li:hover {
	background: rgba(0, 33, 71, 1);
	color: #ffffff;
	-webkit-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	-moz-box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
	box-shadow: 0px 5px 20px rgba(0, 33, 71, .4);
}

.features-list ul li h3 {
	font-size: 16px;
	color: #202342;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.features-list ul li:hover h3 {
	color: #ffffff;
}

.contact-map {
	background: rgb(0, 33, 71);
	background: linear-gradient(30deg, rgba(0, 33, 71, 1) 0%, rgba(23, 65, 115, 1) 100%);
	position: relative;
	height: 550px;
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.contact-info-wrap {
	padding: 100px 0;
}

.contact-info-box {
	padding: 40px 15px;
	border: 2px solid rgba(0, 33, 71, .1);
	text-align: center;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.020em;
	height: 100%;
	position: relative;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.contact-info-box:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: rgba(0, 33, 71, .03);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.contact-info-box:hover {
	border-color: rgba(0, 33, 71, .03);
}

.contact-info-box:hover:before {
	height: 100%;
	bottom: 0;
	top: inherit;
}

.contact-info-box a {
	position: relative;
	color: #212529;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.contact-info-box a:hover {
	color: rgba(0, 33, 71, 1);
	text-decoration: underline;
}

.contact-info-box .icon {
	padding-bottom: 30px;
}

.contact-info-box p {
	margin: 0;
}

.contact-info-box h4 {
	font-size: 16px;
	color: #202342;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.career-wrap {
	padding: 100px 0;
}

.career-list-wrap ul li {
	font-size: 18px;
	letter-spacing: 0.010em;
	color: #5f5f5f;
	padding: 25px 15px;
	position: relative;
	border-bottom: 2px solid rgba(0, 33, 71, .1);
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.career-list-wrap ul li:before {
	height: 100%;
	opacity: 0;
	bottom: 0;
	left: 0;
	content: '';
	position: absolute;
	right: 0;
	z-index: -1;
	/*background: #36D3E8;*/
	background: rgba(0, 33, 71, .1);
	-webkit-transform: perspective(1000px) rotateX(90deg);
	-ms-transform: perspective(1000px) rotateX(90deg);
	transform: perspective(1000px) rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transition: all .4s cubic-bezier(0.2, 0, 0.15, 1);
	-ms-transition: all .4s cubic-bezier(0.2, 0, 0.15, 1);
	transition: all .4s cubic-bezier(0.2, 0, 0.15, 1);
}

.career-list-wrap ul li:hover:before,
.career-list-wrap ul li:focus:before {
	opacity: 1;
	-webkit-transform: perspective(1000px) rotateX(0);
	-ms-transform: perspective(1000px) rotateX(0);
	transform: perspective(1000px) rotateX(0);
}

.career-list-wrap ul li:hover,
.career-list-wrap ul li:focus {
	color: rgba(0, 33, 71, 1);
}

.career-list-wrap ul li:last-child {
	border: 0
}

.career-list-wrap ul li .name {
	width: calc(100% - 620px);
}

.career-list-wrap ul li .name a {
	color: #04a3cf;
	display: inline-block
}

.career-list-wrap ul li .opening-no {
	width: 200px;
}

.career-list-wrap ul li .experience {
	width: 200px;
}

.career-list-wrap ul li .cta-btn {
	width: 220px;
	text-align: right
}

.career-list-wrap ul li .cta-btn .cta-link {
	padding-left: 10px;
	padding-right: 10px;
	min-width: 170px;
}

.text-decoration-none {
	text-decoration: none !important;
}