/* stylelint-disable */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

p {
  margin: 0px 0px 20px 0px;
}
p:last-of-type {
  margin-bottom: 0px;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.row {
  display: flex;
  margin: 0px 0px;
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1470px;
  }
}

.bg-green {
  background-color: #335247;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  font-family: sans-serif;
  background-color: #E44E24;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}

#wrap {
  position: relative;
  right: 0;
  flex: 1 0 0;
  transition: right 0.5s;
  background-color: #FFFFFF;
  overflow: clip !important;
  -ms-flex: 1 0 0;
  -webkit-transition: right 0.5s;
  -moz-transition: right 0.5s;
  -o-transition: right 0.5s;
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  line-height: 1;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}

h1, .h1 {
  font-size: 100px;
  letter-spacing: -5px;
}

h2, .h2 {
  font-size: 50px;
  letter-spacing: -2px;
}

a {
  text-decoration: none;
}
a.btn-default {
  gap: 5px;
  color: #FFFFFF;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 5px;
  align-items: center;
  display: inline-flex;
  border: 1px solid #000000;
  background-color: #000000;
  text-transform: uppercase;
}
a.btn-default.btn-default-invert {
  color: #000000;
  background-color: transparent;
}
a.btn-default.btn-default-orange {
  background-color: #E44E24;
  border-color: #E44E24;
}
a.btn-default:hover {
  animation: horizontalBounce 0.6s ease forwards;
}
a.btn-default:not(:hover) {
  animation: horizontalBounceOut 0.6s ease forwards;
}

b,
strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.contain {
  width: 1140px;
  margin: 0 auto;
}

#sticky-logo .sticky-logo-inner {
  position: relative;
}
#sticky-logo .sticky-logo-inner svg {
  bottom: 30px;
  z-index: 999;
  position: fixed;
}
#sticky-logo .sticky-logo-inner svg path {
  fill: #000000;
}

@keyframes horizontalBounce {
  0% {
    transform: scaleX(1);
  }
  40% {
    transform: scaleX(1.06);
  }
  70% {
    transform: scaleX(1.03);
  }
  100% {
    transform: scaleX(1.05);
  }
}
@keyframes horizontalBounceOut {
  0% {
    transform: scaleX(1.05);
  }
  40% {
    transform: scaleX(0.97);
  }
  100% {
    transform: scaleX(1);
  }
}
header {
  top: 0;
  width: 100%;
  z-index: 9999;
  position: fixed;
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
header .header-inner {
  padding: 50px 0px 0px 0px;
}
header .header-inner .row {
  justify-content: flex-end;
}
header .header-inner .row .btns-wrap {
  gap: 10px;
  display: flex;
}
header .header-inner .row .nav-toggle svg path {
  stroke: #000000;
}
header.hide {
  margin-top: -95px;
}

footer {
  background-color: #EBEAE5;
}
footer .footer-inner {
  padding: 50px 0px;
}
footer .footer-inner #footer-top {
  margin-bottom: 245px;
}
footer .footer-inner #footer-top .footer-top-inner .row {
  justify-content: flex-end;
}
footer .footer-inner #footer-top .btns-wrap {
  gap: 10px;
  display: flex;
}
footer .footer-inner #footer-logo {
  margin-bottom: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid #000000;
}
footer .footer-inner #footer-logo .logo-wrap svg,
footer .footer-inner #footer-logo .logo-wrap img {
  width: 100%;
  height: auto;
}
footer .footer-inner #footer-main {
  margin-bottom: 30px;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col.footer-main-col-agents {
  width: 85%;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col.footer-main-col-developer {
  width: 15%;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .preheading {
  margin: 0px 0px 30px 0px;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .agents .row .agents-col {
  width: 50%;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .agents .row .agents-col .agents-col-inner .logo-wrap {
  height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px 0px 35px 0px;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .agents .row .agents-col .agents-col-inner .logo-wrap img,
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .agents .row .agents-col .agents-col-inner .logo-wrap svg {
  height: auto;
  width: 105px;
  max-width: 100%;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .agents .row .agents-col .agents-col-inner .details .row .agent {
  flex: 1;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .agents .row .agents-col .agents-col-inner .details .row .agent .agent-inner {
  display: flex;
  flex-direction: column;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .agents .row .agents-col .agents-col-inner .details .row .agent .agent-inner .name {
  font-weight: 600;
  margin-bottom: 2px;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .agents .row .agents-col .agents-col-inner .details .row .agent .agent-inner a {
  color: #000000;
  text-decoration: none;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .agents .row .agents-col .agents-col-inner .details .row .agent .agent-inner a:hover {
  text-decoration: underline;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .developer {
  display: flex;
  margin: 0px 0px;
  justify-content: flex-end;
}
footer .footer-inner #footer-main .footer-main-inner .row .footer-main-col .developer .developer-inner {
  width: 145px;
  max-width: 100%;
  text-align: center;
}
footer .footer-inner #footer-bottom .footer-bottom-inner .copyright {
  color: #666;
  letter-spacing: -0.32px;
}
footer .footer-inner #footer-bottom .footer-bottom-inner .copyright a {
  color: #666;
  text-decoration: none;
}

#cta {
  background-color: #E44E24;
}
#cta .cta-inner {
  padding: 100px 0px;
}
#cta .cta-inner .cta-box {
  color: #FFFFFF;
  max-width: 100%;
  border-radius: 10px;
  background-color: orange;
  background-blend-mode: color-dodge, normal;
}
#cta .cta-inner .cta-box .cta-box-inner {
  padding: 50px 50px;
}
#cta .cta-inner .cta-box .cta-box-inner .row .cta-box-col {
  width: 50%;
}
#cta .cta-inner .cta-box .cta-box-inner .row .cta-box-col .about a.btn-default.btn-default-invert {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
#cta .cta-inner .cta-box .cta-box-inner .row .cta-box-col .about .about-inner {
  gap: 20px;
  display: flex;
  margin: 0px 0px;
  flex-direction: column;
}

#quote .quote-inner {
  padding: 100px 0px;
}
#quote .quote-inner .quote-box .quote-box-inner {
  gap: 10px;
  max-width: 100%;
  display: flex;
  align-self: end;
  grid-row: 9/span 1;
  grid-column: 1/span 2;
  justify-self: stretch;
  padding: 50px 30px;
  border-radius: 10px;
  background-color: orange;
  background-blend-mode: soft-light, normal, normal;
}
#quote .quote-inner .quote-box .quote-box-inner .body {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
}

