html {
  overflow-x: hidden;
}

html, html a, body {
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  color: #222324;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: Montserrat, sans-serif;
  line-height: 1.2;
  color: #242424;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #242424;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 a:focus, h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  color: #13b1cd;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

em,
li {
  font-size: 1rem;
  font-weight: 300;
  color: #242424;
}

em > a,
li > a {
  color: #242424;
}

em > a:hover,
li > a:hover {
  color: #2683e2;
}

small {
  color: #656565;
}

label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: 0.25rem;
}

i {
  line-height: 1;
}

/* Paragraph */
p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #656565;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #2683e2;
  text-decoration: none;
}

a:focus, a:hover {
  color: #1664b4;
  text-decoration: none;
}

a:focus {
  outline: none;
}

/*--------------------
  Selection
---------------------*/
::selection {
  color: #fff;
  background: #2683e2;
  text-shadow: none;
}

::-webkit-selection {
  color: #fff;
  background: #2683e2;
  text-shadow: none;
}

:active,
:focus {
  outline: none;
}

.fa-1x {
  font-size: 1.5em;
}

.text-uppercase {
  text-transform: uppercase;
}

.f-weight-700 {
  font-weight: 700;
}

.p-color {
  color: #2683e2;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.pb-7-lg {
  padding-bottom: 7.8125rem !important;
}

.pt-7-lg {
  padding-top: 7.8125rem !important;
}

.g-service {
  float: left;
  width: 1.875rem;
}

.g-service i.fa {
  font-size: 1.8rem;
  color: #2683e2;
}

.g-service-body {
  overflow: hidden;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.f-size-lg {
  font-size: 3.75rem;
}

/*----------------------------
# Preloader
------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #0d3967;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #9abbdf;
  border-top-color: #0d3967;
  border-bottom-color: #0d3967;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*----------------------------------
  Header
------------------------------------*/
.header-area {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  padding: 1rem 1rem;
}

.header-white {
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(34, 35, 36, 0.3);
  top: 0;
  left: 0;
  width: 100%;
}

/* Logo
------------------------------ */
.header-logo {
  position: relative;
  z-index: 9999;
  width: 100%;
  height: auto;
  float: left;
}
.header-logo::after {
  clear: left;
}

.header-logo-link {
  display: inline-block;
  padding: 0.5rem 0;
}

.header-logo-link:focus, .header-logo-link:hover {
  text-decoration: none;
}

.header-logo-img, .header-logo-text {
  display: block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.header-logo-img {
  opacity: 1;
}

.header-logo-text {
  position: absolute;
  top: 1rem;
  left: 3.5rem;
  opacity: 1;
  color: #9abbdf;
  font-size: 1.25rem;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-family: "Loto", sans-serif;
}

@media (max-width: 61.9em) {
  .header-logo {
    height: auto;
    float: left;
    margin-left: 0 !important;
  }
}
.be-navbar-light {
  background: transparent !important;
  z-index: 3;
  padding: 0;
  /* -webkit-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34); */
}

@media (max-width: 991.98px) {
  .be-navbar-light .navbar-nav {
    padding-bottom: 10px;
  }
}
.be-navbar-light .navbar-nav > .nav-item > .nav-link {
  font-size: 14px;
  /* padding-top: 2.3rem;
  padding-bottom: 2.3rem; */
  padding-left: 18px;
  padding-right: 18px;
  font-weight: 700;
  color: #0256A3;
  position: relative;
  text-transform: uppercase;
  opacity: 1 !important;
}

.be-navbar-light .navbar-nav > .nav-item > .nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #2683e2;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  z-index: -1;
}

.be-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
  color: #2683e2;
}

.be-navbar-light .navbar-nav > .nav-item > .nav-link:hover:before {
  visibility: visible;
  background-color: #2683e2;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 991.98px) {
  .be-navbar-light .navbar-nav > .nav-item > .nav-link {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
  .be-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
    color: #2683e2;
  }
}
@media (max-width: 767.98px) {
  .be-navbar-light .navbar-nav > .nav-item > .nav-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}
.be-navbar-light .navbar-nav > .nav-item .dropdown-menu {
  border: none;
  background: #fff;
  -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
  box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.be-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item {
  font-size: 12px;
  color: #252d39;
}

.be-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item:hover,
.be-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item:focus {
  background: #2683e2;
  color: #fff;
}

@media (max-width: 991.98px) {
  .be-navbar-light .navbar-nav > .nav-item .dropdown-menu {
    display: block !important;
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.be-navbar-light .navbar-nav > .nav-item.active > a {
  color: #2683e2;
}

@media (min-width: 991.98px) {
  .be-navbar-light .navbar-nav > .nav-item > a {
    box-shadow: 0px 15px 39px 0px rgba(0, 0, 0, 0.2);
    margin-left: 15px;
  }
}
.be-navbar-light .navbar-nav > .nav-item.active > a:before {
  visibility: visible;
  background-color: #2683e2;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 991.98px) {
  .be-navbar-light .navbar-nav > .nav-item.active > a {
    color: #0256A3;
  }
  .be-navbar-light .navbar-nav > .nav-item.active > a:before {
    display: none;
  }
}
.be-navbar-light .navbar-toggler {
  border: 1px solid #0256A3;
  color: #0256A3 !important;
  cursor: pointer;
  padding-left: 8px;
  padding-right: 8px;
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 0.1em;
}

.be-navbar-light .navbar-toggler:focus {
  outline: none !important;
}

.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}

.main-banner .caption {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  transform: translate3d(0, -4 0%);
  text-align: center;
}
.main-banner .caption::before {
  display: table;
  content: " ";
}
.main-banner .caption::after {
  clear: both;
}

.main-banner .caption h6 {
  color: #2683e2;
  margin-top: 0;
  letter-spacing: 0.125rem;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: 1rem !important;
  margin-bottom: 1.5625rem;
}

.main-banner .caption h1 {
  font-size: 3.4375rem !important;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
  font-weight: 400;
  font-family: Montserrat, sans-serif;
  line-height: 1.2;
  color: #fff;
}

.culture-section {
  position: relative;
}

@media (min-width: 48em) {
  .h-100-percent {
    height: 100%;
  }
}
@media (min-width: 62em) {
  .culture-section-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.bg-position-center {
  background-size: cover !important;
  background-position: center center !important;
}