.clear,
* html .clearfix,
*:first-child+html .clearfix {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

:root {
  --header-height: 55px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

.grid_4 {
  width: 33.33%;
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: 67%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #f2f1ee;
}

img {
  border: none;
  max-width: 100%;
}

a,
img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

/* General */
body {
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 168.75%;
  background: #f2f1ee;
  color: #004d65;
  margin: 0;
  padding: 0;
}

body.no_scroll {
  overflow: hidden;
}

.img {
  width: 100%;
  margin: 0;
  display: block;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
}

p {
  text-align: left;
  margin: 0;
}

h1 {
  color: #f2f1ee;
  text-align: center;
  text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.35);
  font-family: "Space Grotesk";
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -2.88px;
}

h2 {
  color: #004d65;
  font-family: "Space Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 112.5%;
  letter-spacing: -0.72px;
}

h2.small {
  font-size: 18px;
}

h3 {}

h4 {
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 168.75%;
  color: #004d65;
}

h5 {
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 192.857%;
  letter-spacing: 0.7px;
  color: #004d65;
}

.med {
  font-weight: 500;
}

.tab,
.mob {
  display: none;
}

/* Navigation */
header {
  padding: 0 100px;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f2f1ee;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.logo {
  color: #004d65;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.72px;
}

#nav {
  display: flex;
  justify-content: flex-start;
  column-gap: 30px;
}

#nav li {
  list-style: none;
  display: inline-block;
  padding: 0;
  position: relative;
}

#nav li a {
  position: relative;
  color: #212529;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  /* 180% */
  letter-spacing: 0.45px;
  z-index: 2;
}

#nav .has-dropdown {
  padding: 0 4px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

#nav .dropdown {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: max-content;
  padding: 10px 4px 10px 10px;
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 1em;
  z-index: 1;
  background-color: #004D65;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: 0.1s;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
}

@media(hover:hover) {

  #nav .has-dropdown:hover {
    background-color: #004D65;
  }

  #nav .has-dropdown:hover .dropdown {
    pointer-events: initial;
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  #nav .has-dropdown:hover a {
    color: #f2f1ee;
  }
}

#nav .dropdown a:first-child {
  display: block;
  margin-bottom: 6px;
}

/* enquiry */
#enquireSales,
#enquire {
  background: #f2f1ee;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 100px;
  display: none;
}

.register {
  width: 100%;
}

#page-contact {
  padding-top: calc(2 * var(--header-height));
}

#page-contact .register {
  width: 1280px;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  min-height: calc(100svh - var(--header-height));
  padding-bottom: 100px;
}

#page-contact .page-contact a{
  color: #ffffff;
}

._forms {
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

._forms.show {
  height: initial;
  pointer-events: initial;
}

._form,
._forms {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

._form>div,
._forms>div {
  display: flex;
  width: calc(50% - 10px);
  margin-bottom: 20px;
  background: #ffffff;
  position: relative;
  padding: 10px;
}


._form>div.col_span_3,
._forms>div.col_span_3 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

._form>div.col_span_3.no-bg,
._forms>div.col_span_3.no-bg {
  background-color: transparent;
}

.close_btn {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
}

.close_btn:after,
.close_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 35px;
  height: 1px;
  background: #231f20;
  transform: rotate(45deg);
}

.close_btn:before {
  transform: rotate(-45deg);
}

input,
label,
textarea,
select {
  font-size: 16px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: #004d65;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  text-align: left;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  line-height: 168.75%;
}

label {
  width: 150px;
  cursor: pointer;
}

input[type=checkbox]+label,
label[for=message] {
  width: 100%;
}



.b_submit {
  margin-left: 0;
  cursor: pointer;
  margin-top: 20px;
}

textarea {
  height: 170px;
  max-width: 100%;
}

select {
  text-align-last: center;
  text-align: center;

  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
}

select option {
  background: #f2f1ee;
  text-align-last: center;
  text-align: center;

  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
}

.p-0 {
  padding: 0;
}

#th_wrapper {
  width: 420px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  *{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.privacy {
  color: #004d65;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 168.75%;
  /*  */
}

.chk_holder {
  background: #f2f1ee;
  padding: 10px 10px 10px 0;
  /* margin: 10px auto 0 auto; */
  /* color: #f2f1ee; */
}

.chk_input {
  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;
}

.chk_input+label {
  padding: 2px 0 2px 26px;
  position: relative;
  text-align: left;
  display: block;
  font-family: inherit;
}

.chk_input+label:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #546670;
  content: "";
  display: block;
}

.chk_input+label:after {
  position: absolute;
  left: 0;
  width: 5px;
  height: 11px;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-60%) rotate(45deg) scale(0);
  transform: translateY(-60%) rotate(45deg) scale(0);
  border-bottom: 2px solid #546670;
  border-right: 2px solid #546670;
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.chk_input:checked+label:after {
  -webkit-transform: translateY(-60%) rotate(45deg) scale(1);
  transform: translateY(-60%) rotate(45deg) scale(1);
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: #f2f1ee;
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #f2f1ee;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #f2f1ee;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #f2f1ee;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: $form-field-text;
  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;
}

/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
  text-align-last: left;
  text-align: -moz-left;
  text-align: -webkit-left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border-bottom: 1px solid #525252;
  clear: both;
}

