@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("/fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Bold.woff2") format("woff2"), url("/fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Modny";
  src: url("/fonts/ModnyRegular.woff2") format("woff2"), url("/fonts/ModnyRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Regular.woff2") format("woff2"), url("/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --red:#a8554f;
  --white:#fff6ed;
  --gap:40px;
  --pad:75px;
}

body {
  font-family: "Montserrat";
  font-size: 14px;
  background: var(--red);
  color: var(--white);
  font-weight: normal;
  margin: 0;
  text-align: center;
  padding: 0;
  line-height: 1.4;
}
body.noScroll {
  overflow: hidden;
}

.container {
  max-width: calc(100% - var(--gap) - var(--gap));
  width: 1240px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.mob-hero {
  display: none;
}

.max620 {
  max-width: 620px;
}

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

.col {
  display: flex;
  flex-direction: column;
}

.mb5 {
  margin-bottom: 6px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.ptxl {
  padding-top: calc(1.5 * var(--pad));
}

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

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

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

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

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

.pts {
  padding-top: 40px;
}

.pbs {
  padding-bottom: 40px;
}

.mtl {
  margin-top: var(--pad);
}

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

.mbs {
  margin-bottom: 40px;
}

.underline {
  text-decoration: underline;
}

.max-content {
  width: -moz-max-content;
  width: max-content;
}

.flex-sb-ce {
  display: flex;
  justify-content: space-between;
  align-self: center;
}

.imgDiv {
  position: relative;
  max-width: calc(100% - 320px);
}

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

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

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

.i-slide {
  width: 30vw;
  padding: 0 15px;
  margin: auto;
  position: relative;
  text-align: left;
}
.i-slide .img {
  position: relative;
  z-index: 1;
  filter: grayscale(1);
  transition: filter 0.5s;
}
.i-slide:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background-color: var(--red);
  opacity: 0.8;
  z-index: 2;
  bottom: 0;
  right: 0;
  transition: opacity 0.5s;
}
.i-slide p {
  padding-top: 10px;
  opacity: 0;
  transition: opacity 0.5s;
}
.i-slide:hover:after {
  opacity: 0;
}
.i-slide:hover .img {
  filter: grayscale(0);
}
.i-slide:hover p {
  opacity: 1;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12.5px));
  }
}
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.border-t {
  border-top: 1px solid rgba(255, 246, 237, 0.5);
}

.border-b {
  border-bottom: 1px solid rgba(255, 246, 237, 0.5);
}

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

img {
  border: none;
  display: block;
  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;
}

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

.cornerstone {
  width: 180px;
}

.bkh {
  width: 100px;
}

/* Headings */
h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: normal;
}

.flex-li {
  display: flex;
  justify-content: space-between;
}
.flex-li .w300 {
  width: 300px;
  padding-right: 10px;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  text-align: left;
}

h1 {
  font-family: "Modny";
  font-size: 30px;
  letter-spacing: 0.1px;
}

h2 {
  font-family: "Modny";
  font-size: 32px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  line-height: 1.1;
}
h2.big {
  font-size: 40px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
  line-height: 1;
}

.modny {
  font-family: "Modny";
  text-transform: uppercase;
}

/* Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  width: 100%;
  height: 80px;
  position: fixed;
  background-color: var(--red);
  border-bottom: 1px solid var(--white);
  top: 0;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 300ms;
}
header .montecito {
  font-size: 40px;
  line-height: 1em;
  font-family: "Modny";
  text-transform: uppercase;
  letter-spacing: 0.1px;
  padding-top: 4px;
}

.logo {
  font-size: 60px;
  display: block;
  font-family: "Modny";
  margin: 0 auto;
  display: block;
  letter-spacing: 0.1px;
}
.logo span {
  display: block;
  font-size: 0.2em;
  padding-bottom: 1em;
  letter-spacing: 0.2em;
  font-family: "Montserrat";
}

#sliderSection {
  max-height: 80vh;
  height: 100vh;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 64/45;
  align-items: center;
  display: flex;
  padding-top: 80px;
}

/* enquiry */
input,
textarea,
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;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 246, 237, 0.5);
  text-align: center;
  font-family: inherit;
  text-transform: uppercase;
  resize: none;
  font-size: 14px;
  font-weight: 500;
}
input option,
textarea option,
select option {
  background-color: transparent;
  color: var(--red);
}

.register {
  width: 540px;
  margin: auto;
  max-width: 100%;
  padding-bottom: 60px;
}

