/* -------------------------------------------------------
01. Typography
02. Helpers
03. Selection
04. Preloader
05. Section
07. Navbar Top
08. Navbar
09. Header
10. About
11. Post
12. Contact
13. Button
14. 404 Page
15. Footer
16. toTop Button
17. Overlay Effect Bg image
18. Responsive
19. Misc & Overrides
------------------------------------------------------- */

/* ======= 01. Typography ======= */
html,
body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75em;
	color: #040556;
	overflow-x: hidden !important;
}

p {
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.75em;
	color: #6f7b91;
	margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 15px 0;
	color: #061138;
}

img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #f0f8ff;
}

span,
a,
a:hover {
	text-decoration: none;
	color: inherit;
}

b {
	font-weight: 400;
	color: #040556;
}

/* text field */
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
	outline: none;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="number"],
input[type="file"],
textarea {
    outline: none;
    max-width: 100%;
    margin-bottom: 0px;
    padding: 15px;
    height: auto;
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 3px;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #6f7b91;
    border-radius: 3px;
    border: 2px solid rgba(30, 144, 255,0.15);
}

input:focus,
textarea:focus {
    border: 2px solid #1e90ff;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	text-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	line-height: 1.75em;
	-webkit-transition: background-color .15s ease-out;
	transition: background-color .15s ease-out;
	background: transparent;
	border: 0px solid transparent;
}

	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover,
	button:hover {
		border: 0px solid transparent;
	}

select {
    padding: 10px;
    border-radius: 5px;
}

table,
th,
tr,
td {
    border: 2px solid #f0f8ff;
}

th,
tr,
td {
    padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline;
}

input[type="submit"] {
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    background: #1e90ff;
    color: #fff;
    padding: 8px 24px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 2px;
}

.alert-success {
    background: transparent;
    color: #6f7b91;
    border: 2px solid #1e90ff;
    border-radius: 3px;
}

/* placeholder */
::-webkit-input-placeholder {
    color: #6f7b91;
    font-size: 15px;
    font-weight: 400;
}

:-moz-placeholder {
    color: #6f7b91;
}

::-moz-placeholder {
    color: #6f7b91;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #6f7b91;
}

/* blockquote */
blockquote {
    padding: 45px;
    display: block;
    position: relative;
    background-color: #f0f8ff;
    overflow: hidden;
    margin: 35px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: #6f7b91;
}

	blockquote p {
		font-family: inherit;
		margin-bottom: 0 !important;
		color: inherit;
		max-width: 650px;
		width: 100%;
		position: relative;
		z-index: 3;
	}
	blockquote:before {
		content: '\e645';
		font-family: 'Themify';
		position: absolute;
		right: 40px;
		bottom: 40px;
		font-size: 110px;
		opacity: 0.07;
		line-height: 1;
		color: #061138;
	}

	blockquote p {
		margin-bottom: 0;
	}

		blockquote p a {
			color: inherit;
		}

	blockquote cite {
		display: inline-block;
		font-size: 15px;
		position: relative;
		padding-left: 60px;
		border-color: inherit;
		line-height: 1;
		margin-top: 22px;
		font-style: normal;
		color: #1e90ff;
		font-weight: 400;
	}

		blockquote cite:before {
			content: '';
			position: absolute;
			left: 0;
			bottom: 5px;
			width: 50px;
			height: 1px;
			border-top: 2px solid;
			border-color: inherit;
			color: #1e90ff;
		}

