@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #F2E9E4;
    scroll-behavior: smooth;
}

.overflow-y {
    overflow-y: hidden;
}

.none {
    display: none;
}

select {
    background-color: transparent;
    outline: none;
    border: none;
    color: #F2E9E4;
    /* TODO: Color to White */
}
option { 
    background-color: #000000;
    color: #F2E9E4; 
}

.chatbot {
    position: fixed;
    height: 80px;
    width: 80px;
    bottom: 30px;
    right: 30px;
    z-index: 1;

    transition: 1s ease-in-out;
    animation: chatbot 2s linear infinite;
}

@keyframes chatbot {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
.chatbot img {
    width: 100%;
    cursor: pointer;
}
.hero {
    /* background-image: url("./assets//img/heroBackground.png"); */
    background: linear-gradient(181.09deg, #C9ADA7 -176.38%, #22223B 99.07%);
    /* background-image: url(../assets/img/gallery/Group\ 1.png); */
    /* width: 100vw;
    height: 100vh; */
    position: relative;
    /* height: 600px; */
    z-index: 0;
    max-height: 624.4px;
    height: 624.4px;
    min-height: 624.4px;
}

.hero .hero-bg {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: -1;
    object-fit: cover;
    height: 100%;
}

header {
    display: flex;
    justify-content: space-between;
}

nav {
    width: 100%;
    color: white;
    margin: 4px 170px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

nav.nav-mobile {
    display: none;
}

.nav-left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.logo {
    height: 50px;
    margin-right: 20px;
    cursor: pointer;
}

.nav-right {
    display: flex;
}

.nav-right>ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    color: #F2E9E4;
}

.nav-right>ul>li {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-left: 20px;
    cursor: pointer;
    transition: transform 0.3s;
    min-width: 95px;
    max-width: 250px;
    position: relative;
}

.nav-right>ul>li:hover {
    transform: scale(1.1);
}
.nav-right>button {
    border-radius: 6px;
    background: #9A8C98;
    color: #F2E9E4;
    margin-left: 30px;
    width: 120px;
    height: 40px;
    font-family: 'Poppins';
    margin-top: -6px;
}

button {
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

button:hover {
    transform: scale(1.05);
}

.nav-mobile .btn {
    padding: 10px;
    border-radius: 6px;
    background: rgb(154, 140, 152);
    color: rgb(242, 233, 228);
    margin-left: 5px;
    width: 50vw;
    margin: 0 auto;
}


/* Dropdown Service Button */

.dropbtn {
    background-color: transparent;
    color: #F2E9E4;
    font-size: 1rem;
    font-family: 'Poppins',sans-serif;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #F2E9E4;
    color: #F2E9E4;
    font-weight: 400;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
}

.dropdown-content a:hover {
    background-color: #9A8C98;
    color:white;
    border-radius: 10px;
}
.dropdown:hover .dropdown-content {
    display: block;
}
/* hero box */
.hero-box {
    font-family: 'Poppins', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 30%;
    margin: 0 auto;
}
.hero-box>h1 {
    margin-top: 100px;
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 20px;
}
.hero-box>p {
    font-weight: 300;
    font-size: 1.3125rem;
    color: #F2E9E4;
    text-align: center;
}
.hero-box>button {
    cursor: pointer;
    margin-top: 50px;
    font-size: 20px;
    padding: 15px 25px;
    border-radius: 6px;
    background: #9A8C98;
    color: #F2E9E4;
    margin-bottom: 100px;
    border: none;
    font-weight: 600;
}
/* Events Header */
.events-header {
    /* width: 80%; */
    margin: 50px auto;
    color: #4A4E69;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.events-header a {
    text-decoration: none;
    color: #FAF3EB;
    margin-left: 10px;
    cursor: pointer;
}
.btn-search-wrapper {
    border-radius: 10px;
    display: flex;
    background-color: #9A8C98;
    align-items: center;
    padding: 15px 25px;
    transition: 0.3s;
}
.btn-search-wrapper:hover {
    transform: scale(1.02);
}
/* #Events Header */
.upcoming-events {
    /* width: 80%;
    margin: 0 auto; */
    width:auto;
    margin: 100px 60px 100px;
}
/* Search Bar */
.search-bar {
    background-color: #4A4E69;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0px 10px 50px rgba(34, 34, 59, 0.3);
    z-index: 1;
    width:auto;
    margin: 100px 75px 100px;
    /* width: 80%;
    margin: 30px auto; */
    display: flex;
    justify-content: space-between;
}

.search-bar>div {
    flex-basis: 45%;
}

.search-bar label {
    color: #F2E9E4;
}
.search-bar input {
    color: #F1E7E3;
    width: 100%;
    border:none;
    background-color: transparent;
    border-bottom: 1px solid #9A8C98;
    font-size: 1.5rem;
    font-weight: 700;
}
.events {
    width:auto;
    margin: 100px 60px 100px;
    /* position: relative;
    z-index: 1; */
}

.events h1 {
    padding-left: 30px;
    color: #4A4E69;
}

.events__card {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 576px) {
    .events__card {
        flex-direction: column;
        align-items: center;
    }
    /* .card__items {
        margin-left: -15px;
    } */
    #calendarElem {
        position: absolute;
        top: calc(100% - 14px);
        left: 0;
        width: 300px;
        background-color: #F2E9E4;
        z-index: 3;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        box-shadow: 0 1px 3px #999;
        margin-left: 0px !important;
    }
    .search-bar label {
        color: #F2E9E4;
        width: 70px;
    }
    .search-bar>div {
        flex-basis: 30%;
        margin-left: -20px;
        margin-right: -20px;
    }
    .search-bar input {
        font-size: 1rem !important;
    }
    .calendar input
    {
        width: auto !important;
    }
}

.card__items {
    min-width: 250px;
    flex-basis: 30%;
    margin: 10px 1.5%;
    background-color: #9A8C98;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;

    color: #F1E7E3;
}

.card__items-img>img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card__items-pic {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: #F2E9E4;
}

.card__items-pic>* {
    width: fit-content;
}

.card__items-pic>h2 {
    font-size: 30px;
}

.card__items-pic>p {
    text-align: start;
}

.card__items-pic p:first-child {
    font-weight: 700;
}

.card__items-pic p:nth-child(2) {
    /* font-family: 'DM Sans'; */
    font-weight: 400;
    margin-top: 20px;
}

.card__items-pic {
    display: flex;
    flex-direction: row;
}
.card__items-pic .date {
    flex-basis: 20%;
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
}
.card__items-pic .date span {
    font-weight: 700;
    font-size: 1.5rem;
}
.card__items__details
{
    margin-left: 10px !important;
}

.events a.btn-loadMore {
    display: block;
    width: 140px;
    margin: 0 auto;
    padding: 6px 10px;
    border: 1.5px solid #9A8C98;
    border-radius: 50px;
    text-decoration: none;
    color: #9A8C98;
    font-family: 'Poppins';
    font-weight: 700;
    text-align: center;
    margin-top: 50px;
    font-size: 1.2rem;
}


/* ! Custom Date Input */
.calendar label {
    display: flex;
    align-items: center;
   
}

.calendar  input {
    cursor: pointer;
    color: #F1E7E3;
    width: 100%;
    outline: none;
    border:none;
    background-color: transparent;
    border-bottom: 1px solid #9A8C98;
    font-size: 1.5rem;
    font-weight: 700;
}

.calendar input::placeholder {
    color: #F1E7E3;
}

.calendar img {
    position: absolute;
    margin-left:-30px;
    right: 10px;
    height: 16px;
}
.image {
    height: 16px;
    margin-top: 2px;
    margin-left: 10px;
    text-align: center;
}

.calendar label {
    margin-top: 0;
}
.calendar  input+span {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
    z-index:1;
}

.calendar  input:placeholder-shown+span {
    display: none;
}

/*div.calendar {*/
/*    position: relative;*/
/*}*/


div.calendar.calendar-open label::after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: rgba(255, 255, 255, 0.95); */
    /*z-index: 1;*/
}

#calendarElem {
    position: absolute;
    /**/
    /*top: calc(100% - 14px);*/
    /*left: 0;*/
    width: 300px;
    background-color: #F2E9E4;
    z-index: 3;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 1px 3px #999;
}

