:root {
  --header-height: 90px;
  --gap: 30px;
  --pad: 10vh;
  --red: #8e453f;
  --creame: #EFECE4;
  --baseMargin: 34px;
}

body {
  font-family: "indivisible", sans-serif;
  color: var(--creame);
  background: var(--red);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
  padding: 0;
}
body.active-pop-up {
  overflow: hidden;
}
body.not-home {
  padding-top: var(--header-height);
  background-color: var(--creame);
  color: var(--red);
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#img-holder {
  position: absolute;
  z-index: 5;
  height: 100vh;
  top: 0;
  width: 698px;
  max-width: calc(100% - 80px);
  margin: auto;
  left: 0;
  right: 0;
  pointer-events: none;
}

#logo {
  width: 100%;
  margin-top: 8px;
}

section {
  position: relative;
  background: inherit;
  overflow: hidden;
}

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

#landing {
  height: calc(100vh - 43px);
  height: calc(100svh - 43px);
}

.full-height {
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--creame);
}

.container {
  width: calc(100% - var(--gap) - var(--gap));
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.w1080 {
  max-width: 1080px;
}

.w1280 {
  max-width: 1280px;
}

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

.play-h {
  position: absolute;
  z-index: 1;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-b {
  max-width: calc(100% - 60px);
}

.w480 {
  max-width: 480px;
}

.w560 {
  max-width: 560px;
}

.w460 {
  max-width: 460px;
}

.w520 {
  max-width: 500px;
}

.w320 {
  max-width: 320px;
}

#ticker {
  position: fixed;
  bottom: 0;
  z-index: 2;
  color: var(--red);
  font-family: "grad", serif;
  background-color: var(--creame);
  padding: 8px 0;
  text-align: left;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: ticker linear 60s infinite;
  font-size: 16px;
  letter-spacing: 0.1em;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex.flex-spb {
  justify-content: space-between;
}
.flex.flex-sph {
  align-items: space-between;
}
.flex.flex-st {
  align-items: flex-start;
}
.flex.flex-end {
  justify-content: flex-end;
}
.flex .g30 {
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.flex.flex-reverse {
  flex-direction: row-reverse;
}

.leftalign {
  text-align: left;
}

.flex-h {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-self: stretch;
}

.full-video {
  width: 100%;
  height: auto;
  display: block;
}

.tel {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.15em;
  z-index: 5;
}

.artist {
  position: relative;
}

.caption {
  position: absolute;
  display: block;
  bottom: 15px;
  right: 15px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
  z-index: 5;
}

.artist::after {
  content: "Artist Impression";
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: var(--creame);
  font-size: 10px;
  display: block;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

#map {
  height: calc(100vh - var(--header-height));
  width: 100%;
}

.nocase, .quate {
  text-transform: none;
}

.map-link {
  font-size: 14px;
  font-family: "grad", serif;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: 0.15em;
  margin-bottom: 1em;
  text-transform: uppercase;
  display: block;
}

.map-link {
  padding: 10px 0;
  line-height: 1;
  margin-bottom: 0;
}

.map-inner {
  height: 0;
  overflow: hidden;
  transition: height 0.5s;
}

.map-cat {
  border-top: 1px solid var(--red);
  position: relative;
  background-image: url(/images/buttons/arrow-open.svg);
  background-repeat: no-repeat;
  background-position: right 12px;
  background-size: 10px;
}
.map-cat::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.g20 {
  width: 20%;
  text-align: center;
}
.g20 img {
  display: block;
  width: 40px;
  margin: 0 auto 15px auto;
}
.g20 h5 {
  margin-bottom: 15px;
  text-transform: uppercase;
}
.g20 p {
  font-size: 13px;
}

.imgToChange {
  filter: blur(2px);
  transition: all 0.3s;
}
.imgToChange.loaded {
  filter: blur(0);
}

.btn {
  height: 30px;
  border: 1px solid;
  color: var(--red);
  font-family: "grad", serif;
  background-color: var(--creame);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 1;
  padding: 0 15px;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  transition: all 0.3s;
}
.btn.fadeIn {
  transition: opacity 0.7s, color 0.3s, background 0.3s;
}
.btn.reverse {
  border: 1px solid var(--creame);
  background-color: transparent;
  color: var(--creame);
}
.btn.reverse:hover {
  background-color: var(--creame);
  color: var(--red);
}

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

#loader {
  height: 100%;
}

.l-slide {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  opacity: 0;
}
.l-slide .inner {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.l-slide .inner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.l-slide .inner.half {
  width: 50%;
}

@media screen and (max-aspect-ratio: 1920/1080) {
  .inner video {
    height: 100% !important;
  }
}
@media screen and (min-aspect-ratio: 1920/1080) {
  .inner video {
    width: 100% !important;
  }
}
.f-end {
  justify-content: flex-end;
}

.f-start {
  justify-content: flex-start;
}

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

.pad-top-mid {
  padding-top: calc(0.5 * var(--pad));
}

.pad-bottom-mid {
  padding-bottom: calc(0.5 * var(--pad));
}

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

.pad-l30 {
  padding-left: 30px;
}

.pad-lr {
  padding-left: 30px;
  padding-right: 30px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

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

.mb2 {
  margin-bottom: calc(2 * var(--baseMargin));
}

.mb3 {
  margin-bottom: calc(3 * var(--baseMargin));
}

.w240 {
  width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

.grid_4 {
  width: 33.33%;
  padding-top: 5px;
}
.grid_4.team-g {
  width: calc(33.33% - 0.66 * var(--gap));
  padding: 0;
}
.grid_4.team-g p {
  width: 490px;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100% - 20px);
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}

.grid_7 {
  width: 58.33%;
}

.max337 {
  max-width: 337px;
  text-align: left;
}

.w490 {
  width: 490px;
  max-width: 100%;
  text-align: left;
}

.grid_8 {
  max-width: calc(100% - 390px);
  width: 66%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

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;
}

#mainslide {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 240vw;
  justify-content: space-between;
  animation: slide linear 30s infinite;
}

#mainslide:hover {
  animation-play-state: paused;
}

.slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 120vw;
  flex-wrap: nowrap;
}

.i-slide {
  width: 30vw;
  padding: 0 15px;
  margin: auto;
  position: relative;
  text-align: left;
}
.i-slide a {
  display: block;
  position: relative;
  margin-bottom: 15px;
}
.i-slide a .img {
  position: relative;
  z-index: 1;
}
.i-slide .bg-cover {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 2;
  bottom: 0;
  right: 0;
  transition: opacity 0.5s;
}
.i-slide:hover .bg-cover {
  opacity: 1;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12.5px));
  }
}
/* General */
.img {
  width: 100%;
  display: block;
}

