/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #e67e22
- Tints:
#fdf2e9
#fae5d3
#eb984e

- Shades: 
#cf711f
#45260a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* font-size: 10px; */
    /* 10px / 16px = 0.625 = 62.5% */
    /* Percentage of user's browser font-size setting */
    font-size: 62.5%;
}

body {
    font-family: "Rubik", sans-serif;
    line-height: 1;
    font-weight: 400;
    color: #555;
    user-select: none;
}

.container-kun {
    display: grid;
    grid-template-rows: 9.6rem 1fr 9.6rem;
}

/**************************/
/* HEADER */
/**************************/

.grid-container-kun {
    display: grid;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #113c4a;
    height: 8rem;
}

    .header .national_emblem {
        display: inline-block;
        height: 6.4rem;
        margin-left: 1.2rem;
    }

    .header .logo1 {
        display: inline-block;
        height: 4.4rem;
        width: 18rem;
    }

    .header .logo-container {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        justify-content: start;
    }

.gis-heading-kun {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    margin-left: 1.8rem;
}

/**************************/
/* NAVIGATION */
/**************************/
.header .main-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: left;
}

.header .main-nav-logout {
    margin-left: 2rem;
}

.header .login-btn {
    background-color: #e7dddd;
    /* width: 2.4rem;
  height: 2.4rem; */
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    font-size: 1.6rem;
    margin-right: 1rem;
}

.header .main-nav-link:link,
.header.main-nav-link:visited {
    display: inline-block;
    font-size: 1.8rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
}
/*.header .main-nav{
    position:relative;
}*/
.header.main-nav-link:hover,
.header .main-nav-link:active {
    color: #cf711f;
}

.header .nav-ct:link,
.header .nav-ct:visited {
    border-radius: 9px;
    color: #fff;
    /* background-color: #5a88dd; */
    padding: 1.2rem 2.4rem;
    border: 1px solid black;
}

.nav-cta:hover,
.nav-cta:active {
}

.header .logoTxt {
    line-height: 1.2rem;
    width: 22rem;
    color: #d3d5d5;
    margin-left: 1rem !important;
}

.header .gramin-text {
    font-size: 1.4rem;
    font-weight: bold;
}

.header .bharat-text {
    font-size: 1.1rem;
}

.header .ministry-text {
    font-size: 1.4rem;
    font-weight: 700;
}

.header .gov-text {
    font-size: 1.1rem;
}

.header .login-icon {
    height: 4.4rem;
    width: 4.4rem;
    stroke: #fff;
}

input {
    /* border: none; */
}

.header .user-icon {
    /* border: 1px solid rgba(160, 159, 159, 0.862); */
}
/* Main Section**************************************************************************** */
.main-content{
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.main-content div{
    font-size: 2.8rem;
    color:red;
    font-family: 'Times New Roman', Times, serif !important;
}

/**************************/
/* Footer */
/**************************/
.grid-container-footer-kun {
    display: grid;
}

.footer2 {
    background-color: #fff;
    /* position: absolute;
  /* bottom: 0; */
    width: 100%;
    bottom: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 9rem;
    padding: 0rem 2rem;
}

    .footer2 .footer-quote {
        font-size:1.5rem;
        color: #333;
        /* align-self: center;
        margin: 1.2rem 3.2rem;*/
    }






