@font-face {
    font-family: lato-regular;
    src: url("../fonts/Lato-Regular.ttf");
}

@font-face {
    font-family: source-serif;
    src: url("../fonts/SourceSerifVariable-Roman.otf");
}

.pop-up-background {
    width: 100vw;
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 80;
    background-color: rgba(57, 57, 57, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}
.pop-up-content {
    width: 792px;
    height: 430px;
    background-color: whitesmoke;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.pop-up-image-container {
    width: fit-content;
    img {
    }
}

.pop-up-text-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    padding: 2em;
}

.pop-up-close {
    width: 24px;
    height: 24px;
    align-self: self-end;
}

.pop-up-title-container {
    font-family: source-serif, sans-serif;
}

.pop-up-title-1 {
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.pop-up-title-2 {
    color: #c2d21e;
    font-size: 65px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px; /* 92.308% */
}

.pop-up-title-3 {
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: right;
}

.pop-up-paragraph-container {
}

.pop-up-paragraph {
    font-family: lato-regular, sans-serif;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 30px;
    span {
        font-weight: 600;
    }
}

.popup_button {
    display: inline-flex;
    padding: 10px 20px 10px 28px;
    align-items: center;
    gap: 4px;
    border-radius: 3px;
    background: #c2d21e;
    color: #0d151d;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 820px) {
    .pop-up-content {
        width: 90%;
        height: 500px;
        flex-direction: column;
        padding: 1em 0;
    }

    .pop-up-image-container {
        display: none;
    }

    .pop-up-text-container {
        padding: 1em;
    }

    .pop-up-title-2 {
        font-size: 45px;
        line-height: 40px; /* 88.888% */
    }
}