#calendarElem .calendar-title {
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    border-bottom: solid thin #ddd;
    position: relative;
}

#calendarElem .calendar-title button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    font-size: 0;
    width: 30px;
    height: 30px;
}

#calendarElem .calendar-title button::after {
    font-family: "Material Icons";
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 26px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
}

#calendarElem .calendar-title button.previous {
    left: 10px;
}

#calendarElem .calendar-title button.next {
    right: 10px;
}

#calendarElem .calendar-title button.previous::after {
    /* content: "\e314"; */
    content: '';
    background-image: url('../assets/img/form/left-arrow.png');
    background-repeat: no-repeat;
    background-position: center;
}

#calendarElem .calendar-title button.next::after {
    /* content: "\e315"; */
    content: "";
    background-image: url('../assets/img/form/right-arrow.png');
    background-repeat: no-repeat;
    background-position: center;
}

#calendarElem .calendar-week {
    display: flex;
    width: 100%;
    font-weight: 300;
}

#calendarElem .calendar-week.title span {
    font-weight: 400;
    color: #000;
}

#calendarElem .calendar-week .calendar-day {
    flex-grow: 1;
    flex-basis: 14.285%;
    text-align: center;
    align-self: center;
}

#calendarElem .calendar-week .calendar-day span {
    display: block;
    height: 26px;
    width: 26px;
    line-height: 26px;
    text-align: center;
    margin: 4px auto;
    cursor: pointer;
    border-radius: 10px;
}

