:root {
    --black: #0c0c0c;
    --blue: #29a8e0;
}

body {
    margin: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.hero {
    min-height: 100vh;
    height: 100vh;
}

.logo-container {
    height: 90vh;
    width: 100%;
}

.logo-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.logo-overlay {
    position: absolute;
    top: 18px;
    left: 49.8%;
    transform: translateX(-50%);
    width: 43%;
    height: 90vh;
    pointer-events: none;
    opacity: 0;
    /* display: none; */
}

.interactive-group {
    transition: transform 0.5s ease-in-out;
    transform-origin: center;
    cursor: pointer;
    pointer-events: auto;
}

.interactive-group:hover {
    transform: scale(1.25);
}

.goc-text {
    padding: 48px 0 100px;
}

.goc-text h4 {
    font-weight: 500;
}

.about-img {
    height: 630px;
    width: 100%;
    object-fit: cover;
    border-radius: 40px;
    padding: 10px;
}

.social-icons-container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: bottom 0.2s, opacity 0.3s;
}

.social-icons-container.visible {
    opacity: 1;
    pointer-events: auto;
}

.social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

ul.social-icons a {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background-color: var(--black);
    color: white;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-in-out;
}

.social-icons li a:hover {
    color: var(--blue);
}

.footer {
    border-radius: 20px 20px 0 0;
    background-color: var(--black);
    padding: 20px 0 64px;
}

.copyright {
    color: white;
    font-size: 15px;
}

.copyright a {
    color: white;
    text-decoration: none;
}

.copyright a:hover {
    color: var(--blue);
}


@media (max-width: 568px) {
    .logo-container {
        height: 55vh;
    }

    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-overlay {
        top: 46px;
        left: 49.6%;
        width: 76%;
    }

    .goc-text {
        padding: 0 0 100px;
    }
}