* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 3px;
}
  
::-webkit-scrollbar-track {
    background: #D9D9D9;
}
  
::-webkit-scrollbar-thumb {
    background: #1C1C1C;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #1C1C1C;
}

.intro-sect {
    position: relative;
    height: 100vh;
    background-color: rgba(217, 217, 217, 0.9);
    z-index: 2;
}

.reach-out {
    width: 100%;
    display: flex;
    justify-content: end;
}

.reach-out .button {
    margin: 15px;
    width: 160px;
    height: 40px;
    position: relative;
    background-color: #1C1C1C;
    cursor: pointer;
    transition: 0.5s all;
}

.reach-out .button:hover {
    transform: scale(1.05);
}

.reach-out span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
    color: #D9D9D9;
}

.logo-container {
    overflow: hidden;
    position: relative;
}

.logo-sect {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
    padding: 8px 3vw;
    border: 4px solid #1C1C1C;
}

.logo-sect h1 {
    font-weight: 700;
    font-size: 8.3vw;
    letter-spacing: 2.3vw;
    line-height: 8.3vw;
    margin: 0px;
    color: #1C1C1C;
    margin-right: -2.3vw;
}

.logo-sect.alt-logo {
    position: absolute;
    border-color: #D9D9D9;
    z-index: 2;
    top: -861px;
}

.logo-sect.alt-logo h1 {
    color: #D9D9D9;
}

.video-sect {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
}

.video-sect video {
    object-fit: cover;
}

.free-scroll, .footer-sect {
    min-height: 100vh;
}

.footer-sect {
    background-color: #1C1C1C;
    z-index: 3;
    position: relative;
}

.marquee {
    padding: 60px 0;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.wrapper {
    max-width: 100%;
    overflow: hidden;
}

.marquee p {
    display: inline-block;
}

.marquee .text {
    display: inline-block;
    padding-right: 60px;
    font-size: 40px;
    font-weight: 700;
    color: #D9D9D9;
    text-shadow: -1px -1px 0 #D9D9D9, 1px -1px 0 #D9D9D9, -1px 1px 0 #D9D9D9, 1px 1px 0 #D9D9D9;
    font-style: italic;
}

.not-filled {
    color: #1C1C1C !important;
}

.dot {
    display: inline-block;
    margin-left: 60px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: 1px solid #D9D9D9;
}

.not-filled-dot {
    background-color: #1C1C1C !important;
}

.end-sect {
    padding: 0 10px 50px;
    text-align: center;
    color: #D9D9D9;
    min-height: 70vh;
    position: relative;
}

.end-sect h2 {
    font-weight: 300;
    font-size: 30px;
    padding-bottom: 30px;
}

.centered {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
}

.email {
    word-break: break-all;
}

@media only screen and (min-width: 768px) {
    .logo-sect {
        padding: 8px 20px;
    }

    .logo-sect h1 {
        font-size: 77px;
        line-height: 77px;
        letter-spacing: 15px;
        margin-right: -15px;
    }

    .end-sect h2 {
        font-size: 50px;
        padding-bottom: 50px;
    }
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}