@charset "utf-8";
/* CSS Document */

/* Common */
html {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  font-family: Lato, Sans-Serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

section {
  position: relative;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
}

.inner {
  margin: 0 auto;
  width: 100%;
}

.content {
  width: 100%;
  overflow: hidden;
}

.content-inner {
  padding: 20px;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

p {
  font-size: 0.96em;
}

a {
  text-decoration: none;
  color: #1e2f6e;
}

:root {
  --swiper-theme-color: #1e2f6e;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-space-evenly {
  justify-content: space-evenly !important;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-2,
.col-9 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/*------/ Hamburger Navbar /------*/

.navbar-toggler {
  position: relative;
  display: block;
  width: 35px;
  height: 40px;
  padding: 5px;
  cursor: pointer;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
}

.navbar-toggler span {
  display: block;
  background-color: #00418f;
  height: 3px;
  width: 35px;
  margin-top: 8px;
  margin-bottom: 4px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 0;
  opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  top: 15px;
  left: 9px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  top: 15px;
  left: 9px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  opacity: 0.9;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1440px;
    margin: 0 auto;
  }

  .inner {
    max-width: 1440px;
  }
}

section {
  padding-top: 20px;
  padding-bottom: 10vh;
  position: relative;
}

.section-inner {
  width: 100%;
  padding-top: 35px;
  display: inline-block;
  margin-top: 0px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

button {
  border-radius: 25px;
  transition: all 0.3s;
  border-style: none;
  outline: none;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 5px rgba(34, 96, 140, 0.2);
}

button.vue-lb-arrow:hover {
  box-shadow: none;
}

.pc {
  display: inline-block !important;
}

.sp {
  display: none !important;
}

.pc_none {
  display: none;
}

.sp_none {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: inline-block !important;
  }

  .pc_none {
    display: block;
  }

  .sp_none {
    display: none;
  }

  html {
    font-size: 16px;
  }

  body {
    min-width: initial;
    height: auto;
  }

  .inner {
    max-width: initial;
    margin: 0 auto;
  }

  section {
    padding-top: 30px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
  }

  footer {
    padding: 1em 0;
  }
}

/* Body */
body {
  font-family: Lato, Sans-Serif;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-style: normal;
  font-weight: 300;
  background: #fff;
  color: #1e2f6e;
}

/* Container */
.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
}

/* Navigation */
header {
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  padding-top: 5px;
  padding-bottom: 5px;
  position: fixed;
  top: 0;
  box-shadow: 0 5px 5px rgba(34, 96, 140, 0.2);
  z-index: 1000;
}

.logo {
  color: #1e2f6e;
  font-weight: bold;
  text-align: undefined;
  width: 10%;
  float: left;
  margin-left: 25px;
  letter-spacing: 4px;
}

.logo img {
  object-fit: cover;
}

nav {
  float: right;
  text-align: right;
  margin-right: 5px;
}

header nav ul {
  list-style: none;
  float: right;
}

nav ul li {
  float: left;
  color: #1e2f6e;
  font-size: 14px;
  text-align: left;
  margin-right: 25px;
  letter-spacing: 2px;
  font-weight: bold;
  transition: all 0.3s linear;
}

ul li a {
  color: #1e2f6e;
  text-decoration: none;
}

ul li:hover a {
  color: #2c9ab7;
}

/* Hero Section */
.hero {
  margin-top: 70px;
}

.hero_header {
  color: #1e2f6e;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  letter-spacing: 4px;
}

.light {
  font-weight: bold;
  color: #717070;
}

/* About Section */
.text_column {
  width: 29%;
  text-align: justify;
  font-weight: lighter;
  line-height: 25px;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
  color: #a3a3a3;
}

.about {
  width: 100%;
  padding-top: 35px;
  display: inline-block;
  background-color: #ffffff;
  margin-top: 0px;
}

/* More info */

.cards {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 200px;
}

.button {
  width: 200px;
  margin-top: 40px;
  margin-right: auto;
  margin-bottom: auto;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 10px;
  text-align: center;
  vertical-align: middle;
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  border: 3px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s linear;
}

.button:hover {
  background-color: #fefefe;
  color: #c4c4c4;
  cursor: pointer;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #717070;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: lighter;
  letter-spacing: 2px;
  border-top-width: 2px;
  font-size: 0.8em;
}

.footer_banner {
  background-color: #b3b3b3;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 0px;
}

.footer_header {
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  letter-spacing: 4px;
}

.hidden {
  display: none;
}

/* Mobile */
@media (max-width: 320px) {
  .logo {
    width: 100%;
    text-align: center;
    margin-top: 13px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .container header nav {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    width: 100%;
    float: none;
    display: none;
  }

  nav ul li {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    width: 100%;
    text-align: center;
  }

  .text_column {
    width: 100%;
    text-align: justify;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .footer_column {
    width: 100%;
    margin-top: 0px;
  }

  .footer_header {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 22px;
    text-align: center;
  }
}

/* Small Tablets */
@media (min-width: 321px) and (max-width: 767px) {
  .logo {
    width: 100%;
    text-align: left;
    margin-top: 0;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 16px;
    color: #043745;
  }

  .container header nav {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    width: 100%;
    float: none;
    overflow: auto;
    display: inline-block;
    background: #52bad5;
  }

  header nav ul {
    padding: 0px;
    float: none;
  }

  nav ul li {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    width: 100%;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .about {
    width: 95%;
    padding-left: 3%;
  }

  .footer_column {
    width: 100%;
    margin-top: 0px;
  }
}

@media screen and (max-width: 1096px) {

  /* Container */
  .container {
    width: 100%;
  }

  .section-inner {
    width: 100%;
    margin: 0 auto;
  }

  nav {
    margin: 0;
  }
}

/*--------------------------------
  js-scroll
--------------------------------*/
.js-scroll-fadein {
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}

.js-scroll-fadein.is-fadein {
  visibility: visible;
  opacity: 1;
}

.arrow {
  position: fixed;
  right: 12px;
  bottom: 90px;
  color: #fff;
  cursor: pointer;
  background-color: #00418f;
  border-radius: 22px;
  padding: 20px;
  transition: all 0.2s ease-in-out;
}

.arrow:hover {
  background-color: #882aaf;
  bottom: 105px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.5);
}

.arrow:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  left: 14px;
  top: 17px;
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

.loader {
  margin: 0 auto;
  font-size: 10px;
  position: relative;
  top: calc(50vh - 5em);
  text-indent: -9999em;
  border-top: 0.6em solid rgba(14, 68, 152, 0.2);
  border-right: 0.6em solid rgba(14, 68, 152, 0.2);
  border-bottom: 0.6em solid rgba(14, 68, 152, 0.2);
  border-left: 0.6em solid #0e4498;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loaded {
  -webkit-animation-name: loader-fadeOut;
  animation-name: loader-fadeOut;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-delay: 0.8s;
}

@-webkit-keyframes loader-fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loader-fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 43.25%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.contact-form pre {
  font-size: 14px;
}