@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src*=".svg"] {
    width: 100%;
  }
}

/* Keyframes for the fade-in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fader {
  opacity: 0;
  opacity: 1 \9;
  /*just in case ie*/
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}

.fader.one {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

.fader.two {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

.fader.three {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}

.fader.four {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}

.fader.five {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}

.down_link:hover {
  /* cursor: url(../img/down_arrow.svg), auto; */
  cursor: url(../../../../static/inherited/img/down_arrow.svg), auto;
}

@media screen and (max-width: 39.9375em) {
  .container,
  .reveal {
    font-size: 11px;
  }

  body {
    background: #4d2a21;
  }

  .unscrolled {
  }

  .scrolled {
  }

  .mb {
  }

  .mt {
  }

  .pb {
  }

  .pt {
  }

  .grid-x {
    max-width: min(90%, 500px);
    margin-left: auto;
    margin-right: auto;
  }

  a {
    color: inherit;
    outline: none;
  }

  a:hover,
  a:visited,
  a:focus,
  a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
  }

  #top {
  }

  #homepage {
  }

  .home_wrap {
    min-height: 100vh;
    position: relative;
    z-index: 10;
    padding: 30px 20px 200px;
  }

  .scrolled .home_wrap {
    opacity: 0;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
  }

  .top_row_wrap {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    z-index: 20;
  }

  .scrolled .top_row_wrap {
    top: 0px;
    display: none;
  }

  .top_row {
    opacity: 0;
    max-width: 100%;
    max-width: 100%;
    /* padding: 15px 10px 20px; */
  }

  .scrolled .top_row {
    opacity: 1;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
    transition-delay: 1s;
  }

  .top_col {
  }

  .top_col1 {
  }

  .top_col1 h6 {
  }

  .top_col2 {
  }

  .top_col3 {
  }

  .top_col3 h6 {
    text-align: right;
  }

  .fixed_logo {
    margin: 0 auto 0;
    display: block;
    height: 15px;
    opacity: 1;
  }

  .scrolled .fixed_logo {
  }

  .top_col h6 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.25em;
  }

  .top_reg_btn {
  }

  .top_reg_btn span {
    position: relative;
  }

  .top_reg_btn span::before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #ede2cf;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .top_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .middle_row_wrap {
    position: relative;
  }

  .middle_row {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .middle_col {
  }

  .hero_logo {
    max-width: min(450px, 90%);
    margin: 0 auto 15px;
    display: block;
  }

  .bottom_row_wrap {
    background-color: #ede2cf;
    position: fixed;
    width: 100%;
    bottom: -70px;
    z-index: 20;
    padding: 12px 15px 21px;
  }

  .bottom_row_wrap .bottom_reg_btn {
  }

  .bottom_reg_btn {
  }

  .bottom_reg_btn span {
    position: relative;
  }

  .bottom_reg_btn span::before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #4d2a21;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .bottom_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .down_link {
  }

  .down_link:hover {
  }

  .bottom_row {
    max-width: 100%;
  }

  .bottom_col {
  }

  .bottom_col1 {
  }

  .bottom_col2 {
  }

  .bottom_col3 {
  }

  .bottom_row h6 {
    color: #4d2a21;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.6em;
  }

  .bottom_col1 h6 {
  }

  .bottom_col2 h6 {
    text-align: center;
  }

  .bottom_col3 h6 {
    text-align: right;
  }

  #homepage_imgage_holder .vegas-slide,
  #homepage_imgage_holder .vegas-slide-inner {
  }

  #homepage_imgage_holder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #4d2a21;
  }

  .image_overlay {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(20, 20, 20, 0.2);
  }

  .hero_image {
  }

  #hero_image {
    position: absolute;
    width: 100%;
    height: 100% !important;
    top: 0;
    left: 0;
  }

  .subsection_wrap {
    position: relative;
    z-index: 3;
    background-color: #4d2a21;
    /* background-image: url(../img/bg_repeat.jpg); */
    background-image: url(../../../../static/inherited/img/bg_repeat.jpg);
    background-position: top center;
    background-repeat: repeat-y;
  }

  .subsection_background_colour {
  }

  .subsection {
    padding: 40px 0 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
  }

  .subsection .grid-x {
    position: relative;
  }

  #introduction {
    padding: 50px 0 0;
  }

  .intro_text_row {
  }

  .intro_text_col {
  }

  .intro_text_col h1 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 108%;
    letter-spacing: 0.04em;
    margin: 0px auto 30px;
    max-width: min(90%, 300px);
    font-size: 2em;
  }

  .intro_img_row {
    padding: 50px 0 50px;
  }

  .intro_img_col {
  }

  .life_img_wrap,
  .team_img_wrap,
  .video_row,
  .video_row .poster {
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  .life_img_wrap {
  }

  .life_img_wrap1 {
    margin-top: 100px;
  }

  .life_img_wrap2 {
    max-width: min(90%, 400px);
    margin-left: auto;
    margin-right: auto;
    margin: 40px auto 10px;
  }

  .life_img_wrap img {
  }

  .life_img_wrap .img_effect,
  .team_img_wrap img {
    min-width: 100%;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 3s linear;
    transition: 3s linear;
  }

  .life_img_wrap.delighter.started .img_effect,
  .team_img_wrap.delighter.started img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .intro_img_col h2,
  .team_text_row p,
  .new_footer_row1 p {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(95%, 400px);
    font-size: 1.2em;
  }

  .video_row_wrap {
    position: relative;
    padding: 50px 0 0px;
  }

  .video_row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    max-width: min(90%, 500px);
  }

  .video_row .cell {
    padding-right: 0;
    padding-left: 0;
    /* overflow: hidden; */
  }

  .responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    overflow: hidden;
  }

  .responsive-video iframe,
  .responsive-video object,
  .responsive-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video_row .poster {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 1;
  }

  .thumb_video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .button-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    width: 100px;
    height: 100px;
  }

  .button-play:hover {
    cursor: pointer;
    opacity: 0.5;
  }

  .video_row .overlay_video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1),
      background-color 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 2;
  }

  #team {
  }

  .divider_row {
  }

  .divider_col {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .section_title_hr,
  .footer_divider_row hr {
    width: 0%;
    border-bottom: 2px solid #ede2cf;
    margin: 0 auto 15px 0;
  }

  .section_title_hr.started,
  .footer_divider_row hr.started {
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -o-transition: all 1.5s ease-out;
    transition: all 1.5s ease-out;
    width: 100%;
    max-width: 100%;
  }

  .heading_row {
  }

  .heading_text_col {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .heading_text_col h3,
  .new_footer_row1 h3 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0em;
    margin: 0px auto 10px;
    max-width: min(100%, 3000px);
    font-size: 3em;
  }

  .team_text_row {
    padding-bottom: 0px;
  }

  .team_text_row .cell {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .team_img_wrap {
  }

  .team_img_wrap img {
  }

  .tl {
    height: 50px;
    margin: 30px auto 20px 0;
    display: none;
  }

  .tl1 {
  }

  .tl2 {
  }

  .tl3 {
  }

  .tl4 {
  }

  .tl5 {
  }

  .tl6 {
  }

  .team_text_row h2 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: 0.02em;
    margin: 20px auto 0px;
    max-width: min(100%, 3000px);
    font-size: 2.8em;
  }

  .team_text_row h4 {
    border-bottom: 1px solid #ede2cf;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px 7px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.08em;
    margin: 5px auto 20px 0;
    max-width: 100%;
    font-size: 1.2em;
  }

  .team_text_row p {
    max-width: min(95%, 750px);
    font-size: 1.2em;
    margin: 0 auto 30px 0;
    text-align: left;
  }

  #enquire {
  }

  .enquire_title_hr {
  }

  .contact_row {
  }

  .contact_col {
  }

  .enquire_stamp {
    max-width: min(80%, 290px);
    display: none;
  }

  .contact_col {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .contact_col h4 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.02em;
    margin: 0px auto 0;
    max-width: min(95%, 750px);
    font-size: 1.8em;
  }

  .form_wrap {
    margin: 20px auto 0;
    max-width: min(100%, 500px);
  }

  #footer {
    padding: 20px 0 180px;
  }

  .footer_divider_row {
  }

  .footer_divider_row .cell {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer_divider_row hr {
    margin: 30px auto 25px;
  }

  .footer_logo_row {
  }

  .footer_logo_col {
    /* padding-right: 0 !important; */
    padding-right: 0 !important;
    padding-left: 0 !important;
    /* padding-left: 0 !important; */
  }

  .footer_logo_wrap {
    text-align: center;
  }

  .fl {
    margin: 0 5px 20px 5px;
    height: 35px;
  }

  .fl1 {
  }

  .fl2 {
  }

  .fl3 {
  }

  .fl4 {
  }

  .fl5 {
  }

  .fl6 {
  }

  .footer_divider_row2 {
  }

  .footer_divider_row2 hr {
  }

  .disclaimer_row {
    max-width: 100%;
  }

  .earl_logo {
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0 0 0 auto;
    display: block;
  }

  .aerial_row {
    margin: 0px auto 0px;
    max-width: 100%;
  }

  .aerial_col {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .life_img_wrap3 {
  }

  .life_img_wrap3 img {
    min-width: 100%;
  }

  .disclaimer_col {
  }

  .intro_img_col h3 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: center;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0.05em;
    margin: 30px auto 20px;
    max-width: min(95%, 300px);
    font-size: 1.4em;
  }

  .disclaimer_col h6,
  .footer_logo_col h6 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.02em;
    margin: 0px auto 0px;
    max-width: min(90%, 300px);
    font-size: 0.9em;
  }

  .disclaimer_col h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.02em;
    margin: 0px auto 0;
    max-width: min(95%, 650px);
    font-size: 0.8em;
    display: none;
  }

  .option {
  }

  .option #homepage_imgage_holder .vegas-slide,
  .option #homepage_imgage_holder .vegas-slide-inner {
    background-position: center center !important;
  }

  .home {
  }

  .loaded .bottom_row_wrap {
    bottom: 0px;
    -webkit-transition: bottom 1s ease-out;
    -moz-transition: bottom 1s ease-out;
    -o-transition: bottom 1s ease-out;
    transition: bottom 1s ease-out;
  }

  .scrolled .bottom_row_wrap {
  }

  .middle_row h6 {
    color: #ede2cf;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    text-align: center;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 2.25em;
  }

  .bottom_col3 {
  }

  .bottom_col3 h6 {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .scrolled .bottom_col3 h6 {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .bottom_col1 {
  }

  .fixed_logo {
  }

  .scrolled .fixed_logo {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .home #homepage_imgage_holder .vegas-slide,
  .home #homepage_imgage_holder .vegas-slide-inner {
    background-image: url("../../../../static/inherited/img/hero_render_mobile.jpg") !important;
  }

  .new_bottom_row_wrap {
  }

  .new_bottom_row {
    max-width: 100%;
  }

  .new_bottom_row .cell {
    padding-right: 0;
    padding-left: 0;
  }

  .new_bottom_row h1 {
    display: none;
  }

  .new_bottom_row h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0.01em;
    margin: 0px auto 0px;
    max-width: min(95%, 300px);
    font-size: 1.2em;
  }

  .circular--portrait {
    position: relative;
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto;
  }

  .circular--portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .top_reg_btn:hover {
  }

  .scrolled .top_reg_btn {
  }

  .scrolled .top_reg_btn:hover {
  }

  .fade_gallery {
    line-height: 0;
  }

  .intro_img_row1 {
  }

  .intro_img_row2 {
    padding: 0px 0 50px;
  }

  .intro_img_row2 h3 {
  }

  .intro_img_row2 h2 {
  }

  .fl_wrap {
    display: inline-block;
    margin: 0 5px;
    min-width: 120px;
  }

  .fl_wrap h3 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.07em;
    margin: 0px auto 10px;
    max-width: min(95%, 700px);
    font-size: 0.85em;
  }

  .contact_row h2,
  .new_footer_row2 h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(95%, 700px);
    font-size: 1.2em;
  }

  .contact_row h2 a {
    text-decoration-line: underline;
    text-decoration-color: #ede2cf;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.1em;
  }

  .contact_row h2 a:hover {
  }

  .contact_row h5,
  .new_footer_row2 h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.01em;
    margin: 10px auto 20px;
    max-width: min(95%, 350px);
    font-size: 0.9em;
  }

  .slick-dots {
    position: absolute;
    bottom: 15px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    padding: 0;
    cursor: pointer;
  }

  .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }

  .slick-dots li button:hover,
  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover:before,
  .slick-dots li button:focus:before {
    opacity: 1;
  }

  .slick-dots li button:before {
    font-family: "slick";
    font-size: 8px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    text-align: center;
    opacity: 0.4;
    color: #dcd8cf;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slick-dots li.slick-active button:before {
    opacity: 0.95;
    color: #dcd8cf;
  }

  #new_footer {
  }

  .new_footer_row {
  }

  .new_footer_row1 {
    padding: 0px 0 0px;
  }

  .new_footer_row .cell {
    padding-right: 0;
    padding-left: 0;
  }

  .new_footer_row1 h3 {
    margin: 0px auto 0px;
    text-align: center;
    /* font-size: 4.0em; */
  }

  .new_footer_row1 h1 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: center;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 0px auto 0px;
    max-width: min(95%, 650px);
    font-size: 1.5em;
  }

  .new_footer_row1 h4 {
  }

  .new_footer_row1 p {
    text-align: center;
    margin: 2px auto 20px;
  }

  .map_wrap {
    max-width: min(85%, 400px);
    margin: 25px auto 30px;
    overflow: hidden;
  }

  .map_wrap img {
  }

  #new_footer .form_wrap {
  }

  .new_footer_row2 {
    border-top: 1px solid #ede2cf;
    padding: 30px 0 150px;
  }

  .new_footer_row2 h5 {
    text-align: center;
    max-width: min(95%, 530px);
    margin: 0 auto 0;
    font-size: 0.75em;
  }

  .new_footer_row2 {
  }

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

  .new_footer_row2 .fl_wrap {
    margin: 0 5px 0;
  }

  .new_footer_row2 .fl_wrap h3 {
    text-align: left;
  }

  .new_footer_row2 .fl {
  }

  .footer_divider_col {
  }

  .footer_divider_col hr {
    max-width: 100%;
    margin: 20px auto 20px;
    border-bottom: 1px solid #ede2cf;
  }

  .new_footer_row2 h2 {
    margin: 0 auto 10px;
    text-align: center;
    font-size: 1.1em;
  }
}

