.tourist-home-page {
    margin-top: 90px;
}

.tourist-home-page .search-section {
    width: 100%;
    height: 500px;
    background: #000;
    background-image:
        linear-gradient(to bottom, rgb(103 104 108 / 52%), rgb(24 23 24 / 73%)),
        url('./Banner-2.jpg');

    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tourist-home-page .search-section h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
}

.tourist-home-page .search-section p:before,
.tourist-home-page .search-section p:after {
    background-color: #fff;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.tourist-home-page .search-section p:before {
    right: 0.5em;
    margin-left: -50%;
}

.tourist-home-page .search-section p:after {
    left: 0.5em;
    margin-right: -50%;
}

.tourist-home-page .search-section p {
    color: #fff;
    overflow: hidden;
    margin-bottom: 5px;
}

.serach-box {
    /* width: 450px; */
    height: 50px;
    position: relative;
}

.serach-box input {
    width: 100%;
    height: 100%;
    padding: 0 50px 0 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
    background: rgb(255 255 255 / 82%);
}

a.search-button {
    width: 45px;
    height: 45px;
    background: #ea1f27;
    display: block;
    position: absolute;
    top: 3px;
    right: 4px;
    overflow: hidden;
    border-radius: 25px;
    text-decoration: none;
}

a.search-button .icon {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 14px;
    left: 14px;
    border-radius: 8px;
    border: 2px solid #fff;
    transition: all 0.6s ease;
}

a.search-button .icon:after {
    width: 12px;
    height: 2px;
    display: block;
    content: "";
    position: absolute;
    bottom: -5px;
    right: -10px;
    background-color: #fff;
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

a.search-button .icon .clear {
    width: 100%;
    height: 100%;
    line-height: 12px;
    display: block;
    text-align: center;
    color: #607d8b;
    font-size: 0;
    transition: all 0.6s ease;
}

a.search-button.typed .icon {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border-width: 6px;
    top: -11px;
    left: -11px;
}

a.search-button.typed .icon:after {
    width: 52px;
    height: 8px;
    bottom: -20px;
    right: -30px;
}

a.search-button.typed .icon .clear {
    line-height: 58px;
    font-size: 22px;
}

/* switch css */
/* container for all of the switch elements 
- adjust "width" to fit the content accordingly 
*/
.switches-container {
    width: 16rem;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: #ea1f27;
    line-height: 3rem;
    border-radius: 3rem;
    margin-left: auto;
    margin-right: 8px;
    font-size: 14px;
}

/* input (radio) for toggling. hidden - use labels for clicking on */
.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

/* labels for the input (radio) boxes - something to click on */
.switches-container label {
    padding-left: inherit !important;
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: #fff;
}

/* switch highlighters wrapper (sliding left / right) 
- need wrapper to enable the even margins around the highlight box
*/
.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.15rem;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
    /* transition: transform 1s; */
}

/* switch box highlighter */
.switch {
    border-radius: 3rem;
    background: #fff;
    height: 100%;
}

/* switch box labels
- default setup
- toggle afterwards based on radio:checked status 
*/
.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: #ea1f27;
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
}

/* slide the switch box from right to left */
.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}

/* slide the switch box from left to right */
.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}

/* toggle the switch box labels - first checkbox:checked - show first switch div */
.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

/* toggle the switch box labels - second checkbox:checked - show second switch div */
.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}

.search-list {
    background: #fff;
    border-radius: 10px;
    margin-top: 10px;
    text-align: left;
    padding: 10px;
    max-height: 150px;
    overflow: auto;
}

.search-list li {
    color: #333;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.search-list li:last-child {
    border-bottom: 0px solid #ddd;
}

.search-list a {
    padding: 6px 10px;
    display: block;
}

.img-fluid {
    width: 100%;
    margin: auto;
}

.text-center {
    text-align: center;
}

.border-bg {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    display: flex;
    padding: 15px 0;
}

.last-button {
    display: flex;
    justify-content: flex-end;
}

.download-btn {
    display: block;
    margin: auto;
    text-align: center;
    font-size: 14px;
    color: #ec1f46;
    text-decoration: underline;
}

.common_btn-style {
    padding: 5px 15px;
    background-color: rgb(236, 31, 70);
    color: #fff;
    border-radius: 26px;
    font-size: 13px;
    font-family: "DmSans-Reg-bold";
    cursor: pointer;
}

.common_btn-style:hover {
   text-decoration: none;
   color: #e1e1e1;
}


.container {
    width: 87%;
}

.pt-50 {
    padding-top: 50px;
}

/* Notification Bar */
.notification {
    display: flex;
    align-items: center;
    background: #fdecea;
    color: #b71c1c;
    border-left: 5px solid #d32f2f;
    overflow: hidden;
    padding: 10px;
    position: relative;
}

/* Label */
.notification-label {
    background: #d32f2f;
    color: #fff;
    padding: 4px 8px;
    margin-right: 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Scrolling Text Wrapper */
.scroll-container {
    overflow: hidden;
    flex: 1;
}

/* Moving Text */
.scroll-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 12s linear infinite;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Close Button */
.close-btn {
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .scroll-text {
        animation-duration: 8s;
        font-size: 13px; 
    }
}

@media only screen and (max-width: 600px) {
    .tourist-home-page .search-section {
        width: 100%;
        height: 290px;
        padding: 30px;
    }

    .img-fluid {
        width: 80%;
        margin: auto;
    }

    .pb-3 {
        padding-bottom: 20px;
    }

    .common_btn-style {
        padding: 10px 20px;
        text-align: center;
        width: 100%;
        display: block;
    }

    .border-bg {
        display: block;
    }


}
