#home .s1 {
  height: 100vh;
  min-height: 800px;
  background: url(/i/home-hero.png) center/cover no-repeat;
}

#home .s1 .text-wrapper {
  height: 100%;
  width: calc(100% - 2rem);
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem 0;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
}

#home .s1 .hero-text {
  max-width: 750px;
  flex-shrink: 0;
  padding: 0 1rem 0 3.5rem;
  position: relative;
}

@media all and (max-width: 1024px) {
  #home .s1 .hero-text {
    padding-left: 2.5rem;
  }
}

@media all and (max-width: 767px) {
  #home .s1 .hero-text {
    padding-left: 1.5rem;
  }
}

#home .s1 .hero-text::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  height: 100%;
  width: 6px;
  top: 0;
  background-color: #107B9C;
  transform: scaleY(0);
  transform-origin: top;
}

#home .s1 .empty-top, #home .s1 .empty-bot {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#home .s1 .empty-bot {
  margin-left: .15rem;
  position: relative;
  border: 1px solid #425577;
  border-width: 0 0 1px 1px;
  width: calc(100% - 9rem);
  opacity: 0;
}

#home .s1 .empty-bot a {
  position: absolute;
  left: calc(100% + 2rem);
  top: calc(100% - .3rem);
  min-width: 7.6rem;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .5rem;
}

#home .s1 .empty-bot a p {
  font-size: .7rem;
  letter-spacing: 0.16em;
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
  transition: color .3s ease;
}

#home .s1 .empty-bot a p:hover {
  color: #107B9C;
}

#home .s1 .empty-bot a img {
  width: .4rem;
  height: .4rem;
}

#home .s1 h1 {
  font-family: "Newsreader", serif;
  font-style: normal;
  font-weight: 200;
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 1em;
  color: #fff;
  opacity: 0;
  transform: translateY(100px);
}

#home .s1.--active .hero-text::before {
  transition: transform .75s ease;
  transform: scaleY(1);
}

#home .s1.--active h1 {
  transition: all 1s ease .7s;
  opacity: 1;
  transform: translateY(0);
}

#home .s1.--active .empty-bot {
  opacity: 1;
  transition: opacity 1s ease .7s;
}

#home .s2 .contain {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
}

#home .s2 .contain > div {
  width: 50%;
}

#home .s2 .left {
  max-width: 580px;
}

#home .s2 .right {
  max-width: 650px;
}

#home .s2 h3 {
  font-family: "Newsreader", serif;
  font-style: normal;
  font-weight: 200;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1em;
  color: #243553;
  margin-bottom: 1.5rem;
}

#home .s2 .link-off-btn {
  margin-top: 2rem;
}

#home .s2 .rows-container {
  width: 100%;
}

#home .s2 .rows-container .rows {
  width: 100%;
  padding: 6px 0;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10%;
  border-top: 1px solid rgba(161, 161, 161, 0.4);
}

#home .s2 .rows-container .rows:last-child {
  border-bottom: 1px solid rgba(161, 161, 161, 0.4);
}

#home .s2 .rows-container .img-wrap {
  width: 30%;
  max-width: 160px;
  min-width: 100px;
  padding: 1rem;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

#home .s2 .rows-container .img-wrap::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: #425577;
  z-index: 1;
}

#home .s2 .rows-container .img-wrap .img {
  position: relative;
  z-index: 2;
}

#home .s2 .rows-container .img-wrap .img.--fin {
  width: 3rem;
  height: 3rem;
  background: url(/i/fin-icon-default.svg) center/contain no-repeat;
}

#home .s2 .rows-container .img-wrap .img.--tec {
  width: 3.25rem;
  height: 3.25rem;
  background: url(/i/tech-icon-default.svg) center/contain no-repeat;
}

#home .s2 .rows-container .img-wrap .img.--health {
  width: 3.25rem;
  height: 3.25rem;
  background: url(/i/health-icon-default.svg) center/contain no-repeat;
}

#home .s2 .rows-container .text-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 320px;
}

#home .s2 .rows-container .text-wrap p {
  font-family: "Newsreader", serif;
  font-style: normal;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.2em;
}

#home .s2.--in-view .rows-container .rows .img-wrap::before {
  width: 100%;
  transition: all .65s ease-in-out;
}

#home .s2.--in-view .rows-container .rows:nth-child(2) .img-wrap::before {
  transition-delay: .15s;
}

#home .s2.--in-view .rows-container .rows:nth-child(3) .img-wrap::before {
  transition-delay: .3s;
}

#home .s2.--in-view .rows-container .rows .img.--fin {
  background-image: url(/i/fin-icon-active.svg);
}

#home .s2.--in-view .rows-container .rows .img.--tec {
  background-image: url(/i/tech-icon-active.svg);
}

