.mk-title {
    position: absolute;
    width: 100%;
    height: 5vh;
    text-align: center;
    z-index: 999;
    font-size: 20px;
    padding-top: 5px;
}

/* MK FIRST VIDEO */
.mk-first {
    position: relative;
    height: 100vh;
}

.mk-first-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.mk-first-text {
    position: absolute;
    width: 100%;
    padding: 1vh;
    text-align: center;
    color: #fcfaf7;
    font-style: italic;
    font-size: 20px;
}

/* VEIL FLOATING */

.veil-floating {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    height: 75vh;
    z-index: 3;
    will-change: transform;
    transition: 0.3s linear;
    margin-top: 15vh;
}


.veil-anchor {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1px;
    width: 100px;
    background-color: transparent; 
    top: 15vh;
}

/* SHOP */
.shop {
    position: relative;
    padding: 10vh;
    background-color: #c9c5c4;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.veil-target {
    position: relative;
    height: 75vh;
}

/* MK SECOND VIDEO */
.mk-second {
    position: relative;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.mk-second-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.additional-desc-container {
    position: absolute;
    text-align: justify;
    width: 100%;
    height: 100%;
    opacity: 1;
    color: #fcfaf7;
    transition: all 0.8s ease;
    z-index: 2;
    padding: 10px;
}

.add-desc-left-top {
    margin-left: 3vw;
}

.add-desc-right {
    align-self: flex-end;
    margin-left: 10vw;
}

.add-desc-left-bottom {
    margin-left: 10vw;
}
.high-control {}

.text-box {
    padding: 2vh;
    max-width: 600px;
}

.additional-desc-container-phone {
    display: none;
}

/* MK NEWSLETTER SECTION */
.mk-newsletter {
    width: 100%;
    min-height: 5vh;
    color: #1d100b;
    background-color: #c9c5c4;
}
.mk-space {
    width: 100%;
    min-height: 5vh;
    background-color: #c9c5c4;
}

.newsletter-content {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
}

.newsletter-content input[type="email"] {
        border: none;
        border-bottom: 1px solid #1d100b;
        outline: none;
        font-size: 18px;
        margin: 0 5px;
        background: transparent;
        width: 250px;
}

.newsletter-content input[type="email"]::placeholder {
    color: #aaa;
    text-align: center;
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


/* MK THIRD VIDEO */
.mk-third {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.mk-top {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 2;
}

.mk-bottom {
    position: absolute;
    top: 50%;
    right: 15%;
    z-index: 2;
}

.mk-third-video {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

.video-background {
    position: relative;
    height: 100%;
    display: flex;
}

@media (max-width: 991px) {
    .mk-title{
        display: none;
    }

    .mk-third {
        display: flex;
        flex-direction: column;
    }

    .mk-third-video {
        flex: 1;
    }

    .mk-top {
        text-align: center;
        padding: 20px;
        top: 5%;
        left: 0;
        width: 100%;
    }
    
    .mk-bottom {
        text-align: center;
        padding: 20px;
        top: 80%;
        right: 0;
        width: 100%;
    }

    .additional-desc-container {
        display: none;
    }
    
    .additional-desc-container-phone {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 20px 0;
    }
    
    .text-box {
        padding: 10px;
        width: 75vw;
    }
}

@media (max-width: 768px) {
    .shop {
        flex-direction: column;
    }

}

@media (max-width: 420px) {
    
}

@media (max-height: 450px) {
    .high-control {
        margin-top: -10vh;
    }
}

