@font-face {
    font-family: "Afeesh";
    src: url("../fonts/Afeesh-Aadi.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "29LTAzer";
    src: url("../fonts/alfont_com_29LTAzer.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Droid-Arabic-Kufi";
    src: url("../fonts/alfont_com_AlFont_com_Droid-Arabic-Kufi.ttf")
        format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/FiraSans-Bold.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Gotham-XLight";
    src: url("../fonts/Gotham-XLight.otf") format("truetype");
}

:root {
    --color-primary: #fdf6ea;
    --color-secondary: #ff8c00;
    --color-element-dark: #202020;
    --color-element-light: #fdf6ea;
    --color-footer-border: #ec9c5b;
    --font-primary: "Afeesh", sans-serif;
    --font-secondary: "29LTAzer", sans-serif;
    --font-span: "Droid-Arabic-Kufi", sans-serif;
    --font-slider: "Fira Sans", sans-serif;
    --gotham-font: "Gotham-XLight", sans-serif;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
    --main-height: calc(100vh - 186.5px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
}

.navbar {
    max-width: 100%;
    height: 186.5px;
    background-color: var(--color-primary);
    border-bottom: 10px solid #fff;
}

.navbar .row {
    height: 100%;
}

.navbar img {
    max-width: 103.6px;
    height: 102.3px;
}

.text-logo {
    flex-direction: column;
}

.navbar .text-logo h1 {
    align-self: end;
    font-size: 4rem;
    margin: 0;
    position: relative;
}

.navbar .text-logo h1::after {
    position: absolute;
    content: "منصة";
    font-size: 4rem;
    top: -70%;
    right: 0;
    color: var(--color-secondary);
}

.main-logo .city {
    font-size: 1.375rem;
    text-align: center;
}

.navbar .nav-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar .nav-info .date-time {
    font-family: var(--font-span);
    font-size: 13px;
    color: var(--color-secondary);
}

.fa-clock {
    /* color: #d31c89; */
    font-size: 15px;
}

.fa-calendar-days {
    font-size: 15px;
}

#navbarNav {
    position: relative;
}

.navbar .nav-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
    color: var(--color-secondary);
}

.nav-link {
    text-decoration: none;
    color: var(--color-secondary);
    padding: 5px 0;
    position: relative;
    transition: color 0.5s ease;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background-color: var(--color-secondary);
    transition: width 0.5s ease;
    position: absolute;
    bottom: 0;
    right: 0;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.navbar {
    position: relative;
    z-index: 10;
}

@media (max-width: 1221px) {
    .text-logo {
        justify-content: flex-end;
    }

    .navbar .text-logo h1 {
        font-size: 1.9375rem;
    }

    .navbar .text-logo h1::after {
        font-size: 1.9375rem;
        top: -15%;
    }

    .main-logo .city {
        font-size: 1rem;
    }
}

@media (max-width: 1014px) {
    .navbar .text-logo::after {
        top: -45%;
    }
}

@media (max-width: 768px) {
    .date-time span {
        display: none;
    }

    .navbar .text-logo h1 {
        font-size: 1.3125rem;
    }

    .navbar .text-logo h1::after {
        font-size: 1.3125rem;
        top: -40%;
    }

    .main-logo .city {
        font-size: 0.67rem;
    }

    .navbar-toggler {
        display: block;
        max-width: 50%;
        align-self: flex-end;
    }

    .navbar .nav-info ul {
        align-items: center;
        background-color: var(--color-element-dark);
        padding: 20px;
        border-radius: 10px;
    }

    .navbar .nav-info ul li a {
        font-size: 14px;
    }

    .main-logo {
        align-self: flex-start !important;
    }

    .navbar .nav-info {
        height: auto;
    }
}

@media (max-width: 576px) {
    .navbar .nav-info ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: var(--color-element-dark);
        padding: 20px;
        border-radius: 10px;
        max-height: 300px;
        overflow-y: auto;
        transition: max-height 0.3s ease;
    }

    .navbar .nav-info ul li a {
        font-size: 14px;
    }

    .navbar-toggler {
        display: block;
        max-width: 50%;
        align-self: flex-end;
    }

    .statistics-map iframe {
        max-width: 100% !important;
    }
}

/* End NavBar Style */

/* Home Page Style */
.carousel {
    height: var(--main-height);
}

.carousel-indicators button {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    background-color: var(--color-secondary) !important;
}

.carousel-item img {
    height: var(--main-height);
}

.carousel-item {
    position: relative;
    font-family: var(--font-slider);
    font-weight: 700;
    color: var(--color-element-light);
    font-size: 24px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    right: -70%;
}

.carousel-caption i,
.photo-info i {
    background-color: var(--color-secondary);
    padding: 10px 13px;
    border-radius: 100%;
    animation: bounce 1.5s infinite;
}

.photo-info {
    position: absolute;
    bottom: 5%;
    left: 5%;
}
.section-news {
    text-align: center;
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: var(--color-primary);
    overflow: hidden;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/تصميم موقع لمكتب والي قريات  (1).png"); /* مسار الصورة */
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1;
}

.main-title {
    font-size: 58px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.main-title .right-ball,
.main-title .left-ball {
    position: absolute;
    background-color: var(--color-secondary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.right-ball {
    right: 50%;
    bottom: -15%;
}
.left-ball {
    left: 49%;
    bottom: -28%;
}

.main-title::before,
.main-title::after {
    content: "";
    position: absolute;
    width: 60%;
    border-bottom: 1px solid var(--color-secondary);
    background-color: var(--color-secondary);
    transition: width 0.5s ease;
}
.main-title::before {
    bottom: -13%;
    left: 50%;
}
.main-title::after {
    bottom: -21%;
    right: 51%;
}

.main-title:hover::before,
.main-title:hover::after {
    width: 0;
}

.section-news .card {
    border: none;
    z-index: 1;
}

.section-news .img-container {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.section-news .img-container img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.pagination {
    border-radius: 30px;
    background-color: #ec9c5b;
    padding-right: 0;
    font-family: var(--font-slider);
    font-size: 16px;
}

.pagination .page-item .page-link {
    background-color: #ec9c5b;
    border: none;
    border-radius: 30px;
    color: var(--color-element-dark);
}

.pagination .page-item .page-link:hover {
    background-color: var(--color-footer-border);
}

.pagination .page-item.active .page-link {
    color: var(--color-element-light);
}

.pagination .page-item.disabled .page-link {
    background-color: #ec9c5b;
}

.pagination .page-item .page-link:focus {
    outline: none;
    box-shadow: none;
}

.card {
    background-color: var(--color-primary);
}

.card .card-body {
    text-align: right;
    font-family: var(--font-slider);
}

.card-body h5 {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-body p {
    font-size: 20px;
}

.card .col-md-4 {
    overflow: hidden;
}

.card .img-fluid {
    transition: transform 0.3s ease;
}

.card .img-fluid:hover,
.card-body h5:hover {
    transform: scale(1.1);
}

.read-more-icon {
    color: var(--color-secondary);
    font-size: 1.2em;
    cursor: pointer;
    margin-left: 8px;
    transition: transform 0.3s ease;
    animation: side-bounce 1s infinite alternate;
}

.section-map {
    background-color: #d9d9d9;
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
}

.section-map .image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.section-map .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.section-map .image-wrapper:hover {
    transform: scale(1.1);
}

.map h2 {
    text-align: center;
    font-size: 44px;
}

.map iframe {
    border-radius: 5px;
    max-width: 100%;
}

.statistics-map iframe {
    border-radius: 5px;
    max-width: 40%;
}

.box {
    background-color: transparent;
    padding: 40px;
    width: 200px;
    height: 100px;
    position: relative;
    z-index: 3;
}

.box::after {
    content: "";
    position: absolute;
    background-color: #f19827;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    transform: perspective(800px) rotateX(10deg) rotateY(20deg);
    z-index: -1;
}

.box::before {
    content: "";
    position: absolute;
    background-color: #fdeb37;
    width: 100%;
    height: 100%;
    top: -10%;
    right: 5%;
    transform: perspective(800px) rotateX(10deg) rotateY(20deg);
    z-index: -4;
}

.shdow-box {
    content: "";
    position: absolute;
    background-color: #121111;
    width: 55%;
    height: 100%;
    top: 11%;
    right: 1%;
    z-index: -2;
    transform: perspective(800px) rotateX(-7deg) rotateY(30deg);
}

.left-img,
.right-img {
    position: absolute;
    width: 50%;
    height: 80%;
    z-index: -3;
    left: -30%;
    top: 38%;
}

.right-img {
    right: -15%;
    top: -38%;
    z-index: -5;
}

.box-info {
    width: 100%;
    position: absolute;
    top: 10%;
    right: 2%;
}

.box-info i {
    font-size: 40px;
    animation: bounce 1.5s infinite;
}
.box-info img {
    width: 40%;
}

.box-info h5 {
    font-size: 33px;
    margin: 5px 0 0;
}
.box-info h6 {
    font-size: 20px;
}

@keyframes side-bounce {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-5px);
    }
}

.read-more-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 1199.98px) {
    .left-img,
    .right-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        right: -35%;
    }

    .content-box .col-md-6 {
        display: flex;
        justify-content: center;
    }

    .map {
        margin-top: 3rem;
    }
}

.contact-info {
    text-align: center;
    padding-bottom: var(--main-padding-bottom);
    background-color: var(--color-primary);
}

.box-contact {
    text-align: center;
}

.box-contact h4 {
    font-family: var(--font-slider);
    font-weight: bold;
    font-size: 24px;
}
.box-contact h5 {
    font-family: var(--gotham-font);
    font-size: 20px;
    font-weight: bold;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* End Home Page Style */

/* News Page Style */

.main-news-section {
    background-color: var(--color-primary);
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
}

.title-news h2 {
    font-family: var(--font-slider);
    font-size: 40px;
    position: relative;
    font-weight: bold;
    transition: color 0.5s ease;
    z-index: 2;
}

.title-news h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 40%;
    background-color: var(--color-secondary);
    transition: width 0.5s ease;
    position: absolute;
    bottom: -30%;
    right: 0;
}

h2:hover::after {
    width: 100%;
}

.views {
    font-size: 18px;
    font-family: var(--gotham-font);
    position: relative;
    z-index: 2;
}

.views::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--color-secondary);
    position: absolute;
    bottom: 50%;
    right: 0;
}

