* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
}
body {
    background: url("../images/mcibackground.jpg");
    background-color: #000;
}
.header {
    background: transparent;
    padding: 24px 20px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.main-bg {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.welcome-container {
    width: 100%;
    height: calc(100dvh - 255px);
    position: relative;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-background .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hero-title {
    font-family: "Good Times", -apple-system, Roboto, Helvetica, sans-serif !important;
    font-weight: 400;
    font-size: 64px;
    color: #fff;
    text-align: center;
    text-shadow: 0px 3px 27.8px rgba(0, 0, 0, 0.42);
    -webkit-text-stroke-width: 0.3px;
    -webkit-text-stroke-color: #fff;
    letter-spacing: 3.84px;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

.login-button {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 2px solid #fff;
    box-shadow: 0px 16px 26.3px -10px rgba(0, 0, 0, 0.75);
    cursor: pointer;
    background-color: #fff;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 18px 30px -10px rgba(0, 0, 0, 0.85);
}

.login-button:active {
    transform: translateY(0);
}
@media (min-width: 1080px) {
    .welcome-container {
        height: calc(100dvh - 210px);
    }
    /* .footer-box .footer-three{
        max-width:150px;
    }
    .footer-box .footer-four{
        max-width:302px;
    }*/
}
.footer {
    background: transparent;
    padding: 10px 20px 24px 20px;
}

.footer-box-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.footer-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-box img {
    max-width: 100%;
}
@media (max-width: 1080px) {
    .footer-box {
        width: calc(100% / 4 - 12px);
    }

    .footer-box img.footer-three {
        max-width: 70%;
    }
    .footer-box img {
        height: 38px;
    }
}
@media (max-width: 991px) {
    .login-button {
        padding: 14px 28px;
    }
    .hero-title {
        font-size: 48px;
        letter-spacing: 2.88px;
    }
}

@media (max-width: 640px) {
    .hero-background .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        height: 80%;
        right: 0;
        text-align: center;
        transform: translate(-50%, -50%);
        object-fit: cover;
        margin: 0 auto;
    }
    .header {
        text-align: center;
    }
    .footer-box-section {
        gap: 20px;
        justify-content: center;
    }
    .login-button {
        padding: 12px 24px;
        font-size: 18px;
    }
    .footer-box {
        width: calc(100% / 2 - 12px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 2.16px;
        white-space: normal;
        line-height: 1.2;
    }
}

.button-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    justify-content: center !important;
}

@font-face {
    font-family: "Good Times";
    src: url("/assets/fonts/GoodTimesRg.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}