.pt30 {
  padding-top: var(--gap);
}

.pb30 {
  padding-bottom: var(--gap);
}

.plr10p {
  padding-left: 10%;
  padding-right: 10%;
}

.border-b {
  border-bottom: 1px solid;
}

.c1 {
  width: 206px;
  right: 20px;
  bottom: 0;
  display: block;
  position: absolute;
  z-index: 2;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  font-family: "grad", serif;
  margin: 0;
  font-weight: normal;
  line-height: 1;
}

h2,
h3,
h4,
h5 {
  text-transform: capitalize;
}

p {
  margin: 0;
}

h1 {
  font-size: 72px;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: #fff;
}

h2 {
  letter-spacing: 0em;
  font-size: 50px;
}

h2.big {
  font-size: 60px;
}

h3 {
  font-size: 22px;
  line-height: 1.27;
}

h4 {
  font-size: 20px;
  letter-spacing: 0.02em;
}
h4.abs-h4 {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  letter-spacing: 0.02em;
  color: #fff;
}

h5 {
  letter-spacing: 0.15em;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0.3em;
}

.team-logo {
  display: block;
}
.team-logo .turner {
  padding-bottom: var(--baseMargin);
}

.fadeIn {
  opacity: 0;
  transition: opacity 0.7s;
}
.fadeIn.animated {
  opacity: 1;
}

