@font-face {
  font-family: "Canela";
  src: url("/fonts/Canela-Medium.woff2") format("woff2"), url("/fonts/Canela-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Messina Sans";
  src: url("/fonts/MessinaSans-Regular.woff2") format("woff2"), url("/fonts/MessinaSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Canela";
  src: url("/fonts/Canela-Light.woff2") format("woff2"), url("/fonts/Canela-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Messina Sans Book";
  src: url("/fonts/MessinaSans-Book.woff2") format("woff2"), url("/fonts/MessinaSans-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Messina Sans";
  src: url("/fonts/MessinaSans-SemiBold.woff2") format("woff2"), url("/fonts/MessinaSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lexend Peta";
  src: url("/fonts/LexendPeta-Bold.woff2") format("woff2"), url("/fonts/LexendPeta-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 90px;
  --gray: #d7d4d0;
  --black: #323028;
  --red:#4b0611;
  --gap: 45px;
  --pad-larg: 145px;
  --pad-med: 90px;
  --pad-sml: 45px;
  --m-base: 20px;
}

body {
  font-family: "Messina Sans";
  font-size: 17px;
  line-height: 1.47;
  background: var(--gray);
  color: var(--black);
  margin: 0;
  padding: 0 0 0 0;
}

main {
  position: relative;
  z-index: 1;
  height: calc(100vh + 1px);
  overflow: hidden;
}

.flex-sb {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.flex-sb.flex-reverse {
  flex-direction: row-reverse;
}

.flex-ev {
  padding: 0 var(--gap);
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.flex-hc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.color-1 {
  color: var(--color-1);
}

.max-x {
  max-width: 500px;
}

.mauto {
  margin-left: auto;
  margin-right: auto;
}

.grid_3 {
  width: calc(25% - 0.75 * var(--gap));
}

.grid_4 {
  width: 380px;
  max-width: 100%;
}
.grid_4 h3 {
  max-width: 360px;
}

.grid_6 {
  width: calc(50% - 0.5 * var(--gap));
}

.grid_8 {
  width: calc(100% - 445px);
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.middle-h {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slideUp {
  opacity: 0;
  transform: translateY(10px);
}
.slideUp.animated {
  animation: slideUp 1s forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

img {
  border: none;
  max-width: 100%;
}

a,
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

.full-h {
  height: 100svh;
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.container {
  width: 1710px;
  max-width: calc(100% - var(--gap) - var(--gap));
  margin-left: auto;
  margin-right: auto;
}
.container.mid {
  width: 900px;
  text-align: center;
}
.container.w900 {
  width: 900px;
  text-align: center;
}

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 160px;
  height: 50px;
  border: 1px solid;
  border-color: inherit;
  border-radius: 25px;
  margin: auto;
  font-size: 1.05em;
}

.img {
  width: 100%;
  margin: 0;
  display: block;
}

.pad-top {
  padding-top: var(--pad-larg);
}

.pad-bottom {
  padding-bottom: var(--pad-larg);
}

.pad-bottom-xlarg {
  padding-bottom: calc(1.5 * var(--pad-larg));
}

.mb-bottom {
  margin-bottom: var(--pad-med);
}

section {
  position: relative;
}

.bg-red {
  background-color: var(--red);
  color: var(--gray);
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: 300;
  line-height: 1.09;
  font-family: "Canela";
}

p {
  margin: 0 0 15px 0;
}

p.mb {
  margin-bottom: 25px;
}

h1 {
  font-size: 46px;
  margin-bottom: 20px;
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
}

#enquire h1 {
  margin-bottom: 1.2em;
}

h2 {
  font-size: 32px;
  padding: 25px 0;
  text-align: center;
  position: absolute;
  line-height: 1;
  transform: translateY(100%);
  left: 0;
  width: 100%;
  background: var(--gray);
  bottom: 0;
  z-index: 5;
  transition: transform 0.8s;
}

h3 {
  border-top: 1px solid;
  border-color: inherit;
  padding-top: 20px;
  font-size: 46px;
  margin-bottom: 20px;
}

h4 {
  font-size: 2em;
  margin-bottom: 0.75em;
}

/* Navigation */
header {
  position: fixed;
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  padding: 0 var(--gap);
  height: var(--header-height);
  justify-content: space-between;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  border-bottom: 1px solid var(--red);
  font-size: 13px;
  font-family: "Lexend Peta";
  transition: all 0.5s;
}
header p {
  margin: 0;
}
header.bg-c {
  background-color: var(--gray);
  z-index: 10;
}
header.bg-r {
  z-index: 10;
  background-color: var(--red);
  border-bottom: 1px solid var(--gray);
  color: var(--gray);
}
header.bg-r .logo-r {
  opacity: 1;
}
header.bg-r .logo-c {
  opacity: 0;
}
header .logo {
  display: block;
  width: 205px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header .logo img {
  display: block;
  width: 100%;
}

.logo-r {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.enq {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 120px;
  height: 30px;
  background-color: var(--color-2);
  color: var(--color-3);
  line-height: 1;
  right: var(--gap);
}

#nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  height: var(--header-height);
  position: relative;
}
#nav #ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding: 0;
  margin: 0;
}
#nav #ul li {
  list-style: none;
  position: relative;
}
#nav #ul li a {
  display: block;
  color: var(--color-2);
}

nav {
  margin: 0 auto;
  padding: 0;
}

/* nav-toggle */
#nav-toggle {
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 10;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: none;
}

#nav-toggle span,
#nav-toggle span:after,
#nav-toggle span:before {
  cursor: pointer;
  height: 3px;
  width: 30px;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
  top: 10px;
  transition: all 0.6s ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent !important;
}

#nav-toggle.active span:after,
#nav-toggle.active span:before {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: a rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: a rotate(-45deg);
}

/* enquiry */
.register {
  max-width: 890px;
  width: calc(100% - 40px);
  display: flex;
  margin: 0 auto;
}

input,
select {
  margin: 0 auto 10px auto;
  padding: 10px 0;
  width: 100%;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid;
  text-align: left;
  color: var(--gray);
  font-size: 1em;
}

select {
  text-align-last: left;
  text-align: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  text-align-last: left;
  background-image: url(/images/buttons/arrow-down.svg);
  background-position: right center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
}
select option {
  color: #000;
  background: #fff;
}

.b_submit {
  cursor: pointer;
  margin: 40px auto 20px auto;
}
.b_submit:hover {
  background-color: var(--gray);
  color: var(--red);
}

.logos a {
  display: block;
}
.logos img {
  display: block;
}

.privacy {
  font-size: 10px;
  margin: 0;
}

.chk_holder {
  margin: 10px auto;
  position: relative;
  border-bottom: 1px solid;
}

#chkInternational {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  cursor: pointer;
  display: inline-block;
  line-height: 25px;
  width: 20px;
  text-align: center;
}

#chkInternational + label {
  padding: 0 0 6px 26px;
  position: relative;
  text-align: left;
  display: block;
  font-family: inherit;
  display: block;
  font-size: 0.95em;
  margin: auto;
}

#chkInternational + label:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 0;
  border: 1px solid;
  content: "";
  display: block;
}

#chkInternational + label:after {
  position: absolute;
  left: 0;
  width: 5px;
  height: 11px;
  top: 4px;
  left: 8px;
  transform: rotate(45deg) scale(0);
  border-bottom: 2px solid;
  border-right: 2px solid;
  content: "";
  display: block;
  transition: all 0.4s ease-in-out;
}

#chkInternational:checked + label:after {
  transform: rotate(45deg) scale(1);
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

/*footer*/
footer {
  padding: var(--pad-sml) 0;
  border-color: inherit;
  border-top: 1px solid;
}

/* Token Style */
li.token-input-input-token-project {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
}

ul.token-input-list-project li input {
  width: 100% !important;
}

li.token-input-token-project p {
  display: inline;
  padding: 0;
  margin: 0 5px 0 0;
  line-height: 20px;
  font-size: 11px;
}

li.token-input-token-project {
  overflow: hidden;
  height: 25px;
  margin: 0;
  padding: 2px 5px;
  background-color: #ccc;
  color: #000;
  cursor: default;
  white-space: nowrap;
  list-style: none;
  display: inline-block;
}

div.token-input-dropdown-project {
  position: absolute;
  width: 100%;
  background-color: #fff;
  overflow-x: hidden;
  cursor: default;
  font-size: 11px;
  z-index: 13;
  color: #000000;
}

div.token-input-dropdown-project ul {
  margin: 0;
  padding: 0;
  display: block !important;
  max-height: 205px;
}

div.token-input-dropdown-project ul li {
  background-color: #fff;
  font-size: 14px;
  padding: 3px;
  margin: 0;
  list-style-type: none;
  font-weight: 100 !important;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
  background-color: #fff;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
  background-color: #fff;
}

div.token-input-dropdown-project ul li em {
  font-weight: bold;
  font-style: normal;
}

div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
  background-color: #ccc;
  color: #fff;
}

