@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    margin: 0px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    list-style: none;
}

:root {
    --theme-color: #ca9b3a;
    --font-size: 20px;
    --second-theme-color: #E8F7F0;
    --white: #fff;
  --banner-animation: shrink 10s infinite alternate;
  --banner-background-color: rgba(0, 0, 0, 0.70);
  --banner-background-color-animation: mymove1 10s ease-in-out infinite;
}



.header-section 
{
    background-image: url('/frontend/images/BG-Image-2.png');
    background-color: var(--banner-background-color);
    height: 700px;
    background-repeat: no-repeat;
    padding: 20px;
    background-position: center center;
    background-size: 110% 110%;
    animation: var(--banner-animation);
    position: relative;
    overflow: hidden;
}


/* added by prabhakar */
.header-section-quickbook {
    height: 150px;
    background-repeat: no-repeat;
    padding: 20px;
    background: var(--haeder-background-image) lightgray 50% / cover no-repeat;
    background-position: center center;
    background-size: 110% 110%;
    animation: var(--banner-animation);
    position: relative;
}

.header-section::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--banner-background-color);
    /* background-color: rgba(0, 0, 0, 0.70); */
    top: 0px;
    left: 0px;
    animation: var(--banner-background-color-animation);
}

.header-section .top-bar {
    height: 120px;
    font-size: 20px;
}

.header-section .top-bar ul li.active {
    font-weight: 700;
}

.header-section .top-bar .buttons button {
    border-radius: 10px;
    padding: 10px;
    border: none;
    margin: 0px 15px;
    font-size: 16px;
}

.header-section .top-bar .buttons .login {
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 16px;
}

.header-section .top-bar .buttons .singup {
    background-color: var(--second-theme-color);
    color: #504E4E;
    font-size: 16px;
}

.header-section .top-bar ul li.active a {
    border-bottom: 2px solid #dda92f;
}

/* banner start */
.height-flex-center {
    height: calc(100% - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content .caption {
    z-index: 1;
}

.banner-content .caption span {
    color: var(--theme-color);
}

.banner-content .caption p {
    font-size: 20px !important;
}

.banner-content .search-bar .event {
    padding: 30px;

    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(15px);
}

.banner-content .container {
    height: 100%;
}

.banner-content .inner-content {
    display: flex;
    justify-content: start;
    height: 100%;
    flex-direction: column;
}

.banner-content .content {
    margin-left: 20px;
}

.banner-content .buttons button {
    padding: 7px 0px;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-size: 18px;
    color: var(--white);
    background-color: var(--theme-color);
}

.top-bar .hamburger {
    display: none;
}


@keyframes mymove {
    0% {
        background-size: 110% 110%;
    }

    100% {
        background-size: 100%;
    }
}

@keyframes mymove1 {
    0% {
        background-color: rgba(0, 0, 0, 0.70);
    }

    50% {
        background-color: rgba(0, 0, 0, 0.30);
    }

    100% {
        background-color: rgba(0, 0, 0, 0.70);
    }
}

@keyframes shrink {
    0% {
        background-size: 140% 140%;
    }

    100% {
        background-size: 100% 100%;
    }
}




.heading h3 {
    font-size: 36px;
    font-weight: 600;
    color: 282828;
    position: relative;
}

.heading h3 span {
    /* color: rgb(241, 111, 49); */
    color: #ca9b3a;
}

.heading h3::after {
    content: "";
    width: 100%;
    max-width: 150px;
    height: 2px;
    background-color: #ca9b3a;
    position: absolute;
    bottom: -6px;
    left: 38.5%;
}

.value-card-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 0px;
}

.value-card-transport {
    background-color: #E8F7F0;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.value-card-local {
    background-color: #FEE6DB;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.value-card-local:hover {
    transform: scale(1.1);
    transition: all 0.5s;
}

.value-card-local:after {
    content: "";
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #FFA982, #FFFFFF);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    transition: all .10s;

}

.value-card-local:hover::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFA982, #FFFFFF);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    transform: scale(1);
    transition: all .5s;
}

.value-card-transport:hover {
    transform: scale(1.1);
    transition: all 0.5s;

}

.value-card-transport:after {
    content: "";
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #95CCB2, #EDEDED);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    transition: all .10s;

}