/* ======= 02. Helpers ======= */
.mt-0 {
  margin-top: 0 !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 15px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-120 {
  padding-bottom: 120px;
}
.no-padding {
  padding: 0 !important;
}

.pt-0 {
	padding-top: 0 !important;
}

/* important */
.position-relative {
  position: relative !important;
}
.o-hidden {
    overflow: hidden;
}
.bg-lightblue {
    background: #f0f8ff;
}
.bg-white {
    background: #fff;
}
.back-position-center {
    background-position: center;
}
.back-position-top {
    background-position: top;
}
.back-position-bottom {
    background-position: bottom;
}
.position-re {
    position: relative;
}
.full-width {
    width: 100%;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.pattern {
    background-repeat: repeat;
    background-size: auto;
}
.bold {
    font-weight: 700;
}
.count {
    font-family: 'Lato', sans-serif;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.v-middle2 {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    z-index: 1;
}
.v-bottom {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
}
.js .animate-box {
    opacity: 0;
}
:root { 
    scroll-behavior: auto; 
}
/* list style */
.ullist {
    display: grid;
    font-size: 15px;
}
.ullist ul {
    position: relative;
    float: left;
    padding: 0;
    margin: 0;
    color: #6f7b91;
}
.ullist ul.white {
    color: #fff;
}
.ullist ul li {
    position: relative;
    line-height: 1.75em;
    margin-bottom: 10px;
    padding-left: 15px;
}
.ullist ul li:last-child {
    margin-bottom: 0;
}
.ullist ul li:before {
    content: ".";
    position: absolute;
    left: 0;
    top: -8px;
    color: #1e90ff;
    font-weight: 700;
    font-size: 32px;
}
/* hr style */
hr {
    margin-top: 5px;
    margin-bottom: 15px;
    border: 0;
}
hr.border-1 {
    border-top: 2px solid rgba(30, 144, 255,0.7);
}
hr.border-2 {
    border-top: 2px solid rgba(30, 144, 255,0.7);
    margin-bottom: 25px;
    margin-top: 10px;
}
/* background & color */
.bg-navy {
    background: #061138;
}
.bg-lightnav {
    background: #f0f8ff ;
}
.color-2 {
    color: rgba(255,255,255,0.8);
}
/* star - white  */
.star {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.9em;
  margin-right: 0.9em;
  margin-bottom: 1.2em;
  border-right: 0.3em solid transparent;
  border-bottom: 0.7em solid #fff;
  border-left: 0.3em solid transparent;
  /* Controlls the size of the stars. */
  font-size: 8px;
}
.star:before, .star:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.6em;
  left: -1em;
  border-right: 1em solid transparent;
  border-bottom: 0.7em solid #fff;
  border-left: 1em solid transparent;
  transform: rotate(-35deg);
}
	.star:after {
		transform: rotate(35deg);
	}
/* Star rating  */
.star-rating {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.8em;
    margin-right: 0.8em;
    margin-bottom: 2.5em;
    border-right: 0.3em solid transparent;
    border-bottom: 0.7em solid #e4a853;
    border-left: 0.3em solid transparent;
    font-size: 8px;
}
.star-rating:before, .star-rating:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.6em;
  left: -1em;
  border-right: 1em solid transparent;
  border-bottom: 0.7em solid #e4a853;
  border-left: 1em solid transparent;
  transform: rotate(-35deg);
}
.star-rating:after {
  transform: rotate(35deg);
}
/* star-rating  */
.rating {
    margin-bottom: 5px;
    display: inline-flex;
}
.rating .star {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.7em;
  margin-right: 0.7em;
  margin-bottom: 2em;
  border-right: 0.3em solid transparent;
  border-bottom: 0.7em solid #fff;
  border-left: 0.3em solid transparent;
  /* Controlls the size of the stars. */
  font-size: 8px;
}
.rating .star:before, .star:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.6em;
  left: -1em;
  border-right: 1em solid transparent;
  border-bottom: 0.7em solid #fff;
  border-left: 1em solid transparent;
  transform: rotate(-35deg);
}
.rating .star:after {
  transform: rotate(35deg);
}
/* star-rating active */
.rating .star.active {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.8em;
  margin-right: 0.8em;
  margin-bottom: 2em;
  border-right: 0.4em solid transparent;
  border-bottom: 0.8em solid #e4a853;
  border-left: 0.4em solid transparent;
  /* Controlls the size of the stars. */
}
.rating .star.active:before, .star.active:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.6em;
  left: -1em;
  border-right: 1em solid transparent;
  border-bottom: 0.7em solid #e4a853;
  border-left: 1em solid transparent;
  transform: rotate(-35deg);
}
.rating .star.active:after {
  transform: rotate(35deg);
}
.rating .reviews-count {
    width: auto;
    font-size: 15px;
    color: #fff;
    margin-left: 10px;
    line-height: 1;
}
.rating .reviews-count.color-2 {
    color: #6f7b91;
}


/* ======= 03. Selection style ======= */
::-webkit-selection {
    color: #fff;
    background: #1e90ff;
}
::-moz-selection {
    color: #fff;
    background: #1e90ff;
}
::selection {
    color: #fff;
    background: #1e90ff;
}


/* ======= 04. Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 999999;
}
#preloader {
    display: table;
    table-layout: fixed;
}
#preloader-status {
    display: table-cell;
    vertical-align: middle;
}
.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.loader {
    position: relative;
    width: 65px;
    height: 65px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 2px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 2px solid rgba(30, 144, 255,0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.loader span {
    position: absolute;
    width: 65px;
    height: 65px;
    top: -2px;
    left: -2px;
    border: 2px solid transparent;
    border-top: 2px solid #1e90ff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ======= 05. Section style ======= */
