
/*===== VARIABLES CSS =====*/
:root {
    --header-height: 3rem;
    /*========== Colors ==========*/
    --first-color: #E6FF94;
    --first-color-alt: #048654;
    --title-color: #393939;
    --text-color: #707070;
    --text-color-light: #A6A6A6;
    --body-color: #D6EAF8;
    --container-color: #FFFFFF;
    /*========== Font and typography ==========*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes ==========*/
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}


/*========== BASE ==========*/
*, ::before, ::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
    --title-color: #F1F3F2;
    --text-color: #C7D1CC;
    --body-color: #4d1814;
    --container-color: #27302C;
}


/*========== Button Dark/Light ====*/
.change-theme {
    position: absolute;
    right: 1rem;
    top: 1.8rem;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.6;
    /* -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}

h1, h2, h3, p, ul {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*========== CLASS CSS ==========*/
.section {
    padding: 4rem 0 2rem;
}

.section-title, .section-subtitle {
    text-align: center;
}



/*========== LAYOUT ==========*/
.bd-container {
    max-width: 990px;
    width: calc(100% - 3rem);
    margin-left: var(--mb-2);
    margin-right: var(--mb-2);
}

.bd-grid {
    display: grid;
    gap: 1.5rem;    
}

.l-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: var(--body-color);
}

/*========== MEDIA QUERIES for Mobile ==========*/
@media screen and (max-width: 990px) {
    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        padding: 1.5rem 0 1rem;
        text-align: center;
        background-color: var(--body-color);
        transition: .4s;
        box-shadow: 0 4px 4px rgba(0,0,0,.1);
        border-radius: 0 0 1rem 1rem;
        z-index: var(--z-fixed);
    }

    .nav__item:hover {
        background-color: #114232;
        padding: 4px 0px;
    }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
    .home__container {
        height: 640px;
    }
}