/* Parsley-error */
ul.parsley-errors-list.filled,
ul.parsley-errors-list {
  font-size: 10px;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  top: 0;
}

ul.parsley-errors-list.filled li,
ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #F00D0D;
}

* {
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

@media screen and (max-width: 1180px) {
  body {
    font-size: 16px;
  }
  .grid_8 {
    width: 100%;
  }
  .grid_4 {
    width: 100%;
    max-width: 100% !important;
    padding-top: var(--gap);
  }
  .grid_4 h3 {
    min-width: 250px;
  }
  .w360 {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  h2 {
    font-size: 30px;
  }
  h1, h3 {
    font-size: 40px;
  }
  .container.mid {
    width: 671px;
  }
  .logos a {
    display: block;
    padding: 18px;
  }
  .enq_frm {
    padding: 0 90px;
  }
  header p {
    display: none;
  }
  header .logo {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --gap: 30px;
    --pad-larg: 100px;
  }
  body {
    text-align: left;
    font-size: 16px;
  }
  header {
    padding: 0 20px;
  }
  h2 {
    font-size: 25px;
    line-height: 1.2;
    padding: 25px 0 0 0;
  }
  h2 span {
    display: block;
  }
  header .logo {
    width: 175px;
  }
  .full-h {
    height: 90vh;
  }
  h1, h3 {
    font-size: 36px;
    text-align: left;
  }
  .container.mid {
    text-align: left;
  }
  .btn:not(.b_submit) {
    height: 46px;
    margin: 0;
  }
  .enq_frm {
    padding: 0;
  }
  .w360 {
    display: block;
  }
  .grid_6 {
    width: 100%;
  }
  .flex-ev {
    display: block;
  }
  .logos a {
    margin: auto;
    padding-bottom: 35px;
  }
  .logos img {
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */