:root {
  --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --dynamic-height: calc(var(--vh, 1vh) * 100);
}


/* --------------------- Structure -------------------- */
body {
  /*background-color: #0c0c0c;*/
  background-color: #003159;
}
::-webkit-scrollbar {
  width: 0;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}
.main-content {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.container-fluid {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.h-section {
  padding: 0;
  width: 100vw;
  height: 100%;
  transition: var(--transition);
  overflow: hidden;
}
.padding {
  padding: 100px 10% 20px;
  overflow: hidden;
}



/* --------------------- Typography ------------------- */
/* Aeonik */
@font-face {
  font-family: 'Aeonik';
  src: url('/css/fonts/Aeonik-Air.otf');
  font-display: swap;
  font-weight: 100;
}
@font-face {
    font-family: 'Aeonik';
    src: url('/css/fonts/Aeonik-Thin.otf');
    font-display: swap;
    font-weight: 200;
}
@font-face {
    font-family: 'Aeonik';
    src: url('/css/fonts/Aeonik-Light.otf');
    font-display: swap;
    font-weight: 300;
}
@font-face {
    font-family: 'Aeonik';
    src: url('/css/fonts/Aeonik-Regular.otf');
    font-display: swap;
    font-weight: 400;
}
@font-face {
    font-family: 'Aeonik';
    src: url('/css/fonts/Aeonik-Medium.otf');
    font-display: swap;
    font-weight: 500;
}
@font-face {
    font-family: 'Aeonik';
    src: url('/css/fonts/Aeonik-Bold.otf');
    font-display: swap;
    font-weight: 600;
}
@font-face {
    font-family: 'Aeonik';
    src: url('/css/fonts/Aeonik-Black.otf');
    font-display: swap;
    font-weight: 700;
}

.btn-primary:focus,
.btn-primary:active {
  outline: none !important;
  box-shadow: none !important;
  background-color: #fff !important;
  border-color: #fff !important;
  color: #000;
}
.btn-primary {
  font-size: 16px;
  text-transform: uppercase;
  background: transparent;
  border: none;
  font-weight: 500;
  font-family: 'Aeonik';
  margin-top: 30px;
  border-radius: 0;
  transition: var(--transition);
  letter-spacing: 1px;
  padding: 10px 20px;
}
.btn-primary:hover {
  background-color: #fff !important;
  color: #000 !important;
}
.b-top {
  border-top: 1px solid #fff;
}

p {
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
}
h1 {
  font-size: 40px;
  font-family: 'Aeonik';
  font-weight: 400;
  line-height: 1em;
  text-transform: uppercase;
}
h2 {
  font-size: 30px;
  font-family: 'Aeonik';
  font-weight: 300;
  line-height: 34px;
  /*margin-bottom: 40px;*/
}
.subhead {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}


/* Header */
header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 99;
  transition: var(--transition);
}
header:after {
  content: '';
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: -1;
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -moz-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  -webkit-transition: all 0.75s ease;
  transition: all 0.75s ease;
  pointer-events: none;
}
header.fixed:after {
  transform: translateX(0);
}
header.fixed .main-menu {
  left: 93px;
}
.header-fixed .logo {
  max-height: 40px;
}

header .header-inner {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  padding: 20px;
}
/* menu button */
.btn-menu {
    display: flex;
    align-items: center;
    align-self: center;
    justify-self: center;
    border: none;
    box-shadow: none;
    outline: none;
    background: transparent;
    grid-row: 2/3;
}
.btn-menu:focus {
    outline: none;
    box-shadow: none;
}
.btn-menu .icon-bars {
    display: flex;
    justify-content: space-between;
    height: 35px;
}
.btn-menu .icon-bar {
    width: 2px;
    height: 100%;
    background: #fff;
    margin-right: 10px;
    transition: var(--transition);
}
.btn-menu .icon-bar.bottom-bar {
    margin-right: 0;
    margin-top: 15px;
}
.btn-menu:hover .icon-bar {
    margin-top: 0;
}

.navbar-brand {
  margin-right: 0;
  grid-row: 1/2;
  align-self: flex-start;
  max-width: 77px;
  z-index: 9;
}
.navbar-brand svg {
    max-width: 165px;
    height: auto;
}
.logo {
  max-height: 60px;
  fill: #fff;
  transition: var(--transition);
}


.header-social {
  grid-row: 3/4;
  align-self: flex-end;
}
.header-social.mobile {
  display: none;
}
.header-social ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  text-align: center;
}
.header-social ul li {
  margin-bottom: 25px;
}
.header-social ul li:last-child {
  margin-bottom: 0;
}
.header-social ul li a {
  font-size: 0;
}
.header-social ul li svg {
  width: 20px;
  height: auto;
  fill: #fff;
}



