img.logo {
    /* (A) RESPONSIVE LOGO */
    width: 100%;
    height: auto;

    /* (B) RECOMMENDED - LIMIT MAXIMUM WIDTH */
    max-width: 200px;
}

/* Hero Video Slider Home */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero-text {
    text-transform: uppercase;
    color: white;
    line-height: 56px;
    font-size: 46px;
    font-weight: 600;
}

@media (max-width: 650px) {
    .hero-text {
        font-size: 32px;
        font-weight: 300;
        line-height: 38px;
        width: 260px;
    }
}

@media (min-width: 992px) {
    .hide-contact {
        display: none !important;
    }
}





/* Categories Box */
.container-cat {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%;
}

.box-cat {
    flex: 1 1 300px;
    margin: 0px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.box-1 {
    background-image: url('../../custom/images/girl-cat.jpg');
}

.box-2 {
    background-image: url('../../custom/images/UNIl-cat.jpg');
}

.offer_bg {
    background-image: url('../../custom/images/crossfit.jpg');

}




/* Pre loader */

#preloader {
    background-color: #131318;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader {
    border: 8px solid #bd2121;
    border-radius: 50%;
    border-top: 8px solid #912222;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}