/*========== NAV ==========*/
.nav {
    max-width: 1024px;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav__item {
    margin-bottom: var(--mb-2);
}

.nav__link, .nav__logo, .nav__toggle {
    color: var(--text-color);
    font-weight: var(--font-medium);
}
   
.nav__link {
    transition: .3s;
}

    .nav__link:hover {
        color: var(--first-color);
    }

.nav__toggle {
    font-size: 2.5rem;
    cursor: pointer;
}

/* Show menu */
.show-menu {
    top: var(--header-height);
}

/* Active menu */
.active-link {
    color: var(--first-color);
}



/*========== MEDIA QUERIES for Desktop or Laptop ==========*/

@media screen and (min-width: 990px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

@media screen and (min-width: 990px) {
    body {
        margin: 0;
    }

    .section {
        padding-top: 8rem;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__list {
        display: flex;
    }

    .nav__item {
        margin-left: var(--mb-5);
        margin-bottom: 0;
    }

    .nav__toggle {
        display: none;
    }

    .change-theme {
        position: initial;
        margin-left: var(--mb-2);
    }

    .home__container {
        height: 100vh;
        justify-items: center;
    }
}

@media screen and (min-width: 990px) {
    .bd-container {
        margin-left: auto;
        margin-right: auto;
    }

    .l-banner {
        margin-top: calc(var(--header-height) + 1.4rem);
    }
}



/* Scroll top */
.scrolltop {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .3rem;
    background: rgba(6,156,84,.5);
    border-radius: .4rem;
    z-index: var(--z-tooltip);
    transition: .4s;
    visibility: hidden;
}

   
.scrolltop__icon {
    font-size: 1.8rem;
    color: var(--body-color);
}

/* Show scrolltop */
.show-scroll {
    visibility: visible;
    bottom: 1.5rem;
}


/*========== BUTTONS ==========*/
.button {
    display: inline-block;
    background-color: #002e5f;
    color: #FFF;
    padding: .35rem 1rem;
    border-radius: .5rem;
    transition: .3s;
    margin-top: 10px;
    border-color: white;
    font-weight: bold;
    width: 100px;
}

    .button:hover {
        background-color: black;
    }



/*========== CONTACT ==========*/
.contact__container {
    text-align: center;
}

.contact__description {
    margin-bottom: var(--mb-3);
}

.contact-in {
    width: 90%;
    height: auto;
    margin: auto auto 5rem auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
}

.contact-map {
    width: 100%;
    height: auto;
    flex: 50%;
}

    .contact-map iframe {
        width: 100%;
        height: 100%;
    }


.contact-form {
    width: 100%;
    height: auto;
    flex: 50%;
    text-align: left;
}

.contact-form-txt {
    margin-top: 2rem;
    margin-left: 1rem;
    width: 90%;
    height: 20px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-email {
    margin-left: 1rem;
    width: 90%;
    height: 20px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-txt::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.contact-form-email::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.contact-form-txtarea {
    margin-left: 1rem;
    width: 90%;
    height: 110px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
}

    .contact-form-txtarea::placeholder {
        color: #aaa;
        font-size: 1.5rem;
    }

.contact-form-btn {
    margin-left: 2rem;
    outline: none;
    border: none;
    border-radius: 5rem;
    background: white;
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.5rem;
    cursor: pointer;
    height: 2.4rem;
    width: 12rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

    .contact-form-btn:hover {
        letter-spacing: .1rem;
        opacity: .9;
        color: white;
        background: #002e5f;
    }

.contact-form-phone {
    margin-left: 1rem;
    width: 90%;
    height: 20px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

    .contact-form-phone::placeholder {
        color: #aaa;
        font-size: 1.5rem;
    }



/*========== FOOTER ==========*/
.footer__container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    row-gap: 2rem;
}

.footer__logo {
    font-size: var(--h3-font-size);
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
}

.footer__description {
    display: block;
    font-size: var(--small-font-size);
    margin: .25rem 0 var(--mb-3);
}

.footer__social {
    font-size: 1.5rem;
    color: var(--title-color);
    margin-right: var(--mb-2);
}

.footer__title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    margin-bottom: var(--mb-2);
}

.footer__link {
    display: inline-block;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
}

    .footer__link:hover {
        color: var(--first-color);
    }

.footer__copy {
    text-align: center;
    font-size: var(--small-font-size);
    color: var(--text-color);
    margin-top: 3.5rem;
}


/*========== CSS ==========*/


.grid-Container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: center;
    row-gap: 2.5rem;
    column-gap: 2.0rem;
}


.__container {
    grid-template-columns: repeat(1,1fr);
    align-items: center;
    padding-top: 0rem;
}

.__container2 {
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    align-items: center;
    padding-top: 0rem;
    row-gap: 2.5rem;
    column-gap: 2.0rem;
}

.__container6 {
    grid-template-columns: repeat(6,1fr);
    align-items: center;
    padding-top: 0rem;
    column-gap: 0.5rem;
}

.section-title {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    margin-bottom: var(--mb-3);
}

.section-subtitle {
    display: block;
    color: var(--first-color);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-3);
}

.app__initial {
    text-align: initial;
}

.lable {
    width: 200px;
}

.suggest_link {
    background-color: #FFFFFF;
    padding: 2px 6px 2px 6px;
    color: black;
}

.suggest_link_over {
    background-color: #3366CC;
    padding: 2px 6px 2px 6px;
}

#search_suggest {
    position: absolute;
    background-color: #FFFFFF;
    text-align: left;
    border: 1px solid #000000;
}

#search_suggest2 {
    position: absolute;
    background-color: #FFFFFF;
    text-align: left;
    border: 1px solid #000000;
}

.hideGrid {
    display: none;
}

.clsbusiness {
    background-color: #1A4D2E;
    display: grid;
    justify-items: center;
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
    min-width: 300px;
    min-height: 465px;
}

    /*.clsbusiness:hover {        
        opacity: .6;
        cursor: pointer;
    }*/

.goBack {
    font-weight: bold;
    color: white;
    opacity: .7;
    width: 100%;
}

    .goBack:hover {
        background-color: black;
        border-radius: 10px;
        opacity: 1;
        padding: 5px;
        cursor: pointer;
    }

.contact-Info {
    display: grid;
    justify-items: center;
    background-color: black;
    font-weight: bold;
    color: white;
    border-radius: 15px;
}

    .contact-Info:hover {
        opacity: .7;
        background-color: gray;
    }

input {
    width: 95%;
    height: 35px;
    border-radius: 10px;
    padding: 5px;
}

select {
    width: 95%;
    height: 35px;
    border-radius: 10px;
    padding: 5px;
}

textarea {
    width: 95%;
    height: 70px;
    border-radius: 10px;
    padding: 10px;
}

.tableS {
    border: 2px;
    border-radius: 10px;
    padding: 5px;
    border-color: black;
    display: grid;
    width: 100%;
    justify-items: center;
    gap: 2rem;    
}


.blist {
    border: 1px solid;
    border-color: white;
    border-radius: 10px;
    display: grid;
}

.bListTitle {
    margin-top: -20px;
    position: absolute;
    margin-left: 20px;
    background-color: white;
    color: black;
    font-weight: bold;
    padding: 8px;
    border-radius: 20px;
}

.val {
    color: var(--first-color);
    font-weight: bold;
    margin: 10px;
}

.val2 {
    color: var(--first-color);
    font-weight: bold;
    margin: 40px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background-color: lightgray;
    width: 60%;
    height: 25px;
    border-width: thin;
}

.divWidth {
    justify-content: center;
}

.divWidth2 {
    justify-content: center;
    padding: 20px;
}

.logo {
    width: 125px;
    height: 50px;
    margin-top: 10px;
}


.bd-grid-C {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.banner {
    min-height:250px;
    width:100%;
    background-image: url(../img/InDelhiNCR3.png);    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

.infoLink {
    font-weight: bold;
    color: cornflowerblue;    
    width: 100%;
}

    .infoLink:hover {
        background-color: black;
        border-radius: 10px;        
        padding: 5px;
        cursor: pointer;
    }

.buttonSearch {
    display: inline-block;
    background-color: #002e5f;
    color: #FFF;
    padding: .25rem 1rem;
    border-radius: .5rem;
    transition: .3s;
    margin-top: 10px;
    border-color: white;
    font-weight: bold;
    width: 75px;
}

    .buttonSearch:hover {
        background-color: black;
    }

