body {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

ol, ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

hr.blue {
  border: 2px solid #0c3b68;
  border-radius: 5px;
  opacity: 1;
}

hr.green {
  border: 2px solid #3ec1c7;
  border-radius: 5px;
  opacity: 1;
}

a.white-link {
	color: #fff;
}

a.white-link:hover {
	color: #3ec1c7;
}

a.blue-link {
	color: #0c3b68;
}

a.blue-link:hover {
	color: #3ec1c7;
}

a.green-link {
	color: #3ec1c7;
}

a.green-link:hover {
	color: #fff;
}

/* Typography */

.font-heading {
	font-family: 'Raleway', sans-serif;
}

.font-text {
	font-family: 'Lato', sans-serif;
}

.font-logo {
	font-family: 'Rokkitt', serif;
  font-weight: 600;
}

h1, h2, h3 {
	font-family: 'Raleway', sans-serif;
}

h4, h5, h6 {
	font-family: 'Lato', sans-serif;
}

.display-bold {
	font-weight: 700;
}

.display-black {
	font-weight: 900;
}

p {
	font-family: 'Lato', sans-serif;
}

.text-dark-blue {
    color:#0c3b68;
}

.text-light-blue {
	color:#2774be;
}

.text-green {
	color:#3ec1c7;
}

.text-red {
	color:#f24646;
}

.text-gold {
	color:#FBBE01;
}

.text-body {
	color:#1d2120;
}

.text-shadow {
	text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.icon-lg {
    font-size: 56px;
}

.border-dark-blue {
    border-color: #0c3b68!important;
}

.border-green {
    border-color: #3ec1c7!important;
}

.letter-spacing {
  letter-spacing: 2px;
}

/* Buttons */

.btn {
  font-family: 'Raleway', sans-serif;
  position: relative;
  z-index: 1;
}

.btn:focus, 
.btn:active {
  outline: none !important;
  box-shadow: none !important;
}

.btn-dark-blue {
  background-color: #0c3b68;
  color: #fff;
}

.btn-green {
  background-color: #3ec1c7;
  color: #fff;
}

.btn-red {
  background-color: #f24646;
  color: #fff;
}

.btn-dark-blue:hover, {
    background-color: #0c3b68;
}

.btn-green:hover {
    background-color: #3ec1c7;
}

.btn-red:hover {
    background-color: #f24646;
}

.btn-dark-blue:hover,
.btn-green:hover,
.btn-red:hover {
    color: #fff;
}

.btn-white {
  background-color: #fff;
  color: #0c3b68;
}

.btn-white:hover {
  color: #0c3b68;
}

.btn-web {
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  outline: 0;
  position: relative;
  text-align: center;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn-cta {
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-weight: 900;
  outline: 0;
  position: relative;
  text-align: center;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn-web:hover,
.btn-cta:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
}

.btn-web,
.btn-cta {
  font-size: 18px;
  padding: 10px 20px;
}

@media (min-width: 768px) {
  .btn-cta {
    font-size: 20px;
	padding: 14px 28px;
  }
}

@media (min-width: 992px) {
  .btn-cta {
    font-size: 24px;
	padding: 18px 36px;
  }
}

.hover-icon i {
	margin-left:0px;
	margin-top:5px;
	opacity:0;
	visibility:hidden;
	width:0px;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}

.hover-icon:hover i {
	width:14px;
	margin-left:10px;
	opacity:1;
	visibility:visible;
}

.section-masthead {
  padding-top: 120px;
  padding-bottom: 70px;
}

.section-title {
  margin-bottom: 40px;
}

.section-title-border {
  position: relative;
  height: 5px;
  width: 50px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.section-title-border.border-center {
  margin-left: calc(50% - 27px);
}

.section-title-border.border-blue {
  background: #0c3b68;
}

.section-title-border.border-green {
  background: #3ec1c7;
}

.section-title-border.border-white {
  background: #fff;
}

.section-title-border.border-inline {
  display: inline-block;
  margin-bottom: 5px;
}

.bg-cover,
.bg-contain,
.bg-fixed {
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-fixed {
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 1023px) {
.bg-fixed {
  background-attachment: scroll;
}
}

.bg-dark-blue {
  background: #0c3b68 !important;
}

.bg-light-blue {
  background: #2774be !important;
}

.bg-green {
  background: #3ec1c7 !important;
}

.bg-gray {
  background: #f4f7f7 !important;
}

.bg-red {
	background: #f24646 !important;
}

.bg-gradient-blue {
    background: rgb(12,59,104);
	background: linear-gradient(180deg, rgba(12,59,104,1) 0%, rgba(39,116,190,1) 100%);
}

.bg-gradient-blue-reverse {
    background: rgb(39,116,190);
	background: linear-gradient(180deg, rgba(39,116,190,1) 0%, rgba(12,59,104,1) 100%);
}

.overlay-black {
    height: 100%;
  	width: 100%;
  	top: 0;
  	left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.overlay-blue {
    height: 100%;
  	width: 100%;
  	top: 0;
  	left: 0;
	background: rgba(12, 59, 104, 0.7);
}

.overlay-white {
    height: 100%;
  	width: 100%;
  	top: 0;
  	left: 0;
	background: rgba(255, 255, 255, 0.5);
}

.blue-box {
	background: #0c3b68;
	transition: .3s ease-in;
}

.blue-box:hover {
	background: #2774be;
}

.box-shadow {
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
}

.box-shadow-white {
    box-shadow: 0px 15px 39px 0px #fff;
}

.img-shadow {
	box-shadow: 0 0 10px rgba(0,0,0,0.64);
}

.img-circle {
	border-radius: 50%;
}

.img-rounded {
	border-radius: 0.25rem;
}

.img-blue-border {
	border: 5px solid #0c3b68;
}

.img-white-border {
	border: 5px solid #fff;
}

.img-green-border {
	border: 5px solid #3ec1c7;
}

@media (max-width: 767px) {
.img-blue-border {
	border: 3px solid #0c3b68;
}

.img-white-border {
	border: 3px solid #fff;
}

.img-green-border {
	border: 3px solid #3ec1c7;
}
}

.image-container {
	margin-bottom: 2rem;
}

@media (min-width: 1200px) {
.image-container {
    margin-left: 2rem;
    margin-right: 1.375rem;
	margin-bottom: 0;
}
}

@media (min-width: 1200px) {
.text-container {
    margin-right: 2rem;
    margin-left: 1.375rem;
}
}

video {
  width: 100%;
  height: auto;
}

.title-layer {
	position: relative;
	display: block;
	overflow: hidden;
}

.breadcrumb-layer {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb-layer ul li {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 20px;
  padding-right: 21px;
  margin-right: 20px;
}

.breadcrumb-layer ul li a,
.breadcrumb-layer .aioseo-breadcrumb a {
    color: #fff;
}

.breadcrumb-layer ul li a:hover,
.breadcrumb-layer .aioseo-breadcrumb a:hover {
    color: #3ec1c7;
}

.breadcrumb-layer .aioseo-breadcrumb-separator {
  color: #3ec1c7;
}

.breadcrumb-layer ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.no-scroll-y {
	overflow-y: hidden;
}

.ctn-preloader {
	align-items: center;
	display: flex;
  	height: 100%;
  	justify-content: center;
	position: fixed;
	left: 0;
  	top: 0;
	width: 100%;
  	z-index: 9000;
}

.ctn-preloader .animation-preloader {
	position: absolute;
  	z-index: 9001;
}

.ctn-preloader .animation-preloader .spinner {
  	display: block;
    position: relative;
	height: 9em;
  	margin: 0 auto 3.5em auto;
  	width: 9em;
}

.ctn-preloader .animation-preloader .spinner:before {
  	content: "";
    position: absolute;
	animation: spinner 1s infinite linear;
	border-radius: 50%;
  	border: 3px solid #fff;
  	border-top-color: #3ec1c7;
  	height: 9em;
  	margin: 0 auto 3.5em auto;
  	width: 9em;
}

.ctn-preloader .animation-preloader .spinner img {
	position:absolute;
	top: 22px;
    left: 22px;
    right: 22px;
    bottom: 22px;
}

.ctn-preloader .animation-preloader .txt-loading {
  	font: bold 5em 'Rokkitt', serif;
	text-align: center;
	user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #0c3b68;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
	color: rgba(0, 0, 0, 0.2);
	position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

@keyframes spinner {
	to {
		transform: rotateZ(360deg);
	}
}

@keyframes letters-loading {
  0%,
  75%,
  100% {
  	opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {	
.ctn-preloader .animation-preloader .txt-loading {
	  font: bold 4em Rockwell,Courier Bold,Courier,Georgia,Times,Times New Roman,serif;
}
}

@media screen and (max-width: 500px) {
.ctn-preloader .animation-preloader .txt-loading {
	  font: bold 3em Rockwell,Courier Bold,Courier,Georgia,Times,Times New Roman,serif;
}
}

.error-number {
	position: relative;
    display: block;
    font-size: 180px;
    line-height: 150px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 17px 0 18px
}

.sticky-callback {
    position: fixed;
    left: 15px;
    bottom: 15px;
	width:180px;
    cursor: pointer;
    display: block;
    z-index: 99;
	animation: sticky-bounce 10s infinite;
}

@keyframes sticky-bounce {
	0%,2%,5%,8%,10%,100% {
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	transform:translateY(0)
	}
	4%,6%{
		-webkit-transform:translateY(-15px);
		-ms-transform:translateY(-15px);
		transform:translateY(-15px);
		opacity:1
	}
}

@media screen and (max-width: 991px) {
.sticky-callback {
	width:135px;
}
}

.progress-wrap {
    position: fixed;
	background: #fff;
    right: 15px;
    bottom: 15px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset  0 0 0 2px rgba(95, 58, 252,0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
	content: "\f077";
    text-align: center;
    line-height: 46px;
    font-size: 20px;
	font-weight: 900;
    color: #0c3b68;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path { 
    fill: none; 
}
  
.progress-wrap svg.progress-circle path {
    stroke: #3ec1c7;
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}