.value-card-transport:hover::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #95CCB2, #EDEDED);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    transform: scale(1);
    transition: all .5s;
}

.value-card-local h6 {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.value-card-transport h6 {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.value-card-local img {
    background-color: #fff;
    padding: 15px 10px;
    border-radius: 16px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.30);
    transform: scale(1.1);
    width: 124px;
    height: 77px;
    position: relative;
    z-index: 2;
}

.value-card-transport img {
    background-color: #fff;
    padding: 15px 10px;
    border-radius: 16px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.30);
    width: 124px;
    height: 77px;
    position: relative;
    z-index: 2;
}

.about-header h3 {
    font-size: 36px;
    font-weight: 600;
    color: #282828;
    position: relative;
    margin: 0px;
}

.about-header h3 span {
    color: var(--theme-color)
}

.about-header h3::after {
    content: "";
    width: 100%;
    max-width: 270px;
    height: 2px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: -6px;
    left: 36.5%;
}

.about-right {
    padding: 3rem;
}

.about-content {
    background-image: url('../../frontend/images/BG-Image-4.png');
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    height: 100%;
}

.about-left {
    height: auto;
    display: flex;
    align-items: center;
}

.about-left img {
    width: 100%;
}

.about-rightimg {
    text-align: end;
}

.about-rightcontent h2 {
    font-size: 40px;
}

.about-rightcontent p {
    font-size: 16px;
    margin: 0px;
}

.about-rightcontent-inner {
    display: flex;
    align-items: center;
}

.line {
    width: 150px;
    height: 2px;
    background-color: var(--theme-color);
    border-radius: 10px;
    margin-right: 30px;
}

.about-rightcontent {
    margin-left: 100px;
}

.about-rightcontent ul {
    padding: 0px;
}

.about-rightcontent ul li {
    display: flex;
    align-items: center;
    margin: 30px 0px;

}

.about-rightcontent ul li p {
    margin: 0px;
    margin-left: 20px;
}

.about-content-inner {
    margin: 0px 150px;
}

.popularevent-header h3 {
    font-size: 36px;
    font-weight: 600;
    color: #282828;
    position: relative;
    margin: 0px;
}

.popularevent-header h3::after {
    content: "";
    width: 100%;
    max-width: 122px;
    height: 2px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: -6px;
    left: 43.8%;
}

.popular-inner img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}