@media screen and (min-width: 40em) {
  .container,
  .reveal {
    font-size: 12px;
  }

  body {
    background: #050001;
  }

  .unscrolled {
  }

  .scrolled {
  }

  .mb {
  }

  .mt {
  }

  .pb {
  }

  .pt {
  }

  .grid-x {
    max-width: min(3400px, 98%);
    margin-left: auto;
    margin-right: auto;
  }

  a {
    color: inherit;
    outline: none;
  }

  a:hover,
  a:visited,
  a:focus,
  a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
  }

  #top {
  }

  #homepage {
  }

  .home_wrap {
    min-height: 100vh;
    min-height: 100vh;
    top: 0;
    position: relative;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 30px 20px 160px;
  }

  .scrolled .home_wrap {
    opacity: 0;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
  }

  .top_row_wrap {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    z-index: 20;
  }

  .scrolled .top_row_wrap {
    top: 0px;
    background-color: #050001;
  }

  .top_row {
    opacity: 1;
    max-width: 100%;
    max-width: 100%;
    padding: 25px 20px 20px;
    padding: 25px 20px 25px 20px;
  }

  .scrolled .top_row {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding: 20px 20px 20px;
    padding: 25px 20px 25px 20px;
  }

  .top_col {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .top_col1 {
  }

  .top_col1 h6 {
  }

  .top_col2 {
  }

  .top_col3 {
  }

  .top_col3 h6 {
    text-align: right;
  }

  .fixed_logo {
    margin: 0px auto 0;
    display: block;
    height: 18px;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .scrolled .fixed_logo {
  }

  .top_col h6 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.25em;
  }

  .top_reg_btn {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #ede2cf;
    padding: 6px 27px 8px;
    display: inline-block;
  }

  .top_reg_btn span {
    position: relative;
  }

  .top_reg_btn span::before {
    content: "";
    position: absolute;
    height: 0px;
    bottom: 1px;
    left: 0;
    right: 0;
    background-color: #ede2cf;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .top_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .middle_row_wrap {
    position: relative;
  }

  .middle_row {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .middle_col {
  }

  .hero_logo {
    max-width: min(450px, 90%);
    margin: 0 auto 20px;
    display: block;
  }

  .bottom_row_wrap {
    background-color: #ede2cf;
    background-color: #ede2cf;
    position: fixed;
    width: 100%;
    bottom: -70px;
    z-index: 20;
    padding: 12px 15px 20px;
  }

  .bottom_row_wrap .bottom_reg_btn {
  }

  .bottom_reg_btn {
  }

  .bottom_reg_btn span {
    position: relative;
  }

  .bottom_reg_btn span::before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #4d2a21;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .bottom_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .down_link {
  }

  .down_link:hover {
  }

  .bottom_row {
    max-width: 100%;
    max-width: min(3400px, 98%);
  }

  .bottom_col {
  }

  .bottom_col1 {
  }

  .bottom_col2 {
  }

  .bottom_col3 {
  }

  .bottom_row h6 {
    color: #4d2a21;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.5em;
  }

  .bottom_col1 h6 {
  }

  .bottom_col2 h6 {
    text-align: center;
  }

  .bottom_col3 h6 {
    text-align: right;
  }

  #homepage_imgage_holder .vegas-slide,
  #homepage_imgage_holder .vegas-slide-inner {
  }

  #homepage_imgage_holder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #4d2a21;
  }

  .image_overlay {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(20, 20, 20, 0.2);
  }

  .hero_image {
  }

  #hero_image {
    position: absolute;
    width: 100%;
    height: 100% !important;
    top: 0;
    left: 0;
  }

  .subsection_wrap {
    position: relative;
    z-index: 3;
    background-color: #4d2a21;
    background-image: url(../../../../static/inherited/img/bg_repeat.jpg);
    background-position: top center;
    background-repeat: repeat-y;
  }

  .subsection_background_colour {
  }

  .subsection {
    padding: 50px 0 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
  }

  .subsection .grid-x {
    position: relative;
  }

  #introduction {
    padding: 60px 0 0;
  }

  .intro_text_row {
  }

  .intro_text_col {
  }

  .intro_text_col h1 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: 0.04em;
    margin: 0px auto 50px;
    max-width: min(90%, 400px);
    font-size: 2.4em;
  }

  .intro_img_row {
    padding: 70px 0 50px;
  }

  .intro_img_col {
  }

  .life_img_wrap,
  .team_img_wrap,
  .video_row,
  .video_row .poster {
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  .life_img_wrap {
  }

  .life_img_wrap1 {
    margin: 100px auto 0 0;
    max-width: min(100%, 600px);
  }

  .life_img_wrap2 {
    margin: 50px 0 10px;
  }

  .life_img_wrap img {
  }

  .life_img_wrap .img_effect,
  .team_img_wrap img {
    min-width: 100%;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 3s linear;
    transition: 3s linear;
  }

  .life_img_wrap.delighter.started .img_effect,
  .team_img_wrap.delighter.started img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .intro_img_col h2,
  .team_text_row p,
  .new_footer_row1 p {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(100%, 400px);
    font-size: 1.2em;
  }

  .video_row_wrap {
    position: relative;
    padding: 80px 0 60px;
  }

  .video_row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    max-width: min(85rem, 80%);
  }

  .video_row .cell {
    padding-right: 0;
    padding-left: 0;
    /* overflow: hidden; */
  }

  .responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    overflow: hidden;
  }

  .responsive-video iframe,
  .responsive-video object,
  .responsive-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video_row .poster {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 1;
  }

  .thumb_video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .button-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    width: 110px;
    height: 110px;
  }

  .button-play:hover {
    cursor: pointer;
    opacity: 0.5;
  }

  .video_row .overlay_video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1),
      background-color 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 2;
  }

  #team {
  }

  .divider_row {
  }

  .divider_col {
  }

  .section_title_hr,
  .footer_divider_row hr {
    width: 0%;
    border-bottom: 2px solid #ede2cf;
    margin: 0 auto 15px 0;
  }

  .section_title_hr.started,
  .footer_divider_row hr.started {
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -o-transition: all 1.5s ease-out;
    transition: all 1.5s ease-out;
    width: 100%;
    max-width: 100%;
  }

  .heading_row {
  }

  .heading_text_col {
  }

  .heading_text_col h3,
  .new_footer_row1 h3 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0em;
    margin: 0px auto 30px;
    max-width: min(100%, 3000px);
    font-size: 3em;
  }

  .team_text_row {
    padding-bottom: 30px;
  }

  .team_text_row .cell {
  }

  .team_img_wrap {
  }

  .team_img_wrap img {
  }

  .tl {
    height: 50px;
    margin: 30px auto 20px 0;
    display: none;
  }

  .tl1 {
  }

  .tl2 {
  }

  .tl3 {
  }

  .tl4 {
  }

  .tl5 {
  }

  .tl6 {
  }

  .team_text_row h2 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: 0.02em;
    margin: 20px auto 0px;
    max-width: min(100%, 3000px);
    font-size: 2.1em;
  }

  .team_text_row h4 {
    border-bottom: 1px solid #ede2cf;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px 7px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.08em;
    margin: 5px auto 20px 0;
    max-width: 100%;
    font-size: 1.2em;
  }

  .team_text_row p {
    max-width: min(100%, 750px);
    font-size: 1.1em;
    margin: 0 auto 0 0;
  }

  #enquire {
  }

  .enquire_title_hr {
  }

  .contact_row {
  }

  .contact_col {
  }

  .enquire_stamp {
    max-width: min(80%, 290px);
    display: none;
  }

  .contact_col {
  }

  .contact_col h4 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.02em;
    margin: 0px auto 0 0;
    max-width: min(95%, 750px);
    font-size: 1.8em;
  }

  .form_wrap {
    margin: 30px auto 0;
    max-width: min(95%, 800px);
  }

  #footer {
    padding: 20px 0 180px;
  }

  .footer_divider_row {
  }

  .footer_divider_row .cell {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer_divider_row hr {
    margin: 30px auto 25px;
  }

  .footer_logo_row {
  }

  .footer_logo_col {
    /* padding-right: 0 !important; */
    /* padding-left: 0 !important; */
  }

  .footer_logo_wrap {
    text-align: center;
  }

  .fl {
    margin: 0 0px 0;
    height: 40px;
  }

  .fl1 {
  }

  .fl2 {
  }

  .fl3 {
  }

  .fl4 {
  }

  .fl5 {
  }

  .fl6 {
  }

  .footer_divider_row2 {
  }

  .footer_divider_row2 hr {
  }

  .disclaimer_row {
    max-width: 100%;
  }

  .earl_logo {
    height: 50px;
    position: absolute;
    right: 0;
    margin: 0 0 0 auto;
    display: block;
    transform: translateY(-100%);
  }

  .aerial_row {
    margin: 0px auto 10px;
  }

  .aerial_col {
  }

  .life_img_wrap3 {
  }

  .life_img_wrap3 img {
    min-width: 100%;
  }

  .disclaimer_col {
  }

  .intro_img_col h3 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: center;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 40px auto 20px;
    max-width: min(95%, 400px);
    font-size: 1.7em;
  }

  .disclaimer_col h6,
  .footer_logo_col h6 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.02em;
    margin: 0px auto 0px 0;
    max-width: min(95%, 450px);
    font-size: 0.85em;
  }

  .disclaimer_col h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.02em;
    margin: 0px auto 0;
    max-width: min(95%, 650px);
    font-size: 0.8em;
    display: none;
  }

  .option {
  }

  .option #homepage_imgage_holder .vegas-slide,
  .option #homepage_imgage_holder .vegas-slide-inner {
    background-position: center center !important;
  }

  .home {
  }

  .loaded .bottom_row_wrap {
    bottom: 0px;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
  }

  .scrolled .bottom_row_wrap {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding: 11px 15px 19px;
  }

  .middle_row h6 {
    color: #ede2cf;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    text-align: center;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 2.6em;
  }

  .bottom_col3 {
  }

  .bottom_col3 h6 {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .scrolled .bottom_col3 h6 {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .bottom_col1 {
  }

  .fixed_logo {
  }

  .scrolled .fixed_logo {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }

  .home #homepage_imgage_holder .vegas-slide,
  .home #homepage_imgage_holder .vegas-slide-inner {
    background-image: url("../../../../static/inherited/img/hero_render.jpg") !important;
  }

  .new_bottom_row_wrap {
  }

  .new_bottom_row {
  }

  .new_bottom_row .cell {
  }

  .new_bottom_row h1 {
    display: none;
  }

  .new_bottom_row h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.01em;
    margin: 0px auto 0px;
    max-width: min(95%, 400px);
    font-size: 1.3em;
  }

  .circular--portrait {
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto;
  }

  .circular--portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .top_reg_btn:hover {
    background-color: #5a372e;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
  }

  .scrolled .top_reg_btn {
  }

  .scrolled .top_reg_btn:hover {
  }

  .fade_gallery {
    line-height: 0;
  }

  .intro_img_row1 {
  }

  .intro_img_row2 {
    padding: 0px 0 100px;
  }

  .intro_img_row2 h3 {
  }

  .intro_img_row2 h2 {
  }

  .fl_wrap {
    display: inline-block;
    margin: 0 20px;
    min-width: 110px;
  }

  .fl_wrap h3 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.07em;
    margin: 0px auto 10px;
    max-width: 100%;
    font-size: 0.85em;
  }

  .contact_row h2,
  .new_footer_row2 h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(95%, 700px);
    font-size: 1.2em;
  }

  .contact_row h2 a {
    text-decoration-line: underline;
    text-decoration-color: #ede2cf;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.13em;
  }

  .contact_row h2 a:hover {
  }

  .contact_row h5,
  .new_footer_row2 h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.01em;
    margin: 20px auto 20px;
    max-width: min(95%, 450px);
    font-size: 0.9em;
  }

  .slick-dots {
    position: absolute;
    bottom: 25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
  }

  .slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }

  .slick-dots li button:hover,
  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover:before,
  .slick-dots li button:focus:before {
    opacity: 1;
  }

  .slick-dots li button:before {
    font-family: "slick";
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: 0.4;
    color: #dcd8cf;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slick-dots li.slick-active button:before {
    opacity: 0.95;
    color: #dcd8cf;
  }

  #new_footer {
  }

  .new_footer_row {
    max-width: min(2400px, 93%);
  }

  .new_footer_row1 {
    padding: 50px 0 0px;
  }

  .new_footer_row .cell {
    padding-right: 0;
    padding-left: 0;
  }

  .new_footer_row1 h3 {
    margin: 0px auto 0px;
    text-align: center;
    /* font-size: 4.0em; */
  }

  .new_footer_row1 h1 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: center;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 0px auto 0px;
    max-width: min(95%, 650px);
    font-size: 1.5em;
  }

  .new_footer_row1 h4 {
  }

  .new_footer_row1 p {
    text-align: center;
    margin: 2px auto 20px;
  }

  .map_wrap {
    max-width: min(95%, 400px);
    margin: 25px auto 40px;
    overflow: hidden;
  }

  .map_wrap img {
  }

  #new_footer .form_wrap {
    margin: 0 auto 0 0;
    max-width: min(100%, 1000px);
  }

  .new_footer_row2 {
    border-top: 1px solid #ede2cf;
    padding: 30px 0 150px;
  }

  .new_footer_row2 h5 {
    text-align: center;
    max-width: min(95%, 530px);
    margin: 0 auto 0;
    font-size: 0.75em;
  }

  .new_footer_row2 {
  }

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

  .new_footer_row2 .fl_wrap {
    margin: 0 40px 0 0;
  }

  .new_footer_row2 .fl_wrap h3 {
    text-align: center;
  }

  .new_footer_row2 .fl {
  }

  .footer_divider_col {
  }

  .footer_divider_col hr {
    max-width: 100%;
    margin: 20px auto 40px;
    border-bottom: 1px solid #ede2cf;
  }

  .new_footer_row2 h2 {
    margin: 30px auto 10px;
    text-align: center;
    font-size: 1.1em;
  }
}

