header {
    background-color: transparent !important;
    position: absolute;
    z-index: 10;
}
.hero {
    position: relative;
    height: 90dvh;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(22,22,22,0.3) 0%,
        var(--grey-1) 100%
    );
    z-index: 1;
    pointer-events: none; 
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--grey-1) 0%,
        rgba(22,22,22,0.85) 10%,
        transparent 35%,
        transparent 65%,     
        rgba(22,22,22,0.9) 85%,
        var(--grey-1) 100%
    );
    z-index: -1;
    pointer-events: none;
}
.hero-main {
    position: absolute;
    align-items: flex-start;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    width: 100%;
    gap: 1.5rem;
    max-width: 1200px;
    padding: 0.5rem 2rem;
}
.hero-main > div {
    width: 100%;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-info h1 {
    font-size: 3rem;
}
.contact-ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-ul a, .contact-ul li {
    text-decoration: none;
    color: var(--white-1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}
.section-3 {
    background-color: var(--white-1);
}
.section-3-wrap {
    width: 100%;
}
.section-3-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.section-3-main h2 {
    color: var(--grey-1);
    font-family: RobotoSemiBold;
    font-size: 2.6rem;
}
.section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}
.section-grid img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    max-height: 300px;

}