.california-location {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.california-location-inner {
    display: flex;
    align-items: center;
}

.california-location-inner h6 {
    margin: 0px;
    font-size: 18px;
    margin-left: 15px;
}

.popular-content h1 {
    margin-bottom: 32px;
}

.popular-content1 h1 {
    margin-bottom: 32px;
}

.california-location-inner span i {
    font-size: 26px;
}

.california-location-inner button {
    background-color: var(--theme-color);
    border: none;
    padding: 8px 40px;
    color: var(--white);
    font-size: 18px;
    margin-left: 20px;
}

.popular-inner {
    height: 100%;
    /* padding: 10px; */
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.popular-inner:hover .popular-content {
    top: 248px;
    transition: all 0.9s;
}

.popular-inner:hover img {
    transform: scale(1.2);
    transition: all .7s;

}

.popular-content {
    position: absolute;
    width: 100%;
    color: #fff;
    top: 36px;
    height: 100%;
}

.popular-inner:hover .popular-content-outer {
    position: absolute;
    top: 0px;
    transition: all 0.9s;
}

.popular-content-outer {
    position: absolute;
    bottom: 10px;
    padding: 15px 20px;
    background-color: #e1e1e136;
    width: 100%;
    color: #fff;
    top: 305px;
    height: 100%;
}


.popular-inner1 {
    height: 100%;
    /* padding: 10px; */
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.popular-inner1:hover img {
    transform: scale(1.2);
    transition: all .7s;

}

.popular-content1 {
    position: absolute;
    width: 100%;
    color: #fff;
    top: 36px;
    height: 100%;
}

.popular-inner1:hover .popular-content1 {
    top: 235px;
    transition: all 0.9s;
}


.popular-content-outer1 {
    position: absolute;
    bottom: 10px;
    padding: 15px 20px;
    background-color: #e1e1e136;
    width: 100%;
    color: #fff;
    top: 305px;
    height: 100%;
}

.popular-inner1:hover .popular-content-outer1 {
    position: absolute;
    top: 0px;
    transition: all 0.9s;
}

.california-location-inner1 button {
    background-color: var(--theme-color);
    border: none;
    padding: 8px 40px;
    color: var(--white);
    font-size: 18px;
    margin: 10px 0px 0px 0px;
}

.popular-inner2 {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.popular-inner2:hover img {
    transform: scale(1.5);
    transition: all .9s;

}

.popular-content2 {
    position: absolute;
    width: 100%;
    color: #fff;
    top: 36px;
    height: 100%;
}

.popular-inner2:hover .popular-content2 {
    top: 235px;
    transition: all 0.9s;
}


.popular-content-outer2 {
    position: absolute;
    bottom: 10px;
    padding: 15px 20px;
    background-color: #e1e1e136;
    width: 100%;
    color: #fff;
    top: 305px;
    height: 100%;
}

.popular-inner2:hover .popular-content-outer1 {
    position: absolute;
    top: 0px;
    transition: all 0.9s;
}

/* popular-3*/


.popular-inner3 {
    height: 100%;
    /* padding: 10px; */
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.popular-inner3:hover .popular-content3 {
    top: 200px;
    transition: all 0.9s;
}

.popular-inner3:hover img {
    transform: scale(1.2);
    transition: all .7s;

}

.popular-content3 {
    position: absolute;
    width: 100%;
    color: #fff;
    top: 45px;
    height: 100%;
}

.popular-inner3:hover .popular-content-outer3 {
    position: absolute;
    top: 0px;
    transition: all 0.9s;
}

.popular-content-outer3 {
    position: absolute;
    bottom: 10px;
    padding: 15px 20px;
    background-color: #e1e1e136;
    width: 100%;
    color: #fff;
    top: 305px;
    height: 100%;
}


/* --------luxury_rides------- */
.luxury_rides ul {
    padding: 10px 0px;
}

.luxury_rides ul li {
    margin: 25px 0px;
    padding: 2px 2px;
    border-radius: 60px;
    background-color: #dda92f;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10) inset;
    display: flex;
    align-items: center;

}


.luxury_rides .right-content ul li span {
    background-color: #e1fff1;
    border-radius: 100%;
    padding: 12px 17px;
    margin-right: 20px;
    font-size: 36px;
}

.luxury_rides .left-content img {
    width: 100%;
    max-width: 650px;
    object-fit: cover;
}

/* -------footer----- */
.footer_header h6 span {
    color: #ca9b3a;
}

.footer_header p span {
    color: #ca9b3a;
}

.footer .phone span i {
    background-color: #ca9b3a;
    color: white;
    padding: 10px;
    border-radius: 100%;
}

.footer .col-4 ul li {
    list-style: none;


}

.footer .col-4 ul li a {
    text-decoration: none;
    color: white;
}

/* popular-3*/

.luxury_rides .heading h3::after {
    content: "";
    width: 100%;
    max-width: 287px;
    height: 2px;
    background-color: #ca9b3a;
    position: absolute;
    bottom: -6px;
    left: 26%;
}

.popular-inner3 {
    height: 100%;
    /* padding: 10px; */
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.popular-inner3:hover .popular-content3 {
    top: 200px;
    transition: all 0.9s;
}

.popular-inner3:hover img {
    transform: scale(1.2);
    transition: all .7s;

}

.popular-content3 {
    position: absolute;
    width: 100%;
    color: #fff;
    top: 45px;
    height: 100%;
}

.popular-inner3:hover .popular-content-outer3 {
    position: absolute;
    top: 0px;
    transition: all 0.9s;
}

.popular-content-outer3 {
    position: absolute;
    bottom: 10px;
    padding: 15px 20px;
    background-color: #e1e1e136;
    width: 100%;
    color: #fff;
    top: 305px;
    height: 100%;
}


/* --------luxury_rides------- */
.luxury_rides ul {
    padding: 10px 0px;
}

.luxury_rides ul li {
    margin: 25px 0px;
    padding: 2px 2px;
    border-radius: 60px;
    /* background-color: #ffa982; */
    background-color: #dda92f;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10) inset;
    display: flex;
    align-items: center;

}


.luxury_rides .right-content ul li span {
    background-color: #e1fff1;
    border-radius: 100%;
    padding: 12px 17px;
    margin-right: 20px;
    font-size: 36px;
}

.luxury_rides .left-content img {
    width: 100%;
    max-width: 650px;
    object-fit: cover;
}

/* -------footer----- */
.footer {
    background: #101010;
}

.footer_header h6 span {
    color: #ca9b3a;
}

.footer_header p span {
    color: #ca9b3a;
}

.footer .phone span i {
    background-color: #ca9b3a;
    color: white;
    padding: 10px;
    border-radius: 100%;
}

.footer ul li {
    list-style: none;


}

.footer ul li a {
    text-decoration: none;
    color: white;
}

hr:not([size]) {
    background: rgba(241, 111, 49, 0.90);
}

.footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}


/*  Login css  */


a {
    text-decoration: none;
    color: #2135f3;
}


.modal-content {

    width: 100%;
    margin: 0 auto;
    padding: 9px;
    border-radius: 10px;
    background: #fff;
}

.nav-item .nav-link {
    color: #565656;
}
.instant-book-btn{
    font-size: 16px !important;
    text-align: center;
    padding: 6px !important;
    border-radius: 5px !important;
}
.event-btn{
    width: 100%;
}

.nav .nav-item button.active {
    background-color: transparent;
    color: var(--theme-color) !important;
}

.nav .nav-item button.active::after {
    content: "";
    border-bottom: 4px solid var(--theme-color);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 5px 5px 0 0;
}

.login-form .login-modal {
    padding: 0 0 20px;
}

.login-form .login-modal label {
    display: block;
    margin-bottom: 5px;
}

.login-form .login-modal input {
    height: 54px;
    border-radius: 5px;
    padding: 0 20px;
    border-color: #e6e5e5;
    background-color: #f3f4ff;
    width: 100%;
    border: none;
}

.login-form .login-modal input:focus {
    border: none;
    outline: none;
}

#login_submit,
#signup_submit {
    background-color: var(--theme-color);
    color: #fff;
    padding: 0 35px;
    height: 54px;
    position: relative;
    display: inline-block;
    text-align: center;
    font-weight: 400;
    line-height: 26px;
    border: none;
    border-radius: 5px;
    z-index: 1;
    text-transform: capitalize;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
    overflow: hidden;
    margin-top: 10px;
    width: 100%;
    transition: .4s;
    font-size: 20px;
}


#pills-home h2,
#pills-profile h2 {
    margin-bottom: 20px;
}

.login-form .name-section {
    display: flex;
    justify-content: space-between;
}

/* //Start Show more and less toggle */
#profile-description {
    max-width: 400px;
    margin-top: 50px;
    position: relative;
}

#profile-description .text {
    /*   width: 660px;  */
    margin-bottom: 5px;
    color: #777;
    padding: 0 15px;
    position: relative;
    font-family: Arial;
    font-size: 14px;
    display: block;
}

#profile-description .show-more {
    /*   width: 690px;  */
    color: #777;
    position: relative;
    font-size: 12px;
    padding-top: 5px;
    height: 20px;
    text-align: center;
    background: #f1f1f1;
    cursor: pointer;
}

