* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #F2E9E4;
    background: linear-gradient(31.05deg, #C9ADA7 15.51%, #F2E9E4 100%);
}

.overflow-y {
    overflow-y: hidden;
}

a {
    text-decoration: none;
}

select {
    background-color: transparent;
    outline: none;
    border: none;
}
.hero {
    /* background-image: url("./assets//img/heroBackground.png"); */
    /* background-image: url(../assets/img/gallery/Group\ 1.png); */
    width: 100vw;
    position: relative;
}


header {
    display: flex;
    justify-content: space-between;
}

nav {
    width: 100%;
    color: #22223B;
    margin: 4px 170px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

nav.nav-mobile {
    display: none;
    z-index: 2;
}

.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: #4A4E69;
}

.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;
}


h1 {
    font-weight: 700;
    font-size: 3rem;
    color: #4A4E69;
    text-align: center;
}

/* Dropdown Service Button */

.dropbtn {
    background-color: transparent;
    font-size: 1rem;
    font-family: 'Poppins',sans-serif;
    color:#4A4E69;
}

.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;
}

.modal {
    min-height: 80%;
    width: 30%;
    min-width: 500px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);

    border-radius: 40px;

    margin: 200px auto 100px;

    position: relative;
    z-index: 1;
}

.modal h1 {
    font-size: 2.375rem;
    font-weight: 400;
    color: #22223B;
    text-align: left;
}

.modal img {
    position: absolute;
    height: 200px;
    top: -187px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-form {
    display: flex;
    flex-direction: column;
    padding: 10% 10%;
    transition: 0.6s;
}

label {
    font-weight: 500;
    font-size: 1.125rem;
    color: #22223B;
    margin-top: 20px;
}

.input {
    background: #F2E9E4;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 10px;
    font-weight: 400 !important;
    color: #9A8C98 !important;
    opacity: 0.68;
    font-size:1.125rem;
    font-family: 'Poppins';
}

input::placeholder {
    color: #9A8C98 !important;
    font-family: 'Poppins';
}

textarea {
    width: auto;
    height: 100px;
    resize: none;
    font-family: 'Poppins';
}

.btn {
    padding: 8px;
    background: #9A8C98;
    border-radius: 10px;
    text-align: center;

    font-family: 'Poppins';
    font-weight: 700;
    font-size: 1.25rem;
    color: #F2E9E4;
    transition: 0.3s;

    margin-top: 20px;

    text-decoration: none;
}

.btn:hover {
    transform: scale(1.05);
}

center {
    margin: 20px 0 20px;
    font-size: 0.9375rem;

    text-decoration: underline;
}

/* spots */
.about-spot {
    position: absolute;
    top: 800px;
    right: 0;
    opacity: 70%;
    mix-blend-mode: multiply;
    z-index: 0;
}



/* 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: -63px;
    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: -7px;
    cursor: pointer;
}

.footer-div-2>ul {
    list-style: none;
}

.footer-div-2>ul>li {
    margin-bottom: 15px;
    font-weight: 300;
    cursor: pointer;
}

.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) {
    .logo {
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .navbar .menu-items {
        align-items: center;
        color: #F2E9E4;
    }
    .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;
        color: #F2E9E4;
        font-family: 'Poppins';
        padding: 14px 16px;
    }
}
@media screen and (max-width: 480px) {
    .hero nav {
        display: none;
    }
    .hero-box>h1 {
        margin-top: 100px !important;
        text-align: center;
    }

    .oval {
        display: none;
    }
    .modal h1
    {
        font-size: 1.75rem !important;
    }
    .input
    {
        font-size: 0.90rem !important;
    }
    nav.nav-mobile {
        display: block;
    }
    .modal {
        min-width: 300px;
    }
    .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;
    }
    .services-spot {
        display: none;
    }
    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: 20px;
        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;
        height: 100vh;
        width: 100vw;
        transform: translateX(100%);
        display: flex;
        flex-direction: column;
        margin-left: -104px;
        transition: transform 0.5s ease-in-out;
        text-align: center;
        background-color: #000000;
        color: #F2E9E4;
        align-items: center;
    }
    .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~#myLinks {
        transform: translateX(0);
        display: block !important;
    }
    .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;
    }
    .btn {
        padding: 5px 10px;
        margin-top: 0px !important;
    }
    .footer-design {
        top: -1.5%;
    }
}
/* 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: #4A4E69 !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;
}