@font-face {
  font-family: 'The Bold Font';
  src: url('../fonts/the-bold-font/the-bold-font.woff') format('woff'),
       url('../fonts/the-bold-font/the-bold-font.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cb-bg: #fffaf1;
  --cb-primary: #299c83;
  --cb-primary-light: #67e2c8;
  --cb-primary-faint: rgba(41, 156, 131, .20);
  --cb-accent: #e96ed8;
  --cb-dark: #07261f;
  --cb-light: #fffaf1;
  --cb-panel-green: #299c83;
  --cb-panel-mint: #67e2c8;
  --cb-panel-pink: #e96ed8;
  --cb-font-heading: 'The Bold Font', Impact, 'Arial Black', sans-serif;
  --cb-font-body: 'Ubuntu', sans-serif;
  --cb-size-hero: clamp(3rem, 13vw, 13rem);
  --cb-size-section: clamp(2rem, 5vw, 5rem);
  --cb-radius: 10px;
  --cb-section-py: clamp(4rem, 8vw, 8rem);
  --cb-panel-gap: 1.25rem;
  --cb-nav-width: 380px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cb-primary);
  color: var(--cb-light);
  padding: .75rem 1.5rem;
  font-family: var(--cb-font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 9999;
  transition: left .2s;
}

.skip-link:focus {
  left: 0;
}

body {
  background-color: var(--cb-bg);
  color: var(--cb-dark);
  font-family: var(--cb-font-body);
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.cb-heading {
  font-family: var(--cb-font-heading);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5;
  font-style: normal;
}

.cb-section-title {
  font-size: var(--cb-size-section);
}

.social-icons-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter .2s;
}

.social-icons-row a:hover .social-icon img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(17%) saturate(793%) hue-rotate(113deg) brightness(101%) contrast(91%);
}

.btn-nav-toggle {
  background: none;
  border: none;
  color: var(--cb-light);
  font-family: var(--cb-font-heading);
  font-size: 1.625rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 0;
  cursor: pointer;
}

ul.menu {
  list-style-type: none;
}

.nav-offcanvas {
  width: 100vw;
  max-width: 100%;
  background-color: #fefaf2;
  border: none;
}

.nav-offcanvas .offcanvas-header {
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.nav-offcanvas-logo {
  width: 56px;
  height: auto;
}

.nav-offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2.5rem 2.5rem;
}

.nav-link-cb {
  font-family: var(--cb-font-heading);
  font-size: clamp(2rem, 8vw, 3rem);
  color: #10251f;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.2;
  padding: .35rem 0;
  display: block;
  transition: color .2s;
}

.nav-link-cb:hover {
  color: var(--cb-primary);
}

.nav-offcanvas-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-offcanvas-social a {
  transition: opacity .2s;
}

.nav-offcanvas-social a:hover {
  opacity: .6;
}

.nav-offcanvas-social .social-icon img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(60%) saturate(400%) hue-rotate(120deg) brightness(90%);
}

@media (min-width:768px) {
  .nav-offcanvas {
    width: var(--cb-nav-width);
    max-width: none;
  }

  .nav-link-cb {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  background-color: var(--cb-primary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@keyframes hero-flash {
  0% {
    opacity: 0;
    filter: brightness(3);
  }

  15% {
    opacity: 1;
    filter: brightness(2);
  }

  35% {
    opacity: .7;
    filter: brightness(.9);
  }

  55% {
    opacity: 1;
    filter: brightness(1.5);
  }

  100% {
    opacity: 1;
    filter: brightness(1);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 177%;
  object-fit: cover;
  object-position: center bottom;
  animation: hero-flash 1.6s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .20) 0%, rgba(102, 102, 102, 0) 14%), linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, .15) 100%);
}

.hero-artist {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  z-index: 1;
  pointer-events: none;
  will-change: opacity;
}

@media (min-width:768px) {
  .hero-artist {
    position: fixed;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: min(674px, 100vw);
    height: auto;
    object-position: initial;
    border-radius: var(--cb-radius);
  }
}

@media (min-width:1440px),
(min-height:700px) {
  .hero-artist {
    width: min(800px, 100vw);
  }
}

@media (max-height:699px) {
  .hero-artist {
    top: 0;
    bottom: auto;
  }
}

.bio,
.about,
.gallery,
.awards,
.discography,
.press,
footer {
  position: relative;
  z-index: 2;
  background-color: var(--cb-bg);
}

footer {
  background-color: var(--cb-primary);
}

.hero-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background-color: transparent;
  transition: background-color .3s ease;
}

.hero-navbar--scrolled {
  background-color: var(--cb-primary);
}

.hero-logo {
  width: 99px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(4.5rem, 22vw, 7rem);
  color: var(--cb-light);
  white-space: normal;
  transform: none;
  text-align: center;
  line-height: 1.2;
  padding: 0 .25rem;
}

