html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

body > main {
    min-height: calc(100vh - 200px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.ms-6 {
    margin-left: 4rem;
}
.ms-7 {
    margin-left: 6rem;
}

::-webkit-scrollbar {
    display: none;
}

main {
    scrollbar-width: none;
}

/* Contact Link */
.contact-wrapper {
    width: auto;
    height: 50px;
}

.custom-link {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    padding: 10px;
}

a.custom-link.contact {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

a.custom-link.contact:hover {
    color: #ffffff;
}

a.custom-link.contact:before, a.custom-link.contact:after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

a.custom-link.contact:before{
    top: -2.5%;
    left: -1%;
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
}

a.custom-link.contact:after{
    bottom: -2.5%;
    right: -1%;
    border-bottom: 2px solid #000000;
    border-right: 2px solid #000000;
}

a.custom-link.contact:hover:before, a.custom-link.contact:hover:after{
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: -1;
    transition: all 0.3s ease;
}

.block-effect {
    font-size: calc(1.5rem + 1vw);
}

.block-reveal {
    --t: calc(var(--td) + var(--d));
    color: transparent;
    padding: 4px;
    position: relative;
    overflow: hidden;
    animation: none;
}

.block-reveal::after {
    content: '';
    width: 0%;
    height: 100%;
    padding-bottom: 4px;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bc);
    animation: revealingIn var(--td) var(--d) forwards,
               revealingOut var(--td) var(--t) forwards;
}

@keyframes revealingIn {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes revealingOut {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.headline-logo {
    width: 180px;
    height: auto;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.video-background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}