.banner-wrap {
  padding: 20px 0px 0px 0px;
}
.banner-wrap #banner {
  height: calc(100vh - 20px);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #E44E24;
  background-size: cover;
  margin-bottom: 85px;
  border-radius: 10px;
  position: relative;
  display: flex;
  margin: 0px 0px;
  flex-direction: column;
  justify-content: flex-end;
}
.banner-wrap #banner .banner-inner {
  padding: 340px 50px 125px 50px;
}
.banner-wrap #banner .banner-inner .banner-about .banner-about-inner {
  gap: 15px;
  display: flex;
  margin: 0px 0px;
  flex-direction: column;
}
.banner-wrap #banner .banner-inner .banner-about .banner-about-inner .heading .h1 {
  color: #FFFFFF;
}
.banner-wrap #banner:before {
  left: 0px;
  width: 100%;
  content: "";
  bottom: 0px;
  height: 85px;
  position: absolute;
  border-radius: 0px 0px;
  background-color: #FFFFFF;
  background-blend-mode: color-dodge, normal;
}
.banner-wrap #banner:after {
  right: 0px;
  width: 50%;
  content: "";
  bottom: 0px;
  height: 85px;
  position: absolute;
  background-color: #E44E24;
  border-radius: 0px 0px 10px 10px;
  background-blend-mode: color-dodge, normal;
}
.banner-wrap .container {
  position: relative;
  background-color: #E44E24;
}

#slider-one .slider-inner .slider-wrap {
  position: relative;
}
#slider-one .slider-inner .slider-wrap #carousel-one {
  width: 60%;
  max-width: 100%;
}
#slider-one .slider-inner .slider-wrap #carousel-one .slide .slide-inner .slide-background {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 10px;
  background-size: cover;
  aspect-ratio: 226/127;
  background-repeat: no-repeat;
  background-position: center center;
}
#slider-one .slider-inner .slider-wrap .slider-controls {
  right: 0px;
  bottom: 0px;
  position: absolute;
}
#slider-one .slider-inner .slider-wrap .owl-dots {
  gap: 5px;
  width: 100%;
  bottom: 20px;
  display: flex;
  padding: 0px 30px;
  position: absolute;
}
#slider-one .slider-inner .slider-wrap .owl-dots button {
  flex: 1;
  height: 2px;
  opacity: 0.5;
  background-color: #FFFFFF;
}
#slider-one .slider-inner .slider-wrap .owl-dots button.active {
  opacity: 1;
}
#slider-one .slider-inner .slide-number {
  top: 0px;
  right: 0px;
  color: #EBEAE5;
  line-height: 1;
  font-size: 200px;
  font-weight: 400;
  text-align: right;
  font-style: normal;
  letter-spacing: -4px;
  position: absolute;
}