.section-padding {
    padding: 25px 0;
}
.section-padding h6 {
    color: #1e90ff;
    font-size: 21px;
    margin-bottom: 15px;
}
.section-subtitle {
    position: relative;
    color: #1e90ff;
    font-size: 13px;
    line-height: 13px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.section-subtitle span {
    color: #1e90ff;
}
.section-subtitle.whte {
    color: #fff;
}
.section-title {
    font-size: 45px;
    line-height: 1.1em;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    color: #061138;
    position: relative;
    margin-bottom: 15px;
	text-transform: uppercase;
}
.section-title span {
    color: #1e90ff;
}
.section-title.whte {
    color: #fff;
}
.section-title2 {
    font-size: 36px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.2em;
}
.section-subtitle2 {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #1e90ff;
    margin-bottom: 5px;
}
.section-title2 span {
    color: #fff;
}
.section-title i,
.section-title span i {
    color: #1e90ff;
}

/* ======= 07. Navbar Top style ======= */
.main-header {
    position: relative;
    z-index: 999;
    width: 100%;
}
.main-header .navbar-top {
    position: relative;
    background: #061138;
}
.main-header .navbar-top .top-left {
	position: relative;
	float: left;
	padding: 18px 0px;
}
.main-header .navbar-top .top-left .links {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}
.main-header .navbar-top .top-left .links li {
	position: relative;
	float: left;
	margin-right: 15px;
    padding-right: 15px;
	color: #ffffff;
    font-size: 13px;
    line-height: 13px;
}
.main-header .navbar-top .top-left ul li:last-child {
	margin-right: 0px;
	padding-right: 0px;
}
.main-header .navbar-top .top-left .links li:last-child:after {
	display: none;
}
.main-header .navbar-top .top-left .links li .icon {
    position: relative;
    top: 0px;
    color: #1e90ff;
    font-size: 13px;
    line-height: 13px;
    margin-right: 10px;
}
.main-header .navbar-top .top-left .links li a {
    position: relative;
    font-size: 13px;
    line-height: 13px;
    color: #fff;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.main-header .navbar-top .top-left .links li a:hover {
	color: #1e90ff;
}
.main-header .navbar-top .top-right {
	position: relative;
	float: right;
	padding: 11px 0px;
}
.main-header .navbar-top .top-right .social-icon-one {
    position: relative;
	float: left;
	margin: 0px;	
}
.main-header .navbar-top .top-right .social-icon-one li {
	position: relative;
	margin-right: 0px;
	margin-left: 10px;
	display: inline-block;
}
.main-header .navbar-top .top-right .social-icon-one li a {
    position: relative;
    font-size: 13px;
    color: #fff;
    display: inline-block;
}
.main-header .navbar-top .top-right .social-icon-one li a:hover {
	color: #1e90ff;
}
@media screen and (max-width: 991px) {
    .main-header .navbar-top {
		display: none;
	}
}

/* ======= 08. Navbar style ======= */
.navbar {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 116px;
}
.navbar-toggler-icon {
    background-image: none;
}
.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #061138;
}
.navbar .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 400;
    color: #061138;
    margin: 1px 5px;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-right: 7px;
    padding-left: 7px;
    font-family: 'Lato', sans-serif;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: #fff;
}
.navbar .navbar-nav .nav-link:hover {
    color: #1e90ff;
}
.navbar .navbar-nav .active {
    color: #1e90ff !important;
}
.navbar .navbar-nav .active i {
    color: #1e90ff;
}
.nav-scroll {
    background: #061138;
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    border-bottom: 2px solid rgba(255,255,255,0.07)
}
.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: #1e90ff;
}
.nav-scroll .navbar-nav .nav-link {
    color: #fff;
}
.nav-scroll .navbar-nav .active {
    color: #1e90ff !important;
}
.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #fff;
}
.nav-scroll .logo-img {
   width: 140px;
}
.nav-scroll .logo-img {
    margin-bottom: 0px;
}
.nav-scroll .logo-wrapper .logo h2 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 700;
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    padding: 20px 0;
    text-transform: uppercase;
    line-height: 1em;
}
.nav-scroll .logo-wrapper .logo h2 span {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: none;
    display: block;
    margin-top: 0px;
    line-height: 1em;
    text-align: center;
    letter-spacing: 1px;
}
.nav-scroll .logo-wrapper {}
.logo-wrapper {
    float: left;
}
.logo-wrapper .logo h2 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 700;
    display: block;
    width: 100%;
    position: relative;
    color: #061138;
    margin-bottom: 0;
    padding: 20px 0;
    text-transform: uppercase;
    line-height: 1em;
}
.logo-wrapper .logo h2 span {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #061138;
    font-weight: 400;
    text-transform: none;
    display: block;
    margin-top: 0px;
    line-height: 1em;
    text-align: center;
    letter-spacing: 1px;
}
.logo {
    padding: 0;
}
.logo-img {
    padding: 3px 0px 4px 0px;
    width: 140px;
    text-align: center;
}
.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 8px;
    color: #061138;
}
.nav-scroll .dropdown .nav-link i {
    color: #fff;
}
.nav-scroll .navbar-nav .active i {
    color: #1e90ff;
}
.navbar .dropdown-menu .dropdown-item {
    padding: 9px 0;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #061138;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    background-color: transparent;
}
.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: #1e90ff;
}
.navbar .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu {
    border: none;
    border-bottom: 3px solid #1e90ff;
        box-shadow: 0px 10px 60px 0px rgba(15, 36, 84,.03), 0px 3px 0px 0px rgba(15, 36, 84,.03);
}
.navbar .dropdown-menu li {
   border-bottom: 2px solid rgba(30, 144, 255,0.07);
}
.navbar .dropdown-menu li:last-child {
   border-bottom: none;
}
/* li hover */
.navbar .dropdown-menu li {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.navbar .dropdown-menu li:hover {
  padding-left: 3px;
}
.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}
/* Navbar Media Query */
@media screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 190px;
        padding: 15px;
        border-radius: 0;
        background-color: #fff;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -10px;
        right: auto;
        min-width: 190px;
        transform: translateY(0);
    }
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }    
}
@media screen and (max-width: 991px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: transparent;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .nav-scroll {
        background: #061138;
    }
    .logo-wrapper {
        float: left;
        /*padding: 26px 0 26px 15px;*/
    }
    .nav-scroll .logo-wrapper {
        /*padding: 21px 15px;*/
        background-color: transparent;
    }
    .nav-scroll .logo-img {
       width: 140px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .nav-scroll .logo {}
    .logo-img {
        margin-bottom: 0px;
       width: 140px;
        padding: 0;
    }
    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: #061138;
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: #061138 !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: #1e90ff !important;
    } 
    .navbar .dropdown-menu .dropdown-item {
        padding: 0 15px;
        font-size: 15px;
        line-height: 40px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 400;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 15px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #fff;
        box-shadow: none;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
    .dropdown .nav-link i {
        color: rgba(15, 36, 84, 0.5);
    }
    .nav-scroll .dropdown .nav-link i {
        color: rgba(15, 36, 84, 0.5);
    }
    .nav-scroll .dropdown .nav-link.active i {
    color: #1e90ff;
    }
}
@media screen and (max-width: 991px) {
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #fff;
        text-align: left;
        padding: 20px;
    }
}