.b_submit {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 150px;
  height: 40px;
  line-height: 1;
  cursor: pointer;
  border: none;
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--red);
  margin: 20px auto 0 auto;
  font-size: 16px;
  letter-spacing: 0.2em;
  transition: 300ms;
}
.b_submit:hover {
  background-color: var(--red);
  color: var(--white);
}

.privacy {
  padding-top: 20px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
}

.chk_holder {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 246, 237, 0.5);
}

.checkbox {
  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;
}

.checkbox + label {
  padding: 0 0 0 26px;
  position: relative;
  font-size: 13px;
  font-family: inherit;
  display: inline-block;
  text-transform: uppercase;
}

.checkbox + label:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--white);
  content: "";
  display: block;
  border-radius: 50%;
}

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

.checkbox: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;
}

input:focus,
textarea:focus {
  border-bottom: 1px solid rgb(255, 246, 237);
}

/*footer*/
/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
  padding: 0;
  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 {
  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;
  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;
}

.agents {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 0 30px 0;
  text-align: center;
  align-items: flex-end;
}
.agents img {
  width: 120px;
  display: block;
  margin: 0 auto 12px auto;
}
.agents div {
  width: 150px;
}

#mobslide p {
  padding-top: 10px;
  text-align: left;
}
#mobslide .slick-slide:not(.slick-current) img {
  opacity: 0.2;
  filter: grayscale(1);
}
#mobslide .slick-active:not(.slick-current) p {
  opacity: 0;
}

div:has(#mobslide) {
  display: block;
}

#awardsPop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  background-color: var(--red);
  opacity: 0;
  pointer-events: none;
  transition: 300ms;
}
#awardsPop .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
  overflow-y: scroll;
  padding: 40px 0;
  scrollbar-width: thin;
  background-color: #fff;
}
#awardsPop img {
  width: 100%;
}
#awardsPop.active {
  opacity: 1;
  pointer-events: all;
}
#awardsPop .close {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  top: 20px;
  right: 20px;
}
#awardsPop .close::before, #awardsPop .close::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: var(--white);
}
#awardsPop .close::before {
  transform: rotate(45deg);
}
#awardsPop .close::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 1440px) {
  #mobslide p {
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  #awardsPop .close::before, #awardsPop .close::after {
    background-color: #000;
  }
  header {
    height: 80px;
    padding: 0 var(--gap);
  }
  header .montecito {
    font-size: 35px;
  }
  .m-mtbl {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  :root {
    --gap:15px;
    --pad:40px;
  }
  .logo {
    font-size: 48px;
  }
  h4 {
    font-size: 16px;
  }
  .slider {
    width: 250vw;
  }
  .i-slide {
    width: 50vw;
  }
  .w300 {
    width: 100%;
  }
  .flex-li img {
    max-width: 100%;
  }
  .flex-li {
    flex-wrap: wrap;
    gap: 40px;
  }
  h1, h2.big {
    font-size: 16px;
    line-height: 1;
    font-family: "Montserrat";
  }
  .flex-li .w300 {
    text-align: center;
    margin: auto;
    width: 100%;
  }
  .m-col-rev {
    flex-direction: column-reverse;
  }
  .m-ptxl {
    padding-top: calc(1.5 * var(--pad));
  }
  .m-pbxl {
    padding-bottom: calc(1.5 * var(--pad));
  }
  .m-mbs {
    margin-bottom: 40px !important;
  }
  .flexslider .w300 div:has(h2) {
    display: none;
  }
  .flex-control-nav.top-nav .bar {
    display: none;
  }
  .flex-control-nav.top-nav li a {
    opacity: 0;
    transition: 300ms;
    position: absolute;
    left: 0;
    top: 0;
    white-space: pre-line;
  }
  .flex-control-nav.top-nav li a.flex-active {
    opacity: 1;
  }
  .flex-li {
    flex-direction: column-reverse;
  }
  .flex-prev {
    display: none;
  }
  #slider2 .flex-next::before,
  #slider3 .flex-next::before {
    content: "Next >";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
  }
  .imgDiv {
    max-width: 100%;
    padding-bottom: 20px;
  }
  #sliderSection {
    height: auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
  }
}
@media screen and (max-width: 680px) {
  #awardsPop .close {
    width: 20px;
    top: 5px;
    right: 5px;
  }
  .logo {
    font-size: 40px;
  }
  .mob-hero {
    display: block;
    width: 100%;
  }
  header {
    height: 50px;
  }
  header .montecito {
    font-size: 25px;
  }
  .m-pt0 {
    padding-top: 0 !important;
  }
  .m-pb0 {
    padding-bottom: 0 !important;
  }
}