/* Desktop */
:root {
        --size-unit: 16; /* body font-size in design - no px */
        --size-container-ideal: 1512; /* screen-size in design - no px */
        --size-container-min: 992px;
        --size-container-max: 1920px;
        --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
        --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
  }
  
/* Tablet */
@media screen and (max-width: 991px) {
    :root {
        --size-container-ideal: 834; /* screen-size in design - no px */
        --size-container-min: 768px;
        --size-container-max: 991px;
    }
}
  
/* Mobile Landscape */
    @media screen and (max-width: 767px) {
    :root {
        --size-container-ideal: 550; /* screen-size in design - no px */
        --size-container-min: 480px;
        --size-container-max: 767px;
    }
}
  
/* Mobile Portrait */
    @media screen and (max-width: 479px) {
    :root {
        --size-container-ideal: 390; /* screen-size in design - no px */
        --size-container-min: 320px;
        --size-container-max: 479px;
    }
}

.app {
    font-size: var(--size-font);
}

.app * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.color-black { color: #000000; }
.bg-black { background-color: #000000; }
.color-white { color: #FFFFFF; }
.bg-white { background-color: #FFFFFF; }
.color-rlm-primary-40 { color: #73AFBB; }
.bg-rlm-primary-40 { background-color: #73AFBB; }
.bg-rlm-secondary-60 { background-color: #CCD5D8; }
.color-rlm-secondary-60 { color: #CCD5D8; }
.color-rlm-secondary { color: #012B3B; }
.bg-rlm-secondary { background-color: #012B3B; }
.color-rlm-secondary-40 { color: #4D6B76; }
.bg-rlm-secondary-40 { background-color: #4D6B76; }
.color-chalk-white { color: #FDF8F5; }
.bg-chalk-white { background-color: #FDF8F5; }
.color-daintree { color: #011E29; }
.bg-daintree { background-color: #011E29; }

.font-know-god-cta-label {
    font-family: 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.font-eyebrow-m {
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: 0;
}

.font-heading-h1 {
    font-size: 4.5em;
    line-height: 1.12;
    letter-spacing: 0;
}

.font-body-m {
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: 0;
}

.font-heading-h3 {
    font-size: 3.5em;
    line-height: 1.15;
    letter-spacing: 0;
}

/* Responsive Font Sizes - Tablet */
@media screen and (max-width: 991px) {}

/* Responsive Font Sizes - Mobile Landscape */
@media screen and (max-width: 767px) {
    .font-eyebrow-m {
        font-size: 0.75em;
    }

    .font-heading-h1 {
        font-size: 3em;
    }

    .font-body-m {
        font-size: .75em;
    }

    .font-heading-h3 {
        font-size: 2.5em;
    }
}

/* Responsive Font Sizes - Mobile Portrait */
@media screen and (max-width: 479px) {}

.font-bold { font-weight: 700; }

.font-semibold { font-weight: 600; }

.font-medium { font-weight: 500; }

.font-regular { font-weight: 400; }

.font-light { font-weight: 300; }

.font-uppercase { text-transform: uppercase; }

.font-normal { text-transform: none; }

.font-italic { font-style: italic; }

.font-inter { font-family: 'Inter', sans-serif; }

.font-montserrat { font-family: 'Montserrat', sans-serif; }

.font-times-new-roman { font-family: 'Times New Roman', sans-serif; }

/* Hero Section */
.hero {
    background: linear-gradient(to left,rgba(1, 39, 53, 0.5) 4%,rgb(1, 44, 59) 69%,rgb(0, 23, 31) 94%);
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;  
    overflow: hidden;
    padding: 6em 19.59375em;
}

.hero__logo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    height: auto;
}

.hero__logo--01 {
    height: 35.9375em;
    left: -16px;
    bottom: 190px;
}

.hero__logo--02 {
    height: 28.8125em;
    right: -50px;
    top: 290px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.6875em;
  position: relative;
  z-index: 2;
  max-width: 75em;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__text small {
  margin-bottom: 1em;
}

.hero__text p {    
    margin-top: 1.5em;
    padding-bottom: 0 !important;
    color: #FFFFFF !important;
}

.hero__title {
    max-width: 75%;
    margin-bottom: 0 !important;
}

.hero__description-container {
    max-width: 90%;
}

/* Language Selector in Hero */
.hero__language-selector {
    margin-top: 2em;
    width: 100%;
    max-width: 20em;
}

.hero__language-selector select,
.hero__language-selector .gt_selector {
    width: 100%;
    padding: 0.75em 1.25em;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.5;
    color: #FFFFFF;
    background-color: rgba(1, 30, 41, 0.6);
    border: 1px solid rgba(115, 175, 187, 0.4);
    border-radius: 0.5em;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2373AFBB' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25em center;
    background-size: 0.75em;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hero__language-selector select:hover,
.hero__language-selector .gt_selector:hover {
    border-color: #73AFBB;
    background-color: rgba(1, 30, 41, 0.8);
}

.hero__language-selector select:focus,
.hero__language-selector .gt_selector:focus {
    outline: none;
    border-color: #73AFBB;
    box-shadow: 0 0 0 0.125em rgba(115, 175, 187, 0.25);
}

.hero__language-selector select option {
    background-color: #012B3B;
    color: #FFFFFF;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .hero {
        padding: 4em 1.5em;
    }
    
    .hero__language-selector {
        max-width: 18em;
    }    
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .hero__language-selector {
        max-width: 16em;
        margin-top: 1.5em;
    }

    .hero__language-selector select,
    .hero__language-selector .gt_selector {
        font-size: 0.75em;
        padding: 0.875em 1.25em;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .hero__title {
        max-width: 100%;
    }

    .hero__language-selector {
        max-width: 100%;
    }
}

/* Your First Step Section */
.your-first-step {
    background-color: var(--bg-white);
}

.your-first-step .container {
    padding: 6em;
    max-width: 100%;
}

.your-first-step__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6.3125em;
}

.your-first-step__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.your-first-step__eyebrow {
    margin-bottom: 0.5em;
}

.your-first-step__title {
    max-width: 85%;
}

.your-first-step__description {
    margin-top: 1.5em;
    max-width: 95%;
}

.your-first-step__description-container {
    margin-top: 1.5em;
    max-width: 98%;
}

.your-first-step__quote-aside {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 3em;
  min-width: 0;
}

.your-first-step__image {
  border-radius: 1.5em;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  width: 13.5625em;
  height: 25.5625em;
  overflow: hidden;
}

.your-first-step__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.your-first-step__quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5em;
    padding: 2em;
    width: 28.625em;
    height: auto;
    border-radius: 0.5em;
    position: absolute;
    right: 2.6875em;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.glass-element {
    position: absolute;
    pointer-events: none;
    backdrop-filter: url(#glassDistortion) blur(12px) brightness(1.15) saturate(1.3);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0px 5px 10px rgba(3, 24, 33, 0.1);
    overflow: hidden;
}

.glass-element::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.35);
    mask: linear-gradient(337deg, rgba(255, 255, 255, 1) 0%, rgba(1, 43, 59, 0) 50%, rgba(255, 255, 255, 1) 100%);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.your-first-step__glass {
    z-index: 100;
    width: 13.5625em;
    height: 6.4375em;
    border-radius: 6.25em;
    top: 18.5em;
    left: 2.5em;
}

@media (min-width: 991px) and (max-width: 1280px) {
    .your-first-step__glass {
        top: 18.5em;        
    }
}

.your-third-step__glass {
    z-index: 100;
    width: 13.5625em;
    height: 6.4375em;
    border-radius: 6.25em;
    top: 18.5em;
    left: 2.5em;
}

.your-fourth-step__glass {
    z-index: 110;
    width: 13.5625em;
    height: 6.4375em;
    border-radius: 6.25em;
    top: 18.5em;
    left: 2.5em;
}

.your-fourth-step__glass-02 {
    z-index: 100;
    width: 13.5625em;
    height: 13.25em;
    border-radius: 1.5em;
    top: 0;
    left: 23.125em;
}

.your-first-step__quote-content {
    font-size: 1.5em;
    line-height: normal;
    letter-spacing: 0;
}

.your-first-step__quote span {
    font-size: 1.5em;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .your-first-step .container {
        padding: 4em 1.5em;
        display: flex;
        flex-direction: column;
    }

    .your-first-step__content {
        gap: 2em;
    }

    .your-first-step__quote {
        width: 100%;
        position: relative;        
        right: 0;
        top: 0;
        transform: translateY(0);
    }

    .your-first-step__quote-content {
        font-size: 1.5em;
        line-height: normal;
        letter-spacing: 0;
    }
    
    .your-first-step__quote span {
        font-size: 1.5em;
        line-height: normal;
        letter-spacing: 0;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .your-first-step__title {
        max-width: 100%;
    }

    .your-first-step__description {
        max-width: 100%;
    }

    .your-first-step__quote-content {
        font-size: 1em;
    }
    
    .your-first-step__quote span {
        font-size: 1em;
    }

    .your-first-step__glass {
        left: 6.5em;        
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .your-first-step__image {
        display: none;
    }

    .your-first-step__glass {
        top: 8.5em;
        left: 10.5em;        
    }

    .your-third-step__glass {
        top: 11.5em;
    }

    .your-fourth-step__glass {        
        top: 6.5em;
        left: 12.5em;
    }
    
    .your-fourth-step__glass-02 {        
        top: 4.375empx;
        left: -6.875em;
    }
}

/* Your Second Step Section */
.your-second-step {
    background-color: bg-white;
    padding: 2.5em;
}

.your-second-step .container {
    background: linear-gradient(to left,rgba(1, 39, 53, 0.5) 4%,rgb(1, 44, 59) 69%,rgb(0, 23, 31) 94%);
    padding: 7.875em;
    max-width: 100%;
    border-radius: 2em;
    position: relative;
    overflow: hidden;
}

.your-second-step__logo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    height: 35.9375em;
    right: -398px;
    bottom: -240px;
}

.your-second-step__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4em;
    align-items: center;
}

.your-second-step__title {
    padding-bottom: 0 !important;
}

.your-second-step__description {
    margin-top: 1.5em;
    padding-bottom: 0 !important;
}

.your-second-step__description-container {
    margin-top: 1.5em;
}

.your-second-step__text p {
    color: #FFFFFF !important;
}

.your-second-step__quote-aside {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29.75em;
    height: 30.25em;
    padding: 3.8125em;
    position: relative;
}

.your-second-step__quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5em;
    padding: 2em;
    width: 100%;
    height: auto;
    border-radius: 0.5em;
    position: relative;
    z-index: 103;
}

.your-second-step__quote-content {
    font-size: 1.125em;
    line-height: normal;
    letter-spacing: 0;
}

.your-second-step__quote span {
    font-size: 1.125em;
    line-height: normal;
    letter-spacing: 0;
}

.your-second-step__glass-01 {
    z-index: 101;
    width: 13.5625em;
    height: 15.25em;
    border-radius: 1.5em;
    top: 1.25em;
    left: 16.625em;
}

.your-second-step__glass-02 {
    z-index: 110;
    width: 12.625em;
    height: 5.5625em;
    border-radius: 1.25em;
    bottom: 2.5em;
    right: 16.625em;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .your-second-step {
        padding: 1.5em;
    }

    .your-second-step .container {
        padding: 4em 1.5em;
        display: flex;
        flex-direction: column-reverse;
    }

    .your-second-step__content {
        gap: 2em;
    }

    .your-second-step__quote-aside {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .your-second-step__quote-content {
        font-size: 1.5em;
    }
    
    .your-second-step__quote span {
        font-size: 1.5em;
    }

    .your-second-step__glass-01 {        
        top: -1.75em;
        left: 16.625em;
    }
    
    .your-second-step__glass-02 {        
        bottom: -0.5em;
        right: -2.375em;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .your-second-step__title {
        max-width: 100%;
    }

    .your-second-step__description {
        max-width: 100%;
    }

    .your-second-step__quote-content {
        font-size: 1em;
    }
    
    .your-second-step__quote span {
        font-size: 1em;
    }

    .your-second-step__glass-01 {        
        top: -5.75em;
        left: 10.625em;
    }
    
    .your-second-step__glass-02 {        
        bottom: -6.5em;
        right: 4em;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {}

/* Your Third Step Section */
.your-third-step {
  background-color: var(--bg-white);
}

.your-third-step .container {
  padding: 6em;
  max-width: 100%;
}

.your-third-step__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.3125em;
}

.your-third-step__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.your-third-step__eyebrow {
  margin-bottom: 0.5em;
}

.your-third-step__title {
  max-width: 100%;
}

.your-third-step__description {
  margin-top: 1.5em;
  max-width: 90%;
}

.your-third-step__description-container {
    margin-top: 1.5em;
}

.your-third-step__quote-aside {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 3em;
  min-width: 0;
}

.your-third-step__image {
  border-radius: 1.5em;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  width: 13.5625em;
  height: 25.5625em;
  overflow: hidden;
}

.your-third-step__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.your-third-step__quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5em;
  padding: 2.71875em 2em;
  width: 22em;
  height: auto;
  border-radius: 0.5em;
  position: absolute;
  right: 5.6875em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.your-third-step__quote-content {
    font-size: 1.125em;
    line-height: normal;
    letter-spacing: 0;
}

.your-third-step__quote span {
    font-size: 1.125em;
    line-height: normal;
    letter-spacing: 0;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .your-third-step .container {
        padding: 4em 1.5em;
        display: flex;
        flex-direction: column;
    }

    .your-third-step__content {
        gap: 2em;
    }

    .your-third-step__quote {
        width: 100%;
        position: relative;        
        right: 0;
        top: 0;
        transform: translateY(0);
    }

    .your-third-step__quote-content {
        font-size: 1.5em;
        line-height: normal;
        letter-spacing: 0;
    }
    
    .your-third-step__quote span {
        font-size: 1.5em;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .your-third-step__title {
        max-width: 100%;
    }

    .your-third-step__description {
        max-width: 100%;
    }

    .your-third-step__quote-content {
        font-size: 1em;
    }
    
    .your-third-step__quote span {
        font-size: 1em;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .your-third-step__image {
        display: none;
    }
}

/* Your Fourth Step Section */
.your-fourth-step {
    background-color: var(--bg-white);
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

.your-fourth-step .container {
    background: linear-gradient(to left,rgba(1, 39, 53, 0.5) 4%,rgb(1, 44, 59) 69%,rgb(0, 23, 31) 94%);
    padding: 6em;
    max-width: none;
    width: 100%;
    border-radius: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.your-fourth-step__logo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    height: 35.9375em;
    right: -150px;
    bottom: -300px;
}

.your-fourth-step__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.0625em;
    align-items: center;
}

.your-fourth-step__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.your-fourth-step__text p {
    color: #FFFFFF !important;
}

.your-fourth-step__quote-aside {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 3em;
    min-width: 0;
}

.your-fourth-step__image {
    flex-shrink: 0;
    position: relative;
    z-index: 0;
    width: 13.5625em;
    height: 25.5625em;
    border-radius: 1.5em;
    overflow: hidden;
}

.your-fourth-step__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.your-fourth-step__quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5em;
    padding: 2em;
    width: 22em;
    height: auto;
    border-radius: 0.5em;
    position: absolute;
    left: 5.6875em;
    top: 50%;
    transform: translateY(-50%);
    z-index: 103;
}

.your-fourth-step__quote-content {
    font-size: 1.5em;
    line-height: normal;
    letter-spacing: 0;
}

.your-fourth-step__quote span {
    font-size: 1.125em;
    line-height: normal;
    letter-spacing: 0;
}

.your-fourth-step__title {
    padding-bottom: 0 !important;
}

.your-fourth-step__description {
    margin-top: 1.5em;
    padding-bottom: 0 !important;
}

.your-fourth-step__description-container {
    margin-top: 1.5em;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .your-fourth-step .container {
        padding: 4em 1.5em;
        display: flex;
        flex-direction: column;
    }

    .your-fourth-step__content {
        gap: 2em;
    }

    .your-fourth-step__quote-aside {
        flex-direction: row-reverse;
    }

    .your-fourth-step__quote {
        width: 100%;
        position: relative;        
        left: 0;
        top: 0;
        transform: translateY(0);
    }

    .your-fourth-step__quote-content {
        font-size: 1.5em;
    }
    
    .your-fourth-step__quote span {
        font-size: 1.5em;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .your-fourth-step__title {
        max-width: 100%;
    }

    .your-fourth-step__description {
        max-width: 100%;
    }

    .your-fourth-step__quote-content {
        font-size: 1em;
    }
    
    .your-fourth-step__quote span {
        font-size: 1em;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .your-fourth-step .container {
        flex-direction: column-reverse;
    }

    .your-fourth-step__image {
        display: none;
    }
}

/* Begin your journey Section */
.begin-your-journey {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.begin-your-journey__logo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    height: 23.75em;
    right: -160px;
    bottom: -120px;
}

.begin-your-journey .container {
    padding: 6.8125em 19.25em;
    max-width: 100%;
}

.begin-your-journey__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.6875em;
    position: relative;
    z-index: 2;
    max-width: 75em;
}

.begin-your-journey__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.begin-your-journey__text small {
    margin-bottom: 1em;
}

.begin-your-journey__text p {
    margin-top: 1.5em;
    padding-bottom: 0 !important;
    max-width: 60%;
    margin-bottom: 3em;
}

.begin-your-journey__title {
    max-width: 60%;
    margin-bottom: 0 !important;
}

.begin-your-journey__description-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.begin-your-journey__cta {
    background: #011E29;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    min-height: 3.5em;
    padding: 1em 2em;
    border-radius: 1.75em;
    border: none;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
}

.begin-your-journey__cta:hover {
    opacity: 0.9;
    color: #FFFFFF;
}

.begin-your-journey__cta:focus-visible {
    outline: 0.125em solid #011E29;
    outline-offset: 0.1875em;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .begin-your-journey .container {
        padding: 4em 1.5em;
    }
    
    .begin-your-journey__title {
        max-width: 60%;
    }

    .begin-your-journey__text p {
        max-width: 100%;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .begin-your-journey__title {
        max-width: 100%;
    }
}