.hero-title-word {
  display: inline-block;
}

.lang-btn {
  background: var(--cb-light);
  color: var(--cb-dark);
  border: none;
  border-radius: 4px;
  font-family: var(--cb-font-body);
  font-size: 1rem;
  padding: .375rem .5rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  cursor: pointer;
  margin-left: 30px;
}

@media (min-width:768px) {
  .hero-navbar {
    padding: 1.875rem 3.125rem;
  }

  .hero-bottom {
    padding: 0 3.125rem 0;
  }

  .hero-title {
    font-size: var(--cb-size-hero);
    white-space: nowrap;
    transform: scale(1.2);
    padding: 0;
  }
}

.bio {
  padding: var(--cb-section-py) 0;
}

.bio-text {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 696px;
  margin: 0 auto;
}

.about {
  padding: var(--cb-section-py) 0;
}

.about-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--cb-panel-gap);
  align-items: stretch;
  min-height: auto;
}

.acp {
  border-radius: var(--cb-radius);
  overflow: hidden;
  cursor: pointer;
  transition: flex .45s cubic-bezier(.4, 0, .2, 1);
  flex: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.acp.is-open {
  flex: 1 1 auto;
  cursor: default;
}

.acp-strip {
  flex: none;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 1.25rem 1.5rem;
}

.acp-strip-label {
  writing-mode: horizontal-tb;
  transform: none;
  font-family: var(--cb-font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--cb-dark);
  white-space: nowrap;
  line-height: 1;
}

.acp-body {
  display: none;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  gap: 2rem;
  overflow: hidden;
  min-width: 0;
}

.acp.is-open .acp-body {
  display: flex;
}

.acp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.acp-title {
  font-family: var(--cb-font-body);
  font-weight: lighter;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  text-transform: uppercase;
  color: var(--cb-dark);
  line-height: 1;
  flex: 1;
  min-width: 0;
}

.acp-photo {
  width: 110px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--cb-radius);
  flex-shrink: 0;
  display: block;
}

.acp-scroll-area {
  flex: 1;
  display: flex;
  gap: .75rem;
  max-height: 220px;
  min-height: 0;
}

.acp-text {
  flex: 1;
  font-family: var(--cb-font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--cb-dark);
  overflow-y: auto;
  padding-right: .5rem;
}

.acp-panel-green {
  background-color: var(--cb-panel-green);
}

.acp-panel-green .acp-body {
  background-color: #e4feef;
}

.acp-panel-mint {
  background-color: var(--cb-panel-mint);
}

.acp-panel-mint .acp-body {
  background-color: #e2fef7;
}

.acp-panel-pink {
  background-color: var(--cb-accent);
}

.acp-panel-pink .acp-body {
  background-color: #fcf0fc;
}

.acp-text::-webkit-scrollbar {
  width: 6px;
}

.acp-text::-webkit-scrollbar-track {
  background: var(--cb-primary-faint);
  border-radius: 100px;
}

.acp-text::-webkit-scrollbar-thumb {
  background: var(--cb-primary);
  border-radius: 100px;
}

@media (min-width:992px) {
  .about-accordion {
    flex-direction: row;
    min-height: 732px;
  }

  .acp {
    flex: 0 0 99px;
    width: auto;
    flex-direction: row;
  }

  .acp-strip {
    flex: 0 0 99px;
    width: 99px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem 1.875rem;
  }

  .acp-strip-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 2.25rem;
  }

  .acp-body {
    padding: 2rem 2rem 2rem 1.5rem;
  }

  .acp-title {
    font-size: clamp(2rem, 4vw, 5rem);
  }

  .acp-photo {
    width: 187px;
    height: 210px;
  }

  .acp-scroll-area {
    max-height: 210px;
  }
}

.gallery {
  padding: var(--cb-section-py) 0;
  overflow: hidden;
}

.gallery-stage {
  position: relative;
  height: 340px;
  width: 100%;
  overflow: hidden;
}

.g-card {
  position: absolute;
  left: 50%;
  border: 5px solid var(--cb-light);
  border-radius: var(--cb-radius);
  overflow: hidden;
  transition: left .4s ease, top .4s ease, width .4s ease, height .4s ease;
}

.g-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g-center {
  width: 210px;
  height: 295px;
  transform: translateX(-50%);
  top: 0;
  z-index: 5;
}

.g-r1 {
  width: 185px;
  height: 234px;
  transform: translateX(-50%) rotate(15.28deg) skewX(.2deg);
  left: calc(50% + 168px);
  top: 25px;
  z-index: 4;
}

.g-r2 {
  width: 360px;
  height: 452px;
  transform: translateX(-50%) rotate(30.10deg);
  left: calc(50% + 752px);
  top: 211px;
  z-index: 3;
}

