body{
  font-family: 'Helvetica Neue','Helvetica,Arial','sans-serif'; 
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.web {
  display: flex !important;
}
.mobile {
  display: none !important;
}
.body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url('/public/images/cardsapp/background.png?1');
  background-size: cover;
  background-position: center;
  transition: 0.7s;
}
.body-div-web {
  max-width: 1000px;
  min-height: 768px;
  width: 100%;
  height: 100%;
  margin: auto;
  flex-direction: column;
}
.body-div-header {
  width: 100%;
  max-width: 1000px;
  padding: 60px 0px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
}
.body-div-logo {
  max-width: 200px;
}
.language-dropdown {
  display: flex;
  align-items: center;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  padding: 0px;
}
.language-dropdown:hover {
  background-color: transparent;
  opacity: 0.7;
}
.language-dropdown:active {
  background-color: transparent;
}
.language-dropdown:focus {
  background-color: transparent;
}
.language-text {
  margin: 0px 10px;
}
.language-dropdown-list {
  margin-top: 40px;
  /* background: rgba(255, 255, 255, 0.1); */
  background-color: #333333b1;
  border-radius: 15px;
}
.language-dropdown-list li>a {
  color: white !important;
}
.language-dropdown-list li:hover {
  background-color: transparent;
}
.language-dropdown-list li:hover>a {
  color: var(--main-color) !important;
}

.body-div-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  height: 100%;
  margin-top: 8vh;
}
.body-div-title-title {
  font-size: var(--title-font-size);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.body-div-title-title-thin {
  font-weight: 100;
}
.body-div-title-ps {
  font-size: var(--subtitle-font-size);
}
.body-div-body-left {
  flex: 1;
}
.body-div-body-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}
.body-div-phone {
  width: 85%;
  margin-top: 45px;
}
.video-outer-container {
  margin-top: 50px;
}
.video-iframe {
  max-width: 400px;
  height: 230px;
}
.submit-button {
  margin-top: 50px;
  background-color: var(--main-color);
  border-radius: 30px;
  padding: 12px 50px;
  font-size: 1.2rem;
  color: white;
  width: fit-content;
  cursor: pointer;
}
.submit-button:hover {
  background-color: var(--main-color-hover);
}
.submit-button:active {
  background-color: var(--main-color-active);
}
.shadow-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shadow {
  margin-top: 40px;
  width: 90%;
  max-width: 380px;
  height: 50px;
  background: transparent radial-gradient(closest-side at 50% 50%, #8e8e8ecf 0%, #54545400 100%) 0% 0% no-repeat padding-box;
  opacity: 0.5;
}


/* Mobile View */
@media screen and (max-width: 1023px) {
  .body {
    overflow-y: scroll;
    background-image: none;
    background-color: #000;
  }
  .body-div-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 320px;
    max-width: 425px;
    background-image: url('/public/images/cardsapp/background_mobile.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    margin: auto;
    overflow-y: scroll;
  }
  .body-div-title-title {
    font-size: calc(var(--title-font-size) - 8px);
  }
  .web {
    display: none !important;
  }
  .mobile {
    display: flex !important;
  }

  .mobile-div-header {
    width: 85%;
    margin: 30px 7.5% 0px;
    display: flex;
    align-content: center;
    justify-content: space-between;
  }
  .mobile-div-logo {
    max-width: 150px;
  }
  .mobile-title-div {
    color: white;
    width: 85%;
    margin: 10px 7.5%;
  }
  .mobile-div-title-title {
    font-size: 2.6rem;
  }
  .mobile-div-title-ps {
    font-size: 1.3rem;
  }
  .mobile-video-outer-container {
    width: 100%;
    margin-top: 5px;
  }
  .mobile-video-iframe {
    width: 100%;
    height: 25vh;
    min-height: 250px;
  }
  .mobile-div-phone {
    margin: auto;
    margin-top: 50px;
    margin-bottom: 100px;
    width: 85%;
  }
  .mobile-submit-button-outer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-submit-button {
    width: 425px;
    min-width: 320px;
    max-width: 425px;
    height: 100%;
    background-color: var(--main-color);
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  .mobile-submit-button:hover {
    background-color: var(--main-color-hover);
  }
  .mobile-submit-button:active {
    background-color: var(--main-color-active);
  }
  .mobile-submit-button:focus {
    background-color: var(--main-color-active);
  }
}

/* Large monitor */
@media screen and (min-width: 2560px) {
  .body-div-web {
    max-width: fit-content;
    width: 100%;
    height: 100%;
    margin: 0px 15vw;
    flex-direction: column;
    min-height: 1860px;
  }
  .body-div-header {
    padding-top: 200px;
    max-width: none;
    width: 70vw;
  }
  .body-div-logo {
    max-width: none;
    width: 500px;
  }
  .body-div-title-title {
    font-size: 7rem;
  }
  .body-div-title-title-thin {
    font-weight: 100;
  }
  .body-div-title-ps {
    font-size: 3.4rem;
  }
  .video-container {
    margin-top: 100px;
  }
  .video-iframe {
    max-width: 760px;
    height: 430px;
  }
  .submit-button {
    font-size: 3rem;
    padding: 24px 100px;
    border-radius: 60px;
    margin-top: 100px;
  }
  .language-text {
    /* font-size: var(--title-font-size); */
    font-size: 2.4rem;
    margin: 0px 20px;
  }
  .language-dropdown .fa {
    font-size: 2.5rem;
  }

  .shadow {
    height: 100px;
    max-width: none;
  }
}
