@font-face {
    font-family: 'Neue Regrade';
    src: url('../font/Neue-Regrade-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Neue Regrade', sans-serif;
}
.lazy-video {
    opacity: 0;
    transition: opacity 1s ease;
}

.lazy-video.loaded {
    opacity: 1;
}

.destella {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
   
}

.destella-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.destella-video.loaded {
    opacity: 1;

}
.destella-header{
    position: absolute;
    top: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    height: 10%;
    padding: 20px;
}

.destella-header-mail{
    width: auto;
    cursor: pointer;

}

.destella-header-mail__icon {
    width: 50px;
    cursor: pointer;
}

.destella-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 25px;
}

.destella-body-logo {
    height: 50px;
}

.destella-body-span {
    color: rgb(255,234,71);
    font-size: 15px;
    text-align: center;
    padding: 0 20px;
}

.favicon{
    width: 500px;
}
    
@media (max-width: 467px) {
    .destella-body-span {
            font-size: 15px;
        }
.destella-header-mail__icon {
    width: 40px;
}
}