body {
    cursor: none !important;
    background-color: #1f242d;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

video#myVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin-top: 17%;
    position: relative;
    display: flex;
    gap: 70px;
    z-index: 1;
    justify-content: center;
}

.container .card-partners {
    position: relative;
    width: 200px;
    height: 300px;
}

.container .card-partners .imgBx {
    position: absolute;
    inset: 0;
    background: #222;
    border-radius: 20px;
}

.container .card-partners .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    border-radius: 20px;
}

.card-partners h2 {
    position: absolute;
    bottom: 10px;
    left: 70%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.27em;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #113b6e;
    width: 80%;
    text-align: center;
    padding: 5px 20px;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
}

.card-partners:hover h2 {
    bottom: 30px;
    opacity: 1;
}

/* LAPTOP */
@media (min-width: 1367px) and (max-width: 1910px) {
    .container {
        gap: 15px;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1366px) {
    .container {
        margin-top: 8%;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 25px;
        z-index: 1;
        justify-content: center;
    }

    .container .card-partners {
        position: relative;
        width: 200px;
        height: 270px;
    }

    .container .card-partners .imgBx img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
        border-radius: 20px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .container {
        margin-top: 17%;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 25px;
        z-index: 1;
        justify-content: center;
    }
    .container .card-partners {
        position: relative;
        width: 120px;
        height: 300px;
    }

    .container .card-partners .imgBx img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
        border-radius: 20px;
    }
}
