* {
    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;
}
.overflow-y {
    overflow-y: hidden;
}
a {
    text-decoration: none;
}
.hero {
    background-color: #000000;
    /* background-image: url("./assets//img/heroBackground.png"); */
    /* background-repeat: no-repeat, repeat;
    background-position: center;
    background-size: cover; */
    width: 100vw;
    position: relative;
    /* z-index: 0; */
}
.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}
header {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
nav {
    width: 100%;
    color: #F2E9E4;
    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;
    position: relative;
}
.nav-left div {
    position: relative;
}
.nav-left ul {
    cursor: pointer;
    position: absolute;
}
.nav-left ul li {
    display: none;
    list-style: none;
    background-color: #F2E9E4;
    color: #22223B;
}
.nav-left ul li:hover {
    background-color: #9A8C98;
    color: #F2E9E4;
}
.nav-left div {
    cursor: pointer;
}
/* 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;
}
 
.translated-ltr {
    margin-top: -40px !important;
}
.goog-te-banner-frame {
    display: none;
    margin-top: -20px;
}
.goog-logo-link {
    display: none !important;
}
.goog-te-gadget {
    color: transparent !important;
}
/*  */
select {
    outline: none;
    background-color: transparent;
    border: none;
    color: #F2E9E4;
}
option {
    color:#000000;
}
option:hover {
    background-color: #9A8C98;
}
.nav-left div:hover li {
    display: block;
}
.nav-left ul li:first-child {
    border-radius: 10px 10px 0 0;
    margin-top: 10px;
}
.nav-left ul li:last-child {
    border-radius: 0 0 10px 10px;
}
.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.0);
}
.nav-right>button {
    border-radius: 6px;
    background: #9A8C98;
    color: #F2E9E4;
    margin-left: 30px;
    width: 120px;
    height: 40px;
    font-family: 'Poppins';
    margin-top: -6px;
    position: relative;
}
.menu-items>button{
    display: block;
    margin: 0 auto;
    padding: 10px;
    border-radius: 6px;
    background: #9A8C98;
    color: #F2E9E4;
    width: 120px;
    height: 40px;
    font-family: 'Poppins';
}
#myLinks>button{
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    background: #9A8C98;
    color: #F2E9E4;
    width: 120px;
    height: 40px;
    font-size: 1.10rem;
    font-family: 'Poppins';
}
.accountdropdown>button{
    display: block;
    margin: 0 auto;
    border-radius: 50% 50% 50%;
    background: #9A8C98;
    color: #F2E9E4;
    width: 50px;
    height: 50px;
    font-family: 'Poppins';
    margin-top: -10px;
    font-size: 25px;
    text-align: center;
    position: absolute;
    margin-left: 35px;
}
.accountdropdown {
    display: inline-block;
    position: relative;
}
.accountdropdown-content {
display: none;
position: absolute;
background-color: #F2E9E4;
color: #000000;
font-weight: 400;
min-width: 120px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
border-radius: 10px;
margin-top: 39px;
margin-left: -29px;
}
  .accountdropdown:hover .accountdropdown-content {
    display: block;
  }
  .accountdropdown-content a {
    display: block;
    color: black;
    padding: 5px;
    text-decoration: none;
  }
  .accountdropdown-content 
  a:hover {
   
    background-color: #9A8C98;
    color:white;
    border-radius: 10px;
  }
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;
    
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #F2E9E4 inset !important;
}
/* Dropdown Service Button */

.dropbtn {
    background-color: transparent;
    color: #F2E9E4;
    font-size: 1rem;
    font-family: 'Poppins';
}

.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; */
    background-color: #a294a0;
    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: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