#slider-two .slider-inner {
  padding: 100px 0px;
}
#slider-two .slider-inner .slider-wrap {
  position: relative;
  background-color: #E44E24;
}
#slider-two .slider-inner .slider-wrap #carousel-two .slide .slide-inner .slide-background {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 10px;
  background-size: cover;
  aspect-ratio: 226/127;
  background-repeat: no-repeat;
  background-position: center center;
}
#slider-two .slider-inner .slider-wrap .owl-dots {
  gap: 5px;
  width: 100%;
  bottom: 20px;
  display: flex;
  padding: 0px 30px;
  position: absolute;
}
#slider-two .slider-inner .slider-wrap .owl-dots button {
  flex: 1;
  height: 2px;
  opacity: 0.5;
  background-color: #FFFFFF;
}
#slider-two .slider-inner .slider-wrap .owl-dots button.active {
  opacity: 1;
}
#slider-two .slider-inner .slider-wrap .slider-controls {
  right: 0px;
  height: 36px;
  position: absolute;
  bottom: calc(100% + 20px);
}
#slider-two .slider-inner .slider-wrap:before {
  left: 0px;
  width: 50%;
  content: "";
  bottom: 100%;
  height: 85px;
  position: absolute;
  background-color: #E44E24;
  border-radius: 10px 10px 0px 0px;
  background-blend-mode: color-dodge, normal;
}

#slider-three {
  padding: 100px 0px;
}
#slider-three .slider-inner {
  position: relative;
}
#slider-three .slider-inner .slider-introduction {
  display: flex;
  margin-bottom: 50px;
  justify-content: flex-end;
}
#slider-three .slider-inner .slider-introduction .slider-introduction-inner {
  width: calc(60% + 40px);
}
#slider-three .slider-inner .slider-introduction .slider-introduction-inner .body {
  width: 700px;
  color: #E6E6E6;
  line-height: 1;
  max-width: 100%;
  font-size: 40px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.8px;
}
#slider-three .slider-inner .slider-wrap {
  display: flex;
  position: relative;
  margin-right: 105px;
  justify-content: flex-end;
}
#slider-three .slider-inner .slider-wrap #carousel-three {
  width: 60%;
  max-width: 100%;
}
#slider-three .slider-inner .slider-wrap #carousel-three .slide .slide-inner .slide-background {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 10px;
  background-size: cover;
  aspect-ratio: 226/127;
  background-repeat: no-repeat;
  background-position: center center;
}
#slider-three .slider-inner .slider-wrap #carousel-three:after {
  top: 0px;
  left: 100%;
  width: 105px;
  content: "";
  height: 100%;
  position: absolute;
  background-color: #687972;
  border-radius: 0px 10px 10px 0px;
  background-blend-mode: color-dodge, normal;
}
#slider-three .slider-inner .slider-wrap .slider-controls {
  left: 0px;
  bottom: 0px;
  position: absolute;
}
#slider-three .slider-inner .slider-wrap .slider-controls svg path {
  stroke: #FFFFFF;
}
#slider-three .slider-inner .slider-wrap .owl-dots {
  gap: 5px;
  width: 100%;
  bottom: 20px;
  display: flex;
  padding: 0px 30px;
  position: absolute;
}
#slider-three .slider-inner .slider-wrap .owl-dots button {
  flex: 1;
  height: 2px;
  opacity: 0.5;
  background-color: #FFFFFF;
}
#slider-three .slider-inner .slider-wrap .owl-dots button.active {
  opacity: 1;
}
#slider-three .slider-inner .slide-number {
  top: 0px;
  left: 0px;
  opacity: 0.2;
  color: #EBEAE5;
  line-height: 1;
  font-size: 200px;
  font-weight: 400;
  text-align: right;
  font-style: normal;
  letter-spacing: -4px;
  position: absolute;
}

#introduction .introduction-inner {
  padding: 100px 0px;
}
#introduction .introduction-inner .headline .h1 {
  display: flex;
  text-transform: none;
  flex-direction: column;
}
#introduction .introduction-inner .headline .h1 span {
  display: flex;
}
#introduction .introduction-inner .headline .h1 span:first-of-type {
  justify-content: flex-end;
}
#introduction .introduction-inner .headline .h1 span:last-of-type {
  justify-content: flex-start;
}
#introduction .introduction-inner .about {
  width: 100%;
  display: flex;
  max-width: 100%;
  justify-content: flex-end;
}
#introduction .introduction-inner .about .about-inner {
  gap: 30px;
  width: 450px;
  display: flex;
  margin: 0px 0px;
  flex-direction: column;
}

#sustainability .sustainability-inner {
  padding: 100px 0px;
}
#sustainability .sustainability-inner .heading {
  padding-top: 50px;
  margin-bottom: 50px;
  border-top: 1px solid #000000;
}
#sustainability .sustainability-inner .credentials .row {
  flex-wrap: wrap;
}
#sustainability .sustainability-inner .credentials .row .credential {
  width: 20%;
}
#sustainability .sustainability-inner .credentials .row .credential .credential-inner {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
#sustainability .sustainability-inner .credentials .row .credential .credential-inner .icon-wrap img,
#sustainability .sustainability-inner .credentials .row .credential .credential-inner .icon-wrap svg {
  display: block;
}
#sustainability .sustainability-inner .credentials .row .credential .credential-inner .description {
  width: 180px;
  max-width: 100%;
}
