@import url('https://fonts.googleapis.com/css2?family=Borel&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"');

:root {
  --color-primary: #1a60d3;
  --color-secondary: #019f9b;
  --color-text: #fff;
  --color-text-header: #2800FF;
  --bg-color: #019f9b;
  --container-bg: rgba(255,255,255,0.2);
  --border-color: #444;
  --button-hover: #3c3c3c;
}

* {
  box-sizing: border-box;
}

.hide {
  display: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--color-text);
  margin: 0;
  padding: 85vw 20px 50px 20px;
  background-image: linear-gradient(to bottom, var(--color-primary), var(--color-primary));
  background-color: var(--color-primary);
}

body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background-image: linear-gradient(to bottom, var(--color-secondary), var(--color-primary));
}

header {
  position: fixed;
  top: 20px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 1vw;
  width: -webkit-fill-available;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

h2 {
  font-weight: 100;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

h3 {
  font-weight: 100;
  font-size: calc(2vw + 1rem);
  margin-bottom: 0.9rem;
  color: var(--color-text);
  position: sticky;
  top: 82vw;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  z-index: 1;
  backdrop-filter: blur(0.4px);
  padding: 10px 0;
}

h4 {
  font-weight: 100;
  font-size: calc(2vw + 1rem);
  margin-bottom: 0.9rem;
  color: var(--color-text);
  position: relative;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  padding: 10px 0;
}

p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

footer p {
  margin: 0;
}

button, select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border-radius: 24px;
  border: none;
  outline: none;
  padding: 12px 26px;
  min-width: 100px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.2);
}
[class*="ApplePayButton"] {
  -webkit-appearance: -apple-pay-button !important;
  -apple-pay-button-type: subscribe !important;
  -apple-pay-button-style: black !important;
}

button {
  background-image: linear-gradient(to bottom, var(--color-secondary), var(--color-secondary));
  color: #fff;
  width: 100%;
}

select {
  font-size: 17px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  letter-spacing: 0.8px;
  border-radius: 24px;
  padding-right: 48px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='black' d='M31 192l129 128 129-128c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-144 144c-9.4 9.4-24.6 9.4-33.9 0l-144-144c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z'/%3E%3C/svg%3E");
}

select[disabled],button[disabled]{ 
  opacity:.5; 
  color: lightgray;
  cursor:not-allowed; 
}

video {
    width: 200%;
    position: fixed;
    z-index: -1;
    top: 0;
    left: -50vw;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    -webkit-pointer-events: none;
    opacity: 0.2;
}

video::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background-image: linear-gradient(to bottom, var(--color-secondary), var(--color-secondary));
}

.chosen-number {
    border-radius: 12px;
    text-align: center;
    text-align: -webkit-center;
    font-weight: 400;
    font-size: 23px;
    background-color: var(--color-secondary);
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='white' d='M31 192l129 128 129-128c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-144 144c-9.4 9.4-24.6 9.4-33.9 0l-144-144c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z'/%3E%3C/svg%3E");
    margin: 16px 0 10px 0;
  }

.share-button {
  background-color: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.share-button:active, .share-button:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.express-checkout:not(:empty)::after {
  content: "------------------ or ------------------";
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    opacity: 0.4;
    padding: 10px 0 14px 0;
}

.bold {
  font-weight: 500;
}

.brand {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 0;
}

.terms-info {
  font-size: 13px;
  text-align: center;
  position: sticky;
  opacity: 0.8;
}

.logo {
  background: url(/assets/logo-b779c9477cacfa09b6b8cf55d9554d9f828119a4b18ac4fba782bd9f3aa95a82.png) no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.logotype {
  font-family: 'Borel', sans-serif;
  height: 40px;
  margin: 0;
  padding: 0;
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.logotype sup {
  font-size: 16px;
  opacity: 0.6;
}

.apple-login-btn {
    height: 54px;
    border-radius: 50px;
    background-color: #fff;
    color: #000;
    background-image: none;
    width: auto;
}

.apple-login-btn:hover {
    height: 58px;
    border-radius: 50px;
    background-color: #000;
    color: #fff;
}

.join-btn {
  position: absolute;
  right: 0;
}

.sections-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 80px;
  padding-bottom: 600px;
  pointer-events: none;
  -webkit-pointer-events: none;
}

.sections-container section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section-img {
    border-radius: 26px;
    width: 100%;
    height: 690px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    position: sticky;
    box-shadow: 0 1px 18px rgba(0,0,0,0.2);
}

.section-img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 690px;
    border-radius: 20px;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.section-img.section-1{
    background-image: url(/assets/homepage/section-1-b9ebbfd24b0afcf7e68f79ff4fec18110824d1e95091d4c9156e15af863106c6.png);
}

.section-img.section-2{
    background-image: url(/assets/homepage/section-2-14ff57917a7729fbde48945b19d97cb9655ac58fb176a9bb726fa9accc3590ff.png);
}

.section-img.section-3{
    background-image: url(/assets/homepage/section-3-71e5d2bdfed5feced880712e0184cb708617e95391708bcbfd5a2d1a5a9cee98.png);
}

.section-img.section-4{
    background-image: url(/assets/homepage/section-4-7e6a82d67914d51985b1ed66c9a07915ac8681ed588ed91fddf2b7ad3e28392e.png);
}






.auth-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: fixed;
    top: 55vw;
    width: 100%;
    left: 0;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-image: linear-gradient(to top, var(--color-primary), transparent);
  padding: 0 10px 16px 10px;
}
.copyright {
    margin: 0;
}
a, .social a {
    color: #fff;
    font-size: 30px;
    margin: 0 5px;
}

@media screen and (min-width: 680px) {
    
    body {
       padding: 42vw 30px 50px 30px !important;
    }
    
    video {
        width: 100%;
        left: 0;
        top: -2vw;
    }

    h3 {
      font-size: calc(2vw + 0.9rem);
      padding-bottom: 20px;
      position: inherit;
    }

    .auth-buttons-container {
        top: 24vw;
    }

    .sections-container {
        flex-direction: row;
        position: relative;
        bottom: 4vw;
        padding-bottom: 420px;
    }

    .section-img {
        position: relative;
        min-width: 50%;
        background-position: center bottom;
       
    }
}

.logo {
  background-image: url(/assets/logo-b779c9477cacfa09b6b8cf55d9554d9f828119a4b18ac4fba782bd9f3aa95a82.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 50px;
  min-height: 50px;
  margin: 10px;
}

.background {
  background-image: url(/assets/homepage/background-07479bc4fbee9f6d13d7592e82605892974c6c1a6177ef26fbbc77e83f03f5eb.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50vh;
}
/*
 * Homepage specific styles


 */