#listHolder {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 60px auto;
  position: relative;
}
#listHolder:hover > .list-container {
  opacity: 0.2;
}

#img-left {
  position: absolute;
  left: 0;
  width: 220px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
}
#img-left.l-b {
  width: 340px;
}

#img-right {
  position: absolute;
  right: 0;
  width: 340px;
  z-index: 2;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
  display: block;
  pointer-events: none;
  opacity: 0;
}
#img-right.r-s {
  width: 220px;
}

.marker {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  height: 30px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.list-container {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
}
.list-container:hover {
  opacity: 1 !important;
  z-index: 4;
}
.list-container:hover .list-hover {
  opacity: 1;
}
.list-container:hover .img-right {
  opacity: 1;
}
.list-container:hover .img-left {
  opacity: 1;
}

.list-hover {
  display: block;
  position: relative;
  font-family: "grad", serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  z-index: 2;
  text-align: center;
  opacity: 1;
  cursor: default;
  transition: opacity 0.3s;
}

.st-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-self: stretch;
}

.st-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid var(--red);
  padding: 0 30px;
}

.t-holder {
  width: calc(100% - var(--gap));
  margin: auto;
  overflow: hidden;
  position: relative;
  padding: 12.5px 25px 0;
}
.t-holder .slick-list {
  position: relative;
  display: block;
  overflow: initial;
  margin: 0;
  padding: 0;
}

#prev, #next {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-25%);
  -webkit-transform: translateY(-25%);
  -moz-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  -o-transform: translateY(-25%);
  margin-left: -20px;
}

#next {
  left: auto;
  right: 0;
  transform: translateY(-25%);
  -webkit-transform: translateY(-25%);
  -moz-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  -o-transform: translateY(-25%);
  margin-left: initial;
  margin-right: -35px;
}

#t-slider {
  width: calc(100% - 20px);
  position: relative;
  margin: auto;
  padding-left: 20px;
  padding-top: 1.5px;
}
#t-slider::before {
  position: absolute;
  top: 5px;
  left: -10px;
  width: 150vw;
  background-color: var(--red);
  height: 1px;
  content: "";
  display: block;
}

.station {
  text-align: left;
  padding: 15px 40px 0 15px;
  border-left: 1px solid var(--red);
  position: relative;
  width: 190px;
}
.station h5 {
  max-width: 140px;
  margin-bottom: 20px;
  min-height: 2.2em;
  width: 150px;
}
.station span::after {
  content: "&";
  opacity: 0;
}

.station::before {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  background-color: var(--red);
  border-radius: 50%;
  left: -4px;
  display: block;
}

.top-slide {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: left center;
  height: 100%;
  width: 50%;
  z-index: 2;
  overflow: hidden;
}

.bottom-slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.spliter {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 3px;
  z-index: 50;
  cursor: pointer;
  transform: translateX(0%);
  background-color: #FFFFFF;
}

.mainSpliter span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  display: block;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.spliter:after, .spliter::before {
  position: absolute;
  right: -133px;
  bottom: 15px;
  display: block;
  content: "RADIANT DAWN";
  transform: rotate(-90deg);
  font-size: 13px;
  color: #fff;
  width: 140px;
  text-align: left;
  transform-origin: left bottom;
  letter-spacing: 0.02em;
}

.spliter:before {
  left: 25px;
  right: auto;
  content: "MISTY MORNING";
}

/* Navigation */
#page-home .logo-r {
  display: none;
}

.logo-w {
  display: none;
}

#page-home .logo-w {
  display: block;
}