@media screen and (min-width: 64em) {
  .container,
  .reveal {
    font-size: 13px;
  }

  body {
    background: #4d2a21;
  }

  .unscrolled {
  }

  .scrolled {
  }

  .mb {
  }

  .mt {
  }

  .pb {
  }

  .pt {
  }

  .grid-x {
    max-width: min(3400px, 95%);
    margin-left: auto;
    margin-right: auto;
  }

  a {
    color: inherit;
    outline: none;
  }

  a:hover,
  a:visited,
  a:focus,
  a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
  }

  #top {
  }

  #homepage {
  }

  .home_wrap {
    min-height: 100vh;
    min-height: 100vh;
    top: 0;
    position: relative;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 30px 30px 60px;
  }

  .scrolled .home_wrap {
    opacity: 0;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
  }

  .top_row_wrap {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    z-index: 20;
  }

  .scrolled .top_row_wrap {
    top: 0px;
    background-color: #050001;
  }

  .top_row {
    opacity: 1;
    max-width: 100%;
    max-width: 100%;
    /* padding: 25px 20px 20px; */
    padding: 25px 20px 25px 20px;
  }

  .scrolled .top_row {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    /* padding: 18px 20px 17px; */
    padding: 25px 20px 25px 20px;
  }

  .top_col {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }

  .top_col1 {
  }

  .top_col1 h6 {
  }

  .top_col2 {
  }

  .top_col3 {
  }

  .top_col3 h6 {
    text-align: right;
  }

  .fixed_logo {
    margin: 0px auto 0;
    display: block;
    height: 24px;
    opacity: 0;
  }

  .scrolled .fixed_logo {
  }

  .top_col h6 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.25em;
  }

  .top_reg_btn {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #ede2cf;
    padding: 7px 27px 8px;
    display: inline-block;
  }

  .top_reg_btn span {
    position: relative;
  }

  .top_reg_btn span::before {
    content: "";
    position: absolute;
    height: 0px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #ede2cf;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .top_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .middle_row_wrap {
    position: relative;
  }

  .middle_row {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .middle_col {
  }

  .hero_logo {
    max-width: min(500px, 90%);
    margin: 0 auto 20px;
    display: block;
  }

  .bottom_row_wrap {
    background-color: #ede2cf;
    background-color: #ede2cf;
    position: fixed;
    width: 100%;
    bottom: -70px;
    z-index: 20;
    padding: 10px 15px 15px;
  }

  .bottom_row_wrap .bottom_reg_btn {
  }

  .bottom_reg_btn {
  }

  .bottom_reg_btn span {
    position: relative;
  }

  .bottom_reg_btn span::before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #4d2a21;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .bottom_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .down_link {
  }

  .down_link:hover {
  }

  .bottom_row {
    max-width: 100%;
    max-width: min(3400px, 95%);
  }

  .bottom_col {
  }

  .bottom_col1 {
  }

  .bottom_col2 {
  }

  .bottom_col3 {
  }

  .bottom_row h6 {
    color: #4d2a21;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.5em;
  }

  .bottom_col1 h6 {
  }

  .bottom_col2 h6 {
    text-align: center;
  }

  .bottom_col3 h6 {
    text-align: right;
  }

  #homepage_imgage_holder .vegas-slide,
  #homepage_imgage_holder .vegas-slide-inner {
  }

  #homepage_imgage_holder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #4d2a21;
  }

  .image_overlay {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(20, 20, 20, 0);
  }

  .hero_image {
  }

  #hero_image {
    position: absolute;
    width: 100%;
    height: 100% !important;
    top: 0;
    left: 0;
  }

  .subsection_wrap {
    position: relative;
    z-index: 3;
    background-color: #4d2a21;
    background-image: url(../../../../static/inherited/img/bg_repeat.jpg);
    background-position: top center;
    background-repeat: repeat-y;
  }

  .subsection_background_colour {
  }

  .subsection {
    padding: 50px 0 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
  }

  .subsection .grid-x {
    position: relative;
  }

  #introduction {
    padding: 110px 0 0;
  }

  .intro_text_row {
  }

  .intro_text_col {
  }

  .intro_text_col h1 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: 0.04em;
    margin: 0px auto 70px;
    max-width: min(90%, 420px);
    font-size: 2.4em;
  }

  .intro_img_row {
    padding: 100px 0 100px;
  }

  .intro_img_col {
  }

  .life_img_wrap,
  .team_img_wrap,
  .video_row,
  .video_row .poster {
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  .life_img_wrap {
  }

  .life_img_wrap1 {
    margin: 100px auto 0 0;
    max-width: min(66%, 600px);
  }

  .life_img_wrap2 {
    margin: 50px 0 0px;
  }

  .life_img_wrap img {
  }

  .life_img_wrap .img_effect,
  .team_img_wrap img {
    min-width: 100%;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 3s linear;
    transition: 3s linear;
  }

  .life_img_wrap.delighter.started .img_effect,
  .team_img_wrap.delighter.started img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .intro_img_col h2,
  .team_text_row p,
  .new_footer_row1 p {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(98%, 500px);
    font-size: 1.2em;
  }

  .video_row_wrap {
    position: relative;
    padding: 100px 0 70px;
  }

  .video_row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    max-width: 50rem;
  }

  .video_row .cell {
    padding-right: 0;
    padding-left: 0;
    /* overflow: hidden; */
  }

  .responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    overflow: hidden;
  }

  .responsive-video iframe,
  .responsive-video object,
  .responsive-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video_row .poster {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 1;
  }

  .thumb_video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .button-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    width: 130px;
    height: 140px;
  }

  .button-play:hover {
    cursor: pointer;
    opacity: 0.5;
  }

  .video_row .overlay_video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1),
      background-color 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 2;
  }

  #team {
  }

  .divider_row {
  }

  .divider_col {
  }

  .section_title_hr,
  .footer_divider_row hr {
    width: 0%;
    border-bottom: 2px solid #ede2cf;
    margin: 0 auto 15px 0;
  }

  .section_title_hr.started,
  .footer_divider_row hr.started {
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -o-transition: all 1.5s ease-out;
    transition: all 1.5s ease-out;
    width: 100%;
    max-width: 100%;
  }

  .heading_row {
  }

  .heading_text_col {
  }

  .heading_text_col h3,
  .new_footer_row1 h3 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0em;
    margin: 0px auto 0px;
    max-width: min(100%, 3000px);
    font-size: 3.2em;
  }

  .team_text_row {
    padding-bottom: 40px;
  }

  .team_text_row .cell {
  }

  .team_img_wrap {
  }

  .team_img_wrap img {
  }

  .tl {
    height: 50px;
    margin: 30px auto 20px 0;
    display: none;
  }

  .tl1 {
  }

  .tl2 {
  }

  .tl3 {
  }

  .tl4 {
  }

  .tl5 {
  }

  .tl6 {
  }

  .team_text_row h2 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: 0.02em;
    margin: 20px auto 0px;
    max-width: min(100%, 3000px);
    font-size: 2em;
  }

  .team_text_row h4 {
    border-bottom: 1px solid #ede2cf;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px 8px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.08em;
    margin: 5px auto 25px 0;
    max-width: 100%;
    font-size: 1.1em;
  }

  .team_text_row p {
    max-width: min(98%, 750px);
    font-size: 1.1em;
    margin: 0 auto 0 0;
  }

  #enquire {
  }

  .enquire_title_hr {
  }

  .contact_row {
  }

  .contact_col {
  }

  .enquire_stamp {
    max-width: min(80%, 220px);
  }

  .contact_col {
  }

  .contact_col h4 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.02em;
    margin: 0px auto 0 0;
    max-width: min(95%, 750px);
    font-size: 1.9em;
  }

  .form_wrap {
    margin: 30px auto 0;
    max-width: min(90%, 800px);
  }

  #footer {
    padding: 20px 0 150px;
  }

  .footer_divider_row {
  }

  .footer_divider_row .cell {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer_divider_row hr {
    margin: 25px auto 20px;
  }

  .footer_logo_row {
  }

  .footer_logo_col {
    /* padding-right: 0 !important; */
    /* padding-left: 0 !important; */
  }

  .footer_logo_wrap {
    text-align: center;
  }

  .fl {
    margin: 0 0px 0;
    height: 45px;
  }

  .fl1 {
  }

  .fl2 {
  }

  .fl3 {
  }

  .fl4 {
  }

  .fl5 {
  }

  .fl6 {
  }

  .footer_divider_row2 {
  }

  .footer_divider_row2 hr {
  }

  .disclaimer_row {
    max-width: 100%;
  }

  .earl_logo {
    height: 50px;
    position: absolute;
    right: 0;
    margin: 0 0 0 auto;
    display: block;
    transform: translateY(-100%);
  }

  .aerial_row {
    margin: 0px auto 10px;
  }

  .aerial_col {
  }

  .life_img_wrap3 {
  }

  .life_img_wrap3 img {
    min-width: 100%;
  }

  .disclaimer_col {
  }

  .intro_img_col h3 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: center;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 40px auto 20px;
    max-width: min(95%, 450px);
    font-size: 1.7em;
  }

  .disclaimer_col h6,
  .footer_logo_col h6 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.02em;
    margin: 0px auto 0px 0;
    max-width: min(92%, 400px);
    font-size: 0.9em;
  }

  .disclaimer_col h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.02em;
    margin: 0px auto 0;
    max-width: min(95%, 650px);
    font-size: 0.8em;
    display: none;
  }

  .option {
  }

  .option #homepage_imgage_holder .vegas-slide,
  .option #homepage_imgage_holder .vegas-slide-inner {
    background-position: center center !important;
  }

  .home {
  }

  .loaded .bottom_row_wrap {
    bottom: 0px;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
  }

  .scrolled .bottom_row_wrap {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding: 10px 15px 17px;
  }

  .middle_row h6 {
    color: #ede2cf;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    text-align: center;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 2.7em;
  }

  .bottom_col3 {
  }

  .bottom_col3 h6 {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .scrolled .bottom_col3 h6 {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .bottom_col1 {
  }

  .fixed_logo {
  }

  .scrolled .fixed_logo {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }

  .home #homepage_imgage_holder .vegas-slide,
  .home #homepage_imgage_holder .vegas-slide-inner {
    background-image: url("../../../../static/inherited/img/hero_render.jpg") !important;
  }

  .new_bottom_row_wrap {
  }

  .new_bottom_row {
  }

  .new_bottom_row .cell {
  }

  .new_bottom_row h1 {
    display: none;
  }

  .new_bottom_row h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0.01em;
    margin: 0px auto 0px;
    max-width: min(95%, 550px);
    font-size: 1.2em;
  }

  .circular--portrait {
    position: relative;
    width: 450px;
    height: 450px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }

  .circular--portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .top_reg_btn:hover {
    background-color: #5a372e;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
  }

  .scrolled .top_reg_btn {
  }

  .scrolled .top_reg_btn:hover {
  }

  .fade_gallery {
    line-height: 0;
  }

  .intro_img_row1 {
  }

  .intro_img_row2 {
    padding: 0px 0 100px;
  }

  .intro_img_row2 h3 {
  }

  .intro_img_row2 h2 {
  }

  .fl_wrap {
    display: inline-block;
    margin: 0 20px;
    min-width: 120px;
  }

  .fl_wrap h3 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.07em;
    margin: 0px auto 10px;
    max-width: 100%;
    font-size: 0.8em;
  }

  .contact_row h2,
  .new_footer_row2 h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(95%, 700px);
    font-size: 1.2em;
  }

  .contact_row h2 a {
    text-decoration-line: underline;
    text-decoration-color: #ede2cf;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.1em;
  }

  .contact_row h2 a:hover {
  }

  .contact_row h5,
  .new_footer_row2 h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.01em;
    margin: 20px auto 20px;
    max-width: min(95%, 530px);
    font-size: 0.9em;
  }

  .slick-dots {
    position: absolute;
    bottom: 20px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
  }

  .slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }

  .slick-dots li button:hover,
  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover:before,
  .slick-dots li button:focus:before {
    opacity: 1;
  }

  .slick-dots li button:before {
    font-family: "slick";
    font-size: 13px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: 0.4;
    color: #dcd8cf;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slick-dots li.slick-active button:before {
    opacity: 0.95;
    color: #dcd8cf;
  }

  #new_footer {
  }

  .new_footer_row {
    max-width: min(2400px, 94%);
  }

  .new_footer_row1 {
    padding: 50px 0 0px;
  }

  .new_footer_row .cell {
    padding-right: 0;
    padding-left: 0;
  }

  .new_footer_row1 h3 {
    margin: 20px auto 0px;
    text-align: left;
    /* font-size: 4.0em; */
  }

  .new_footer_row1 h1 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: left;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 0px auto 0px 0;
    max-width: min(95%, 650px);
    font-size: 1.5em;
  }

  .new_footer_row1 h4 {
  }

  .new_footer_row1 p {
    text-align: left;
    margin: 2px auto 20px 0;
  }

  .map_wrap {
    max-width: min(95%, 350px);
    margin: 35px auto 0 0;
    overflow: hidden;
  }

  .map_wrap img {
  }

  #new_footer .form_wrap {
    margin: 0 auto 0 0;
    max-width: min(100%, 1000px);
  }

  .new_footer_row2 {
    border-top: 1px solid #ede2cf;
    padding: 30px 0 80px;
  }

  .new_footer_row2 h5 {
    text-align: left;
    max-width: min(95%, 530px);
    margin: 0 auto 0 0;
    font-size: 0.75em;
  }

  .new_footer_row2 {
  }

  .new_footer_row2 .footer_logo_wrap {
    text-align: left;
  }

  .new_footer_row2 .fl_wrap {
    margin: 0 40px 0 0;
  }

  .new_footer_row2 .fl_wrap h3 {
    text-align: left;
  }

  .new_footer_row2 .fl {
  }

  .footer_divider_col {
  }

  .footer_divider_col hr {
    max-width: 100%;
    margin: 20px auto 40px;
    border-bottom: 1px solid #ede2cf;
  }

  .new_footer_row2 h2 {
    margin: 0 auto 10px 0;
    text-align: left;
    font-size: 1.1em;
  }
}

