:root {
    --bg: #F2EDE3;
    --text: #24201A;
    --muted: #6B6158;
    --surface: rgba(255, 255, 255, .8);
    --surface2: rgba(255, 255, 255, .95);
    --stroke: rgba(60, 50, 40, .13);
    --green: #3A6635;
    --green2: #547D50;
    --shadow: 0 18px 60px rgba(0, 0, 0, .1);
    --shadow2: 0 6px 20px rgba(0, 0, 0, .09);
    --r-xl: 22px;
    --r-lg: 18px;
    --r-md: 14px;
    --max: 1120px;
    --heroOverlayOpacity: .52;
    --heroH: min(100svh, 890px);
    --heroMobile: min(97svh, 890px)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

html,
body {
    width: 100%;
    max-width: 100%
}

body {
    margin: 0;
    min-height: 100dvh;
    color: var(--text);
    background: var(--bg);
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}

a {
    color: inherit;
    text-decoration: none
}

img,
video,
iframe {
    max-width: 200px;
    display: block
}

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 10px
}

.section {
    padding: clamp(32px, 6vw, 50px) clamp(16px, 5vw, 28px);
    background: transparent
}

.section>* {
    max-width: var(--max);
    margin-inline: auto
}

h1,
h2,
h3 {
    margin: 0 0 10px;
    letter-spacing: .04em
}

h1 {
    font-family: Mon Cheri, Agrandir Grand, Agrandir Grand Bold, Montserrat, system-ui, sans-serif;
}

h2,
h3 {
    font-family: Courier New, system-ui, sans-serif;
}

h2 {
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.75;
    color: var(--green);
    text-align: center
}

.section-subtitle {
    margin: 14px auto 40px !important;
    color: var(--muted);
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    text-align: center
}

.section-subtitle.subtle {
    opacity: .85
}

.section-highlight {
    margin: 12px auto 0;
    text-align: center;
    font-weight: 700;
    color: var(--text)
}

.hero {
    position: relative;
    height: var(--heroH);
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: end;
    padding: 10px;
    overflow: hidden
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    z-index: 0
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0000002e, #0000009e 70%, #000000c7);
    opacity: var(--heroOverlayOpacity);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    justify-self: start;
    align-self: flex-end;
    text-align: left;
    padding: 0;
    transform: translateY(30px)
}

.hero-content h1 {
    font-size: clamp(42px, 10vw, 110px);
    line-height: 1.25;
    margin: 0 0 24px;
    color: #fffffff7;
    text-transform: uppercase;
    letter-spacing: -.01em
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start
}

@media(min-width:600px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        transform: translateY(-30px)
    }
}

.cta {
    appearance: none;
    border: 3px outset rgba(255, 255, 255, .42);
    cursor: pointer;
    padding: 15px;
    border-radius: 999px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: radial-gradient(circle at 50% 50%, #7ec76a -60%, #3a6635 40%, #1e3d1b);
    box-shadow: var(--shadow2);
    transition: transform .16s ease, filter .16s ease
}

.cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    background: radial-gradient(circle at 50% 50%, #8fd67a -60%, #447840 40%, #244820);
    scale: 1.03
}

.cta:active {
    transform: translateY(0) scale(.99)
}

#sobre ul.diferenciais {
    padding: 0;
    border-radius: var(--r-lg);
    font-weight: 450;
    color: var(--text);
    max-width: 430px;
    text-align: center;
    list-style: none;
    width: auto
}

@media(min-width:600px) {
    #sobre ul.diferenciais {
        display: grid;
        position: relative;
        place-content: flex-start;
        height: auto;
        gap: 17px;
        margin: 50px auto
    }

    #sobre ul.diferenciais li {
        flex: 1 1 180px
    }
}

.about-section {
    display: flex
}

#sobre ul.diferenciais strong {
    color: var(--green);
    font-weight: bolder
}

#sobre ul.diferenciais li {
    padding: 16px 14px;
    background: var(--surface);
    border-radius: var(--r-lg);
    font-weight: 450;
    color: var(--text);
    border: 1px solid var(--stroke);
    margin: 0
}

.explain-text {
    display: grid;
    max-width: 480px;
    text-align: justify;
    width: auto;
    line-height: 1.7;
    margin: 30px auto
}

.cards {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch
}

@media(min-width:600px) {
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
    }
}

.card {
    min-width: 0;
    padding: 10px;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden
}