#calendarElem .calendar-week .calendar-day span:hover {
    background-color: #9A8C98;
    color: white;
}

#calendarElem .calendar-week .calendar-day.weekend {
    /* background-color: #f3f3f3; */
}

#calendarElem .calendar-week .calendar-day.inactive {
    background-color: #eee;
    color: #999;
}

#calendarElem .calendar-week .calendar-day.selected {
    background-color: #9A8C98;
    color: white;
    font-weight: 400;
}

#calendarElem .calendar-week .calendar-day.today span {
    /* color: #0092d6;
    font-weight: 400; */
    background-color: #9A8C98;
    color: white;
}

#calendarElem .calendar-week:not(:last-child) {
    border-bottom: solid thin #ddd;
}

#calendarElem .calendar-week .calendar-day:not(:last-child) {
    /* border-right: solid thin #ddd; */
}


/* spots */

.about-spot {
    z-index: 0;
    position: absolute;
    top: 1100px;
    right: 0;
    opacity: 70%;
    mix-blend-mode: multiply;
}

/*.services-spot {*/
/*    z-index: -10;*/
/*    position: absolute;*/
/*    top: 1200px;*/
/*    left: 0;*/
/*    opacity: 70%;*/
/*    mix-blend-mode: multiply;*/
    /* width: 100%; */
/*}*/



/* footer */

footer {
    padding: 60px 120px 30px 120px;
    background-color: #9A8C98;
    color: #F2E9E4;
    display: flex;
    flex-direction: column;
    /* position: relative; */
}

.footer-design {
    position: absolute;
    width: 100vw;
    top: -93px;
    left: 0;
}

.footer-box {
    display: flex;
    justify-content: space-between;
}

.footer-div-1>h1 {
    margin-bottom: 50px;
}

.email {
    display: flex;
    align-items: center;
}

.email>i {
    font-size: 20px;
}

.email>p {
    margin-left: 10px;
    font-weight: 300;
}

.phone {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.phone>i {
    font-size: 15px;
}

.phone>p {
    margin-left: 10px;
    font-weight: 300;
}

.footer-div-2>h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 13px;
    cursor: pointer;
}

.footer-div-2>ul {
    list-style: none;
}