/* .hero-box>h1 {
    margin-top: 100px;
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 20px;
    text-align: center;
} */
.hero-box>h1 {
    margin-top: 100px;
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 20px;
}
.hero-box p {
    margin-top: 100px;
    /* font-weight: 500; */
    font-size: 1.3125rem;
    color: #F2E9E4;
    text-align: center;
}
.hero-box p>span {
    font-weight: 500;
}
.hero-box>button {
    cursor: pointer;
    margin-top: 50px;
    font-size: 1.4375rem;
    padding: 15px 25px;
    border-radius: 6px;
    background: #9A8C98;
    color: #F2E9E4;
    margin-bottom: 100px;
    font-weight: 600;
    font-family: 'Poppins';
}
.hero-box img {
    position: absolute;
    bottom: 100px;
    right: -150px;
    transform: 0.3s;
    cursor: pointer;
}
.hero-box img:hover {
    transform: scale(1.05);
}
.oval {
    width: 50px;
    height: 120px;
    border: 4px solid white;
    border-radius: 30px;
    position: relative;
    transform: translateY(-60px);
    cursor: pointer;
    transition: 0.3s;
}
.circle {
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 100%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}
/* .oval.mute {
    background: #9A8C98;
} */
.oval.mute .circle {
    top: 80px;
}
/* about bar */
.about-bar {
    width: 80%;
    background-color: #F2E9E4;
    border-radius: 20px;
    margin: -40px auto;
    padding: 10px 50px;
    color: #9A8C98;
    box-shadow: 0px 4px 10px 0px #9A8C984D;
    position: relative;
    z-index: 0;
}
.about-bar>div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-bar>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-bar-circles {
    width: 128px;
    height: 128px;
    background-color: #9A8C98;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-bar-circles>img {
    width: 100%;
}


/* about */

.about {
    margin-top: 100px;
    /* max-width: 800px; */
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 35px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 100px auto 50px;
    position: relative;
}

.about>h1 {
    color: #22223B;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
}

.about>p {
    width: 70vw;
    margin: 0 auto;
    color: #22223B;
    opacity: 0.7;
}

.about-pic-box {
    display: flex;
    max-width: 800px;
    margin: 30px 0 auto;

    /* align-items: flex-end; */
}

.about-pic {

    /* width: 50%; */

    position: relative;
    /* height: 350px; */
}

.about-pic-first>img {
    width: 100%;
    height: 100%;
    background-size: cover;
    /* border-radius: 50% 0 0 0; */
    /* overflow: hidden; */
}
.about-pic-second>img {
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 0 0 50% 0;
    /* overflow: hidden; */
}
.about-pic-first {
    border-radius: 50% 0 0 0;
    margin-right: 25px;
    position: relative;
}
.about-pic-second {
    border-radius: 0 0 50% 0;
    margin-left: 25px;
}

.dash {
    border-left: 5px dashed #9A8C98;
    border-width: 5px;

    transform: scaleY(1.05) translateY(-2.5%);
}

.read-more {
    margin-top: 30px;
    font-weight: 700;
    font-size: 20px;
    text-decoration: underline;
    color: #22223B;
}


/* services */

.services {
    /* max-width: 800px; */
    width: 60vw;

    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 25px;
    justify-content: center;
    padding: 20px;
    margin: 20px auto;
}

.services>h1 {
    color: #22223B;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
}

.services-pics {
    margin-top: 40px;
    width: 100%;
    display: flex;
}

