/* 300 */
@font-face {
    font-family: "Light";
    src: url("./assets/fonts/ICPangeaText-LightWeb.woff2");
}

/* 400 */
@font-face {
    font-family: "Regular";
    src: url("./assets/fonts/ICPangeaText-RegularWeb.woff2");
}

/* 500 */
@font-face {
    font-family: "Medium";
    src: url("./assets/fonts/ICPangeaText-MediumWeb.woff2");
}

/* 600 */
@font-face {
    font-family: "SemiBold";
    src: url("./assets/fonts/ICPangeaText-SemiBoldWeb.woff2");
}

:root {
    --pink: #ff95b5;
    --blue: #2020ba;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Regular';
    color: white;
    line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
    line-height: 1;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero {
    background-image: url(./assets/images/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    aspect-ratio: 640 / 500;
    position: relative;
}

.hero .content {
    display: flex;
    flex-direction: column;
    padding: 7.97vw 9.84vw;
    gap: 8.59vw;
}

.arlo {
    width: 4vw;
    object-fit: contain;
    position: absolute;
    left: 2%;
    top: 45%;
}

.logo-top {
    width: 54vw;
    margin-inline: auto;
}

.hero-text {
    font-size: 7.81vw;
    font-family: 'Medium';
    text-align: center;
}

.hero-text-2 {
    font-size: 8.5vw;
    font-family: 'Medium';
    text-align: center;
}

.bonus {
    width: 20vw;
    position: absolute;
    bottom: -4%;
    left: 5%;
}

.event-banner {
    background-color: var(--pink);
}

.event-banner .content {
    padding: 4.22vw 9.84vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
}

.event-text {
    font-size: 10.2vw;
    font-family: 'Medium';
}

.israstart {
    width: 50%;
}

.event-date {
    font-size: 5vw;
    font-family: 'Regular';
}

.event-date-text {
    font-size: 4vw;
    font-family: 'Regular';
}

.details-button {
    border: none;
    width: 100%;
    background-color: var(--blue);
    padding: 4vw 0;
    justify-content: center;
    color: white;
    font-family: "Medium";
    font-size: 5.16vw;
    cursor: pointer;
}

.experts-intro {
    background-image: url('./assets/images/diamond-bg-mob.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 640 / 875;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.experts-intro .content {
    padding: 11.72vw 9.84vw 0 9.84vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.expert-title {
    font-size: 6vw;
    color: black;
    font-family: 'Regular';
}

.expert-info-text {
    font-size: 6vw;
    color: black;
    font-family: 'Regular';
    line-height: 1.2;
}

.tools-list {
    list-style: none;
    padding-left: 0;
}

.tools-list li {
    position: relative;
    margin: 2.5vw;
    color: black;
    font-size: 4.5vw;
    padding-right: 7vw;
}

.tools-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6%;
    width: 20px;
    height: 20px;
    background-image: url(./assets/images/isracard-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.tools-text {
    font-size: 5vw;
    color: black
}

.two-person {
    width: 78vw;
}

.form-container {
    background-color: #101820;
}

form {
    background-color: #101820;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 9.69vw 12.97vw;
    gap: 3.13vw;
}

.form-title {
    font-size: 7vw;
    font-family: 'SemiBold';
}

form input {
    font-size: 5vw;
    font-family: 'Regular';
    padding: 3.75vw 4.38vw 3.75vw 0;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    text-align: right;
}

form input::placeholder {
    color: white;
}

form button {
    border: none;
    border-radius: 2.3vw;
    background-color: var(--blue);
    color: white;
    padding: 2.13vw 4.97vw;
    width: fit-content;
    align-self: center;
    font-size: 4.84vw;
    font-family: 'SemiBold';
    cursor: pointer;
}

form button[type="submit"] {
    animation: blink 1.3s ease-in-out infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    /* Light fade */
    100% {
        opacity: 1;
    }
}

.spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 0.15em solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5em;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

form button[type="submit"].loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.checkbox-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2vw;
}

input[type="checkbox"] {
    width: 4vw;
    height: 4vw;
    align-self: center;
}

.reminder-text {
    font-family: 'Regular';
    font-size: 3.5vw;
    text-align: right;
}

.reminder-text>a {
    color: inherit;
    text-decoration-color: var(--blue);
}

.reminder-text-2 {
    font-family: 'Regular';
    font-size: 3.5vw;
    text-align: right;
    padding: 2vw;
    margin: auto;
}

.reminder-button {
    padding: 2vw 1.4vw;
    font-size: 4.1vw;
    background-color: transparent;
    color: white;
    text-decoration: underline;
}

.testimonials-1,
.testimonials-2,
.testimonials-3 {
    background-color: var(--pink);
    display: flex;
    flex-direction: row;
    padding: 5.16vw 10.16vw;
    position: relative;
}

.testimonials-1 {
    padding-top: 14%;
}

.testimonials-2 {
    background-image: url('./assets/images/testimonial-bg-mob.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 640 / 400;
    overflow-x: hidden;
}

.get-to-know {
    font-size: 5.94vw;
    font-family: 'Regular';
    color: white;
    position: absolute;
    top: 5%;
    right: 18%;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    min-width: 45vw;
}

.testimonial-image {
    width: 28.75vw;
    object-fit: contain;
}

.testimonial-title {
    font-size: 3.5vw;
    font-family: 'SemiBold';
    color: black;
}

.testimonial-text {
    font-family: 'Regular';
    font-size: 2.6vw;
    padding-left: 10vw;
}

.testimonial-name {
    font-family: 'Light';
    font-size: 2.8vw;
}

.testimonials-2 {
    color: black;
}

footer {
    background-color: var(--pink);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5vw 0;
    gap: 6vw;
}

footer button {
    padding: 2vw 4.7vw;
    background-color: white;
    font-family: 'SemiBold';
    font-size: 4.84vw;
    border: none;
    border-radius: 2vw;
    color: black;
}

.logo-bottom {
    width: 68.44vw;
    object-fit: contain;
}

.info-text {
    font-family: 'Regular';
    font-size: 2.6vw;
    text-align: center;
    padding-inline: 5vw;
    line-height: 1.2;
}

/* Success Popup */
.success-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('./assets/images/success-bg.jpg') center/cover no-repeat;
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.success-content {
    position: relative;
    padding: 37vw 5vw 5vw 5vw;
    border-radius: 2vw;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    width: 90vw;
    gap: 2vw;
}

.stars-left {
    position: absolute;
    top: 21vw;
    left: 8vw;
    width: 14vw;
}

.stars-right {
    position: absolute;
    top: 6vw;
    right: 7vw;
    width: 14vw;
    transform: rotateY(180deg);
}

.megaphone {
    position: absolute;
    top: 9vw;
    right: 24vw;
    width: 30vw;
}

.logo-thanks {
    width: 33vw;
    margin: auto;
}

.success-message-title {
    font-size: 5vw;
    font-family: 'SemiBold';
}

.success-message-text {
    font-size: 3.8vw;
    font-family: 'Regular';
}

.close-popup {
    position: absolute;
    top: 1vw;
    right: 1vw;
    font-size: 6vw;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile {
    display: inline;
}

.desktop {
    display: none;
}

@media (min-width: 768px) {
    .hero {
        aspect-ratio: 1920 / 520;
    }

    .hero .content {
        padding: 3.59vw 6vw;
        gap: 6.25vw;
    }

    .logo-top {
        width: 21vw;
        margin: unset;
    }

    .hero-text {
        font-size: 2.6vw;
        text-align: unset;
    }

    .hero-text-2 {
        font-size: 3.5vw;
        text-align: unset;
    }

    .arlo {
        width: 1.5vw;
        left: 3%;
        top: 30%;
    }

    .bonus {
        width: 10vw;
        inset: 0;
        top: 12%;
        right: 5%;
    }

    .event-banner .content {
        padding: 2.76vw 6vw 2.76vw 40vw;
        gap: 1vw;
        align-items: unset;
        text-align: right;
    }

    .event-text {
        font-size: 3vw;
    }

    .event-date {
        font-size: 2.25vw;
    }

    .event-date-text {
        font-size: 1.5vw;
    }

    .experts-intro {
        background-image: url('./assets/images/diamond-bg-desk.jpg');
        aspect-ratio: 1920 / 635;
        position: relative;
    }

    .experts-intro .content {
        padding: 2.76vw 6vw 2.76vw 40vw;
        gap: 1vw;
        text-align: right;
    }

    .expert-title {
        font-size: 2vw;
    }

    .expert-info-text {
        font-size: 1.7vw;
    }

    .tools-list li {
        font-size: 1.7vw;
        margin: 1vw;
        padding-right: 3.5vw;
    }

    .tools-text {
        font-size: 1.7vw;
    }

    .two-person {
        width: 30vw;
        position: absolute;
        bottom: 0;
        left: 38%;
    }

    /** FORM Styles **/
    .form-container {
        padding: unset;
        position: fixed;
        left: 16vw;
        top: 2vw;
        z-index: 1000;
        max-width: 20.99vw;
        max-height: 96vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    form {
        padding: 2.14vw 2.92vw;
        gap: 1vw;
    }

    .form-title {
        font-size: 2.14vw;
    }

    form input {
        font-size: 1.15vw;
        padding: 0.83vw 1vw 0.83vw 0;
    }

    form button {
        border-radius: 0.8vw;
        padding: 0.68vw 1vw;
        font-size: 1.09vw;
    }

    .checkbox-container {
        gap: 0.5vw;
    }

    input[type="checkbox"] {
        width: 1vw;
        height: 1vw;
    }

    .reminder-text {
        font-size: 0.79vw;
    }

    .reminder-text-2 {
        font-size: 1.5vw;
    }

    .reminder-button {
        padding: 0.5vw 0.5vw;
        font-size: 0.95vw;
    }

    /** END FORM STYLES **/

    .testimonials-1,
    .testimonials-2,
    .testimonials-3 {
        padding: 4.04vw 8vw;
    }

    .testimonials-1 {
        padding-top: 7%;
    }

    .testimonials-2 {
        background-image: url('./assets/images/testimonial-bg-desk.jpg');
        aspect-ratio: 1920 / 600;
    }

    .get-to-know {
        font-size: 3.07vw;
        right: unset;
    }

    .card {
        gap: 1vw;
        min-width: unset;
        width: 24vw;
    }

    .testimonial-image {
        width: 13.18vw;
    }

    .testimonial-title {
        font-size: 1.7vw;
    }

    .testimonial-text {
        font-size: 1.2vw;
        padding-left: 8vw;
    }

    .testimonial-name {
        font-size: 1.35vw;
    }

    footer {
        padding-right: 4vw;
        gap: 2vw;
        align-items: flex-start;
    }

    footer button {
        padding: 0.6vw 1.4vw;
        font-size: 1.61vw;
        border-radius: 0.7vw;
        cursor: pointer;
    }

    .logo-bottom {
        width: 22.6vw;
    }

    .info-text {
        font-size: 1.2vw;
        padding: 0 0 0 45vw;
        text-align: unset;
    }

    .success-content {
        padding: 33% 3% 3% 3%;
        border-radius: 1%;
        gap: 1vw;
        width: 78vw;
    }

    .stars-left {
        top: 35%;
        left: 11%;
        width: 11%;
    }

    .stars-right {
        top: 12%;
        right: 10%;
        width: 14%;
    }

    .megaphone {
        top: 13%;
        right: 30%;
        width: 28%;
    }

    .logo-thanks {
        width: 27%;
    }

    .success-message-title {
        font-size: 2.8vw;
    }

    .success-message-text {
        font-size: 2.3vw;
    }

    .close-popup {
        font-size: 4vw;
    }

    .mobile {
        display: none;
    }

    .desktop {
        display: inline;
    }
}

/* Colors */
.pink {
    color: var(--pink);
}

.blue {
    color: var(--blue);
}