header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  display: flex;
  background-color: rgba(142, 69, 63, 0);
  transition: background 0.5s;
  padding: 0 var(--gap);
}
header .main-logo {
  width: 223px;
  z-index: 5;
  display: none;
}
header.fixed {
  border-bottom: 1px solid var(--creame);
  background-color: rgb(142, 69, 63);
  z-index: 4;
}
header.fixed .main-logo {
  display: block;
}
header.active .main-logo {
  display: block;
}
header .logo {
  margin: 0 auto;
  display: block;
}

.not-home header {
  background-color: var(--creame);
  border-bottom: 1px solid var(--red);
}
.not-home header .main-logo {
  width: 223px;
  z-index: 5;
  display: block;
}

header.flex {
  justify-content: space-between;
}

.top-links {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 4;
  font-family: Grad;
}

.address {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: auto;
}

#nav-toggle {
  display: flex;
  width: 75px;
  height: 15px;
  position: relative;
  justify-content: flex-end;
  align-items: center;
  color: inherit;
  z-index: 5;
  font-family: Grad;
}

#nav-toggle::after {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  text-align: left;
  content: "MENU";
}

#nav-toggle span {
  width: 15px;
  height: 1px;
  background: currentColor;
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  transition: top 0.5s;
}

#nav-toggle span.sp2 {
  top: 7px;
}

#nav-toggle span.sp3 {
  top: 12px;
}

#nav-toggle.active {
  width: 83px;
}

#nav-toggle.active::after {
  content: "CLOSE";
}

#nav-toggle.active span.sp1 {
  top: 7px;
}

#nav-toggle.active span.sp3 {
  top: 7px;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s;
  z-index: 3;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: var(--red);
  color: var(--creame);
  width: 100%;
  height: 100vh;
  height: 100svh;
  font-family: Grad;
}

#nav #ul {
  position: relative;
  z-index: 2;
  transform: translateY(-60px);
}

#nav li {
  width: 100%;
  display: block;
  list-style: none;
  position: relative;
  text-align: center;
}

#nav li a {
  font-size: 50px;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  display: block;
  padding: 0.1em 0;
}

.call {
  font-family: Grad;
  font-size: 16px;
  line-height: 22px;
  display: block;
  letter-spacing: 0.1em;
}

.not-home #nav {
  background-color: var(--creame);
  color: var(--red);
}

/* enquiry */
#enquire, footer {
  background-color: var(--red);
  color: var(--creame);
}

.register {
  position: relative;
}

.loading-state {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.loading {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid var(--creame);
  border-top-color: var(--red);
  animation: loading 1s linear infinite;
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}
.disclaimer {
  font-size: 10px;
}

.privacy-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.privacy-wrapper a {
  text-decoration: underline;
}

.c2150 {
  position: absolute;
  top: 120px;
  display: block;
  right: 0;
  transform: translateX(125%);
  width: 190px;
}

.abs-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.relative {
  position: relative;
}
.relative img {
  position: relative;
  z-index: 1;
}
.relative a {
  z-index: 3;
}

input,
select {
  font-size: 12px;
  margin: 0 auto;
  padding: 10px 10px 13px 10px;
  width: 100%;
  color: inherit;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid #ab7770;
  text-align: center;
  letter-spacing: 0.03em;
}

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: #000;
  color: #fff;
  text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
}

.b_submit {
  padding: 0 20px;
  margin: 20px auto 0 auto;
}

.deicorp {
  padding-top: 60px;
  display: block;
}

.underline {
  display: block;
  text-decoration: underline;
}

.f10 {
  font-size: 10px;
}

.disc {
  margin: auto;
  text-decoration: underline;
  display: flex;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
}

.chk_holder {
  margin: 10px auto 0 auto;
  color: #fff;
}

#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: 2px 0 2px 26px;
  position: relative;
  text-align: center;
  display: block;
  color: #546670;
  font-size: 18px;
  letter-spacing: 3px;
  font-family: inherit;
  text-transform: uppercase;
  display: inline;
  margin: auto;
}

#chkInternational + label:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #546670;
  content: "";
  display: block;
}

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

#chkInternational:checked + label:after {
  transform: translateY(-60%) 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: 0 0 70px 0;
}