.services-pic1 {
    width: 50%;
    margin-right: 70px;
    background-color: #9A8C98;
    border-radius: 100px 10px 10px 10px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.services-pic1:hover {
    transform: scale(1.02);
}

.services-pic2 {
    width: 50%;
    background-color: #9A8C98;
    border-radius: 100px 10px 10px 10px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.services-pic2:hover {
    transform: scale(1.02);
}

.services-pic1>img {
    width: 100%;
    border-radius: 10px;
}

.services-pic2>img {
    width: 100%;
    border-radius: 10px;
}

.services-pic-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: #F2E9E4;
}


.services-pic-info>* {
    width: fit-content;
}

.services-pic-info>h2 {
    font-size: 30px;
}

.services-pic-info>p {
    text-align: start;
    margin-top: 20px;
    height: 80px;
    margin-bottom: 20px;
}

.services-pic-info>button {
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
    padding: 15px 25px;
    background: #4A4E69;
    color: #F2E9E4;
    border-radius: 10px;
    border: 0;
    font-weight: 600;
}

.services-pic-info>button:hover {
    transform: scale(1.05);

}


/* gallery */

.gallery {
    margin-top: 100px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 25px;
    justify-content: center;
    margin: 100px auto 10px;
}

.gallery>h1 {
    color: #22223B;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
}

.carousel {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.carousel__cards {
    position: relative;
    width: 20rem;
    height: 20rem;
}

.carousel__card {
    width: 100%;
    height: 150%;
    position: absolute;
    border: 2px solid white;
    border-radius: 100px 15px 15px 15px;
    font-size: 3em;
    font-weight: 700;
    overflow: hidden;
    opacity: 60%;
    transition: transform 0.3s ease-in, opacity 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.carousel__img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_card {
    opacity: 100%;
    box-shadow: 2px 1px 25px 11px #583D3A26;
}

.left_card {
    transform: scale(70%) translateX(-122%) !important;
}

.right_card {
    transform: scale(70%) translateX(122%) !important;
}

.carousel__control {
    margin-top: 120px;
}

.carousel__btn {
    outline: none;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #4A4E69;
    font-size: 1.2em;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    margin: 0 2rem;
    margin-top: 60px;
    font-size: 40px;
    padding: auto;
}

.carousel__btn:hover {
    transform: scale(1.04);
    background: #000000;
}

.btn-explore {
    letter-spacing: 0.98377px;
    text-decoration-line: underline;
    color: #22223B;
    font-weight: 700;

    display: block;
    text-align: center;
}

/* testimonials */

.testimonials {
    margin-top: 100px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    text-align: center;
    place-items: center;
    line-height: 25px;
    justify-content: center;
    padding: 20px;
    margin: 100px auto;
}

.testimonials>h1 {
    color: #4A4E69;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
    max-width: 350px;
    position: relative;
    z-index: 0;
}

.testimonials>h1:before {
    content: '';
    width: 80px;
    height: 80px;
    background-color: #9A8C98;
    position: absolute;
    border-radius: 100%;
    z-index: -1;
    top: -45px;
    left: -34px;
}

.quote {
    position: absolute;
    width: 28px;
    top: -27px;
    left: -15px;
}

.testimonials-box {
    display: flex;
    margin-top: 50px;
    justify-content: space-between;
}

.people {
    margin-right: 100px;
    position: relative;
    width: 400px;
    height: 450px;
    /* transform: rotate(90deg); */

    flex-basis: 40%;
}

.people .person img {
    /* transform: rotate(-90deg); */
}

.person {
    border-radius: 100%;
    border: 5px solid #cbac95;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: absolute;
    cursor: pointer;
    width: 170px;
    transition: all 0.3s ease-in;
    outline: none;
    user-select: none;
    box-shadow: 0px 8px 17px -2px #C4643C66;
}

.person>p {
    display: none;
}

.person>img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
}

.person-main {
    top: 130px;
    right: 0px;
}

.p-1 {
    top: 130px;
    right: 0px;
}

.person-1 {
    top: -40px;
    right: -30px;
    transform: scale(55%);
}

.person-2 {
    top: 60px;
    right: 200px;
    transform: scale(80%);
}

.person-3 {
    top: 245px;
    right: 200px;
    transform: scale(90%);
}

.person-4 {
    top: 320px;
    right: -10px;
    transform: scale(80%);
}


.testimonials-bar {
    width: 7px;
    background: linear-gradient(180deg, rgba(74, 78, 105, 0.52) 0%, rgba(154, 140, 152, 0.19) 100%);
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.testimonials-circle {
    width: 22px;
    height: 22px;
    background-color: #9A8C98;
    border-radius: 100%;
    position: relative;
    cursor: pointer;
}

.testimonials-circle:before {
    content: '';
    width: 27px;
    height: 27px;
    border: 1px solid #9A8C98;
    position: absolute;
    border-radius: 100%;
    top: -3.5px;
    left: -3.5px;
    cursor: pointer;
}

.testimonials-circle-selected {
    background-color: #4A4E69;
    cursor: pointer;
}

.testimony-box {
    padding: 80px;
    width: 600px;
    margin-left: 65px;
    /* height: 450px; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */

    flex-basis: 50%;

    text-align: left;

    color: #4A4E69;
}

.testimony {
    position: relative;

    font-size: 1.25rem;
    margin-bottom: 10px;
}

.testimony:after {
    content: '';
    position: absolute;
    background: url('./assets/img/home/quote.png');
    left: -60px;
    top: 0;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
}

.testimony-name {
    font-weight: 700;
    font-size: 1.0625rem;
}

.testimony-info {
    font-size: 0.875rem;

}

/* footer */

footer {
    padding: 60px 120px 30px 120px;
    background-color: #9A8C98;
    color: #F2E9E4;
    display: flex;
    flex-direction: column;

    position: relative;
    /* 
    background-image: url(/assets/img/footer.png);
    background-size: contain; */

}

.footer-design {
    position: absolute;
    width: 100vw;
    top: -93px;
    left: 0;
}

.footer-box {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.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>ul>li>h3 {
    font-size: 20px;
    font-weight: 500;
    /* margin-bottom: 50px; */
    margin-top: -7px;
    cursor: pointer;
}

.footer-div-2>ul {
    list-style: none;
}

.footer-div-2>ul>li {
    margin-bottom: 15px;
    font-weight: 400;
    cursor: pointer;
}

.footer-div-2>button {
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
    padding: 15px 25px;
    background: #4A4E69;
    color: #F2E9E4;
    border-radius: 10px;
    border: 0;
    font-weight: 600;
}

.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;
}
.social-icons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.social-icons a {
    width: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.social-icons a:hover {
    transform: scale(1.05);
}
.social-icons img {
    width: 100%;
    object-fit: contain;
}
/* spots */
.about-spot {
    /* z-index: -10; */
    position: absolute;
    top: 1500px;
    right: 0;
    opacity: 70%;
    mix-blend-mode: multiply;
}

.services-spot {
    z-index: -10;
    position: absolute;
    top: 2500px;
    left: 0;
    opacity: 70%;
    mix-blend-mode: multiply;
}

.testimonial-spot {
    position: absolute;
    top: 3200px;
    right: 0;
    opacity: 70%;
    mix-blend-mode: multiply;
}

/*==================
    Media Queries 
====================*/
@media screen and (max-width: 1025px) {
    nav {
        margin: 5px 20px;
    }
    header {
        position: static;
        z-index: inherit;
    }
    .footer-design {
        top: -63px;
    }
    footer {
        padding: 50px 10px;
    }
    .services {
        width: 70vw;
    }
    .testimonials-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .testimonials-bar {
        transform: rotate(90deg);
        /* margin */
    }
    .testimony-box {
        width: 100%;
    }
    .testimonials {
        margin-bottom: 50px;
    }
    .testimony-box {
        margin-top: -250px;
        padding: 10px;
        margin-left:10px;
    }
    .testimony:after {
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }
    .testimonials-bar {
        height: 90vw;
    }
    .person {
        width: 200px;
        height: 200px;
    }
    .person-main {
        top: 40vw;
    }
    .person-1 {
        top: 10vw;
    }
    .person-2 {
        top: 20vw;
        right: 30vw;
    }
    .person-3 {
        top: 60vw;
        right: 35vw;
    }
    .person-4 {
        top: 75vw;
    }
    .people {
        transform: rotate(90deg);
        /* margin-bottom: 14vw; */
        margin-right: -105vw;
        margin-top: 250px;
        margin-bottom: -100px;
    }
    .people .person img {
        transform: rotate(-90deg);
    }
    .dropbtn {
        background-color: transparent;
        color: #F2E9E4;
        font-size: 1rem;
        font-family: 'Poppins';
    }
    
    .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;
    }
    

}


@media screen and (max-width: 850px) {
    .footer-design {
        top: -52px;
    }
    .dropbtn {
        background-color: transparent;
        color: #F2E9E4;
        font-size: 1rem;
        font-family: 'Poppins';
    }
    .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;
    }
    .about-bar>div {
        justify-content: center !important;
    }
}

@media screen and (max-width: 768px) {
    .hero nav {
        display: none;
    }
    .sticky{
        backdrop-filter: none !important;
    }
    .hero-box>h1 {
        margin-top: 100px !important;
        text-align: center;
    }

    .oval {
        display: none;
    }

    nav.nav-mobile {
        display: block;
        position: fixed;
    }

    .navbar__logo {
        width: 44px;
        height: 44px;
        margin-left: 10px;
    }


    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 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;
        cursor: pointer;
    }
    .navbar .menu-items li {
        margin-bottom: 1.2rem;
        font-size: 1.5rem;
        font-weight: 500;
    }
    .navbar .logo {
        /* position: absolute;
        top: 5px;
        right: 15px;
        font-size: 1.2rem;
        color: white; */
    }
    .hero-box img {
        right: -80px;
    }
    .about-bar>div {
        justify-content: center !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: 1.5rem;
        cursor: pointer;
    }
    #google_translate_element a {
        display: none !important;
    }
    #google_translate_element img
    {
        display: none !important;
    }

    .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;
    }

    /* .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;
    }
    
    .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;
    }
    .accountdropdown>button{
        display: block;
        margin-left: -20px;
        border-radius: 50% 50% 50%;
        background: #9A8C98;
        color: #F2E9E4;
        height: 40px;
        font-family: 'Poppins'; 
        margin-top: -10px;
        font-size: 25px;
        text-align: center;
    }
      .accountdropdown-content {
        background-color: #f1f1f1;
        color: #F2E9E4;
        min-width: 160px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0px !important;
        margin-left: 0px !important;
      }
      .accountdropdown:hover .accountdropdown-content {
        display: block;
      }
      .accountdropdown-content a {
        color: black !important;
        padding: 5px 16px !important;
        text-decoration: none;
        display: block;
        border-radius: 10px;
        font-size: 1.20rem !important;
      }
      .accountdropdown-content a:hover {
       
        background-color: #ddd;
        border-radius: 10px;
      }
    .footer-design {
        top: -42px;
    }

    .services {
        width: 95vw;
    }
    .testimonials-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-left:10px;
    }
    .testimonials-bar {
        transform: rotate(90deg);
        /* margin */
    }
    .testimony-box {
        width: 100%;
    }
    .testimonials {
        margin-bottom: 50px;
    }
    .testimony-box {
        margin-top: -200px;
        padding: 10px;
        margin-left: 10px;
        margin-top: -140px;
    }
    .testimony:after {
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }
    .testimony:after {
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }
    .testimonials-bar {
        height: 90vw;
        margin-top: 50px;
    }
    .person {
        width: 200px;
        height: 200px;
    }
    .person-main {
        top: 40vw;
    }

    .person-1 {
        top: 10vw;
    }

    .person-2 {
        top: 20vw;
        right: 30vw;
    }

    .person-3 {
        top: 60vw;
        right: 35vw;
    }

    .person-4 {
        top: 75vw;
    }

    .people {
        transform: rotate(90deg);
        /* margin-bottom: 14vw; */
        margin-right: -115vw;
        margin-top: 200px;
    }

    .people .person img {
        transform: rotate(-90deg);
    }
}