/* ======= 09. Header style ======= */
.header {
    min-height: calc(100vh - 150px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.image-fullscreen-wrap {
  min-height: calc(100vh - 150px);
  overflow: hidden;
}
.image-fullscreen-wrap .overlay {
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 4;
}
.header .caption .o-hidden {
    display: inline-block;
}
.header .caption h2 {
    font-size: 48px;
    color: #fff;
}
.header .caption span i.star-rating {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}
.header .caption h4 {
    position: relative;
    color: #fff;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.header .caption h4 span {
    color: #1e90ff;
}
.header .caption h1 {
    position: relative;
    font-family: 'Lato', sans-serif;
    font-size: 60px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    color: #fff;
}
.header .caption p {
    font-size: 17px;
    line-height: 1.5em;
    margin-bottom: 25px;
    color: #fff;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
.header .caption p span {
    margin: 0 5px;
    padding-right: 14px;
    position: relative;
}
.header .caption p span:last-child {
    padding: 0;
}
.header .caption p span:last-child:after {
    display: none;
}
.header .caption p span:after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #061138;
    position: absolute;
    top: 10px;
    right: 0;
    opacity: .5;
}
.header .caption .button-3 {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}
.header .caption .button-4 {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}
.header .social a {
    color: #eee;
    font-size: 21px;
    margin: 10px 15px;
}
hr {
	margin-top: 25px;
	margin-bottom: 25px;
	border: 0;
	border-top: 2px solid #377ef7;
	opacity: 1;
}

/* ======= 10. About style ======= */
.about {
    position: relative;
    padding-bottom: 10px;
    overflow: hidden;
}
.about .item .img img:hover {
    transform: scale(0.95);
}
.about .item .img {
    position: relative;
}
.about .item .img {
    padding: 0 30px 30px 0;
    position: relative;
}
.about .item .img:before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    left: 45px;
    bottom: 0;
    background-color: #1e90ff;
    border-radius: 3px;
}
.about .item .img img {
    position: relative;
    z-index: 2;
    background: #061138;
    border-radius: 3px;
}
/* about list */
.about-list {
    position: relative;
    display: block;
}
.about-list li {
    position: relative;
    display: flex;
    align-items: center;
}
.about-list li + li {
    margin-top: 10px;
}
.about-list-icon {
    display: flex;
}
.about-list-icon span {
    font-size: 15px;
    color: #1e90ff;
}
.about-list-text {
    margin-left: 15px;
}
.about-list-text p {
    font-size: 15px;
    margin: 0;
}
/* about call */
.about .about-call {
    display: flex;
    align-items: center;
}
.about .about-call .call-icon {
    background-color: transparent;
    color: #1e90ff;
    text-align: center;
    width: 54px;
    height: 54px;
    line-height: 54px;
    margin-right: 10px;
    font-size: 21px;
    border-radius: 50%;
    border: 2px solid #1e90ff;
}
.about .about-call .media-body {
    flex: 1;
}
.about .about-call .media-body p {
    font-size: 13px;
    margin-bottom: 5px;
}
.about .about-call .media-body .call-number {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 0;
    color: #061138;
}
.about .iconso {
    font-size: 280px;
    line-height: 280px;
    position: absolute;
    bottom: 30px;
    left: -100px;
    color: #061138;
    opacity: 0.03;
    text-align: center;
    z-index: -1;
}

/* ======= 11. Post style ======= */
.betty-post-heading {
    font-size: 24px;
}
.blog-post-section {
    padding-top: 120px;
}
/* post comment */
.comments-area {
    padding: 30px 0;
}
.item-form {
    background: #f0f8ff;
    padding: 45px 25px;
}
.comments-area .comments-title {
    font-size: 24px;
    color: #061138;
    line-height: 1.2em;
    font-weight: 700;
}
ol.comment-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
ol.comment-list li.comment {
    position: relative;
    padding: 0;
}
ol.comment-list li.comment .comment-body {
    position: relative;
    padding: 20px 30px 20px 90px;
    margin-left: 40px;
    color: red;
    position: relative;
}
ol.comment-list li.comment .comment-author {
    display: block;
    margin-bottom: 0px;
}
ol.comment-list li.comment .comment-author .avatar {
    position: absolute;
    top: 20px;
    left: -40px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background-color: transparent;
    border: 2px solid #f0f8ff;
    padding: 3px;
}
ol.comment-list li.comment .comment-author .name {
    display: inline-block;
    font-size: 17px;
    color: #061138;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 0;
}
ol.comment-list li.comment .comment-author .says {
    display: none;
    color: #6f7b91;
}
ol.comment-list li.comment .comment-meta {
    color: #6f7b91;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 400;
}
ol.comment-list li.comment .comment-meta a {
    color: #1e90ff;
}
ol.comment-list li.comment .comment-meta:before,
ol.comment-list li.comment .reply a:before {
    font-family: "FontAwesome";
    font-size: 15px;
    vertical-align: top;
}
ol.comment-list li.comment p {
    font-size: 15px;
    margin: 0 0 15px;
    color: #6f7b91;
}
ol.comment-list li.comment .reply a {
    position: absolute;
    top: 50px;
    right: 30px;
    margin-top: -5px;
    font-size: 13px;
    color: #6f7b91;
}
ol.comment-list li.comment .reply a:hover {
    color: #1e90ff
}
ol.comment-list li .children {
    list-style: none;
    margin-left: 80px;
}
ol.comment-list li .children li {
    padding: 0;
}
@media only screen and (max-width: 767px) {
    .comments-area .padding-30 {
        padding: 15px;
    }
    ol.comment-list li.comment .comment-body {
        margin-bottom: 30px;
        margin-left: 30px;
    }
    ol.comment-list li.comment .comment-author .avatar {
        left: -35px;
        height: 70px;
        width: 70px;
    }
    ol.comment-list li .children {
        margin-left: 20px;
    }
    ol.comment-list li.comment .reply a {
        position: static;
    }
}
@media only screen and (max-width: 480px) {
    ol.comment-list li.comment .comment-body {
        margin-left: 26px;
    }
    ol.comment-list li.comment .comment-author .avatar {
        left: -15px;
        top: 12px;
        width: 60px;
        height: 60px;
    }
    ol.comment-list li.comment .comment-body {
        padding-left: 55px;
    }
}

/* ======= 12. Contact style ======= */
.contact .item {
    background: #f0f8ff;
    padding: 45px 40px;
    border-radius: 3px;
}
.contact h2 {
    font-size: 27px;
    color: #061138;
    margin-bottom: 25px;
}
/* phone-call button */
.phone-call {
    display: flex;
}
.phone-call:last-child {
    border: none;
    padding: 0;
    margin: 0;
    
}
.phone-call .icon {
    position: relative;
    top: 5px;
    width: 50px;
    height: 50px;
    background: #1e90ff;
    line-height: 58px;
    text-align: center;
    border-radius: 100%;
}
.phone-call .icon span {
    font-size: 21px;
    color: #fff;
}
.phone-call .text {
    margin-left: 15px;
    font-size: 17px;
    font-weight: 700;
    color: #061138;
}
.phone-call .text p {
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    color: #6f7b91;
}
.phone-call .text a {
    font-size: 17px;
    font-weight: 700;
    color: #061138;
}
.contact .line-dec {
    position: relative;
    height: 1px;
    background: rgba(30, 144, 255,0.15);
    margin-top: 30px;
    margin-bottom: 30px;
}

/* ======= 13. Button style ======= */
/* button 1 */
.button-1 {
    display: inline-block;
    height: auto;
    padding: 12px 32px;
    border: 2px solid #1e90ff;
    border-radius: 80px;
    background-color: #1e90ff;
    -webkit-transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
    transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
    color: #fff;
    line-height: 1.5em;
    font-weight: 400;
    text-align: center;
}
.button-1:hover {
  border: 2px solid #061138;
  background-color: #061138;
  color: #fff;
}
/* button 2 */
.button-2 {
    display: inline-block;
    height: auto;
    padding: 12px 32px;
    border: 2px solid #1e90ff;
    border-radius: 80px;
    background-color: transparent;
    -webkit-transition: border-color 400ms ease, background-color 400ms ease;
    transition: border-color 400ms ease, background-color 400ms ease;
    color: #061138;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
}
.button-2:hover {
  border-color: #1e90ff;
  background-color: #1e90ff;
  color: #fff;
}
/* button 3 */
.button-3 {
  display: inline-block;
  height: auto;
  padding: 12px 32px;
  border: 2px solid #fff;
  border-radius: 80px;
  background-color: #fff;
  -webkit-transition: border-color 400ms ease, background-color 400ms ease;
  transition: border-color 400ms ease, background-color 400ms ease;
  color: #061138;
  line-height: 1.5em;
  text-align: center;
  text-decoration: none;
}
.button-3:hover {
  border: 2px solid #1e90ff;
  background-color: #1e90ff;
  color: #fff;
}
/* button 4 */
.button-4 {
  display: inline-block;
  height: auto;
  padding: 12px 32px;
  border: 2px solid #1e90ff;
  border-radius: 80px;
  background-color: #1e90ff;
  -webkit-transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
  transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
  color: #fff;
  line-height: 1.5em;
  font-weight: 400;
  text-align: center;
}
.button-4:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #061138;
}
/* button 5 */
.button-5 {
  display: inline-block;
  height: auto;
  padding: 12px 32px;
  border: 2px solid #061138;
  border-radius: 80px;
  background-color: #061138;
  -webkit-transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
  transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
  color: #fff;
  line-height: 1.5em;
  font-weight: 400;
  text-align: center; 
  margin-right: 10px;
}
.button-5:hover {
  border: 2px solid #1e90ff;
  background-color: #1e90ff;
  color: #fff;
}
/* button 6 */
.button-6 {
  display: inline-block;
  height: auto;
  padding: 12px 32px;
  border: 2px solid #061138;
  border-radius: 80px;
  background-color: transparent;
  -webkit-transition: border-color 400ms ease, background-color 400ms ease;
  transition: border-color 400ms ease, background-color 400ms ease;
  color: #fff;
  line-height: 1.5em;
  text-align: center;
  text-decoration: none;
}
.button-6:hover {
  border-color: #061138;
  background-color: #061138;
  color: #fff;
}