li.token-input-input-token-project {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
}

ul.token-input-list-project li input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100% !important;
  margin-bottom: 0;
}

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;
  border: 1px solid #525252;
  font-size: 12px;
  white-space: nowrap;
  list-style: none;
  display: inline-block;
}

div.token-input-dropdown-project {
  position: absolute;
  width: 100%;
  background-color: #f2f1ee;
  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: #f2f1ee;
  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: #f2f1ee;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
  background-color: #f2f1ee;
}

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: #f2f1ee;
}

/* 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;
  bottom: 0;
  position: absolute;
  /* top:-15px; */
  width: 100%;
}

ul.parsley-errors-list.filled li,
ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #f00d0d;
  /* position: absolute;
  top:-15px; */
}

* {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

#landing {
  width: 100%;
  height: 100vh;

  background-position: center;
  background-size: cover;
}

#info {
  background-color: #004D65;

}

#info * {
  color: #f2f1ee;
}

.border {
  border: 1px solid #f2f1ee;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#scroll_btn {
  position: absolute;
  bottom: 45px;
  width: 16px;
  left: 0;
  right: 0;
  margin: auto;
}

.flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.col_gap_130 {
  column-gap: 130px;
}

.col_gap_38 {
  column-gap: 38px;
}

.justify_start {
  justify-content: flex-start;
}

.bg_buff {
  background: #f2f1ee;
}

.bold {
  font-weight: bold;
}

.mb60 {
  margin-bottom: 60px;
}

.mb52 {
  margin-bottom: 52px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb44 {
  margin-bottom: 44px;
}

.mb82 {
  margin-bottom: 82px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb10 {
  margin-bottom: 10px;
}

.pl202 {
  padding-left: 202px;
}

.pr96 {
  padding-right: 96px;
}

.pl178 {
  padding-left: 178px;
}

.mlr25 {
  margin-left: 25px;
  margin-right: 25px;
}

.plr178 {
  padding-left: 178px;
  padding-right: 178px;
}

.plr202 {
  padding-left: 202px;
  padding-right: 202px;
}

.pr70 {
  padding-right: 70px;
}

.ptb82 {
  padding-top: 82px;
  padding-bottom: 82px;
}

.pb82 {
  padding-bottom: 82px;
}

.pt82 {
  padding-top: 82px;
}

.pb66 {
  padding-bottom: 66px;
}

.plr25 {
  padding-left: 25px;
  padding-right: 25px;
}

.pt24 {
  padding-top: 24px;
}

.pb24 {
  padding-bottom: 24px;
}

.mt24 {
  margin-top: 24px;
}

.lh200 {
  line-height: 200%;
}

.pt10 {
  padding-top: 10px;
}

.lh180 {
  line-height: 180%;
}

.dash_border {
  border-top: 1px dashed #9eafb4;
}

.bottom_also.dash_border {
  border-bottom: 1px dashed #9eafb4;
}

.dot {
  list-style-type: disc;
  padding-left: 40px;
}

.dot li {
  margin-bottom: 10px;
}

.grid_wrapper_6 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}



.grid_wrapper_6>div {
  justify-content: flex-start;
  row-gap: 24px;
}

.svg_wrapper {
  height: 60px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
}

.grid_wrapper_6 .relate.dash_border {
  padding-right: 77px;
}

.relate {
  position: relative;
}

.abs {
  position: absolute;
}

.t0 {
  top: 0;
}

.ptb38 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.btn {
  color: #f2f1ee;
  text-align: center;
  font-family: "Inter";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /*  */
  letter-spacing: 0.45px;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  background: #004d65;

  flex-shrink: 0;
  border-radius: 50px;
  padding: 0 20px;
}

.info {
  margin: 20px 0;
  width: 81%;
}

.info_btn {
  position: relative;
  padding-right: 55px;
}

.info_btn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 22px;
  background: url(/images/down_arrow.svg);
  z-index: 1;
  right: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.info_btn.active:after {
  transform: rotate(-180deg);
}

.block {
  display: block;
}

footer {
  padding: 44px 100px;
  background: #004d65;
}

footer a {
  color: #f2f1ee;
  font-family: "Inter";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 225%;
}

.fs12 {
  font-size: 12px;
  line-height: 1.4;
}

.black {
  color: #000;
}

.h54 {
  height: 54px;
}


#secondForm>div {
  flex-direction: column;
  height: max-content;
}

#secondForm textarea {
  border: 1px solid #004D65;
  margin-top: 20px;
}

