:root {
    --hero-bg: url("../images/coconut_blurred_header_website_photo.png");
    --text: rgba(255, 255, 255, .92);
    --text-soft: rgba(255, 255, 255, .75);
    --line: rgba(255, 255, 255, .35);
}

.logo-img {
    width: 280px;
    height: 100px;
    background-image: url("../images/coconutfinallogowhite.png");
    margin-top: 60px;
}

@font-face {
    font-family: Mocktail;
    src: url("../fonts/mocktailetypeface-regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    font-family: "Raleway";
    background: rgb(159, 139, 114);
    color: var(--text);
}

.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 28px 18px;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center center;
    transform: scale(1.03);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: radial-gradient(1200px 600px at 50% 35%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02)), linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    z-index: -1;
}

.hero__brand {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-img {
    width: 380px;
    height: 190px;
    margin-top: 60px;
    background-image: url("../images/coconutfinallogowhite.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.95;
}

@media (min-width: 1024px) {
    .logo-img {
        width: 300px;
        height: 146px;
        margin-top: 42px;
    }
}

@media (max-width: 1023px) {
    .logo-img {
        width: 250px;
        height: 100px;
        margin-top: 38px;
    }
}

@media (max-width: 767px) {
    .logo-img {
        width: 205px;
        height: 84px;
        margin-top: 30px;
    }
}

@media (max-width: 360px) {
    .logo-img {
        width: 105px;
        height: 30px;
        margin-top: 26px;
    }
}

.hero__titleWrap {
    text-align: center;
    padding: 120px 0px;
    max-width: 980px;
    width: 100%;
}

.hero__title {
    text-shadow: rgba(0, 0, 0, 0.25) 0px 2px 24px;
    margin: 0px;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.03em;
    font-size: 59px;
    text-align: center;
    font-family: Mocktail;
    font-weight: 400;
}

.hero__title::before {
    content: "";
    display: block;
    width: min(520px, 70%);
    height: 1px;
    margin: 0px auto 26px;
}

.hero__nav {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 22px;
    display: flex;
    justify-content: center;
    padding: 0px 16px;
}

.nav {
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    gap: 0px;
    align-items: end;
    font-family: "El Masri";
}

.nav__item {
    border: 0px;
    background: none;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    padding: 6px 4px;
    border-radius: 0px;
    text-align: center;
}

.nav__label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0px 0px 8px;
    line-height: 1;
    opacity: 0.95;
}

.nav__icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    opacity: 0.9;
}

@media (hover: none) {
    .nav__item:hover {
        background: none;
        transform: none;
        color: rgba(255, 255, 255, 0.85);
    }
}

@media (max-width: 680px) {
    .hero__nav {
        bottom: 14px;
    }

    .nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
    }

    .nav__item {
        padding: 4px 2px;
    }

    .nav__label {
        font-size: 15px;
        letter-spacing: 0.2em;
        margin-bottom: 6px;
        font-family: "El Messiri";
    }

    .nav__icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .nav__label {
        font-size: 9px;
        letter-spacing: 0.18em;
    }

    .nav__icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 680px) {
    .hero__title {
        font-size: 30px;
    }

    .hero__brand {
        top: 18px;
    }

    .brand-logo .word {
        font-size: 28px;
    }

    .hero__titleWrap {
        padding: 110px 0px 150px;
    }

    .hero__nav {
        bottom: 16px;
        padding-bottom: 60px;
    }
}

@media (max-width: 360px) {
    .nav__label {
        font-size: 11px;
    }
}

.nav__icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.9;
    display: inline-block;
}

@media (max-width: 680px) {
    .nav__icon-img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 360px) {
    .nav__icon-img {
        width: 22px;
        height: 22px;
    }
}

.nature-hero {
    position: relative;
    min-height: 85vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-image: url("https://www.coconutuae.com/images/1600/images/coconut_dt-_07.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.nature-hero__overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.22) 100%);
    pointer-events: none;
}

.nature-hero__content {
    position: relative;
    z-index: 2;
    padding: 40px 18px;
    text-align: center;
}

.nature-hero__title {
    margin: 0px;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
    font-family: Mocktail, Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 60px);
    line-height: 1;
    text-shadow: rgba(0, 0, 0, 0.25) 0px 10px 30px;
}

.nature-hero__title span {
    text-transform: lowercase;
    letter-spacing: 0.06em;
    font-size: 0.65em;
    opacity: 0.95;
    font-style: italic;
    margin: 0px 0.15em;
}