/* ======= 14. 404 Page style ======= */
.notfound {
	min-height: calc(100vh - 150px);
	height: auto;
	position: relative;
	background-blend-mode: overlay;
	background: rgba(3,6,30, 0.7);
	background-image: url("../img/01.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #fff;
}
.notfound h1 {
    font-size: 160px;
    font-weight: 700;
    margin-bottom: 0px;
    position: relative;
    line-height: 160px;
    color: transparent;
    -webkit-text-stroke: 2px #1e90ff;
}
.notfound h2 {
    font-size: 48px;
    color: #fff;
    position: relative;
}
.notfound p {
	color: #fff;
	font-size: 15px;
}
/* form */
.notfound form {
  margin-top: 30px;
  position: relative;
}
.notfound form input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    background-color: transparent;
    border: 2px solid #1e90ff;
    border-radius: 30px;
    color: #fff;
    margin-bottom: 15px;
    outline: none;
}
.notfound form input::placeholder {
    color: #fff;
}
.notfound form button {
    background-color: #1e90ff;
    border-radius: 100%;
    color: #fff;
    border: 0;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    width: 46px;
    height: 46px;
}
.notfound form button i {
    font-size: 15px;
}
.notfound form button:hover {
  background-color: #fff;
  color: #1e90ff;
	outline: none;
}

