/* Theme name: LA GARRA NEW
 Theme URI: wordpress.org
 Author URI: cassiosironi.com 
 Description: tema lagarra
 Version: 1.0 */

body,
html {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Monaco', sans-serif;
}

p,
a {
    font-size: 14px;
    color: #181818;
    text-decoration: none;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    color: #fff;

}

.logo {
    max-width: 100px;
}

.scroll-toggle {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.container {
    background: #f5f5f5;
    position: relative;
    bottom: -20px;
}

section.content {
    height: 20vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

@media (max-width: 992px) {
    section.content {
        height: 40vh;
        align-items: flex-start;
    }

    .logo {
        max-width: 60px;
    }

    .overlay,
    .video-background {
        height: 60vh;
    }

    .video-fallback {
        height: 60vh;
        width: 100%;
        object-fit: cover;

    }

    .col-content {
        transform: scale(.8);
        margin: 0px auto !important;
    }

    p {
        margin-bottom: 5px !important;
    }
}

@media (min-width: 993px) {
    body {
        overflow: hidden;
    }
}