/* Menu opened */
.menu-opened .icon-bar.top-bar{
  transform: translateX(5px) rotate(45deg);
  margin-right: 0;
}
.menu-opened .icon-bar.bottom-bar{
  transform: translateX(5px) rotate(-45deg);
  margin-top: 0;
}
.menu-opened .btn-menu,
.menu-opened .header-social {
  justify-self: center;
  text-align: center;
}
.menu-opened .header-inner {
  border-right: 1px solid #ffffff24;
}

.main-menu {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  padding: 20px;
  position: fixed;
  left: 118px;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.menu-opened .main-menu {
  opacity: 1;
  pointer-events: all;
}
.menu-slice-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  /*background: #000000ed;*/
  background: #003159;
  z-index: -1;
  pointer-events: none;
}
.menu-slice-bg.left {
  top: 0;
  bottom: auto;
}
.main-menu .primary {
  grid-row: 2/3;
  align-self: center;
}
.main-menu .secondary {
  grid-row: 3/4;
  align-self: flex-end;
}
.secondary-menu ul {
  display: flex;
  flex-direction: column;
  padding-left: 0;
}
.nav-link {
  color: #ffffff94;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 10px !important;
  transition: var(--transition);
}
.nav-link:hover {
  color: #fff;
}
.secondary-menu .nav-item:last-child a {
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 3px;
}
.menu-address {
  padding: 0 !important;
  margin-bottom: 20px;
}
.menu-address p {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 10px;
}
.menu-address a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  text-transform: capitalize;
}


#intro-section {
  display: grid;
  grid-template-columns: 147px 1fr 20vw;
  grid-template-rows: 110px 1fr 13vh;
  height: var(--dynamic-height);
  overflow: hidden;
  column-gap: 10px;
}
#intro-section .intro-desc {
  grid-column: 2/3;
  grid-row: 2/3;
  z-index: 9;
  align-self: flex-end;
}
.slider-progress {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
.slide-progress-full {
  width: 60px;
  margin: 0 20px;
  background-color: #ffffff57;
}
.slide-progress-line {
  height: 1px;
  background-color: #fff;
  transition: var(--transition);
}
#intro-section .intro-desc .module-text {
  display: flex;
}
#intro-section .intro-desc .module-text h1 {
  margin-right: 50px;
}
#intro-section .intro-desc .module-text h2 {
  font-size: 19px;
  max-width: 230px;
  text-transform: uppercase;
  font-weight: 300;
  color: #ffffffc7;
  line-height: 1.1em;
}

.scroll-down-wrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-right: 22.5%;
    margin-top: 40px;
}
.scroll-down-wrapper a {
    color: #000;
    background: #fff;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}
#intro-section .scroll-down {
  position: relative;
  /*margin-bottom: -65px;*/
  /*margin-top: 40px;*/
  padding-left: 45px;
  color: #fff;
  font-weight: 500;
  pointer-events: none;
}
#intro-section .scroll-down:before,
#intro-section .scroll-down:after {
  content: '';
  position: absolute;
}
#intro-section .scroll-down:before {
  width: 26px;
  height: 50px;
  border: 1px solid #fff;
  left: 0;
  top: -13px;
  border-radius: 5em;
}
#intro-section .scroll-down:after {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  left: 8px;
  top: -5px;
  animation: cursorMove 2s ease-in-out infinite alternate-reverse;
}
@-webkit-keyframes cursorMove {
  0%{
      transform:translateY(0)
  }
  to{
      transform:translateY(1.5em)
  }
}
#intro-section .intro-slider-wrapper {
  grid-column: 1/3;
  grid-row: 1/4;
  overflow: hidden;
}
#intro-section .intro-slider {
  height: 100%;
}
#intro-section .intro-slider:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); */
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}
#intro-section .intro-slider .slick-list,
#intro-section .intro-slider .slick-track {
  height: 100%;
}
#intro-section .intro-slider .slick-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}
#intro-section .intro-slider .slick-list .slick-current img {
  animation: scale 1s;
}