/* ======= 15. Footer style ======= */
.footer-logo-row {
	background: #061138;
}

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
}
.footer .widget .widget-title {
    font-size: 21px;
    display: inline-block;
    position: relative;
    color: #fff;
}
/* first footer */
.first-footer {
        padding: 120px 0 0 0;
}
/* footer icon */
.icon-footer {
    width: 60px;
    max-height: 60px;
    min-height: 60px;
    min-width: 60px;
    background-color: #1e90ff;
    color: #fff;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #1e90ff;
    border-radius: 100%;
}
.icon-footer i {
    width: 100%;
    text-align: center;
}
/* footer link */
.links.dark {
    border-style: solid;
    border-width: 2px;
    border-color: rgba(255,255,255,0.1);
    box-shadow: none;
    border-radius: 3px;
}
.links.dark.footer-contact-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
    padding: 20px 20px 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
}
.footer-contact-links-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1032px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-contact-links-divider {
    width: 2px;
    min-height: 100%;
    margin-right: 20px;
    margin-left: 20px;
    background-color: rgba(255,255,255,0.1);
}
.footer-contact-link-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
}
.image-wrapper.footer-contact-link-icon {
    margin-right: 22px;
}
.footer-contact-link-wrapper h6 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 3px;
    margin-top: 5px;
}
.footer-contact-link-wrapper p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-bottom: 0px;
}
/* second footer */
.second-footer {
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.second-footer .widget-area .widget {
    padding: 30px 0;
}
.second-footer .widget-area .widget p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}
/* usefull links */
.footer .usful-links ul {
    margin: 0;
    padding: 0;
}
.footer .usful-links ul li {
    margin-bottom: 5px;
}
.footer .usful-links ul li:hover {
    color: #1e90ff;
}
.footer .usful-links ul li i {
    font-size: 7px;
    margin-right: 3px;
}
.footer .usful-links ul li a {
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-left: 0px;
}
.footer .usful-links ul li a:hover {
    color: #1e90ff;
}
/* bottom footer */
.copyright {
    padding-top: 30px;
    padding-bottom: 30px;
}
.copyright p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.copyright p a {
    color: #1e90ff;
}
.copyright p a:hover {
    color: #fff;
}
.copyright p span {
    color: rgba(255, 255, 255, 0.01);
    padding: 0 5px;
}
/* social icons */
.social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 42px;
    text-align: center;
    background: #1e90ff;
    margin-right: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    border-radius: 100%;
    border: 2px solid #1e90ff;
    font-size: 17px;
    color: #fff;
}
/* newsletter */
.widget-newsletter {
    position: relative;
}
	.widget-newsletter input {
		height: 60px;
		width: 100%;
		border: none;
		background: transparent;
		font-size: 15px;
		color: #fff;
		outline: none;
		padding: 0 90px 0 20px;
		border: 2px solid #1e90ff;
		border-radius: 30px;
	}