.footer-div-2>ul>li {
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-div-2>button {
    cursor: pointer;
    margin-top: 10px;
    font-size: 12px;
    padding: 15px 25px;
    background: #4A4E69;
    color: #F2E9E4;
    border-radius: 10px;
    border: 0;
}

.location {
    max-width: 160px;
    display: flex;
    font-weight: 300;
}

.location>i {
    margin-right: 10px;
}

.footer-lower-box {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    font-weight: 300;
    font-size: 15px;
}

.footer-lower-box>ul {
    list-style: none;
    display: flex;
}

.footer-lower-box>ul>li {
    margin-right: 20px;
    cursor: pointer;
}


/* Media Queries */
@media screen and (max-width: 1025px) {
    nav {
        margin: 10px 20px;
    }
}
@media screen and (max-width: 850px) {
    .footer-design {
        top: -52px;
    }
}
@media screen and (max-width: 768px) {
    .dropdown-content {
        background-color: #f1f1f1;
        color: #F2E9E4;
        min-width: 160px;
        left: 50%;
        transform: translateX(-50%);
    }
    .dropdown-content a {
        color: black !important;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        border-radius: 10px;
    }
    .dropdown-content a:hover {
        background-color: #9A8C98;
        color:white;
        border-radius: 10px;
    }
    .dropbtn {
        font-size: 1.5rem;
        font-weight: 500;
        padding: 14px 16px;
    }
    .search-bar {
        width: 80%;
        background-color: #4A4E69;
        border-radius: 20px;
        padding: 40px 50px;
        box-shadow: 0px 10px 50px rgba(34, 34, 59, 0.3);
        z-index: 1;
        margin: 30px auto;
        display: block !important;
        justify-content: space-between;
    }
    .events-header {
        display:  block !important;
    }

    .events__card {
        flex-direction: column;
    }
    /* .card__items {
        margin-left: -15px;
    } */
    #calendarElem {
        position: absolute;
        top: calc(100% - 14px);
        left: 0;
        width: 300px;
        background-color: #F2E9E4;
        z-index: 3;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        box-shadow: 0 1px 3px #999;
        margin-left: -194px;
    }
    .search-bar input {
        font-size: 1rem !important;
    }
    .calendar input
    {
        width: auto !important;
    }

    .footer-design {
        top: -42px;
    }
    .image {
        height: 16px;
        margin-top: 2px;
        margin-left: 10px;
        text-align: center;
    }
}