#profile-description .show-more:hover {
    color: #1779dd;
}

#profile-description .show-more-height {
    height: 65px;
    overflow: hidden;
}


#moreText {
    display: none;
}


.custom-dropDown {
    padding-right: 30px !important;
    background-color: #f0f0f0;
    color: var(--theme-color);
}

.custom-dropDown option {
    padding: 5px 10px;
    background-color: #ffffff00;
    border: 1px solid white;
}

.card-custom {
    min-height: 480px !important;
    box-shadow: 0px 0px 4px 2px silver;
    position: relative;
}


.card_custom_quickbook {
    min-height: 450px;
    box-shadow: 0px 0px 4px 2px silver;
    position: relative;
}


.btn-fixed-bottom {
    position: absolute;
    bottom: 15px;
    right: 20px;
}

.card-btn {
    font-weight: 500 !important;
    text-decoration: underline !important;
    color: var(--theme-color) !important;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
}

.card_custom p {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color);
}

.card_custom_quickbook p {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color);
}

.custom-modal .modal-header {
    text-align: center;
    background-color: var(--theme-color);
}

.custom-modal .modal-header h6 {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
}

.custom-modal .modal-content {
    padding: 0px;
}

.custom-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.common-btn {
    background-color: var(--theme-color);
    color: var(--white);
    padding: 5px 15px;
    outline: none;
    border: none;
    border-radius: 5px;
}

