.promo-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.promo-modal-body {
    z-index: 100;
    height: 90%;
    position: relative;
    margin: 0 1rem;
}

.promo-modal-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.promo-modal-close-btn {
    position: absolute;
    padding: .5rem 1rem;
    font-size: 30px;
    right: 0px;
    cursor: pointer;
    z-index: 100;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0 0 0 10px;
    text-decoration: underline;
}

.promo-modal-contact {
    position: absolute;
    bottom: 3rem;
    left: 0px;
    width: 100%;
    cursor: pointer;
    z-index: 100;
    color: #fff;
}

.promo-modal-contact-btn {
    padding: .5rem 1rem;
    background-color: #a40d2d;
    width: fit-content;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.promo-modal-contact-btn p {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.fade-in {
    animation: fadeInImg 0.5s ease-in-out;
}

@keyframes fadeInImg {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-out {
    animation: fadeOutImg 0.5s ease-in-out;
}

@keyframes fadeOutImg {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

.promo-modal-hidden {
    display: none;
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}