@media screen and (min-width: 90em) {
  .container,
  .reveal {
    font-size: 14px;
  }

  body {
    background: #4d2a21;
  }

  .unscrolled {
  }

  .scrolled {
  }

  .mb {
  }

  .mt {
  }

  .pb {
  }

  .pt {
  }

  .grid-x {
    max-width: min(3400px, 92%);
    margin-left: auto;
    margin-right: auto;
  }

  a {
    color: inherit;
    outline: none;
  }

  a:hover,
  a:visited,
  a:focus,
  a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
  }

  #top {
  }

  #homepage {
  }

  .home_wrap {
    min-height: 100vh;
    top: 0;
    position: relative;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 50px 40px 60px;
  }

  .scrolled .home_wrap {
    opacity: 0;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
  }

  .top_row_wrap {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    z-index: 20;
  }

  .scrolled .top_row_wrap {
    top: 0px;
    background-color: #050001;
  }

  .top_row {
    opacity: 1;
    max-width: 100%;
    max-width: 100%;
    padding: 35px 25px 20px;
    padding: 35px 25px 35px 25px;
  }

  .scrolled .top_row {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding: 18px 25px 18px;
    padding: 35px 25px 35px 25px;
  }

  .top_col {
  }

  .top_col1 {
  }

  .top_col1 h6 {
  }

  .top_col2 {
  }

  .top_col3 {
  }

  .top_col3 h6 {
    text-align: right;
  }

  .fixed_logo {
    margin: 0px auto 0;
    display: block;
    height: 26px;
    opacity: 0;
  }

  .scrolled .fixed_logo {
  }

  .top_col h6 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.3em;
  }

  .top_reg_btn {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #ede2cf;
    padding: 7px 27px 8px;
    display: inline-block;
  }

  .top_reg_btn span {
    position: relative;
  }

  .top_reg_btn span::before {
    content: "";
    position: absolute;
    height: 0px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #ede2cf;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .top_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .middle_row_wrap {
    position: relative;
  }

  .middle_row {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .middle_col {
  }

  .hero_logo {
    max-width: min(700px, 90%);
    margin: 0 auto 40px;
    display: block;
  }

  .bottom_row_wrap {
    background-color: #ede2cf;
    background-color: #ede2cf;
    position: fixed;
    width: 100%;
    bottom: -70px;
    z-index: 20;
    padding: 11px 15px 20px;
  }

  .bottom_row_wrap .bottom_reg_btn {
  }

  .bottom_reg_btn {
  }

  .bottom_reg_btn span {
    position: relative;
  }

  .bottom_reg_btn span::before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #4d2a21;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .bottom_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .down_link {
  }

  .down_link:hover {
  }

  .bottom_row {
    max-width: 100%;
    max-width: min(3400px, 92%);
  }

  .bottom_col {
  }

  .bottom_col1 {
  }

  .bottom_col2 {
  }

  .bottom_col3 {
  }

  .bottom_row h6 {
    color: #4d2a21;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.45em;
  }

  .bottom_col1 h6 {
  }

  .bottom_col2 h6 {
    text-align: center;
  }

  .bottom_col3 h6 {
    text-align: right;
  }

  #homepage_imgage_holder .vegas-slide,
  #homepage_imgage_holder .vegas-slide-inner {
  }

  #homepage_imgage_holder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #4d2a21;
  }

  .image_overlay {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(20, 20, 20, 0);
  }

  .hero_image {
  }

  #hero_image {
    position: absolute;
    width: 100%;
    height: 100% !important;
    top: 0;
    left: 0;
  }

  .subsection_wrap {
    position: relative;
    z-index: 3;
    background-color: #4d2a21;
    background-image: url(../../../../static/inherited/img/bg_repeat.jpg);
    background-position: top center;
    background-repeat: repeat-y;
  }

  .subsection_background_colour {
  }

  .subsection {
    padding: 50px 0 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
  }

  .subsection .grid-x {
    position: relative;
  }

  #introduction {
    padding: 120px 0 0;
  }

  .intro_text_row {
  }

  .intro_text_col {
  }

  .intro_text_col h1 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: 0.04em;
    margin: 0px auto 80px;
    max-width: min(90%, 600px);
    font-size: 2.8em;
  }

  .intro_img_row {
    padding: 100px 0 100px;
  }

  .intro_img_col {
  }

  .life_img_wrap,
  .team_img_wrap,
  .video_row,
  .video_row .poster {
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  .life_img_wrap {
  }

  .life_img_wrap1 {
    margin: 100px auto 0 0;
    max-width: min(50%, 600px);
  }

  .life_img_wrap2 {
    margin: 60px 0 20px;
  }

  .life_img_wrap img {
  }

  .life_img_wrap .img_effect,
  .team_img_wrap img {
    min-width: 100%;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 3s linear;
    transition: 3s linear;
  }

  .life_img_wrap.delighter.started .img_effect,
  .team_img_wrap.delighter.started img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .intro_img_col h2,
  .team_text_row p,
  .new_footer_row1 p {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(100%, 550px);
    font-size: 1.4em;
  }

  .video_row_wrap {
    position: relative;
    padding: 120px 0 80px;
  }

  .video_row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    max-width: 68rem;
  }

  .video_row .cell {
    padding-right: 0;
    padding-left: 0;
    /* overflow: hidden; */
  }

  .responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    overflow: hidden;
  }

  .responsive-video iframe,
  .responsive-video object,
  .responsive-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video_row .poster {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 1;
  }

  .thumb_video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .button-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    width: 150px;
    height: 150px;
  }

  .button-play:hover {
    cursor: pointer;
    opacity: 0.5;
  }

  .video_row .overlay_video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1),
      background-color 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 2;
  }

  #team {
  }

  .divider_row {
  }

  .divider_col {
  }

  .section_title_hr,
  .footer_divider_row hr {
    width: 0%;
    border-bottom: 2px solid #ede2cf;
    margin: 0 auto 15px 0;
  }

  .section_title_hr.started,
  .footer_divider_row hr.started {
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -o-transition: all 1.5s ease-out;
    transition: all 1.5s ease-out;
    width: 100%;
    max-width: 100%;
  }

  .heading_row {
  }

  .heading_text_col {
  }

  .heading_text_col h3,
  .new_footer_row1 h3 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0em;
    margin: 0px auto 0px;
    max-width: min(100%, 3000px);
    font-size: 4.25em;
  }

  .team_text_row {
    padding-bottom: 80px;
  }

  .team_text_row .cell {
  }

  .team_img_wrap {
  }

  .team_img_wrap img {
  }

  .tl {
    height: 50px;
    margin: 30px auto 20px 0;
    display: none;
  }

  .tl1 {
  }

  .tl2 {
  }

  .tl3 {
  }

  .tl4 {
  }

  .tl5 {
  }

  .tl6 {
  }

  .team_text_row h2 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: 0.02em;
    margin: 25px auto 0px;
    max-width: min(100%, 3000px);
    font-size: 2.5em;
  }

  .team_text_row h4 {
    border-bottom: 1px solid #ede2cf;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px 9px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.08em;
    margin: 7px auto 30px 0;
    max-width: 100%;
    font-size: 1.15em;
  }

  .team_text_row p {
    max-width: min(95%, 750px);
    font-size: 1.2em;
    margin: 0 auto 0 0;
  }

  #enquire {
  }

  .enquire_title_hr {
  }

  .contact_row {
    margin: 0px auto 0px;
  }

  .contact_col {
  }

  .enquire_stamp {
    max-width: min(80%, 260px);
  }

  .contact_col {
  }

  .contact_col h4 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.01em;
    margin: 0px auto 0 0;
    max-width: min(95%, 750px);
    font-size: 2.1em;
  }

  .form_wrap {
    margin: 30px auto 0;
    max-width: min(90%, 850px);
  }

  #footer {
    padding: 10px 0 180px;
  }

  .footer_divider_row {
  }

  .footer_divider_row .cell {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer_divider_row hr {
    margin: 30px auto 25px;
  }

  .footer_logo_row {
  }

  .footer_logo_col {
    /* padding-right: 0 !important; */
    /* padding-left: 0 !important; */
  }

  .footer_logo_wrap {
    text-align: center;
  }

  .fl {
    margin: 0 0px 0;
    height: 50px;
  }

  .fl1 {
  }

  .fl2 {
  }

  .fl3 {
  }

  .fl4 {
  }

  .fl5 {
  }

  .fl6 {
  }

  .footer_divider_row2 {
  }

  .footer_divider_row2 hr {
  }

  .disclaimer_row {
    max-width: 100%;
  }

  .earl_logo {
    height: 55px;
    position: absolute;
    right: 0;
    margin: 0 0 0 auto;
    display: block;
    transform: translateY(-100%);
  }

  .aerial_row {
    margin: 0px auto 30px;
  }

  .aerial_col {
  }

  .life_img_wrap3 {
  }

  .life_img_wrap3 img {
    min-width: 100%;
  }

  .disclaimer_col {
  }

  .intro_img_col h3 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: center;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 50px auto 30px;
    max-width: min(95%, 600px);
    font-size: 2em;
  }

  .disclaimer_col h6,
  .footer_logo_col h6 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.02em;
    margin: 0px auto 0px 0;
    max-width: min(95%, 350px);
    font-size: 0.9em;
  }

  .disclaimer_col h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.02em;
    margin: 0px auto 0;
    max-width: min(95%, 650px);
    font-size: 0.8em;
    display: none;
  }

  .option {
  }

  .option #homepage_imgage_holder .vegas-slide,
  .option #homepage_imgage_holder .vegas-slide-inner {
    background-position: center center !important;
  }

  .home {
  }

  .loaded .bottom_row_wrap {
    bottom: 0px;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
  }

  .scrolled .bottom_row_wrap {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding: 10px 15px 19px;
  }

  .middle_row h6 {
    color: #ede2cf;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    text-align: center;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 3.25em;
  }

  .bottom_col3 {
  }

  .bottom_col3 h6 {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .scrolled .bottom_col3 h6 {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .bottom_col1 {
  }

  .fixed_logo {
  }

  .scrolled .fixed_logo {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }

  .home #homepage_imgage_holder .vegas-slide,
  .home #homepage_imgage_holder .vegas-slide-inner {
    background-image: url("../../../../static/inherited/img/hero_render.jpg") !important;
  }

  .new_bottom_row_wrap {
  }

  .new_bottom_row {
  }

  .new_bottom_row .cell {
  }

  .new_bottom_row h1 {
    display: none;
  }

  .new_bottom_row h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.01em;
    margin: 0px auto 0px;
    max-width: min(95%, 700px);
    font-size: 1.4em;
  }

  .circular--portrait {
    position: relative;
    width: 600px;
    height: 600px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }

  .circular--portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .top_reg_btn:hover {
    background-color: #5a372e;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
  }

  .scrolled .top_reg_btn {
  }

  .scrolled .top_reg_btn:hover {
  }

  .fade_gallery {
    line-height: 0;
  }

  .intro_img_row1 {
  }

  .intro_img_row2 {
    padding: 0px 0 100px;
  }

  .intro_img_row2 h3 {
  }

  .intro_img_row2 h2 {
  }

  .fl_wrap {
    display: inline-block;
    margin: 0 20px;
    min-width: 135px;
  }

  .fl_wrap h3 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.07em;
    margin: 0px auto 10px;
    max-width: 100%;
    font-size: 0.8em;
  }

  .contact_row h2,
  .new_footer_row2 h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(95%, 700px);
    font-size: 1.2em;
  }

  .contact_row h2 a {
    text-decoration-line: underline;
    text-decoration-color: #ede2cf;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.1em;
  }

  .contact_row h2 a:hover {
  }

  .contact_row h5,
  .new_footer_row2 h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.01em;
    margin: 20px auto 30px;
    max-width: min(95%, 590px);
    font-size: 0.9em;
  }

  .slick-dots {
    position: absolute;
    bottom: 25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 6px;
    padding: 0;
    cursor: pointer;
  }

  .slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }

  .slick-dots li button:hover,
  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover:before,
  .slick-dots li button:focus:before {
    opacity: 1;
  }

  .slick-dots li button:before {
    font-family: "slick";
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: 0.4;
    color: #dcd8cf;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slick-dots li.slick-active button:before {
    opacity: 0.95;
    color: #dcd8cf;
  }

  #new_footer {
  }

  .new_footer_row {
    max-width: min(2400px, 80%);
  }

  .new_footer_row1 {
    padding: 50px 0 10px;
  }

  .new_footer_row .cell {
    padding-right: 0;
    padding-left: 0;
  }

  .new_footer_row1 h3 {
    margin: 40px auto 0px;
    text-align: left;
    /* font-size: 4.0em; */
  }

  .new_footer_row1 h1 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: left;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 0px auto 0px 0;
    max-width: min(95%, 650px);
    font-size: 1.5em;
  }

  .new_footer_row1 h4 {
  }

  .new_footer_row1 p {
    text-align: left;
    margin: 2px auto 20px 0;
  }

  .map_wrap {
    max-width: min(95%, 400px);
    margin: 35px auto 0 0;
    overflow: hidden;
  }

  .map_wrap img {
  }

  #new_footer .form_wrap {
    margin: 0 auto 0 0;
    max-width: min(100%, 1000px);
  }

  .new_footer_row2 {
    border-top: 1px solid #ede2cf;
    padding: 30px 0 80px;
  }

  .new_footer_row2 h5 {
    text-align: left;
    max-width: min(100%, 530px);
    margin: 0 auto 0 0;
    font-size: 0.75em;
  }

  .new_footer_row2 {
  }

  .new_footer_row2 .footer_logo_wrap {
    text-align: left;
  }

  .new_footer_row2 .fl_wrap {
    margin: 0 40px 0 0;
  }

  .new_footer_row2 .fl_wrap h3 {
    text-align: left;
  }

  .new_footer_row2 .fl {
  }

  .footer_divider_col {
  }

  .footer_divider_col hr {
    max-width: 100%;
    margin: 20px auto 40px;
    border-bottom: 1px solid #ede2cf;
  }

  .new_footer_row2 h2 {
    margin: 0 auto 10px 0;
    text-align: left;
    font-size: 1.1em;
  }
}