/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
  -moz-text-align-last: 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: #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;
}

.pop-up-container {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: var(--red);
  z-index: 100;
}
.pop-up-container .pop-up-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  height: 84vh;
  overflow: hidden;
  overflow-y: scroll;
  padding-bottom: 100px;
  color: var(--creame);
}
.pop-up-container .close-pop-up {
  color: var(--creame);
  font-size: 16px;
  text-decoration: underline;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto;
  display: flex;
}

.tel-icon {
  display: none;
}

@media screen and (max-width: 1000px) {
  :root {
    --header-height: 60px;
    --gap: 20px;
    --baseMargin: 20px;
    --pad: 10vh;
  }
  .flex {
    flex-wrap: wrap;
  }
  .full-height {
    height: calc(100vh - var(--header-height) - 32px);
    height: calc(100svh - var(--header-height) - 32px);
  }
  #nav-toggle::after {
    display: none;
  }
  .tel-icon {
    display: block;
  }
  .tel {
    position: fixed;
    left: var(--gap);
    bottom: 10px;
    z-index: 50;
  }
  .tel span {
    display: none;
  }
  header .main-logo {
    width: 150px !important;
  }
  h1,
  h2 {
    font-size: 32px;
    text-transform: uppercase;
  }
  h3 {
    font-size: 19px;
  }
  h2.big {
    font-size: 40px;
  }
  .logo {
    width: 150px;
  }
  .grid_6 {
    width: 100%;
  }
  .grid_4 {
    width: 450px;
    max-width: 100%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .grid_4:last-child {
    margin-bottom: 0;
  }
  .c1 {
    width: 60px;
    right: 20px;
    bottom: 20px;
  }
  .iCIRT img {
    width: 90px;
  }
  .call {
    font-size: 15px;
  }
  .l-slide {
    flex-direction: column;
  }
  .l-slide .inner.half {
    width: 100%;
    height: 50%;
  }
  .i-slide {
    width: 50vw;
    padding: 0 10px;
  }
  #mainslide {
    width: 400vw;
  }
  .slider {
    width: 200vw;
  }
  .btn,
  #ticker {
    font-size: 13px;
  }
  .svh100 {
    max-height: calc(100svh - 60px) !important;
  }
  .enq {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    top: auto;
    width: 100%;
    height: 32px;
    background-color: var(--red);
    color: var(--creame);
    border: none;
  }
  #nav #ul {
    transform: translateY(-40px);
  }
  #nav li a {
    font-size: 28px;
  }
  #ticker {
    height: 30px;
    padding: 0;
    align-items: center;
    bottom: 30px;
  }
  .tel {
    font-size: 12px;
  }
  .c2150 {
    position: relative;
    top: auto;
    display: block;
    right: 0;
    transform: none;
    width: 190px;
    margin: 0 auto 20px auto;
  }
  .mbm {
    margin-bottom: 20px;
  }
  .grid_8 {
    max-width: 100%;
    width: 100%;
  }
  .grid_4.team-g {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px auto;
    padding: 0;
  }
  .grid_4.team-g p {
    max-width: 100%;
  }
  .grid_4.team-g:last-child {
    margin-bottom: 0;
  }
  .ptbm {
    padding-top: var(--pad);
    padding-bottom: var(--pad);
  }
  .list-hover {
    font-size: 7vw;
  }
  #img-left {
    width: 35%;
    left: -30px;
  }
  #img-left.l-b {
    width: 55%;
  }
  #img-right {
    width: 55%;
  }
  #img-right.r-s {
    width: 35%;
    right: -30px;
  }
  .flex.flex-reverse {
    display: block;
  }
  #map {
    height: 100vw;
  }
  .g20 {
    width: 50%;
    margin-bottom: 15px;
  }
  .st-holder {
    display: block;
  }
  .t-holder {
    width: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
    padding: 11px 10px;
    margin-bottom: 40px;
  }
  #next {
    margin-right: -20px;
  }
}