@media screen and (max-width: 426px) {
    .hero
    {
        height: auto !important;
        min-height: auto !important;
    }
    .hero nav {
        display: none;
    }
    .hero-box {
        width: 90%;
        bottom: 20px !important;
    }
    .hero-box>h1 {
        margin-top: 10px !important;
        font-size: 2rem !important;
        text-align: center;
    }
    .hero-box p {
        width: 300px;
        font-size: 1rem !important;
        bottom: 20px;
    }
    .hero-box>button {
        padding: 8px 25px !important;
        margin-top: 15px !important;
        margin-bottom: 5px !important;
    }
    .hero .hero-bg
    {
        object-fit: contain !important;
    }
    .oval {
        display: none;
    }
    .upcoming-events
    {
        margin: 10px 40px 10px !important;
    }
    .events
    {
        margin: 10px 40px 10px !important;
    }
    .events-header >h1
    {
        font-size: 1.567rem !important;
    }

    .search-bar input {
        font-size: 1rem !important;
    }
    .calendar input
    {
        width: auto !important;
    }
    nav.nav-mobile {
        display: block;
    }

    .about-bar {
        width: 90%;
        padding: 10px;
    }

    .about-bar>div>div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-bar-circles {
        width: 100px;
        height: 100px;
    }

    footer {
        padding: 20px;
    }

    .footer-box {
        flex-direction: column;
    }

    .footer-lower-box {
        flex-wrap: wrap;
    }

    .footer-lower-box .copyrights {
        order: 2;
        text-align: center;
    }

    .footer-lower-box ul {
        width: 100%;
        justify-content: space-between;
    }

    .footer-lower-box>ul>li {
        margin: 0;
    }

    .dropdown-content a {
        color: black !important;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        border-radius: 10px;
    }
    

    .dropdown-content a:hover {
        background-color: #9A8C98;
        color:white;
        border-radius: 10px;
    }
    .events-header {
        display:  block !important;
    }
    .card__items-pic
    {
        padding: 0px !important;
    }
    .card__items-pic
    {
        padding-left: 10px;
    }
    .searchresult
    {
        margin-bottom: 20px;
    }
    .search-bar {
        width: 80%;
        background-color: #4A4E69;
        border-radius: 20px;
        padding: 40px 50px;
        box-shadow: 0px 10px 50px rgba(34, 34, 59, 0.3);
        z-index: 1;
        margin: 30px auto;
        display: block !important;
        justify-content: space-between;
    }
    .search-bar label {
        color: #F2E9E4;
        width: 70px;
    }
    .search-bar>div {
        flex-basis: 30%;
        margin-left: -20px;
        margin-right: -20px;
    }
    .events__card {
        flex-direction: column;
        align-items: center;
    }
    /* .card__items {
        margin-left: -15px;
    } */
    #calendarElem {
        position: absolute;
        top: calc(141% - 14px);
        left: 0;
        width: 300px;
        background-color: #F2E9E4;
        z-index: 3;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        box-shadow: 0 1px 3px #999;
        margin-left: 0px !important;
    }
    .image {
        height: 16px;
        margin-top: 2px;
        margin-left: 10px;
        text-align: center;
    }

    nav {
        margin: 0;
    }

    .navbar {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 62px;
    }

    .navbar .menu-items {
        display: flex;
    }

    .navbar .nav-container li {
        list-style: none;
    }

    .navbar .nav-container a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        font-size: 1.2rem;
        padding: 0.7rem;
    }

    .navbar .nav-container a:hover {
        font-weight: bolder;
    }

    .nav-container {
        display: block;
        position: relative;
        height: 60px;
    }

    .nav-container .checkbox {
        position: absolute;
        display: block;
        height: 32px;
        width: 32px;
        top: 20px;
        right: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .nav-container .hamburger-lines {
        display: block;
        height: 26px;
        width: 32px;
        position: absolute;
        top: 17px;
        right: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .nav-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: white;
    }

    .nav-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .nav-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .nav-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 120px;
        /* box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5); */
        height: 100vh;
        width: 100vw;
        transform: translateX(100%);
        display: flex;
        flex-direction: column;
        margin-left: -104px;
        /* padding-left: 50px; */
        transition: transform 0.5s ease-in-out;
        text-align: center;
        background-color: #000000;
    }

    .navbar .menu-items li {
        margin-bottom: 1.2rem;
        font-size: 1.5rem;
        font-weight: 500;
    }

    .navbar__logo {
        width: 44px;
        height: 44px;
        margin-left: 10px;
    }

    /* .nav-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    } */
    .nav-container input[type="checkbox"]:checked~#myLinks {
        transform: translateX(0);
    }

    .nav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .nav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .nav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

    .nav-container input[type="checkbox"]:checked~.logo {
        display: none;
    }

    .gallery__items__vdo {
        flex-direction: column;
    }

    .gallery__titles {
        width: 80%;
    }

    .btn {
        padding: 5px 10px;
    }


    .footer-design {
        top: -23px;
    }
}

/* Google Translate */
.translated-ltr{margin-top:-40px;}
.translated-ltr{margin-top:-40px;}
.goog-te-banner-frame {display: none;margin-top:-20px;}

.goog-logo-link {
   display:none !important;
} 

.goog-te-gadget{
   color: transparent !important;
}


.service-cost-2 {
    display: hidden;
}
/* Remove Sponsored By google */
#goog-gt-tt {
    display:none !important;
    visibility: hidden !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}

 .goog-te-gadget .goog-te-combo {
    color: #F2E9E4 !important;
    font-family:'Poppins', sans-serif ;
    font-size: 1rem;
    cursor: pointer;
 }
 #google_translate_element a {
    display: none !important;
  }
  #google_translate_element img
  {
      display: none !important;
  }

SELECT.goog-te-combo>option{
    background-color: white;
    color:black;
}

SELECT.goog-te-combo>option:hover{
    background-color:#9A8C98;
    color:white;
}
  