@keyframes scale {
  from {
    transform: scale(1.2);
  }
}


/* Thumbnail gallery */
#intro-section .slider-nav-wrapper {
  grid-column: 3/4;
  grid-row: 1/4;
}
#intro-section .slider-nav .slick-slide {
  height: calc(33.33vh - 10px);
  margin-bottom: 10px;
  cursor: pointer;
  filter: brightness(0.5);
  transition: var(--transition);
}
#intro-section .slider-nav .slick-current {
  filter: brightness(1);
}
#intro-section .slider-nav .slick-slide img {
  height: 100%;
  object-fit: cover;
}


#section-2 .desc-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#section-2 .col-lg-7,
#section-2 .col-lg-7 .module-image {
  height: 100%;
}
#section-2 .col-lg-7 .module-image img {
  height: 100%;
  object-fit: cover;
  padding-left: 100px;
}

#contact .module-image,
#contact .module-image img {
  height: 100%;
  object-fit: cover;
}
.contact-col {
  padding: 80px 60px;
  height: 100%;
  overflow: auto;
}
.contact-col h2 {
  margin-bottom: 15px;
}
.contact-col .container {
  padding: 0;
}

/* custom checkbox */
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + .checkbox-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  top: 2px;
  transition: all 0.12s, border-color 0.08s;
}

input[type="checkbox"]:checked + .checkbox-text:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

input[type="checkbox"] + .checkbox-text {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  display: flex;
  align-items: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


input,
textarea {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: inset 0 -1px 0 #7f7f7f !important;
  background-color: transparent !important;
  color: #fff !important;
  height: auto;
  padding: 10px 0 !important;
}
input:focus,
textarea:focus {
  box-shadow: inset 0 0px 1px 1px #fff !important;
  background: transparent;
  color: #fff;
}
.form-control {
  border-radius: 0;
  border: none;
  background: transparent;
  color: #fff;
  box-shadow: inset 0 -0px 1px #7f7f7f !important;
  padding: 10px !important;
}
.form-control:focus {
  background-color: transparent;
  color: #fff;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0;
  color: #ffffff8a;
}
form .container > .row .form-group label {
  line-height: 1.1em;
  padding: 0 10px;
  max-width: calc(100% - 20px);
  transform: translate(10px, 9px);
  background: #013159;
}

.btn-checkbox {
  margin-bottom: 15px;
}
.btn-checkbox label {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  text-transform: inherit;
  cursor: pointer;
}
.checkbox > label {
  display: none;
}
.checkbox label {
  text-transform: inherit;
  font-size: 17px;
}
input[type="checkbox"] + .checkbox-text {
  padding-left: 30px;
}
input[type="checkbox"] + .checkbox-text:before {
  top: 2px;
  border-color: #fff;
}
input[type="checkbox"]:checked + .checkbox-text:before {
  border-color: #fff;
  border-top-color: transparent;
  border-left-color: transparent;
}
button[type="submit"],
button.btn-loading {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  background: #fff;
  color: #000;
  font-weight: 500;
  margin-top: 20px;
  border-radius: 3px;
  padding: 10px 20px;
}

button.btn-loading div {
    width: 1.5rem;   
    height: 1.5rem;   
}

#thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.form-group.file {
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 1px #7f7f7f;
    align-items: flex-start;
    padding: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    border: 1px dashed #7f7f7f !important;
}
.form-group.file label {
    transform: none !important;
}
input[type="file"] {
  height: auto !important;
  /*border: 1px solid #cccccc;*/
  padding: 5px;
  border-radius: 10px;
  box-shadow: none !important;
  align-self: center;
  padding: 5px !important;
  background: #ffffff17 !important;
  /*border: 1px dashed #8ea0b3 !important;*/
  color: #003159;
}

input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  /*background: #084cdf;*/
  background: #ffffff70;
  padding: 5px 10px;
  border-radius: 3px;
  color: #003159;
  cursor: pointer;
  transition: background .2s ease-in-out;
}
input[type=file]::file-selector-button:hover {
    background: #003159;
    color: #fff;
}

input[type=file]::file-selector-button:hover {
  background: #0d45a5;
}