@media screen and (max-width: 426px) {
    .hero nav {
        display: none;
    }
    .sticky{
        backdrop-filter: none !important;
    }
    .hero video {
       object-fit: contain !important;
    }
    .hero-box {
        width: 50%;
    }
    .hero-box>p {
        margin-top: 60px !important;
        width: 300px;
        font-size: 1rem !important;
    }
    .hero-box p >span{
        font-size: 1.356rem  !important;
    }
    .hero-box>h1 {
        margin-top: 50px;
        text-align: center;
    }
    .hero-box>button
    {
        padding: 8px 25px !important;
        margin-top: 15px;
        margin-bottom: 60px !important;
        font-size: 1rem !important;
    }
    .hero-box img
    {
        bottom: 70px !important;
    }
    .oval {
        display: none;
    }
    nav.nav-mobile {
        display: block;
        position: fixed;
    }
    .navbar__logo {
        width: 44px;
        height: 44px;
        margin-left: 10px;
    }
    .hero-box img {
        right: -80px;
        width: 35px !important;
    }
    .testimonial-spot
    {
        display: none !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: 1.5rem;
        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;
    }
    .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;
    }
    .about-bar {
        width: 90%;
        padding: 10px;
    }
    .about-bar>div {
        justify-content: center !important;
    }
    .about-bar>div>div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-basis: 50%;
        margin: 10px 0;
    }
    .about-bar>div>div:last-child {
        flex-basis: 100%;
    }
    .about-bar-circles {
        width: 100px;
        height: 100px;
    }
    .services-spot {
        display: none;
    }
    .testimonials-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: -70px;
    }
    .testimonials-bar {
        transform: rotate(90deg);
        /* margin */
    }
    .testimony-box {
        width: 100%;
    }
    .accountdropdown>button{
        display: block;
        margin: 0 auto;
        border-radius: 50% 50% 50%;
        background: #9A8C98;
        color: #F2E9E4;
        width: 50px;
        height: 50px;
        font-family: 'Poppins'; 
        position: sticky;
    }
    .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 {
        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;
        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;
        cursor: pointer;
    }

    .navbar .menu-items li {
        margin-bottom: 1.2rem;
        font-size: 1.5rem;
        font-weight: 500;
    }

    /* navbar .logo {
        position: absolute;
        top: 5px;
        right: 15px;
        font-size: 1.2rem;
        color: white;
    } */

    /* .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;
    }

   

    .services {
        width: 90vw;
    }

    .services-pics {
        flex-direction: column;
    }

    .services-pic1 {
        flex-basis: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    .services-pic2 {
        flex-basis: 100%;
        width: 100%;
    }

    .testimonials {
        margin-bottom: 50px;
    }

    .testimony-box {
        margin-top: -100px;
        padding: 10px;
        margin-left: 10px;
    }

    .testimony:after {
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonials-bar {
        height: 90vw;
        margin-top: 50px;
    }

    .person {
        width: 130px;
        height: 130px;
    }

    .person-main {
        top: 40vw;
    }

    .person-1 {
        top: 10vw;
    }

    .person-2 {
        top: 20vw;
        right: 30vw;
    }

    .person-3 {
        top: 60vw;
        right: 35vw;
    }

    .person-4 {
        top: 75vw;
    }

    .people {
        transform: rotate(90deg);
        /* position: relative;
        left: 60%; */
        margin-bottom: 14vw;
        margin-right: -115vw;
        /* width: auto; */
        /* height: 100vw; */
    }

    .people .person img {
        transform: rotate(-90deg);
    }

    footer {
        padding: 20px;
    }

    .footer-box {
        flex-direction: column;
    }

    .footer-div-1>h1 {
        margin-bottom: 20px;
    }

    .flexbox {
        display: flex;
        justify-content: space-between;
    }

    .footer-div-2>h3 {
        font-size: 1.125rem;
        font-weight: 400;
        margin-bottom: 15px; 
        margin-top: 30px;
    }

    .footer-div-2>ul>li {
        margin-bottom: 10px;
    }

    .footer-div-2>button {
        margin: 0 0 20px;
    }

    .location {
        max-width: max-content;
    }

    .footer-lower-box {
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .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;
    }

    .footer-design {
        top: -23px
    }

    /* Spots */
    .about-spot {
        width: 100vw;
    }

    .testimonial-spot {
        width: 100vw;
    }

    .services-spot {
        width: 100vw;
    }
}