.widget-newsletter input::placeholder {
    color: rgba(255,255,255,0.8);
}
.widget-newsletter button {
    height: 50px;
    border: none;
    background: #1e90ff;
    font-size: 15px;
    color: #fff;
    outline: none;
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 100%;
    width: 50px;
}
.widget-newsletter button:hover {
    background: #1e90ff;
    color: #fff;
}
@media screen and (max-width: 767px) {
	.footer-contact-links-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer-contact-links-divider {
		width: auto;
		min-height: 1px;
		margin: 20px 0px;
	}
}

/* ======= 16. toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e648';
    text-align: center;
    line-height: 50px;
    font-size: 15px;
    font-weight: normal;
    color: transparent;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: transparent;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap::after {
    color: #1e90ff;
}
.progress-wrap svg.progress-circle path {
    stroke: #1e90ff;
}

/* =======  17. Overlay Effect Bg image style  ======= */
[data-overlay-dark] {
  position: relative;
}
[data-overlay-dark] .container {
  position: relative;
  z-index: 2;
}
[data-overlay-dark]:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-overlay-dark]:before {
  background: #061138;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
  color: #fff;
}
[data-overlay-dark] p {
  color: #fff;
}
[data-overlay-dark="0"]:before {
  opacity: 0;
}
[data-overlay-dark="1"]:before {
  opacity: 0.1;
}
[data-overlay-dark="2"]:before {
  opacity: 0.2;
}
[data-overlay-dark="3"]:before {
  opacity: 0.3;
}
[data-overlay-dark="4"]:before {
  opacity: 0.4;
}
[data-overlay-dark="5"]:before {
  opacity: 0.5;
}
[data-overlay-dark="6"]:before {
  opacity: 0.6;
}
[data-overlay-dark="7"]:before {
  opacity: 0.7;
}
[data-overlay-dark="8"]:before {
  opacity: 0.8;
}
[data-overlay-dark="9"]:before {
  opacity: 0.9;
}
[data-overlay-dark="10"]:before {
  opacity: 1;
}

