html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  scroll-behavior: smooth;
}

@font-face {
  font-family: bebas;
  src: url('../assets/fonts/Bebas-Neue/BebasNeue-1.otf');
}

a, h1, h2, h3, h4 {
  font-family: bebas;
}

.nav-link a.active {
  color: #00cec9;
}

a.normal {
  color: black;
  font-family: initial;
}

h1 {
  margin: 20px 0px;
  font-size: 40px;
}

p {
  line-height: 22.5px;
  margin: 20px 0px;
}

.small-margin {
  margin-top: 10px;
}

.custom-message {
  position: fixed;
  z-index: 3;
  padding-left: 20px;
  background-color: #00cec9 !important;
  display: none;
  color: white;
  animation-name: flowinout;
  animation-duration: 6s;
  transform: translateY(-75px);
}

@keyframes flowinout {
  0%   {transform: translateY(0px); }
  25%  {transform: translateY(0px); }
  50%  {transform: translateY(0px); }
  100% {transform: translateY(-75px); }
}

.small-margin p {
  margin: 5px 0px;
}

.navigation-header {
  width: 100%;
  background-color: #262626;
  display: flex;
  align-items: center;
  height: 75px;
  position: fixed;
  z-index: 2;
}

.navigation-footer {
  padding: 15px;
  background-color: #262626;
  position: relative;
}

.navigation-footer .nav-link {
  position: absolute;
  top: 18px;
  right: 0px
}

.navigation-footer p {
  font-size: 12px;
  text-align: center;
  margin: 0px 0px;
  color: white;
}

.nav-logo {
  width: 210px;
  margin-left: 30px;
  margin-right: auto;
}

.nav-logo img {
  width: 100%;
}

.nav-link {
  display: flex;
  margin-right: 30px;
  margin-left: auto;
  font-size: 20px;
}

.nav-link a {
  margin-left: 15px;
}

.nav-link a {
  color: white;
  text-decoration: none;
}

.empty-decoration {
  color: white;
  text-decoration: underline;
  font-family: inherit;
}

.empty-decoration:hover {
  text-decoration: underline !important;
}

.section {
  position: relative;
  background-color: white;
  z-index: 1;
  padding: 20px;
}

.section.no-padding-left {
  padding: 5px 0px
}

.section.gray {
  background-color: #F1F2FF;
}

.section.blackish {
  margin-top: 30px;
  background-color: #3f3c3c;
}

.management .container {
  display: flex;
}

.management .image {
  width: 30%;
  padding-right: 50px;
  padding-top: 30px;
}

.management .image img {
  width: 100%;
}

.management .mobile-image {
  display: none;
}

.management .mobile-image img {
  width: 100%;
}

/* .management .description {
  width: 70%;
} */

.container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.MainContainer {
  perspective: 1px;
  transform-style: preserve-3d;
  height: 100vh;
  /* overflow-x: hidden; */
  /* overflow-y: scroll; */
}

.ContentContainer {
  position: relative;
  display: block;
  background-color: white;
  z-index: 1;
}

.ParallaxContainer {
  display: flex;
  flex: 1 0 auto;
  z-index: -1;
  height: 75vh;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  /* transform: translateZ(-1px) scale(2); */
  background: url('/assets/images/background.jpg');
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.ParallaxContainer img {
  width: 80%;
  max-width: 750px;
  margin-bottom: 15px;
}

.banner-placeholder {
  display: flex;
  flex-direction: column;
}

.banner-contact {
  margin-top: 10px;
}

.banner-contact a {
  color: white;
  margin-left: 30px;
}

.zero-margin-top {
  margin-top: 0px;
}

.zero-margin-bottom {
  margin-bottom: 0px;
}

.registration {
  padding: 10px;
  border: 1px solid black;
}

.registration p {
  margin: 10px 0px;
}

.white-font {
  color: white;
}

form.enquiry > div {
  display: flex;
  width: 100%;
}

form.enquiry .half {
  display: flex;
  width: 50%;
}

.input-field {
  margin: 15px 0px;
}

.input-field label {
  min-width: 80px;
  color: grey;
  font-size: 15px;
}

.input-field input {
  width: 100%;
}

.input-field textarea {
  width: 100%;
  resize: none;
  height: 50px;
}

.input-field .half:nth-child(1) {
  margin-right: 25px
}

.input-field-checkbox {
  text-align: center;
  color: white;
  display: block !important;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 12px;
}

.input-field-submission {
  text-align: center;
  display: block !important;
}

.input-field-submission button {
  width: 70px;
  height: 25px;
  background-color: #00cec9;
  color: white;
  outline: inherit;
  cursor: pointer;
  border-color: #00cec9;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
}

ol li {
  margin-top: 10px;
}

@media only screen and (max-width: 600px) {
  .ParallaxContainer {
     background-repeat: no-repeat;
     /* background-position: top; */
  }

  .ParallaxContainer img {
    width: 95%;
  }

  .banner-placeholder {
    justify-content: center;
    align-items: center;
  }

  .banner-contact a {
    margin-left: 0px;
  }

  .section {
    padding: 20px 25px;
  }

  .navigation-header {
    justify-content: center;
  }

  .nav-logo {
    width: 150px;
  }

  .management .image {
    display: none;
  }

  .management .mobile-image {
    display: block;
    margin-bottom: 30px;
  }

  .management .description {
    width: 100%;
  }

  .management .description h1 {
    text-align: center;
  }

  .input-field .half {
    margin-right: 0px;
  }

  form.enquiry > div {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .input-field input{
    flex: 1;
  }

  .input-field textarea {
    flex: 1;
  }

  form.enquiry .half {
    width: 100%;
    margin-top: 15px;
  }

  .input-field .half:nth-child(1) {
    margin-right: 0px;
    margin-top: 0px;
  }

  .input-field .half:nth-child(2) {
    margin-top: 15px;
  }

  h1.enquiry {
    text-align: center;
  }

  .navigation-footer .nav-link {
    position: initial;
    justify-content: center;
    margin: 10px 0px;
    text-align: center;
  }

  .navigation-footer .nav-link a {
    margin-left: 0px;
  }

  .navigation-footer .nav-link a:nth-child(2) {
    margin-left: 10px;
  }

  .management {
    text-align: center;
  }
}
