html,
body {
    height: 100%;
    margin: 0;
}

.bg-cover {
    background-image: url('/storage/assets/site/images/01.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}


@media (max-width: 480px) {
    .logo {
        max-width: 250px !important;

    }
}



.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    color: #ffff;
}

.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

h3 {
    /* font-weight: 700;
    font-size: 45.8px;
    line-height: 45.81px;
    color: #FFFFFF; */
    font-family: 'Bebas Neue', ;
    color: #FFFFFF;
}

h4 {
    color: #ffff;
    /* font-weight: 400;
    font-size: 43.42px;
    line-height: 52.1px;
    font-family: 'Lato', sans-serif; */
    font-family: 'Lato', sans-serif;
}

h4 span {
    color: #C10B13;
}

.box_position {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-box {
    background-color: #2A2A2A;
    border: 1px solid #6C6C6C;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    /* color: #007bff; */
    transition: background-color 0.3s, color 0.3s;
    padding: 20px;
    /* width: 100%; */
    aspect-ratio: 1;
    max-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.option-box:hover {
    background-color: #2A2A2A;
    /* color: #fff; */
}

.option-box img {
    width: 100%;
    height: auto;
    /* max-width: 150px; */
   /* filter: grayscale(100%);*/
}