.card-media {
    overflow: hidden;
    aspect-ratio: 3 / 3;
    background: #0000002e;
    border-radius: 20px
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.card-body,
.card-body.compact {
    padding: 18px
}

.card h3 {
    font-size: 18px;
    margin: 8px 0 10px
}

.card p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.55
}

.fineprint {
    font-size: 12px;
    opacity: .85
}

.extra {
    margin-top: 12px;
    font-size: 13px;
    opacity: .92
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
    align-items: center
}

.btn-row>a {
    display: flex
}

.btn-row>a>.btn {
    flex: 1
}

.btn,
.btn-last-row {
    cursor: pointer;
    border-radius: 999px;
    padding: 20px;
    border: 3px outset rgba(255, 255, 255, .42);
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .16s ease, filter .16s ease;
    background: radial-gradient(circle at 50% 50%, #7ec76a -60%, #3a6635 40%, #1e3d1b) !important;
    color: #fffffff2;
    box-shadow: var(--shadow2)
}

.btn:hover,
.btn-last-row:hover {
    filter: brightness(1.05);
    transform: translateY(-1px)
}

.btn:active,
.btn-last-row:active {
    transform: translateY(0) scale(.99)
}

.btn.primary,
.btn-last-row {
    background: radial-gradient(circle at 50% 50%, #7ec76a -60%, #3a6635 40%, #1e3d1b) !important
}

.btn.ghost {
    background: #3a663526 !important;
    color: var(--green);
    border-color: #3a663559
}

.btn.small {
    padding: 10px 12px;
    font-size: 12px
}

.btn-last {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: auto
}

.btn-last-row {
    width: min(520px, 100%);
    position: relative;
    margin: 10px auto
}

.amenities-container {
    border: 1px solid var(--stroke);
    border-radius: var(--r-xl);
    padding: 28px 20px;
    background: var(--surface);
    backdrop-filter: blur(14px);
    margin-top: 20px
}

.amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: auto
}

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

@media(min-width:900px) {
    .amenities {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px
    }
}

.amenity {
    padding: 16px 10px;
    border-radius: var(--r-lg);
    background: #3a66350f;
    border: 1px solid rgba(58, 102, 53, .14);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(72px, 22vw, 120px);
    height: clamp(72px, 22vw, 120px)
}

.amenity-icon svg,
.amenity-icon img {
    height: 180px;
    object-fit: contain;
    filter: none
}

img,
video,
iframe {
    max-width: 100%;
    display: block
}

.amenity h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3
}

.amenity p {
    display: none
}

.studios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 22px
}

.studio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/3
}

@media(min-width:768px) {
    .studios-grid {
        grid-template-columns: 1fr 1fr
    }
}

.studio-note {
    display: grid;
    justify-content: center;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    margin: 18px auto 4px
}

.studio-note strong {
    font-size: 30px;
    color: #036e21
}

.studio-note p {
    font-size: 16px;
    color: var(--muted)
}

.studio-section {
    padding: clamp(32px, 6vw, 50px) clamp(16px, 5vw, 28px);
    margin-bottom: 20px;
    display: grid
}

.studio-card {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow2);
    backdrop-filter: blur(14px);
    overflow: hidden
}

@media(min-width:480px) {
    .studio-card {
        grid-template-columns: minmax(0, 1.08fr) minmax(220px, .92fr)
    }
}

.studio-img {
    min-height: 220px;
    background: #efe8dc;
    overflow: hidden
}

.studio-info {
    position: relative;
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #3a66351a, #ffffffbd 58%), var(--surface2)
}

.studio-info h3 {
    margin: 0;
    color: var(--text);
    font-family: Montserrat, system-ui, sans-serif;
    font-size: clamp(24px, 1.9vw, 31px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0
}

.studio-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.35
}

.studio-features li {
    display: flex;
    align-items: center;
    gap: 8px
}

.studio-features li:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
    flex: 0 0 auto
}

.studio-price {
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: fit-content;
    padding: 12px 15px;
    border: 1px solid rgba(58, 102, 53, .18);
    border-radius: 16px;
    color: var(--green);
    background: #3a66351a;
    line-height: 1.08
}

.studio-price span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.studio-price strong {
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 800;
    letter-spacing: 0
}

.studio-info .extra {
    margin-top: 10px;
    font-size: 13px;
    opacity: .92
}

@media(min-width:1024px) {
    .studios-grid {
        gap: 28px
    }

    .studio-card {
        min-height: 330px
    }
}