@media screen and (min-width: 120em) {
  .container,
  .reveal {
    font-size: 16px;
  }

  body {
    background: #4d2a21;
  }

  .unscrolled {
  }

  .scrolled {
  }

  .mb {
  }

  .mt {
  }

  .pb {
  }

  .pt {
  }

  .grid-x {
    max-width: min(3400px, 92%);
    margin-left: auto;
    margin-right: auto;
  }

  a {
    color: inherit;
    outline: none;
  }

  a:hover,
  a:visited,
  a:focus,
  a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
  }

  #top {
  }

  #homepage {
  }

  .home_wrap {
    min-height: 100vh;
    min-height: 100vh;
    top: 0;
    position: relative;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 50px 40px 90px;
  }

  .scrolled .home_wrap {
    opacity: 0;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
  }

  .top_row_wrap {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    z-index: 99;
  }

  .scrolled .top_row_wrap {
    top: 0px;
    background-color: #050001;
  }

  .top_row {
    opacity: 1;
    max-width: 100%;
    max-width: 100%;
    padding: 40px 40px 20px;
    padding: 40px 20px 40px 20px;
  }

  .scrolled .top_row {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    /* padding: 20px 40px 22px; */
    padding: 40px 40px 20px;
    padding: 40px 20px 40px 20px;
  }

  .top_col {
  }

  .top_col1 {
  }

  .top_col1 h6 {
  }

  .top_col2 {
  }

  .top_col3 {
  }

  .top_col3 h6 {
    text-align: right;
  }

  .fixed_logo {
    margin: 0px auto 0;
    display: block;
    height: 24px;
    opacity: 0;
  }

  .scrolled .fixed_logo {
  }

  .top_col h6 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.3em;
  }

  .top_reg_btn {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #ede2cf;
    padding: 5px 27px 8px;
    display: inline-block;
  }

  .top_reg_btn span {
    position: relative;
  }

  .top_reg_btn span::before {
    content: "";
    position: absolute;
    height: 0px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #ede2cf;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .top_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .middle_row_wrap {
    position: relative;
  }

  .middle_row {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .middle_col {
  }

  .hero_logo {
    max-width: min(800px, 90%);
    margin: 0 auto 50px;
    display: block;
  }

  .bottom_row_wrap {
    background-color: #ede2cf;
    position: fixed;
    width: 100%;
    bottom: -70px;
    z-index: 20;
    padding: 11px 15px 22px;
  }

  .bottom_row_wrap .bottom_reg_btn {
  }

  .bottom_reg_btn {
  }

  .bottom_reg_btn span {
    position: relative;
  }

  .bottom_reg_btn span::before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #4d2a21;
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.9s ease-in-out;
  }

  .bottom_reg_btn span:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .down_link {
  }

  .down_link:hover {
  }

  .bottom_row {
    max-width: 100%;
    max-width: min(3400px, 92%);
  }

  .bottom_col {
  }

  .bottom_col1 {
  }

  .bottom_col2 {
  }

  .bottom_col3 {
  }

  .bottom_row h6 {
    color: #4d2a21;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 1.35em;
  }

  .bottom_col1 h6 {
  }

  .bottom_col2 h6 {
    text-align: center;
  }

  .bottom_col3 h6 {
    text-align: right;
    opacity: 0;
  }

  #homepage_imgage_holder .vegas-slide,
  #homepage_imgage_holder .vegas-slide-inner {
  }

  #homepage_imgage_holder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #4d2a21;
  }

  .image_overlay {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(20, 20, 20, 0);
  }

  .hero_image {
  }

  #hero_image {
    position: absolute;
    width: 100%;
    height: 100% !important;
    top: 0;
    left: 0;
  }

  .subsection_wrap {
    position: relative;
    z-index: 3;
    background-color: #4d2a21;
    background-image: url("../../../../static/inherited/img/bg_repeat.jpg");
    background-position: top center;
    background-repeat: repeat-y;
  }

  .subsection_background_colour {
  }

  .subsection {
    padding: 50px 0 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
  }

  .subsection .grid-x {
    position: relative;
  }

  #introduction {
    padding: 140px 0 0;
  }

  .intro_text_row {
  }

  .intro_text_col {
  }

  .intro_text_col h1 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: 0.04em;
    margin: 0px auto 100px;
    max-width: min(90%, 700px);
    font-size: 2.8em;
  }

  .intro_img_row {
    padding: 100px 0 100px;
  }

  .intro_img_col {
  }

  .life_img_wrap,
  .team_img_wrap,
  .video_row,
  .video_row .poster {
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  .life_img_wrap {
  }

  .life_img_wrap1 {
    margin: 100px auto 0 0;
    max-width: min(50%, 600px);
  }

  .life_img_wrap2 {
    margin: 80px 0 40px;
  }

  .life_img_wrap img {
  }

  .life_img_wrap .img_effect,
  .team_img_wrap img {
    min-width: 100%;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 3s linear;
    transition: 3s linear;
  }

  .life_img_wrap.delighter.started .img_effect,
  .team_img_wrap.delighter.started img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .intro_img_col h2,
  .team_text_row p,
  .new_footer_row1 p {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(95%, 700px);
    font-size: 1.5em;
  }

  .video_row_wrap {
    position: relative;
    padding: 150px 0 100px;
  }

  .video_row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    max-width: 85rem;
  }

  .video_row .cell {
    padding-right: 0;
    padding-left: 0;
    /* overflow: hidden; */
  }

  .responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    overflow: hidden;
  }

  .responsive-video iframe,
  .responsive-video object,
  .responsive-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video_row .poster {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 1;
  }

  .thumb_video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .button-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    width: 170px;
    height: 170px;
  }

  .button-play:hover {
    cursor: pointer;
    opacity: 0.5;
  }

  .video_row .overlay_video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1),
      background-color 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 2;
  }

  #team {
  }

  .divider_row {
  }

  .divider_col {
  }

  .section_title_hr,
  .footer_divider_row hr {
    width: 0%;
    border-bottom: 2px solid #ede2cf;
    margin: 0 auto 15px 0;
  }

  .section_title_hr.started,
  .footer_divider_row hr.started {
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -o-transition: all 1.5s ease-out;
    transition: all 1.5s ease-out;
    width: 100%;
    max-width: 100%;
  }

  .heading_row {
  }

  .heading_text_col {
  }

  .heading_text_col h3,
  .new_footer_row1 h3 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0em;
    margin: 0px auto 0px;
    max-width: min(100%, 3000px);
    font-size: 4.5em;
  }

  .team_text_row {
    padding-bottom: 80px;
  }

  .team_text_row .cell {
  }

  .team_img_wrap {
  }

  .team_img_wrap img {
  }

  .tl {
    height: 50px;
    margin: 30px auto 20px 0;
    display: none;
  }

  .tl1 {
  }

  .tl2 {
  }

  .tl3 {
  }

  .tl4 {
  }

  .tl5 {
  }

  .tl6 {
  }

  .team_text_row h2 {
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: 0.02em;
    margin: 30px auto 0px;
    max-width: min(100%, 3000px);
    font-size: 2.6em;
  }

  .team_text_row h4 {
    border-bottom: 1px solid #ede2cf;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px 7px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.08em;
    margin: 7px auto 40px 0;
    max-width: 100%;
    font-size: 1.2em;
  }

  .team_text_row p {
    max-width: min(95%, 750px);
    font-size: 1.3em;
    margin: 0 auto 0 0;
  }

  #enquire {
  }

  .enquire_title_hr {
  }

  .contact_row {
    margin: 0px auto 0px;
  }

  .contact_col {
  }

  .enquire_stamp {
    max-width: min(80%, 290px);
  }

  .contact_col {
  }

  .contact_col h4 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.02em;
    margin: 0px auto 0 0;
    max-width: min(95%, 750px);
    font-size: 1.95em;
  }

  .form_wrap {
    margin: 40px auto 0;
    max-width: min(90%, 1000px);
  }

  #footer {
    padding: 0px 0 180px;
  }

  .footer_divider_row {
  }

  .footer_divider_row .cell {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer_divider_row hr {
    margin: 30px auto 25px;
  }

  .footer_logo_row {
  }

  .footer_logo_col {
    /* padding-right: 0 !important; */
    /* padding-left: 0 !important; */
  }

  .footer_logo_wrap {
    text-align: center;
  }

  .fl {
    margin: 0 0px 0;
    height: 50px;
  }

  .fl1 {
  }

  .fl2 {
  }

  .fl3 {
  }

  .fl4 {
  }

  .fl5 {
  }

  .fl6 {
  }

  .footer_divider_row2 {
  }

  .footer_divider_row2 hr {
  }

  .disclaimer_row {
    max-width: 100%;
  }

  .earl_logo {
    height: 60px;
    position: absolute;
    right: 0;
    margin: 0 0 0 auto;
    display: block;
    transform: translateY(-100%);
  }

  .aerial_row {
    margin: 0px auto 50px;
  }

  .aerial_col {
  }

  .life_img_wrap3 {
  }

  .life_img_wrap3 img {
    min-width: 100%;
  }

  .disclaimer_col {
  }

  .intro_img_col h3 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: center;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 40px auto 30px;
    max-width: min(95%, 650px);
    font-size: 2em;
  }

  .disclaimer_col h6,
  .footer_logo_col h6 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: left;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.02em;
    margin: 0px auto 0px 0;
    max-width: min(95%, 450px);
    font-size: 0.9em;
  }

  .disclaimer_col h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.02em;
    margin: 0px auto 0;
    max-width: min(95%, 650px);
    font-size: 0.8em;
    display: none;
  }

  .option {
  }

  .option #homepage_imgage_holder .vegas-slide,
  .option #homepage_imgage_holder .vegas-slide-inner {
    background-position: center center !important;
  }

  .home {
  }

  .loaded .bottom_row_wrap {
    bottom: 0px;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
  }

  .scrolled .bottom_row_wrap {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding: 11px 15px 19px;
  }

  .middle_row h6 {
    color: #ede2cf;
    font-family: "Degular Demo Semibold";
    margin: 0 0 0 0;
    text-align: center;
    max-width: inherit;
    padding: 0 0px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.06em;
    font-size: 3.25em;
  }

  .bottom_col3 {
  }

  .bottom_col3 h6 {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .scrolled .bottom_col3 h6 {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }

  .bottom_col1 {
  }

  .fixed_logo {
  }

  .scrolled .fixed_logo {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    margin: 0px auto 0;
  }

  .home #homepage_imgage_holder .vegas-slide,
  .home #homepage_imgage_holder .vegas-slide-inner {
    background-image: url("../../../../static/inherited/img/hero_render.jpg") !important;
  }

  .new_bottom_row_wrap {
  }

  .new_bottom_row {
  }

  .new_bottom_row .cell {
  }

  .new_bottom_row h1 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: center;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 0px auto 0px;
    max-width: min(95%, 650px);
    font-size: 2em;
    display: none;
  }

  .new_bottom_row h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.01em;
    margin: 0px auto 0px;
    max-width: min(95%, 850px);
    font-size: 1.5em;
  }

  .circular--portrait {
    margin: 0 auto;
    position: relative;
    width: 700px;
    height: 700px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }

  .circular--portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .top_reg_btn:hover {
    background-color: #5a372e;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
  }

  .scrolled .top_reg_btn {
  }

  .scrolled .top_reg_btn:hover {
  }

  .fade_gallery {
    line-height: 0;
  }

  .intro_img_row1 {
  }

  .intro_img_row2 {
    padding: 0px 0 100px;
  }

  .intro_img_row2 h3 {
  }

  .intro_img_row2 h2 {
  }

  .fl_wrap {
    display: inline-block;
    margin: 0 20px;
    min-width: 150px;
  }

  .fl_wrap h3 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.07em;
    margin: 0px auto 10px;
    max-width: min(95%, 700px);
    font-size: 0.7em;
  }

  .contact_row h2,
  .new_footer_row2 h2 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.01em;
    margin: 0px auto 0;
    max-width: min(95%, 700px);
    font-size: 1.2em;
  }

  .contact_row h2 a {
    text-decoration-line: underline;
    text-decoration-color: #ede2cf;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.1em;
  }

  .contact_row h2 a:hover {
  }

  .contact_row h5,
  .new_footer_row2 h5 {
    color: #ede2cf;
    font-family: "GT America Regular";
    padding: 0 0px;
    text-transform: none;
    text-align: center;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.01em;
    margin: 20px auto 30px;
    max-width: min(95%, 650px);
    font-size: 0.9em;
  }

  .slick-dots {
    position: absolute;
    bottom: 30px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 7px;
    padding: 0;
    cursor: pointer;
  }

  .slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }

  .slick-dots li button:hover,
  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover:before,
  .slick-dots li button:focus:before {
    opacity: 1;
  }

  .slick-dots li button:before {
    font-family: "slick";
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: 0.4;
    color: #dcd8cf;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slick-dots li.slick-active button:before {
    opacity: 0.95;
    color: #dcd8cf;
  }

  #new_footer {
  }

  .new_footer_row {
    max-width: min(2400px, 80%);
  }

  .new_footer_row1 {
    padding: 50px 0 20px;
  }

  .new_footer_row .cell {
    padding-right: 0;
    padding-left: 0;
  }

  .new_footer_row1 h3 {
    margin: 40px auto 0px;
    text-align: left;
    /* font-size: 4.0em; */
  }

  .new_footer_row1 h1 {
    text-transform: uppercase;
    color: #ede2cf;
    font-family: "Degular Demo Medium";
    padding: 0 0px;
    text-align: left;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: 0.05em;
    margin: 0px auto 0px 0;
    max-width: min(95%, 650px);
    font-size: 1.5em;
  }

  .new_footer_row1 h4 {
  }

  .new_footer_row1 p {
    text-align: left;
    margin: 2px auto 20px 0;
  }

  .map_wrap {
    max-width: min(95%, 400px);
    margin: 55px auto 0 0;
    overflow: hidden;
  }

  .map_wrap img {
  }

  #new_footer .form_wrap {
    margin: 0 auto 0 0;
    max-width: min(100%, 1000px);
  }

  .new_footer_row2 {
    border-top: 1px solid #ede2cf;
    padding: 30px 0 80px;
  }

  .new_footer_row2 h5 {
    text-align: left;
    max-width: min(95%, 600px);
    margin: 0 auto 0 0;
    font-size: 0.75em;
  }

  .new_footer_row2 {
  }

  .new_footer_row2 .footer_logo_wrap {
    text-align: left;
  }

  .new_footer_row2 .fl_wrap {
    margin: 0 40px 0 0;
  }

  .new_footer_row2 .fl_wrap h3 {
    text-align: left;
  }

  .new_footer_row2 .fl {
  }

  .footer_divider_col {
  }

  .footer_divider_col hr {
    max-width: 100%;
    margin: 20px auto 40px;
    border-bottom: 1px solid #ede2cf;
  }

  .new_footer_row2 h2 {
    margin: 0 auto 10px 0;
    text-align: left;
    font-size: 1em;
  }
}