@media (max-width: 768px) {
    .nature-hero {
        min-height: 70vh;
        background-position: center top;
    }

    .nature-hero__title {
        letter-spacing: 0.1em;
        font-size: clamp(22px, 6vw, 42px);
    }
}

@supports (-webkit-touch-callout: none) {
    .nature-hero {
        background-attachment: scroll;
    }

    .nature-hero::before {
        content: "";
        position: fixed;
        inset: 0px;
        background-image: url("images/inspired-nature.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        z-index: -1;
        transform: translateZ(0px);
    }
}

.subthemes {
    position: relative;
    min-height: 92vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-image: url("https://www.coconutuae.com/images/1600/images/57.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    isolation: isolate;
}

.subthemes::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(rgba(215, 207, 193, 0.61), rgba(215, 207, 193, 0.27));
    z-index: -1;
}

.subthemes__inner {
    width: min(980px, 92%);
    padding: 90px 0px 70px;
}

.subthemes__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 46px;
}

.subthemes__kicker {
    color: rgb(135, 111, 80);
    font-size: 31px;
    text-align: right;
    font-family: "El Messiri";
    font-weight: 400;
    font-style: normal;
}

.subthemes__list {
    margin: 0px auto;
    width: min(640px, 92%);
    display: grid;
    gap: 22px;
}

.subthemes__item {
    position: relative;
    display: block;
    text-align: center;
    font-family: "Raleway";
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(18px, 2.2vw, 28px);
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    padding: 18px 10px 28px;
}

.subthemes__item::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    width: min(560px, 100%);
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
}

.subthemes__item span {
    margin-right: 6px;
    opacity: 0.95;
}

@media (hover: hover) {
    .subthemes__item:hover {
        opacity: 0.95;
    }

    .subthemes__item:hover::after {
        background: rgba(255, 255, 255, 0.75);
    }
}

@media (max-width: 680px) {
    .subthemes {
        min-height: 95vh;
        background-position: center center;
        background-color: rgb(135, 111, 80);
    }

    .subthemes__inner {
        width: min(520px, 92%);
        padding: 80px 0px 60px;
    }

    .subthemes__top {
        margin-bottom: 36px;
    }

    .subthemes__kicker {
        font-size: 14px;
        letter-spacing: 0.16em;
    }

    .subthemes__list {
        width: 100%;
        gap: 18px;
    }

    .subthemes__item {
        font-size: 18px;
        letter-spacing: 0.1em;
        padding: 16px 8px 26px;
    }

    .subthemes__item::after {
        width: 86%;
    }
}

@media (max-width: 360px) {
    .subthemes__kicker {
        font-size: 13px;
    }

    .subthemes__item {
        font-size: 17px;
    }
}