/* ======= 18. Responsive style ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}
@media screen and (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll !important;
    }
    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }
    
    .header .caption h1,
    .section-title,
    .kenburns-inner .caption h1,
    .banner-header.full-height h1,
    .header .caption h2,
    .banner-header h1,
    .banner-header h2,
    .dynamic-video-wrapper .wrap-content h1,
    .dynamic-video-wrapper .wrap-content .h1 {
        font-size: 40px;
    }
}
@media screen and (max-width: 767px) {
    .header .caption h1 {
        font-size: 40px;
        margin-bottom: 15px;
        line-height: 1.2em;
    }
    
    
    .header .caption h4 {
        font-size: 13px;
    }
    .header .caption p {
        font-size: 15px;
        margin-right: 10px;
    }
    .about #circle {
        display: none;
    }
    .dynamic-video-wrapper .wrap-content h1, 
    .dynamic-video-wrapper .wrap-content .h1 {
        font-size: 32px;
    }
    .dynamic-video-wrapper .wrap-content h4, 
    .dynamic-video-wrapper .wrap-content .h4 {
        font-size: 15px;
    }

    .portfolio .filtering span {
        margin-bottom: 10px;
    }

    .post-comment-section h3 span {
        margin-left: 0px;
    }
}

/* ======= 19. Misc & Overrides ======= */
.sub-navigation-row {
	background-color: #ebebeb;
	border: 2px solid #a8adab;
	border-left: none;
	border-right: none;
	text-align: right;
	vertical-align: middle;
}

	.sub-navigation-row h1 {
		/*height: 80px;*/
		text-transform: uppercase;
		line-height: 80px;
		margin-bottom: 0px;
		color: #080851;
		font-size: 24px !important;
	}

@media screen and (max-width: 991px) {

	.sub-navigation-row h1 {
		line-height: 40px;
		font-size: 18px !important;
	}
}

	.portfolio-item h2 {
		text-transform: uppercase;
		color: #377ef7;
		font-size: 20px;
	}

	.portfolio-item a {
		text-decoration: underline;
	}

	.portfolio-item h2 a {
		text-decoration: none;
	}

	.leadership-team h2 {
		text-transform: none;
		color: #080851;
		font-size: 20px;
	}

	.leadership-team h3 {
		text-transform: none;
		color: #377ef7;
		font-size: 18px;
		font-style: italic;
	}

	.leadership-team p {
		color: #040556;
	}

	.downloadable-resources li {
		list-style-type: disc;
	}

	.our-markets b {
		color: #fff;
		font-weight: bold;
	}

	.our-mission {
		display: none;
	}

	.our-mission-overlay {
		position: absolute;
		bottom: 15px;
		width: 100%;
		text-align: center;
	}

		.our-mission-overlay h1 {
			color: white;
			font-style: italic;
			font-size: 25px;
		}

		.our-mission-overlay .shadow {
			filter: drop-shadow(5px 5px 10px #040556);
		}

		.our-mission-overlay .section-title {
			color: #fff;
		}

	.maple-overlay {
		position: absolute;
		top: 25px;
		right: 25px;
		width: 100%;
		text-align: right;
		filter: drop-shadow(5px 5px 10px #040556);
		color: white;
	}


	@media screen and (max-width: 991px) {
		.our-mission-overlay {
			display: none;
		}

		.maple-overlay {
			font-size: 22px;
		}

		.our-mission {
			display: block;
		}
	}