.feat-carousel {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: none !important;
    margin-inline: calc(-1*clamp(16px, 5vw, 28px)) !important;
    width: calc(100% + 2 * clamp(16px, 5vw, 28px));
}

.feat-carousel-row {
    position: relative;
    width: 100%;
    height: clamp(180px, 35vw, 460px);
    overflow: hidden
}

.feat-track {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 3%;
    transform: translate(calc(12% - var(--feat-idx, 0) * 79%));
    transition: transform .45s cubic-bezier(.25, .46, .45, .94)
}

.feat-img {
    min-width: 76%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: var(--r-xl);
    user-select: none;
    -webkit-user-drag: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: #00000059;
    color: #fffffff2;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    z-index: 2;
    backdrop-filter: blur(4px)
}

.carousel-btn--prev {
    left: 14px
}

.carousel-btn--next {
    right: 14px
}

.feat-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    padding-inline: clamp(16px, 5vw, 28px)
}

.feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #3a663540;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, width .2s
}

.feat-dot.is-active {
    background: var(--green);
    width: 22px
}

.last-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px
}

.studio-img--carousel {
  position: relative;
  overflow: hidden;
}

.studio-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(calc(var(--studio-idx, 0) * -100%));
  transition: transform .45s cubic-bezier(.25, .46, .45, .94);
}

.studio-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.studio-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

@media(min-width:600px) {
    .last-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
    }
}

.location {
    padding: clamp(32px, 6vw, 60px) clamp(16px, 5vw, 28px)
}

.location-head {
    max-width: 1120px;
    margin: 0 auto 18px;
    text-align: center
}

.location-head h2 {
    margin: 0
}

.location-head .addr {
    margin: 8px 0 0;
    opacity: .9
}

.location-grid {
    max-width: 1120px;
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start
}

@media(min-width:768px) {
    .location-grid {
        grid-template-columns: 1.15fr .85fr
    }
}

.map-card,
.copy-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: var(--surface)
}

.map-iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block
}

@media(min-width:768px) {
    .map-iframe {
        height: 380px
    }
}

@media(min-width:1024px) {
    .map-iframe {
        height: 420px
    }
}

.copy-card {
    padding: 48px
}

.copy-card h3 {
    margin: 0 0 10px
}

.copy-card p {
    margin: 0 0 12px;
    opacity: .92;
    line-height: 1.55
}

.copy-card ul {
    margin: 0 0 12px;
    padding-left: 18px;
    display: grid;
    gap: 8px
}

.copy-card .note {
    margin-top: 10px;
    opacity: .9
}

.faq {
    margin-top: 18px;
    display: grid;
    gap: 10px
}

.faq-item {
    border-radius: var(--r-lg);
    border: 1px solid var(--stroke);
    background: var(--surface);
    padding: 12px 14px
}

.faq-item summary {
    cursor: pointer;
    font-weight: 800
}

.faq-item p,
.faq-item ul {
    margin: 10px 0 0;
    color: var(--muted)
}

.faq-item ul {
    padding-left: 20px;
    display: grid;
    gap: 6px
}

footer {
    text-align: center;
    font-size: 13px;
    padding: 18px 14px;
    background: #3a663514;
    border-top: 1px solid var(--stroke);
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1.05fr .9fr 1.45fr .95fr;
    gap: 10px;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden
}

.footer-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: .12;
    pointer-events: none
}

footer>* {
    position: relative;
    z-index: 1
}

footer p {
    max-width: var(--max);
    color: var(--muted);
    line-height: 1.6;
    padding: 10px 11px;
    margin: 0;
    min-width: 0
}

footer p:not(:last-child) {
    border-right: 1px solid var(--stroke)
}

.footer-muted {
    opacity: .92
}

.footer-link {
    text-decoration: underline;
    text-underline-offset: 2px
}

.footer-credit {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-weight: 700
}

.footer-wordmark {
    display: inline-block;
    width: clamp(110px, 9vw, 150px);
    height: clamp(42px, 4vw, 58px);
    max-width: 150px;
    object-fit: cover;
    object-position: center
}

@media(max-width:900px) {
    footer {
        grid-template-columns: 1fr 1fr;
        gap: 6px 10px
    }

    footer p:not(:last-child) {
        border-right: 0
    }
}

@media(max-width:520px) {
    footer {
        grid-template-columns: 1fr
    }
}

.modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    background: #000000a6;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999
}

.modal[aria-hidden=true] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.modal[aria-hidden=false] {
    opacity: 1;
    visibility: visible
}