.theme-banner {
    position: relative;
    width: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-image: url("https://www.coconutuae.com/images/1200/images/calm_desert_-_17.png.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

.theme-banner::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.theme-banner__inner {
    position: relative;
    z-index: 2;
    width: min(1100px, 92%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.theme-banner__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.theme-banner__title {
    margin: 0px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 400;
    font-family: "Raleway";
    font-size: clamp(18px, 2.6vw, 34px);
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 680px) {
    .theme-banner {
        min-height: 170px;
        background-repeat: no-repeat;
        background-position: 100% 100%;
    }

    .theme-banner__inner {
        width: 92%;
        gap: 12px;
    }

    .theme-banner__title {
        letter-spacing: 0.18em;
        font-size: 18px;
    }

    .theme-banner__line {
        background: rgba(255, 255, 255, 0.38);
    }
}

@media (max-width: 360px) {
    .theme-banner__title {
        font-size: 16px;
        letter-spacing: 0.16em;
    }
}

.triple-slider {
    width: 100%;
    background: rgb(124, 117, 99);
    padding: clamp(18px, 3vw, 34px) 0px;
    overflow: hidden;
}

.triple-slider__viewport {
    width: min(1240px, 92%);
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.triple-slider__track {
    display: flex;
    gap: clamp(18px, 2.2vw, 36px);
    align-items: center;
    will-change: transform;
    transition: transform 700ms;
    cursor: grab;
}

.triple-slider__track.is-dragging {
    transition: none;
    cursor: grabbing;
}

.triple-slider__slide {
    flex: 0 0 clamp(240px, 28vw, 420px);
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

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

.triple-slider__slide::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(122, 111, 90, 0.55);
    opacity: 1;
    transition: opacity 450ms;
    pointer-events: none;
}

.triple-slider__slide.is-active {
    flex-basis: clamp(420px, 52vw, 760px);
    aspect-ratio: 1 / 1;
}

.triple-slider__slide.is-active::after {
    opacity: 0;
}

@media (max-width: 680px) {
    .triple-slider__viewport {
        width: 92%;
    }

    .triple-slider__track {
        gap: 14px;
    }

    .triple-slider__slide {
        flex: 0 0 78vw;
        aspect-ratio: 1 / 1;
        max-width: 330px;
    }

    .triple-slider__slide.is-active {
        flex-basis: 78vw;
        aspect-ratio: 1 / 1;
        max-width: 330px;
    }
}

.video-section {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

.video-section__bg {
    position: sticky;
    top: 0px;
    height: 100vh;
    width: 100%;
    z-index: -1;
}

.video-section__bg video {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.95) contrast(1.05);
}

.video-section__spacer {
}

.dummy-content {
    position: relative;
    background: rgb(244, 239, 230);
    padding: 120px 18px;
}

.dummy-content__inner {
    max-width: 720px;
    margin: 0px auto;
    text-align: center;
}

.dummy-content h2 {
    margin: 0px 0px 18px;
    font-family: Mocktail, Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: clamp(26px, 4vw, 48px);
    color: rgb(110, 93, 68);
}

.dummy-content p {
    margin: 0px 0px 18px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.65);
}

@media (max-width: 768px) {
    .video-section {
        height: 25vh;
    }

    .video-section__bg {
        position: absolute;
        height: 100%;
    }

    .video-section__spacer {
    }

    .dummy-content {
        padding: 80px 16px;
    }
}

.theme-banner2 {
    position: relative;
    width: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.theme-banner2::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.theme-banner2__inner {
    position: relative;
    z-index: 2;
    width: min(1100px, 92%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.theme-banner2__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.theme-banner2__title {
    margin: 0px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 400;
    font-family: "Raleway";
    font-size: clamp(18px, 2.6vw, 34px);
    line-height: 1;
    white-space: nowrap;
}

.theme-banner2--colorful {
    background-image: url("https://www.coconutuae.com/images/800/images/colorful_desert_-_11.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 680px) {
    .theme-banner2 {
        min-height: 170px;
    }

    .theme-banner2__inner {
        width: 92%;
        gap: 12px;
    }

    .theme-banner2__title {
        letter-spacing: 0.18em;
        font-size: 18px;
    }

    .theme-banner2__line {
        background: rgba(255, 255, 255, 0.38);
    }
}

@media (max-width: 360px) {
    .theme-banner2__title {
        font-size: 16px;
        letter-spacing: 0.16em;
    }
}

.theme-banner3 {
    position: relative;
    width: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.theme-banner3::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.theme-banner3__inner {
    position: relative;
    z-index: 2;
    width: min(1100px, 92%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.theme-banner3__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.theme-banner3__title {
    margin: 0px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 400;
    font-family: "Raleway";
    font-size: clamp(18px, 2.6vw, 34px);
    line-height: 1;
    white-space: nowrap;
}

.theme-banner3--colorful {
    background-image: url("https://www.coconutuae.com/images/800/images/raw_desert_-_23.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 680px) {
    .theme-banner3 {
        min-height: 170px;
    }

    .theme-banner3__inner {
        width: 92%;
        gap: 12px;
    }

    .theme-banner3__title {
        letter-spacing: 0.18em;
        font-size: 18px;
    }

    .theme-banner3__line {
        background: rgba(255, 255, 255, 0.38);
    }
}

@media (max-width: 360px) {
    .theme-banner3__title {
        font-size: 16px;
        letter-spacing: 0.16em;
    }
}

.theme-banner4 {
    position: relative;
    width: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.theme-banner4::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.theme-banner4__inner {
    position: relative;
    z-index: 2;
    width: min(1100px, 92%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.theme-banner4__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.theme-banner4__title {
    margin: 0px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 400;
    font-family: "Raleway";
    font-size: clamp(18px, 2.6vw, 34px);
    line-height: 1;
    white-space: nowrap;
}

.theme-banner4--colorful {
    background-image: url("https://www.coconutuae.com/images/800/images/animal_desert_-_03.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 680px) {
    .theme-banner4 {
        min-height: 170px;
    }

    .theme-banner4__inner {
        width: 92%;
        gap: 12px;
    }

    .theme-banner4__title {
        letter-spacing: 0.18em;
        font-size: 18px;
    }

    .theme-banner4__line {
        background: rgba(255, 255, 255, 0.38);
    }
}

@media (max-width: 360px) {
    .theme-banner4__title {
        font-size: 16px;
        letter-spacing: 0.16em;
    }
}

.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(122, 111, 90, 0.43);
    z-index: 1;
}

.pinwrap {
    position: relative;
    background: rgb(124, 117, 99);
}

.pinned-poster {
    position: sticky;
    top: 0px;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    z-index: 1;
    background: rgb(124, 117, 99);
}

.pinned-poster__inner {
    width: min(1100px, 92%);
    display: grid;
    place-items: center;
}

.pinned-poster__frame {
    position: relative;
    width: min(620px, 78vw);
    aspect-ratio: 1 / 1;
    padding: clamp(18px, 2.3vw, 30px);
    display: grid;
    place-items: center;
    overflow: visible;
}

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

.pinned-poster__frame {
    position: relative;
}

.pinned-poster__vtext {
    position: absolute;
    top: 50%;
    right: -26px;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-family: Mocktail, Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.05;
    font-size: clamp(34px, 5vw, 82px);
    color: rgba(255, 255, 255, 0.82);
    pointer-events: none;
    mix-blend-mode: screen;
    text-shadow: rgba(0, 0, 0, 0.12) 0px 12px 30px;
}

@media (max-width: 680px) {
    .pinned-poster__frame {
        width: min(420px, 84vw);
        padding: 16px;
    }

    .pinned-poster__vtext {
        right: 18px;
        top: 56%;
        transform: translateY(-50%) rotate(180deg);
        font-size: 40px;
        letter-spacing: 0.12em;
        z-index: 3;
        mix-blend-mode: normal;
        text-shadow: none;
    }
}

@media (max-width: 360px) {
    .pinned-poster__frame {
        width: 88vw;
    }

    .pinned-poster__vtext {
        right: 14px;
        font-size: 34px;
    }
}

.overlay-form {
    position: relative;
    z-index: 2;
    background: rgb(124, 117, 99);
    min-height: 100vh;
    padding: 90px 18px 70px;
    display: grid;
    place-items: center;
}

.overlay-form__inner {
    width: min(980px, 92%);
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
}

.overlay-form__ornament {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    margin: 0px auto 22px;
    width: min(920px, 92%);
}

.overlay-form__ornament--small {
    width: min(520px, 78%);
    margin-top: 48px;
}

.overlay-form__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.overlay-form__mark {
    width: 48px;
    height: 26px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url("images/mark-white.png");
}

.overlay-form__title {
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 0em;
    font-size: 19px;
    text-align: center;
    font-family: Mocktail;
    font-weight: 400;
    font-style: normal;
}

.overlay-form__form {
    width: min(520px, 92%);
    margin: 0px auto;
    display: grid;
    gap: 16px;
}

.overlay-form__input {
    width: 100%;
    height: 46px;
    padding: 0px 14px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    outline: currentcolor;
    text-align: center;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
}

.overlay-form__input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.overlay-form__btn {
    margin: 14px auto 0px;
    width: 160px;
    height: 44px;
    border: 0px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
}

.overlay-form__btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.overlay-form__brand {
    margin-top: 30px;
}

.overlay-form__logoText {
    margin-top: 18px;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
}

.overlay-form__logoWord {
    font-size: 34px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.86);
}

.overlay-form__logoSub {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.overlay-form__social {
    margin: 20px auto 0px;
    opacity: 0.9;
}

.overlay-form__footer {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.overlay-form__footLeft {
    text-align: left;
}

.overlay-form__footCenter {
    text-align: center;
}

.overlay-form__footRight {
    text-align: right;
}

.overlay-form__backTop {
    position: static;
    right: 4px;
    bottom: 170px;
    /*transform: rotate(180deg);*/
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.55);
    z-index: 10;
}

@media (max-width: 520px) {
    .overlay-form__footer {
        margin-top: 56px;
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 10px;
        align-items: center;
        font-size: 9px;
        letter-spacing: 0.16em;
    }

    .overlay-form__footLeft {
        text-align: left;
    }

    .overlay-form__footCenter {
        text-align: center;
    }

    .overlay-form__footRight {
        text-align: right;
    }

    .overlay-form__backTop {
        grid-column-start: 1;
        grid-column-end: -1;
        text-align: center;
        margin-top: 16px;
    }
}

.overlay-form__logoImg {
    width: 228px;
    height: 162px;
    margin: 18px auto 0px;
    background-image: url("../images/coconutfinallogowhite.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .overlay-form__logoImg {
        width: 120px;
        height: 40px;
    }
}

@media (max-width: 520px) {
    .overlay-form__logoImg {
        width: 205px;
        height: 88px;
    }
}

.overlay-form__logoImg {
    animation: 0.9s forwards logoFadeUp;
}

@keyframes logoFadeUp {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }

    100% {
        opacity: 0.95;
        transform: translateY(0px);
    }
}
