body {
    font-family: Arial, sans-serif;
    margin: 0px;
}
.navbar {
    padding: 10px 20px;
}

.navbar-brand img {
    height: 40px;
}

.btn {
    padding: 8px 15px;
}

.top-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.top-bar img {
    height: 40px;
}
@media (max-width: 768px) {
    .top-bar img {
        height: 17px;
    }
}
.main-slider {
    position: relative;
    object-fit: cover;
}
.carousel-item img {
    width: auto;
    height: 80vh;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item img {
        width: auto;
        height: 320px;
        object-fit: fill;
    }
}
.carousel-control-prev, .carousel-control-next {
    /* width: auto; */
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}
.main-title-right {
    z-index: 3;
    position: absolute;
    top: 10%;
    right: 5%;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}
.main-title-left {
    z-index: 3;
    position: absolute;
    top: 10%;
    left: 5%;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}
.location-title-left {
    position: absolute;
    bottom: 10%;
    left: 5%;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}
.location-title-right {
    position: absolute;
    bottom: 10%;
    right: 5%;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}
.bottom-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.bottom-bar img {
    height: 40px;
}
@media (max-width: 768px) {
    .bottom-bar img {
        height: 17px;
    }
}

.footer {
    background-color: #fff;
    color: #6c757d;
    font-size: 14px;
    padding: 40px 0;
    border-top: 1px solid #ddd;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-section h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.footer-section p,
.footer-section a {
    margin: 0;
    color: #6c757d;
    font-size: 16px;
    text-decoration: none;
}

.footer-section a:hover {
    color: #000;
}

.social-icons a {
    margin: 0 5px;
    color: #6c757d;
    font-size: 16px;
}

.social-icons a:hover {
    color: #000;
}

.copyright {
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
}