.modal-panel {
    background: #f8f4ec;
    border-radius: 18px;
    padding: 20px;
    width: min(860px, 94vw);
    max-height: min(92dvh, 860px);
    overflow: auto;
    text-align: center;
    border: 1px solid var(--stroke);
    display: flex;
    flex-direction: column
}

.modal-close {
    align-self: flex-end;
    cursor: pointer;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    width: 44px;
    height: 36px;
    background: var(--surface);
    color: var(--text);
    display: inline-grid;
    place-items: center;
    float: right
}

.modal-head h3 {
    margin: 6px 0 10px
}

.modal-note {
    margin: 8px auto 12px;
    opacity: .92
}

.modal-timezone {
    width: fit-content;
    margin: 0 auto 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #3a66351a;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2
}

.calendar-iframe {
    width: 100%;
    height: min(680px, 72dvh);
    min-height: 560px;
    border: 0;
    border-radius: 14px;
    background: #0000002e
}

.booking-modal-actions {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: static;
    flex: 0 0 auto
}

.calendar-placeholder {
    padding: 14px;
    border-radius: 14px;
    border: 1px dashed var(--stroke);
    background: #3a66350d;
    text-align: left
}

.booking-consent {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 220px;
    z-index: 10001
}

.booking-consent__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 25px;
    border-radius: 16px;
    background: #f2ede3f0;
    border: 2px outset rgba(58, 102, 53, .22);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow)
}

.booking-consent__title {
    margin: 0 0 6px;
    font-weight: 900;
    color: var(--green)
}

.booking-consent__text {
    margin: 0;
    color: var(--text);
    line-height: 1.45
}

.booking-consent__actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap
}

.booking-consent.is-hidden,
.booking-confirmation.is-hidden {
    display: none
}

.booking-confirmation {
    position: fixed;
    top: 16px;
    right: 16px;
    width: min(520px, calc(100vw - 32px));
    z-index: 10002
}

.booking-confirmation__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(58, 102, 53, .28);
    background: #f8f4ecf7;
    box-shadow: var(--shadow);
    color: var(--text)
}

.booking-confirmation__inner strong,
.booking-confirmation__inner span {
    display: block;
    text-align: left
}

.booking-confirmation__inner strong {
    color: var(--green);
    font-weight: 900;
    margin-bottom: 2px
}

.booking-confirmation__inner span {
    line-height: 1.45
}

.booking-confirmation__close {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer
}

@media(max-width:767px) {
    .hero {
        height: var(--heroMobile);
        min-height: var(--heroMobile)
    }

    .hero-content h1 {
        font-size: clamp(36px, 13vw, 60px)
    }

    .hero-content {
        padding: 16px 16px 28px
    }

    .btn,
    .btn-last-row,
    .cta {
        font-size: 14px;
        padding: 12px 14px
    }

    .modal {
        align-items: stretch;
        place-items: stretch;
        padding: 8px
    }

    .modal-panel {
        width: 100%;
        max-height: calc(100dvh - 16px);
        padding: 14px;
        border-radius: 16px
    }

    .modal-close {
        width: 40px;
        height: 34px
    }

    .modal-head h3 {
        margin-top: 0
    }

    .modal-note {
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 1.45
    }

    .modal-timezone {
        margin-bottom: 10px;
        font-size: 12px
    }

    .calendar-iframe {
        height: min(640px, calc(100dvh - 235px));
        min-height: 460px
    }

    .booking-modal-actions {
        margin: 14px 0 0;
        padding: 0;
        background: transparent
    }

    .booking-modal-actions .btn {
        flex: 1 1 150px
    }

    .booking-consent {
        top: auto;
        bottom: 12px
    }

    .booking-consent__inner {
        padding: 14px
    }

    .booking-consent__actions .btn {
        flex: 1 1 135px
    }

    .booking-confirmation {
        top: 12px;
        right: 12px;
        width: calc(100vw - 24px)
    }

    .about-section {
        display: grid
    }

    #sobre ul.diferenciais li {
        margin: 10px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .feat-track {
        transition: none
    }
}

.sesh-bg {
    position: relative;
    overflow: hidden;
    margin-bottom: 70px
}

.sesh-bg-img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: .2;
    pointer-events: none
}

.sesh-bg>*:not(.sesh-bg-img) {
    position: relative;
    z-index: 1
}

.sesh2-bg-img {
    opacity: .3
}