.badge {
    color: black;
    background: rgb(181, 218, 255);
}

.menu {
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 550;
}

.menu:hover {
    border-bottom: royalblue 2px solid;
    cursor: pointer;
}

.menu.active {
    border-bottom: rgb(4, 239, 220) 2px solid;
}

.city-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    cursor: pointer !important;
}

.filterDiv {
    float: left;
    display: none;
    margin-top: 10px;
    margin-bottom: 10px;
    /* Hidden by default */
}

.img_content_box {
    position: absolute;
    z-index: 101;
    top: 70%;
    left: 2px;
    text-align: left;
    width: 100%;
    transform: translate(0, -50.5%);
    border-radius: 2px;
    padding-left: 20px;
    color: white;
    cursor: pointer;
}

.show {
    display: block;
}

/* Style the buttons */
.btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
}

.btn:hover {
    background-color: #ddd;
}

.btn.active {
    background-color: #666;
    color: white;
}

#myBtnContainer {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.testimonial-heading {
    display: flex;
    justify-content: center;
}

/* .testimonial {
    margin-top: 100px;
} */

.carousel-wrapper {
    height: 300px;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    justify-content: center;
    background-position: center;
    height: 700px;
    /* margin-bottom: 150px; */
    background-image: url("../image/portfolio/testimonial.png");
}

.t-title {
    display: flex;
    justify-content: center;
    color: white;
    padding-top: 60px;
}

.quote-icon {
    padding-top: 13px;
    font-size: 65px;
    display: flex;
    justify-content: center;
    color: lightcoral;
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
}

.carousel-inner {
    font-size: 15px;
    color: white;
    max-width: 400px;
}

.control-icon {
    position: absolute;
    left: 50%;
}

.indicator-icon {
    color: chocolate;
}

.filterDiv {
    opacity: 1;
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.overlay-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.5s ease;
    background-image: linear-gradient(rgba(0, 0, 0, 0), #000000);
}

.filterDiv:hover .overlay-img {
    opacity: 0.85;
}

.overlay-text {
    position: absolute;
    bottom: 2%;
    display: block;
    color: white;
    padding: 0 26px;
}

.control-icons a {
    text-decoration: none;
}