#home .s2.--in-view .rows-container .rows .img.--health {
  background-image: url(/i/health-icon-active.svg);
}

@media all and (max-width: 767px) {
  #home .s2 .contain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
  #home .s2 .contain > div {
    width: 100% !important;
    max-width: 100% !important;
  }
}

#home .s3 {
  position: relative;
  overflow: hidden;
}

#home .s3.--in-view .contain .header-container::before {
  transition: transform .75s ease;
  transform: scaleY(1);
}

#home .s3.--in-view .contain .header-container h4 {
  transition: all 1s ease .7s;
  opacity: 1;
  transform: translateY(0);
}

#home .s3 .contain {
  padding: 7.5rem 0;
}

#home .s3 .contain .header-container {
  position: relative;
}

#home .s3 .contain .header-container::before {
  content: '';
  position: absolute;
  display: block;
  width: .3rem;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #107B9C;
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

#home .s3 .contain h4 {
  font-family: "Newsreader", serif;
  font-style: normal;
  font-weight: 200;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2em;
  color: #fff;
  padding: 1rem 0 1rem calc(2% + 1rem);
  opacity: 0;
  transform: translateY(100px);
  will-change: transform;
}

#home .s3 .plx-bg {
  background: url(/i/home-philosophy-bg.jpeg) center/cover no-repeat;
}

#home .s3 .plx-bg-overlay {
  background: url(/i/gradient-1.svg) center/cover no-repeat;
  transition: all .45s ease;
}

#home .s3.--row-2 .plx-bg-overlay {
  background-image: url(/i/gradient-2.svg);
  background-blend-mode: normal, overlay, normal;
  opacity: .65;
}

#home .s3.--row-3 .plx-bg-overlay {
  background-image: url(/i/gradient-3.svg);
  background-blend-mode: normal, normal, overlay, normal, normal, normal;
  opacity: .75;
}

#home .s3 .header-container {
  position: relative;
  z-index: 1;
}

#home .s3 .sticky-section {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#home .s3 .sticky-section .left {
  width: 40%;
  height: 400px !important;
  padding: 7.5rem 1rem;
}

#home .s3 .sticky-section .right {
  width: 60%;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

#home .s3 .sticky-section .row {
  min-height: 750px;
  padding: 7.5rem 1rem;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#home .s3 .sticky-section .row:last-child {
  border-bottom: 0;
}

#home .s3 .sticky-section .row-wrapper {
  width: 100%;
  max-width: 800px;
}

#home .s3 .sticky-section .row-wrapper .text-wrapper {
  max-width: 685px;
  margin: 0 0 0 auto;
}

#home .s3 .sticky-section .row-wrapper .text-wrapper * {
  color: #fff;
}

#home .s3 .sticky-section .row-wrapper .text-wrapper h3 {
  font-family: "Newsreader", serif;
  font-style: normal;
  font-weight: 200;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2em;
  margin-bottom: 2.5rem;
}

#home .s3 .sticky-section .header-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 0 0 auto;
  overflow: hidden;
  padding: 1.25rem 0 0;
  position: relative;
}

#home .s3 .sticky-section .header-wrapper::before {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 4px;
  background-color: #107B9C;
  left: 0;
  top: 0;
}

#home .s3 .sticky-section .header-wrapper .header-container {
  height: 2.7rem;
  overflow: hidden;
}

#home .s3 .sticky-section .header-wrapper .text-wrapper {
  margin: 0 auto 0 0;
  position: relative;
  transform: translateY(0);
  will-change: transform;
  transform-origin: top;
  transition: transform .5s ease-in-out;
}

#home .s3 .sticky-section h5 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 2.7rem;
  color: #fff;
}

#home .s3.--row-1 .left .text-wrapper {
  transform: translateY(0);
}

#home .s3.--row-2 .left .text-wrapper {
  transform: translateY(-2.7rem);
}

#home .s3.--row-3 .left .text-wrapper {
  transform: translateY(-5.4rem);
}

#home .s3 .header-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  #home .s3 .contain {
    padding: 5rem 0;
  }
  #home .s3 .sticky-section .left {
    display: none;
  }
  #home .s3 .sticky-section .right {
    width: 100%;
    border-left: 0;
  }
  #home .s3 .sticky-section .right .row {
    min-height: 0;
    padding: 6rem 1rem;
  }
  #home .s3 .sticky-section .right .row .text-wrapper {
    margin: 0 auto;
  }
  #home .s3 .header-mobile {
    display: block;
    margin-bottom: 2.5rem;
    position: relative;
  }
  #home .s3 .header-mobile::before {
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 4px;
    background-color: #107B9C;
    left: 0;
    top: -1.25rem;
  }
}