#secondForm select {
  border: 1px solid #004D65;
  background-image: url(/images/dropdown.svg);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  padding-left: 10px;
}

#secondForm .chk_holder {
  padding: 4px 0;
  background-color: transparent;
}

#secondForm .chk_holder:hover {
  background-color: #f2f1ee;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

#secondForm select,
#secondForm option {
  text-align-last: left;
  text-align: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  text-align-last: left;
}

#nextPart {
  margin-top: 20px;
}



#page-home .page-contact{
  display: none;
}

#page-contact .page-home{
  display: none;
}

/*----------------------------------------*/





@media screen and (max-width: 1300px) {
  .grid_wrapper_6 .relate.dash_border {
    padding-right: 40px;
  }

  header {
    padding: 0 40px;
  }

  #nav {
    column-gap: 20px;
  }

  .pr96,
  .pr70 {
    padding-right: 40px;
  }

  .pl202,
  .pl178 {
    padding-left: 40px;
  }

  .plr178,
  .plr202,
  footer,
  #enquire {
    padding-left: 40px;
    padding-right: 40px;
  }

  .col_gap_130 {
    column-gap: 40px;
  }

  .grid_wrapper_6 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 1200px) {

  input,
  label,
  textarea,
  select {
    font-size: 14px;
  }
}

@media screen and (max-width: 1000px) {
  .h54 {
    height: auto;
  }



  .col_span_3 {
    grid-column-start: span 1;
  }

  .grid_6,
  .grid_8,
  .grid_3 {
    width: 100%;
  }

  #enquireSales,
  #enquire {
    padding-left: 10px;
    padding-right: 10px;
  }

  ._form>div,
  ._forms>div {
    width: 100%;
  }

  .close_btn {
    right: 10px;
  }

  .flex {
    flex-wrap: wrap;
  }

  .col_gap_130 {
    row-gap: 44px;
  }

  .tab {
    display: block;
  }

  .desk {
    display: none;
  }

  .grid_wrapper_6 {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }

  .grid_wrapper_6>div {
    padding-top: 0;
  }

  .grid_wrapper_6>div:last-child {
    grid-column-start: span 2;
  }

  .abs {
    position: static;
  }

  .plr25 {
    padding-left: 0;
    padding-right: 0;
  }

  .mlr25 {
    margin-left: 0;
    margin-right: 0;
  }

  .mt24 {
    margin-top: 0;
  }

  .m-plr10 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu_btn:not(.close_btn) {
    color: #212529;
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.45px;
  }

  html,
  body {
    height: 100%;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f2f1ee;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: all 0.4s ease;
  }

  .active_nav nav {
    transform: translateX(0);
  }

  #nav {
    flex-direction: column;
    text-align: center;
    row-gap: 30px;
  }

  #nav li a {
    font-size: 24px;
    color: #004d65;
  }


  #nav .has-dropdown {
    padding: 0 4px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
  }

  #nav .dropdown {
    display: flex;
    flex-direction: column;
    justify-content: initial;
    align-items: center;
    width: 100%;
    padding: 0;
    position: relative;
    right: initial;
    padding-top: initial;
    z-index: 1;
    background-color: transparent;
    pointer-events: initial;
    clip-path: initial;
    transition: 0;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
  }



  #nav .dropdown a:first-child {
    display: block;
    margin-bottom: 20px;

  }

  #nav .has-dropdown>a:first-child {
    display: none;
  }

}

@media screen and (max-width: 760px) {
  #nav li a {
    font-size: 18px;
  }

  #nav {
    row-gap: 20px;
  }

  .chk_input+label:before,
  .chk_input+label:after {
    top: 30%;
  }

  .grid_wrapper_6 .relate.dash_border {
    padding-right: 10px;
  }

  .grid_wrapper_6>div:nth-child(2n) .relate.dash_border {
    padding-left: 10px;
    padding-right: 0;
  }

  .grid_wrapper_6>div:nth-child(2n) .svg_wrapper {
    padding-left: 10px;

  }

  .dot li {
    margin-bottom: 10px;
  }

  .info {
    margin-top: 0;
  }

  .info_btn {
    padding-right: 30px;
  }

  .info_btn:after {
    right: 0;
    top: 25px;
  }

  .mob {
    display: block;
  }

  .desk_tab {
    display: none;
  }

  h1 {
    font-size: 50px;
  }

  header,
  .plr178,
  .plr202,
  #enquire,
  footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  #scroll_btn {
    bottom: 20px;
  }

  .pb82 {
    padding-bottom: 44px;
  }

  .ptb82 {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .pl202,
  .pl178 {
    padding-left: 15px;
  }

  .pr96,
  .pr70 {
    padding-right: 15px;
  }

  #anchor {
    padding-bottom: 15px;
  }

  footer.flex {
    justify-content: center;
    row-gap: 44px;
  }
}

@media screen and (max-width: 420px) {}