.g-r3 {
  width: 298px;
  height: 374px;
  transform: translateX(-50%) rotate(45.19deg);
  left: calc(50% + 1003px);
  top: 437px;
  z-index: 2;
}

.g-l1 {
  width: 185px;
  height: 234px;
  transform: translateX(-50%) rotate(-15.28deg) skewX(-.2deg);
  left: calc(50% - 168px);
  top: 25px;
  z-index: 4;
}

.g-l2 {
  width: 360px;
  height: 452px;
  transform: translateX(-50%) rotate(-30.10deg);
  left: calc(50% - 752px);
  top: 211px;
  z-index: 3;
  display: none;
}

.g-l3 {
  width: 298px;
  height: 374px;
  transform: translateX(-50%) rotate(-45.19deg);
  left: calc(50% - 1003px);
  top: 437px;
  z-index: 2;
}

.gallery-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

.gallery-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: .75rem;
  color: var(--cb-dark);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--cb-font-body);
  transition: opacity .2s;
}

.gallery-nav-btn:hover {
  opacity: .6;
}

.gallery-nav-btn:focus-visible {
  outline: 2px solid var(--cb-dark);
  outline-offset: 2px;
  box-shadow: none;
}

.gallery-nav-arrow {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--cb-dark);
  position: relative;
}

.gallery-nav-btn--prev .gallery-nav-arrow::before,
.gallery-nav-btn--next .gallery-nav-arrow::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--cb-dark);
  border-right: 2px solid var(--cb-dark);
  top: 50%;
}

.gallery-nav-btn--prev .gallery-nav-arrow::before {
  left: 2px;
  transform: translateY(-50%) rotate(-135deg);
}

.gallery-nav-btn--next .gallery-nav-arrow::after {
  right: 2px;
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width:992px) {
  .gallery-stage {
    height: 649px;
  }

  .g-card {
    border-width: 8px;
  }

  .g-center {
    width: 458px;
    height: 641px;
  }

  .g-r1 {
    width: 432px;
    height: 545px;
    left: calc(50% + 424px);
    top: 37px;
  }

  .g-l1 {
    width: 432px;
    height: 545px;
    left: calc(50% - 424px);
    top: 37px;
  }

  .g-r2,
  .g-r3,
  .g-l2 {
    display: block;
  }
}

.awards {
  padding: var(--cb-section-py) 0;
}

.award-card {
  border-radius: var(--cb-radius);
  padding: 3.875rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-end;
  height: 100%;
  min-height: 468px;
}

.award-card--green {
  background-color: var(--cb-panel-green);
}

.award-card--mint {
  background-color: var(--cb-panel-mint);
}

.award-card--pink {
  background-color: var(--cb-accent);
}

.award-logo {
  width: 40px;
  height: auto;
}

.award-text {
  font-family: var(--cb-font-body);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--cb-dark);
  line-height: 1.55;
}

.awards-carousel {
  overflow: hidden;
}

.awards-track {
  display: flex;
  gap: 1rem;
  transition: translate .45s var(--ease-in-out);
}

.awards-item {
  flex: 0 0 100%;
  min-width: 0;
}

.awards-item .award-card {
  height: 100%;
}

@media (min-width: 576px) {
  .awards-item {
    flex: 0 0 calc(50% - .5rem);
  }
}

@media (min-width: 1200px) {
  .awards-item {
    flex: 0 0 calc(25% - .75rem);
  }
}

.press-carousel {
  overflow: hidden;
}

.press-track {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: translate .45s var(--ease-in-out);
}

.press-item {
  flex: 0 0 100%;
  min-width: 0;
}

.press-item .press-card {
  height: 100%;
}

@media (min-width: 576px) {
  .press-item {
    flex: 0 0 calc(50% - .5rem);
  }
}

@media (min-width: 1200px) {
  .press-item {
    flex: 0 0 calc(25% - .75rem);
  }
}

.discography {
  padding: var(--cb-section-py) 0;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.album-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--cb-radius);
  display: block;
}

.label-logo {
  width: 64px;
  height: auto;
}

@media (min-width:576px) {
  .album-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.press {
  padding: var(--cb-section-py) 0;
}

.press-card {
  border-top: 2px solid var(--cb-dark);
  border-bottom: 2px solid var(--cb-dark);
  padding: 3.875rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.press-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--cb-radius);
  display: block;
}

