/* ΚΩΔΙΚΑ ΓΙΑ ΤΟ _Public.cshtml  */
body.landing-page {
  background-color: white;
  overflow-x: hidden;
}
.index-content {
  display: flex;
  flex-direction: column;
}
.landing-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.landing-page-sidebar {
  background-image: url(../images/public/landing-bg-2.jpg);
  background-position: center;
  background-size: cover;
  min-height: 100dvh;
  position: relative;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
}
.landing-page-sidebar-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.landing-page-sidebar .copyright {
  position: absolute;
  bottom: 7rem;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
}
.landing-page-content {
  padding: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  max-width: 840px;
  margin: auto;
  height: 100%;
  width: 100%;
}
.landing-page-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer-container img {
  object-fit: contain;
  max-height: 55px;
}

.landing-page-main h1 {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -2%;
  line-height: 50px;
  margin-bottom: 3rem;
}
.landing-page-main p {
  color: #555555;
  line-height: 26px;
  font-weight: 500;
}
.landing-page-main ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.call-to-action-btns {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
}
.call-to-action-btns .btn {
  padding: 3rem 4rem;
  font-weight: 800;
  font-size: 1.6rem;
}

.btn--secondary-accent-alt,
.btn.dx-button--secondary-accent-alt {
  box-shadow: none;
  color: #1245e0;
  background-color: #f2f5fa;
}
.btn--secondary-accent-alt:hover,
.btn.dx-button--secondary-accent-alt:hover {
  color: #1245e0;
  background-color: #edeff2;
}
.landing-page-sidebar__learn {
  margin-top: 7rem;
}
.landing-page-sidebar__learn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 7rem;
  background: rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: white;
  font-size: 1.4rem;
  font-weight: 400;
}
.landing-page-sidebar__learn a span {
  font-size: 2.4rem;
  font-weight: bold;
}
.landing-page-footer .copyright {
  display: none;
}
.landing-page-logo img {
  min-width: 200px;
}
@media only screen and (max-width: 1440px) {
  .landing-page-sidebar__logo img {
    max-width: 320px;
  }
  .footer-container img {
    max-width: 150px;
  }
}
@media only screen and (max-width: 1200px) {
  .landing-page-logo img {
    min-width: 100px;
  }
  .landing-page-sidebar {
    display: none;
  }
  .landing-page-wrapper {
    grid-template-columns: 1fr;
  }
  .landing-page-content {
    min-height: 100dvh;
    padding: 0rem;
    max-width: 100%;
  }

  .call-to-action-btns {
    flex-direction: column;
    margin-bottom: 4rem;
  }
  .landing-page-header {
    margin-bottom: 4rem;
  }
  .landing-page-footer .copyright {
    display: block;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .landing-page-header {
    background-color: #1245e0;
    margin-bottom: 0;
  }
  .landing-page-main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .landing-page-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .landing-page-logo img {
    filter: brightness(0) invert(1);
  }
}
@media only screen and (max-width: 768px) {
  .index-content .content-wrapper {
    order: 2;
  }
  .call-to-action-btns {
    margin-top: 0;
  }
  .call-to-action-btns .btn--secondary-accent {
    order: 2;
  }
}
@media only screen and (max-width: 550px) {
  .footer-container {
    margin-top: 1rem;
    flex-direction: column;
  }
  .footer-container img {
    max-width: 250px;
  }
}

/* participation form  */
.participation-form .form-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.participation-form .form-inputs .form-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.participation-form .form-inputs .form-item input,
.participation-form .form-inputs .form-item select {
  border: 1px solid #d4e1f0;
  border-radius: 7px;
  padding: 10px 20px;
}
.participation-form .form-inputs .form-item select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('../images/icons/select.svg');
  background-repeat: no-repeat;
  background-position: right 1.8rem center;
  background-size: 1rem;
}

.participation-form .form-inputs .form-item label {
  font-size: 1.4rem;
  font-weight: 500;
  color: #5a70b4;
}
.participation-form .form-agreements {
  margin-bottom: 4rem;
}
.participation-form .form-agreements .form-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.participation-form .form-agreements .form-item label {
  color: #7d7d7d;
  font-size: 1.3rem;
}

.participation-form .form-agreements .form-item label span {
  color: #1245e0;
  text-decoration: underline;
  cursor: pointer;
}
.participation-form button {
  padding: 1rem 3rem;
  font-weight: 800;
  font-size: 1.4rem;
  width: 100%;
  max-width: 450px;
}

/* POPUP CODE  */

.popup-right {
    transform: translateX(100%);
    position: fixed;
    right: 0;
    max-height: 100dvh;
    /* background-color: black; */
    top: 0;
    width: 50dvw;
    height: 100dvh;
    z-index: 2;
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
    background: rgb(255 255 255 / 90%);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    transition: transform 0.5s ease-out;
    border: 2px solid #0000001c;
}

    .popup-right.js_active {
        transform: translateX(0);
        transition: transform 0.4s ease-out;
    }

.popup-right-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1.5%;
    line-height: 1.4;
    max-width: 600px;
    text-align: center;

    @media (max-width: 768px) {
        font-size: 2rem;
        max-width: 80%;
        margin-inline: auto;
    }
}

.popup-right-content {
    font-size: 14px;
    max-height: calc(100% - 17.5rem);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    margin: auto;
    padding-inline: 5rem;
    padding-bottom: 3.5rem;

    section {
        margin-bottom: 30px;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    h3 {
        font-size: 1.6rem;
        margin: 12px 0 10px;
    }

    p {
        margin-bottom: 10px;
    }

    ul {
        padding-left: 25px;
        margin: 10px 0 15px 10px;
    }

    li {
        margin-bottom: 4px;
    }

    strong {
        color: #1e40af;
    }

    a {
        color: #2563eb;
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }

    @media (max-width: 768px) {
        font-size: 15px;

        h1 {
            font-size: 2.4rem;
        }

        h2 {
            font-size: 1.6rem;
        }
    }
}

.close-popup {
    position: absolute;
    left: 3rem;
    top: 3rem;
    font-size: 2rem;
    color: black;
    cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .popup-right {
    width: 100dvw;
  }
}

@media only screen and (max-width: 661px) {
  .participation-form .form-inputs {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 1200px) {
  .landing-page-sidebar__logo img {
    min-width: 320px;
  }
}