.modal-conten-padding {
    padding: 35px;
}

.login-head {
    border: none;
    color: var(--theme-color);
}

.cstm-row-event {
    flex-direction: column;
    justify-content: center;
}

.cstm-row-event .card-img-top {
    max-height: 150px;
    object-fit: cover;
}

.cstm-row-event .card-title {
    margin: 16px 0px;
}

.cstm-row-event .cstm-btn, .card-foot-btn .cstm-btn {
    padding: 12px 0px;
    border: none;
    border-radius: 6px;
    width: 100%;
    font-size: 16px;
    color: var(--white);
    background-color: var(--theme-color);
    text-align: center;
    max-width: 150px;
    text-decoration: none;
}

.cstm-row-event .card-btn {
    width: fit-content;
}

.card-img-top {
    max-height: 150px;
    object-fit: cover;

}

.card-footer {
    border-top: 1px solid #ca9b3a;
}

/* event css */


.search-event-btn {
    max-width: 180px;
}


.event-custom-price input {

    border-radius: 6px;
    border: 1px solid #B5B5B5;
    background: var(--icon-white, #FFF);
    padding: 0px 20px;
    width: 100%;
    height: 60px;

}

.welcome {
    /* padding: 10px; */
    color: #fff;

}

.card-custom .cstm-position {
    /* position: absolute; */
    bottom: 4px;
    width: 100%;
    left: 10px;
}

.card_custom_quickbook .cstm-position {
    /*position: absolute;*/
    bottom: 4px;
    width: 100%;
    left: 10px;
}

.dinin-main-menu-select {
    max-height: 60px;
    padding: 20px !important;
    border: 1px solid #B5B5B5 !important;
}

.all-menu {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.all-menus {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.inactive {
    display: flex;
}

.inactive-2 {
    display: none;
}

option {
    font-family: "Roboto", sans-serif !important;
}

.extras {
    font-weight: 500;
    font-size: 24px;
}

.contact-content input {
    border-radius: 6px;
    border: 1px solid #B5B5B5;
    background: #cdcdcd;
    padding: 0px 20px;
    width: 100%;
    height: 60px;
}

.menues {
    display: flex;
    gap: 21px;

}

.extras {
    display: block;
    border-bottom: 1px solid #ca9b3a;
}

/*==============header css===================*/

option {
    font-family: monospace;
}

.reservation-form {
    width: 100%;
    max-width: 50%;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.reservation-form form {
    display: flex;
    flex-direction: column;
}

.reservation-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.reservation-form textarea {
    height: 100px;
}

.reservation-form button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.reservation-form button:hover {
    background-color: #3e8e41;
}

/*same in quick-book.css*/
.errors {
    color: red;
    font-size: 16px;
    font-weight: 500;
}

/*same in quick-book.css*/

.error {
    color: red !important;
    font-size: 16px !important;
    font-weight: 500;
}


.text-justify {
    text-align: justify;
}


@media only screen and (max-width: 1440px) {
    .CstmtextRes {
        margin-bottom: 30px;

    }
}


.instant-book-btn {
    border: 2px solid #ca9b3a !important;
    /* background: #8ddc01 !important; */
    background: #ca9b3a !important;
    font-weight: 400 !important;
}


.modal-backdrop.show {
    z-index: -1 !important;
}

.content {
    width: 100%;
}


/*Event Subscription*/

.subs-checkbox-modal {
    display: flex;
    align-items: center;
}
.subs-checkbox-modal .radio
{
    margin-left: 10px;
}


.subs-checkbox-modal .input-radio {
    width: 20px;
    height: 20px;
    margin-right: 0px;
}

.subs-checkbox-modal .input-radio:checked {
    background-color: #2196F3;
    border-color: #2196F3;
}

img.gold_logo {
    width: 100px;
    height: auto;
}

span.asterisk {
    color: red;
    font-weight: 500;
}

/* added by chetu dev team at 10 sep 2024 */
.allready_acc {
    padding-top: 20px;
}

.welcome i.fa-solid.fa-circle-user {
    font-size: 24px;
    color: #333;
    border-radius: 52%;
    background-color: #fff;
    padding: 10px;
    text-align: center;
}
.welcome a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.welcome a:hover {
    color: #ca9b3a;
}



/* AbinashP 16/09/2024 */

#navbarNav li.nav-item {
    font-size: 16px;
}

.event-buttons{
    display: flex;
    flex-wrap: wrap;
}

  .hamburger-menu .line{
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    display: block;
    margin: 4px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger-menu:hover{
    cursor: pointer;
  }

  .is-active #hamburger-7 .line:nth-child(1){
    width: 10px;
  }
  
  .is-active #hamburger-7 .line:nth-child(2){
    width: 20px;
  }
  
  .is-active #hamburger-7 .line{
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  a.btn.hamburger.menubar-toggle:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.side-bar{
    max-width: 250px;
    width: 100%;
    z-index: 99;
    position: absolute;
    top: 97px;
    bottom: 0;
    left: 0;
    padding: 20px;
    /* display: none; */
    background: rgb(214 134 134 / 17%);
    backdrop-filter: blur(15px);
    margin-left: -250px;
    transition: all 0.5s ease;
}

.side-bar .side-bar-btn{
    width: 100%;
}

.side-bar .side-bar-btn .event-btn{
    background: #ca9b3a;
    color: #fff
}

.side-bar .myaccount{
    width: 100%;
}

.side-bar .sign-up-btn{
    background: #ffffff;
    color: #000000;
    width: 100%;
}

#search_location-error{
    position: absolute;
    bottom: -17px;
}

/* --------- Internal pages all css -------------------*/

.navar-section {
    position: relative;
    background-image: url(../images/pages/main-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: contain; */
    width: 100%;
    height: 285px;
    z-index: 9999999 !important;
    padding: 20px;
}

.navar-section .top-bar .buttons button 
{
    border-radius: 10px;
    padding: 10px;
    border: none;
    margin: 0px 15px;
    font-size: 16px;
}

.signup_btn{
    background-color: var(--theme-color) !important;
    color: var(--white) !important;
    font-size: 16px !important;
    border-color:var(--theme-color) !important;
    padding: 10px !important;
    margin: 0px 15px !important;
    border-radius: 10px !important;;

}
.navar-section .top-bar .buttons .login 
{
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 16px;
}

.navar-section .top-bar ul li.active a {
    border-bottom: 2px solid #dda92f;
}


.navar-section .modal-content label, input#event_subscribe  {
    font-size: 20px;
    font-weight: 400;
}

/* .navar-section .modal-content  input#event_subscribe 
{
    font-size: 20px;
    font-weight: 400;
} */
.breadcrumb_title h1
{
    text-underline-offset: 15px;
    text-align: center;
    color: #ca9b3a;
    text-decoration: underline;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    text-decoration-thickness: 2px;
}

/* ------------------ about page css ---------- --*/

.about-section {
    position: relative;
    padding: 25px 0px;
  
}

.history-philosphy h1 {
    color: #282828;
    font-size: 36px;
}

.history-philosphy hr {
    margin-top: 5px;
    width: 40%;
    border: 2px solid #996700;
}

.history-philosphy p {
    margin-top: 30px;
    color: #363636;
    text-align: justify;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.96px;
}

.history-philosphy-img {
    margin-top: 90px;
}


.history-philosphy button {
    margin-top: 20px;
    border: none;
    border-radius: 6px;
    background: var(--theme-color, #c69733);
    padding: 10px 20px;
    color: #fff;
}

.mission-section {
    background-color: #e1fff1;

}

.what-we-do {
    margin-top: 93px;
}

.what-we-do h1 {
    text-align: center;
    color: #996700;
    font-size: 36px;
}

.what-we-do img {
    margin-top: -10px;
}

.about-inner {
    margin-top: 50px;
}


.about-icon img {
    width: 83px;
}

.about-text h2 {
    color: black;
    font-size: 24px;
    letter-spacing: 0.96px;
    font-weight: 500;
    margin-bottom: 7px;
}

.about-text p {
    color: #363636;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.96px;
}

.about-left-item {
    margin-top: 40px;
}

.team-inner {
    margin-top: 60px;
}

.team-member {
    position: relative;
    ;
}

.team-member img {
    width: 100%;
}

.add-img img {
    width: 35px;
}

.team-name p {
    color: #ca9b3a;
    font-size: 18px;
}

.team-name h2 {
    color: #FFF;
    font-size: 24px;
}

.team-detials {
    bottom: 0;
    width: 100%;
    padding: 12px;
    position: absolute;
}

.team-detials-content {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(5px);
}

.team_des p {
    text-align: justify;
    margin-top: 10px;
}

/*------contact us page css---------------*/
.any-question h2 {
    padding: 20px 0px;
    text-align: center;
    font-size: 36px;
}

.contact-seciton {
    margin-bottom: 40px;
}

.contact-details {
    height: 100%;
    padding: 50px;
    border-radius: 10px;
    background: linear-gradient(180deg, #feeb9f 0%, #c0fbff 100%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}


.contact-form {
    margin-bottom: 50px;
    padding: 50px;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(180deg, #bcebee 0%, #feeb9f 100%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.contact-details h2 {
    color: #282828;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-details p {
    color: var(--text-color);
    font-size: 18px;
    line-height: normal;
}

.contact-details .contact-icons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-details .contact-icons p {
    color: #504e4e;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.contact-input label {
    color: #282828;
    font-size: 18px;
}

.contact-input input {
    padding-left: 17px;
    height: 50px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 0px 4.8px 0px rgba(0, 0, 0, 0.15);
}

.contact-input textarea {
    box-shadow: 0px 0px 4.8px 0px rgba(0, 0, 0, 0.15);
}

.contact-input::placeholder {
    padding: 17px 0px 17px 17px;
    color: #aeaeae;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.textarea {
    height: 95px;
    padding: 17px 0px 0px 17px;
}

.submit-button {
    display: flex;
    justify-content: center;
}

.btn-submit {
    color: #fff;
    display: inline-flex;
    padding: 11px 50px;
    border-radius: 10px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    border: none;
    margin-top: 28px;
    background: var(--theme-color, #c69733);
    box-shadow: 0px 4px 11.1px 0px rgba(0, 0, 0, 0.3);
}

/* -------------------- model css end  here --------------------------*/

/*for loader on contact us page*/


#loader_id 
{
    background: #ffffff;
    color: #000;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .80;
}


.spinner 
{
    margin: 0 auto;
    height: 64px;
    width: 64px;
    animation: rotate 0.8s infinite linear;
    border: 5px solid #ca9b3a;
    border-right-color: transparent;
    border-radius: 50%;
}


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

/*subscriber loader*/

/* #sub_loader_id
{
    background: #ffffff;
    color: #000;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .80;
} */
/*my account page css*/

.myaccount-seciton .main-body {
    padding-top: 25px;
}

.myaccount-seciton .card {
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
}

.myaccount-seciton .card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1rem;
}

.myaccount-seciton .gutters-sm>.col, .gutters-sm>[class*=col-] 
{
    padding-right: 8px;
    padding-left: 8px;
}


.myaccount-seciton .shadow-none {
    box-shadow: none!important;
}

.myaccount-seciton .cus_myacc h6
{
  display: contents;
  padding-right: 2px;
}

.myaccount-seciton .cus_myacc a {
    text-decoration: none;
    color: #000 !important;
}

.myaccount-seciton .cus_myacc.active {
    background-color: #ca9b3a;
    border-color: #fff !important;
}

.myaccount-seciton h3.my_account_heading {
    padding: 10px 0px 20px 0px;
}


.myaccount-seciton li.list-group-item.cus_myacc.active h6 
{
    color: #fff;
}

.myaccount-seciton li.list-group-item.cus_myacc.active i
{
   color: #fff;
}

.evnt_cus_btn {
    color: #fff !important;
    text-transform: capitalize;
}

.drop_event {
    width: 200px;
}

a.download_ticket {
    text-decoration: none;
}

.top_user_profile {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
}

/* edit user profile page css */

.usrpickup_addr {
    font-size: 18px;
    font-weight: bold;
    color: #ca9b3a;
}

.edit_profile {
    text-decoration: none;
}

.remove_img_btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    cursor: pointer;
    color: #f16f31;
    font-weight: 600;
  }

  .usr-img-wrap {
    position: relative;
    display: inline-block;
    margin: 10px;
}

img#usr_old_img {
    width: 100px;
    height: 80px;
    text-align: center;
    margin-top: 10px;
}

.addr_heading {
    color: #ca9b3a;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
}

/* edit user profile page css end */