/* styles.css */
*{
    font-family: 'Poppins', sans-serif;
}
body {
    height: 100%;
    background-color: #EEF0F8;
}

th {
    text-transform: none !important;

}

/*
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#content {
    display: none;
} */


.custom-card {
    background-color: #fff;
}

.back-to-nav {
    margin: 3rem 7rem;

}

.navbar-custom {
    height: 110px;
    background-color: #fff;
}

.brand-logo {
    height: 80px;
    width: auto;
}

.sub-title {
    font-size: 1.3rem;
}

.title1 {
    font-size: 2.3rem;
    font-weight: 700;
}

#categoriesNav {
    position: fixed;
    top: 25%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    width: 5rem;
    height: 4rem;

}
#categoriesNav ul{
    background-color: #fff;
}

#contactButton {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    width: 5rem;
    height: 4rem;
}

.info-icon {
    width: 4rem;
    height: 4rem;
}

.card {
    height: 30rem;
    border-radius: 5%;
}

.print-button {
    background-color: #0d6efd;
    width: 6rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    border-radius: 12%;
}

.famous-place-image {
    max-height: 200px;
    object-fit: cover;
}

.famous-place-scroll {
    max-height: 600px;
    overflow: scroll;
    overflow-x: hidden;
    padding: 0 2rem;
}
.icon-container{
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    margin-right: 10px;
    justify-content: center;
    background-color: #a9c4fa;
    align-items: center;
}
@media screen and (max-width: 700px) {
    #categoriesNav {
        display: none;
    }
}

