* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #F2E9E4;
    /* position: relative;
    z-index: -1; */
}

.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: 1000001 !important;
    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; */
    /* height: 600px; */
    position: relative;
    z-index: 99;
    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%;
}

.diya {
    width: 55.5vw;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    position: absolute;
    bottom: 10px;
    left: 21.9%;

}

.hero .diya-light {
    width: 85px;
    height: 180px;
    background: radial-gradient(87.28% 87.45% at 45.75% 49.91%, #F5A851 0%, #C78942 2%, #9C6B34 4%, #775127 7%, #563B1C 9%, #3B2813 12%, #25190C 15%, #140E06 18%, #080502 23%, #010100 29%, #000000 46%);
    background-blend-mode: screen;
    mix-blend-mode: screen;
    z-index: -1;
}

.diya-light.left {}


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: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-box>p {
    font-weight: 300;
    font-size: 15px;
    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;
    font-family: 'Poppins',sans-serif;
}




/* Gallery */
.gallery {
    width: 80%;
    /* text-align: center; */
    margin: 50px auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.gallery__titles {
    width: 50%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.btn {
    padding: 8px 30px;
    background: #CFCBCF;
    border-radius: 10px;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.btn.active {
    background: #C9ADA7;
    border: 1.33333px solid #C9ADA7;
    box-shadow: 6.66667px 13.3333px 20px rgba(36, 36, 61, 0.2);
}


.row {
    display: flex;
    padding: 0 4px;
}

.row__items {
    height: 200px;
    width: 250px;
    background-color: #4A4E69;
    margin: 0.25% 0.25%;
    overflow: hidden;
    transition: 0.3s;
}

.row__items:hover {
    transform: scale(1.1);
}

.row__items.active {
    position: absolute;
}


.row:nth-child(2n+1) .row__items:nth-child(1) {
    flex-basis: 35%;
}

.row:nth-child(2n+1) .row__items:nth-child(2) {
    flex-basis: 20%;
}

.row:nth-child(2n+1) .row__items:nth-child(3) {
    flex-basis: 30%;
}

.row:nth-child(2n+1) .row__items:nth-child(4) {
    flex-basis: 15%;
}

.row:nth-child(2n) .row__items:nth-child(1) {
    flex-basis: 25%;
}

.row:nth-child(2n) .row__items:nth-child(2) {
    flex-basis: 45%;
}

.row:nth-child(2n) .row__items:nth-child(3) {
    flex-basis: 30%;
}

.row .row__items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Create four equal columns that sits next to each other */
.col {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.col img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* spots */

.about-spot {
    z-index: -1;
    position: absolute;
    top: 800px;
    right: 0;
    opacity: 70%;
    mix-blend-mode: multiply;
}

/*.services-spot {*/
   
/*    position: absolute;*/
/*    top: 1200px;*/
/*    left: 0;*/
/*    opacity: 70%;*/
/*    mix-blend-mode: multiply;*/
    /* width: 100%; */
/*}*/



/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .row {
        /* flex-direction: column; */
        flex-wrap: wrap;
    }

    .row .row__items:nth-child(n) {
        flex-basis: 49% !important;
        max-width: 49%;
    }

    .row:nth-child(2n) .row__items:nth-child(3) {
        flex-basis: 98% !important;
        max-width: 98%;
    }
}


.gallery__items__vdo {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
}

.vdo_items {
    min-width: 250px;
    flex-basis: 30%;
    margin: 10px 1.5%;
    background-color: #9A8C98;
    border-radius: 50px 0 10px 10px;
    overflow: hidden;
    text-align: left;
}

[style*="--aspect-ratio"]> :first-child {
    width: 100%;
}

[style*="--aspect-ratio"]>img {
    height: auto;
}

@supports (--custom:property) {
    [style*="--aspect-ratio"] {
        position: relative;
    }

    [style*="--aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }

    [style*="--aspect-ratio"]> :first-child {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}

.vdo_items>img {
    width: 100%;
}

.vdo_items-pic {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: #F2E9E4;
}

.vdo_items-pic>p:first-child {
    margin-bottom: 5px;
}

.date {
    font-family: 'Vodafone';
    margin-top: 0.5rem;
}

.vdo_items-pic>* {
    width: fit-content;
}

.vdo_items-pic>h2 {
    font-size: 30px;
}

.vdo_items-pic>p {
    text-align: start;
}

/* 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;
    }
    .footer-design {
        top: -42px;
    }
}

@media screen and (max-width: 426px) {
    .hero
    {
        height: auto !important;
        min-height: auto !important;
    }
    .hero nav {
        display: none;
    }

    .hero-box {
        width: 90%;
    }
    .hero-box>h1 {
        margin-top: 10px !important;
        font-size: 2rem !important;
        text-align: center;
    }
    .hero-box p {
        width: 300px;
        font-size: 1rem !important;
    }
    .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;
    }
    .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;
    }
    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;
    }

    .row {
        /* max-width: 90vw; */
    }

    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;
    }

    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;
}
/* 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;
}
  