* {
    /* outline: 1px solid red; */
}

body {
    /* background-color: rgb(221, 221, 221); */
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* Master */
.title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: gray;
}

.scale-infinite {
    animation: scale-infinite 28s linear infinite;
}

@keyframes scale-infinite {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.hover-scale {
    transition: 0.7s;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-scale-slow {
    transition: 3s;
}

.hover-scale-slow:hover {
    transform: scale(1.1);
}

.text-shadow {
    text-shadow: 0px 0px 2px black, 0px 0px 4px black;
}

/* End Master */


/* category */
.translate-cat-name:hover {
    transform: scale(1.15) translate(0, 15px);
}

.translate-cat-name {
    transition: 4s;
}

.overlay_category {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: .1;
}

.hide-card {
    transform: translate(-65px);
    transition: 0.5s;
}

div.col.hover-scale.position-relative:hover .hide-card {
    transform: translate(0);
}

/* End Category */

/* Slider */
.carousel-item-img {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.carousel-indicators [data-bs-target] {
    background-color: white;
    height: 10px;
    width: 10px;
    border: 10px solid transparent;
    border-radius: 50%;
    transition: .5s;
}

.carousel-indicators .active {
    width: 20px;
    border-radius: 20px;
    transition: .5s;
}

.spin {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

.overlay-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0.1;
}


.img-scale {
    animation: scaleImage 12s linear forwards infinite;
}

@keyframes scaleImage {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* End Slider */

/* Start clients */
.gray{
    filter: grayscale(100);
    transition: 0.2s;
}

.gray:hover {
    filter:none;
}
/* End clients */