.section-dots {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.section-dot {
  width: 64px;
  height: 2px;
  background: var(--cb-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.section-dot::after {
  content: '';
  position: absolute;
  inset: -10px -4px;
}

footer {
  background-color: var(--cb-primary);
  padding: 2rem 1.5rem 3rem;
}

.footer-logo {
  width: 99px;
  height: auto;
}

.footer-col-border {
  border-top: 2px solid var(--cb-light);
  border-bottom: 2px solid var(--cb-light);
  padding: 2rem 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-nav-link {
  font-family: var(--cb-font-heading);
  font-size: 1.5rem;
  color: var(--cb-light);
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  line-height: 1.3;
  transition: opacity .2s;
}

.footer-nav-link:hover {
  opacity: .7;
  color: var(--cb-light);
}

.footer-contact-label {
  font-family: var(--cb-font-heading);
  font-size: 1.5rem;
  color: var(--cb-light);
  text-transform: uppercase;
  line-height: 1.3;
}

.footer-contact-body {
  font-family: var(--cb-font-body);
  font-size: 1.25rem;
  color: var(--cb-light);
  line-height: 2;
}

.footer-contact-body a {
  color: var(--cb-light);
  text-decoration: underline;
}

.footer-label-logo {
  width: 64px;
  height: auto;
  mix-blend-mode: luminosity;
}

.footer-social img {
  opacity: 1;
  transition: opacity .2s;
}

.footer-social a:hover .social-icon img {
  opacity: .6;
}

@media (min-width:768px) {
  footer {
    padding: 2rem 3.125rem 3rem;
  }

  .footer-col-border {
    margin-bottom: 0;
  }
}

.img-modal .modal-dialog {
  max-width: min(90vw, 900px);
}

.img-modal .modal-content {
  border: none;
  border-radius: var(--cb-radius);
  overflow: hidden;
  background: #000;
  position: relative;
}

.img-modal .modal-body {
  padding: 0;
  position: relative;
}

.img-modal .modal-img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--cb-primary);
  border: 2px solid var(--cb-light);
  color: var(--cb-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  padding: 0;
  transition: background-color .2s;
}

.btn-lightbox-close:hover {
  background-color: var(--cb-dark);
}

.modal-spotify {
  display: none;
  padding: .75rem 1rem;
  text-align: center;
}

.modal-spotify.is-visible {
  display: block;
}

.modal-spotify-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #1db954;
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 600;
  transition: opacity .2s;
}

.modal-spotify-link:hover {
  opacity: .75;
  color: #1db954;
}

.modal-spotify-link img {
  width: 22px;
  height: 22px;
}

.js-lightbox {
  cursor: zoom-in;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-title-in {
  from {
    translate: 0 28px;
    opacity: 0;
  }

  to {
    translate: 0 0;
    opacity: 1;
  }
}

.hero-navbar {
  animation: hero-fade-in 600ms var(--ease-out) 100ms both;
}

.hero-title {
  animation: hero-title-in 800ms var(--ease-out) 500ms both;
}

.scroll-reveal {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 500ms var(--ease-out), translate 500ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.in-view {
  opacity: 1;
  translate: 0 0;
}

.award-reveal {
  opacity: 0;
  translate: 0 -18px;
  scale: 0.97;
  transition: opacity 450ms var(--ease-out), translate 450ms var(--ease-out), scale 450ms var(--ease-out);
}

.award-reveal.in-view {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

.section-title-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 650ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.section-title-reveal.in-view {
  clip-path: inset(0 0% 0 0);
}

.acp-body {
  transition: opacity 280ms var(--ease-out), translate 280ms var(--ease-out);
}

.btn-nav-toggle,
.lang-btn {
  transition: scale 160ms var(--ease-out);
}

.btn-nav-toggle:active,
.lang-btn:active {
  scale: .97;
}

.gallery-nav-btn {
  transition: opacity .2s, scale 160ms var(--ease-out);
}

.gallery-nav-btn:active {
  scale: .97;
}

@media (hover:hover) and (pointer:fine) {
  .award-card {
    transition: translate 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
  }

  .award-card:hover {
    translate: 0 -5px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
  }

  .album-thumb {
    transition: scale 250ms var(--ease-out);
  }

  .album-thumb:hover {
    scale: 1.04;
  }

  .press-img {
    transition: filter 250ms var(--ease-out);
  }

  .press-img:hover {
    filter: brightness(1.1);
  }

  .social-icon {
    transition: scale 200ms var(--ease-out);
  }

  a:hover .social-icon {
    scale: 1.15;
  }
}


  .hero-navbar,
  .hero-title {
    animation: hero-fade-in 300ms ease 0ms both;
  }

  .scroll-reveal {
    translate: 0 0;
    transition: opacity 200ms ease;
    transition-delay: 0ms !important;
  }

  .section-title-reveal {
    clip-path: none;
    opacity: 0;
    transition: opacity 200ms ease;
    transition-delay: 0ms !important;
  }

  .section-title-reveal.in-view {
    opacity: 1;
  }

  .acp-body {
    transition: opacity 150ms ease;
    translate: 0 0 !important;
  }