.text-news p {
    font-family: var(--gotham-font);
    font-size: 20px;
    text-align: justify;
    position: relative;
    z-index: 2;
}

.photos-news {
    position: relative;
    z-index: 2;
}

.photos-news .img-fluid {
    transition: transform 0.3s ease;
}

.photos-news .img-fluid:hover {
    transform: scale(1.1);
}

.photos-news .image-wrapper {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.photos-news .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-button-container,
.previous-button-container {
    position: relative;
    z-index: 2;
}

.next-button-container button,
.previous-button-container button {
    border: none;
    color: var(--color-element-dark);
    font-family: var(--font-secondary);
    font-size: 17px;
}

.next-button-container button:hover,
.previous-button-container button:hover {
    background-color: var(--color-footer-border);
}

.next-button-container button i,
.previous-button-container button i {
    color: var(--color-secondary);
    font-size: 30px;
    animation: side-bounce 1s infinite alternate;
}
/* End News Page Style */

/* Statistics Page Style */
.section-statistics {
    background-color: var(--color-primary);
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    text-align: center;
}

.statistics-map {
    position: relative;
    z-index: 2;
}

.statistics-map .img-fluid {
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    -ms-transition: -ms-transform 0.3s ease;
    max-height: 400px;
    object-fit: contain;
}

.statistics-map .img-fluid:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.statistic-1,
.statistic-2 {
    position: absolute;
    right: 20%;
    width: 2px;
    height: 100px;
    background-color: var(--color-secondary);
    animation: bounce 1.5s infinite;
    -webkit-animation: bounce 1.5s infinite;
    -moz-animation: bounce 1.5s infinite;
    -o-animation: bounce 1.5s infinite;
    -ms-animation: bounce 1.5s infinite;
}

.statistic-1 .statistic-title,
.statistic-2 .statistic-title {
    position: absolute;
    left: 2px;
    top: -37px;
    border-bottom: 3px solid var(--color-secondary);
    width: 150px;
    font-size: 23px;
    color: var(--color-secondary);
}

.statistic-1 .statistic-value,
.statistic-2 .statistic-value {
    position: absolute;
    right: 2px;
    bottom: 0;
    border-bottom: 2px solid var(--color-secondary);
    width: 150px;
    font-size: 33px;
}

.statistic-1 .icon,
.statistic-2 .icon {
    position: absolute;
    bottom: 0;
    left: 52px;
    font-size: 50px;
    color: #343a40;
}

.statistic-3 {
    top: 0%;
}

.statistic-3,
.statistic-4 {
    position: absolute;
    left: 20%;
    width: 2px;
    height: 100px;
    background-color: var(--color-secondary);
    animation: bounce 1.5s infinite;
    -webkit-animation: bounce 1.5s infinite;
    -moz-animation: bounce 1.5s infinite;
    -o-animation: bounce 1.5s infinite;
    -ms-animation: bounce 1.5s infinite;
}

.statistics-map .statistic-2,
.statistics-map .statistic-4 {
    top: 60%;
}

.statistic-3 .statistic-title,
.statistic-4 .statistic-title {
    position: absolute;
    right: 2px;
    top: -37px;
    border-bottom: 2px solid var(--color-secondary);
    width: 150px;
    font-size: 23px;
    color: var(--color-secondary);
}

.statistic-3 .statistic-value,
.statistic-4 .statistic-value {
    position: absolute;
    left: 2px;
    bottom: 0;
    border-bottom: 3px solid var(--color-secondary);
    width: 150px;
    font-size: 33px;
}

.statistic-3 .icon,
.statistic-4 .icon {
    position: absolute;
    bottom: 0;
    right: 52px;
    font-size: 50px;
    color: #343a40;
}
.source-statistics {
    position: relative;
    z-index: 2;
}

.source-statistics h4 {
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: bold;
}

.more-statistics {
    background-color: var(--color-secondary);
    width: 12%;
    padding: 0px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    border: none;
    cursor: pointer;
}

.more-statistics:hover {
    background-color: var(--color-footer-border);
}

@media (max-width: 768px) {
    .statistics-map .num-statistic {
        padding: 2px;
    }
}

@media (max-width: 576px) {
    .statistic-1,
    .statistic-2,
    .statistic-3,
    .statistic-4 {
        height: 60px;
    }

    .statistic-1 .statistic-title,
    .statistic-2 .statistic-title,
    .statistic-3 .statistic-title,
    .statistic-4 .statistic-title,
    .statistic-1 .statistic-value,
    .statistic-2 .statistic-value,
    .statistic-3 .statistic-value,
    .statistic-4 .statistic-value {
        width: 90px;
    }

    .statistic-1 .icon,
    .statistic-2 .icon {
        font-size: 30px;
        left: 30px;
    }
    .statistic-3 .icon,
    .statistic-4 .icon {
        font-size: 30px;
        right: 30px;
    }
    .statistics-map .num-statistic {
        font-size: 23px;
    }

    .source-statistics {
        flex-direction: column;
        align-items: center;
    }

    .more-statistics {
        width: 20%;
    }

    .title-news h2::after {
        width: 0;
    }

    .views::after {
        width: 0;
    }

    .views {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* End Statistics Page Style */

/* Statistics Detalies Page Style */
.section-statisticsDetails,
.section-touristDetails,
.section-heritageDetails,
.section-about {
    background-color: var(--color-primary);
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
}

.title-statistics,
.statistics-item,
.title-tourist,
.tourist-item,
.title-heritage,
.heritage-item {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--color-secondary);
}

.title-statistics h2 {
    font-size: 47px;
    margin: 0;
}

.btn-back {
    padding: 0;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: bold;
}

.btn-back i {
    font-size: 15px;
    display: inline-block;
    animation: wobble 0.5s infinite alternate;
}

.btn-back:focus {
    border: none;
}

.section-statisticsDetails .row,
.section-touristDetails .row,
.section-heritageDetails .row {
    position: relative;
    z-index: 2;
}

.image-container {
    border-bottom: 8px solid var(--color-footer-border);
    border-left: 8px solid var(--color-footer-border);
    border-radius: 3px;
}

.image-container iframe {
    max-width: 100%;
    border-radius: 2px;
}

.image-container .img-fluid {
    transition: transform 0.3s ease;
    max-height: 400px;
    object-fit: contain;
}

.image-container .img-fluid:hover,
.statistics-item:hover,
.tourist-item:hover,
.heritage-item:hover {
    transform: scale(1.1);
}

.statistics-item,
.tourist-item,
.heritage-item {
    transition: transform 0.3s ease;
}

.statistic h4,
.statistics-item h5 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

@keyframes wobble {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(5px);
    }
}

/* End Statistics Detalies Page Style */

/* tourist-places Page Style */

.tourist-places,
.heritage-sites,
.section-books {
    background-color: var(--color-primary);
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    text-align: center;
    position: relative;
    z-index: 2;
}

.image-box {
    position: relative;
    z-index: 2;
}

.image-box img {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: transform 0.3s ease;
    height: 100%;
    min-width: 100%;
}

.image-box img:hover {
    transform: scale(1.1);
}

.image-box .place-image a,
.image-box .heritage-image a {
    display: block;
    text-decoration: none;
}

.tourist-places .image-box .place-link a,
.heritage-sites .image-box .heritage-link a {
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 23px;
    color: var(--color-element-dark);
    font-weight: bold;
    background-color: var(--color-secondary);
    padding: 15px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    transition: all 0.5s;
}

.tourist-places .image-box .place-link a:hover,
.heritage-sites .image-box .heritage-link a:hover {
    background-color: var(--color-footer-border);
}

.shape {
    position: relative;
    z-index: 2;
}

/* End tourist-places Page Style */

/* tourist-places-details Page Style */
.section-touristDetails .tourist-place-details,
.section-heritageDetails .heritage-site-details {
    font-size: 27px;
}
.section-touristDetails .tourist-place-details h3,
.heritage-site-details h3 {
    position: relative;
    color: var(--color-secondary);
}

/* .section-touristDetails .tourist-place-details h3::after,
.heritage-site-details h3:after {
    content: "";
    position: absolute;
    right: -15%;
    width: 10px;
    height: 10px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    top: 20%;
} */

/* .heritage-site-details h3:after {
    margin-right: 7%;
} */

.section-touristDetails .image-container,
.section-heritageDetails .image-container {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    border: none;
}

.section-touristDetails .image-container img,
.section-heritageDetails .image-container img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pagination {
    position: relative;
    z-index: 2;
}

.tourist-info .views::after,
.heritage-info .views::after,
.section-about .views::after {
    width: 0;
}

.tourist-info a i,
.heritage-info a i {
    font-size: 20px;
    animation: bounce 1.5s infinite;
}

.tourist h4,
.heritage h4 {
    font-family: var(--font-secondary);
    font-size: 18px;
    color: var(--color-secondary);
    font-weight: bold;
    margin: 0;
}
.tourist h4 a,
.heritage h4 a {
    color: var(--color-secondary);
}

.title-place,
.title-site {
    position: relative;
    z-index: 2;
    font-size: 27px;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.title-place:hover,
.title-site:hover {
    transform: scale(1.1);
}

.section-touristDetails .text-news p,
.section-heritageDetails .text-news p {
    font-family: var(--gotham-font);
    font-size: 20px;
}

/* End tourist-places-details & ID Page Style */

.accordion {
    position: relative;
    z-index: 2;
}

.accordion-button {
    background-color: var(--color-footer-border);
    padding: 15px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-size: 1.1rem;
}

.accordion-button:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.accordion-button:after {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.accordion-button:not(.collapsed) {
    background-color: #ffdcbf;
    color: var(--color-element-dark);
    border-color: #ffdcbf;
}

.accordion-body {
    background-color: #ffdcbf;
    font-family: var(--gotham-font);
    font-size: 19px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.show {
    position: relative;
}

.show::after {
    content: "";
    position: absolute;
    border: 1px solid var(--color-element-dark);
    width: 90%;
    top: 0;
    left: 5%;
}

footer {
    background-color: var(--color-footer-border);
    font-size: 16px;
    font-family: var(--font-slider);
}

/* New Edit */
.main-logo {
    position: relative;
}

.logos img,
.main-logos img {
    max-width: 200px;
    margin: 0 6px;
}

.main-logos {
    position: absolute;
    top: 1%;
    left: 0;
}

.book,
.place-info {
    transition: transform 0.3s ease;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index: 2;
}

.book:hover,
.place-info:hover {
    transform: scale(1.1);
}

.book img {
    transform: none !important;
    transition: none !important;
    height: 300px;
    object-fit: cover;
}

.place-info img {
    transform: none !important;
    transition: none !important;
    object-fit: cover;
}

.book a,
.place-info a {
    text-decoration: none;
    font-family: var(--font-secondary);
}

.place-info {
    max-width: 80%;
    margin: 0 auto;
}

.card.book:hover,
.card.place-info:hover {
    background-color: var(--color-secondary);
    transition: background-color 0.8s ease, color 0.8s ease;
}

.card.book:hover a,
.card.place-info:hover a {
    color: var(--color-element-dark) !important;
    text-decoration: none;
}

.book-details {
    z-index: 2;
}

.book-cover {
    height: 400px;
    width: auto;
    object-fit: cover;
}

.book-info {
    text-align: justify;
    font-family: var(--font-span);
    font-size: 19px;
    font-weight: bold;
    color: var(--color-element-dark);
    padding: 18px;
    border: 1px solid var(--color-element-dark);
    border-radius: 7px;
    max-height: 250px;
    overflow-y: auto;
}

.book-info::-webkit-scrollbar {
    width: 1em;
}

.book-info::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px var(--color-secondary);
}

.book-info::-webkit-scrollbar-thumb {
    background-color: var(--color-footer-border);
    outline: 1px solid var(--color-element-dark);
}

.info-item {
    font-family: var(--font-span);
    font-size: 18px;
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-element-dark);
    padding-bottom: 3px;
    margin-bottom: 15px;
    width: fit-content;
}

.row.custom-gap {
    row-gap: 2rem;
    /* column-gap: 2rem; */
}

.tourist-box {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.statistic-2 .statistic-value {
    font-size: 28px;
}

@media (max-width: 1216.98px) {
    .navbar .text-logo h1::after {
        top: -100%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .logos img {
        margin: 0 1px;
    }
}

@media (max-width: 767.98px) {
    .nav-info {
        justify-content: flex-end !important;
    }
}

@media (max-width: 633px) {
    .navbar .text-logo h1::after {
        top: -35%;
    }
}
