/* Css code of Smart City Website */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #fff;
    overflow-x: hidden;
}
/* Css for scroll bar */
body::-webkit-scrollbar {
    width: 1em;
  }
body::-webkit-scrollbar-thumb {
    background-color: rgb(169, 169, 169);
    border-radius: 5rem; 
}
.container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 6rem;
    background-color: transparent;
    padding-top: 3rem;
    padding-left: 5rem;
    padding-right: 5rem;
}
.nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-left: 0;
    width: 40%;
}
.nav-links li{
    list-style: none;
    margin: 0 1rem;
}
.nav-links li a{
    position: relative;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    color: rgb(165, 165, 165);
}
#logo-img{
    width: 15rem;
}
header{
    display: flex;
    align-items: center;
    width: 100%;
    height: 3rem;
    padding: 0 5rem;
    margin-top: 3rem;
}
.city-name{
    color: #16142f;
    font-size: 1.4rem;
    margin: 0 auto;
}
header img{
    width: 1.4rem;
}
.city-container{
    display: flex;
    width: 100%;
    height: 100%;
    color: #16142f;
    padding: 3rem 5rem;
}
.info1-container{
    width: 20rem;
    height: 100%;
}
.city-description{
    font-size: 0.9rem;
    margin-bottom: 3rem;
}
.feature-description{
    font-size: 0.7rem;
}
.city-feature-container{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1rem;
}
.tick-img{
    width: 1rem;
    margin-right: 0.5rem;
}
.feature-heading{
    font-size: 1rem;
    font-weight: 600;
}
.feature-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}
.data-container{
    width: 15rem;
    display: flex;
    flex-direction: column;
    align-items: left;
}
.data{
    width: 100%;
    height: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.city-img{
    animation-name: floating;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes floating {
    0%{ transform: translate(0, 0px);}
    50%{ transform: translate(0, 1rem);}
    100%{ transform: translate(0, -0px);}
}
.bar1{
    position: relative;
    width: 70%;
    height: 0.4rem;
    background-color: #eaeaea;
    border-radius: 5rem;
}
.bar1::before{
    content: 'Total Area';
    position: absolute;
    font-size: 0.8rem;
    font-weight: 500;
    top: -1.2rem;
}
.bar1::after{
    content: '';
    position: absolute;
    background-color: #2797c7;
    width: 60%;
    height: 0.4rem;
    border-radius: 5rem;
}

.bar2{
    position: relative;
    width: 70%;
    height: 0.4rem;
    background-color: #eaeaea;
    border-radius: 5rem;
}
.bar2::before{
    content: 'Total Population';
    position: absolute;
    font-size: 0.8rem;
    font-weight: 500;
    top: -1.2rem;
}
.bar2::after{
    content: '';
    position: absolute;
    background-color: #2797c7;
    width: 90%;
    height: 0.4rem;
    border-radius: 5rem;
}
.data-info{
    font-size: 0.8rem;
}

.bar3{
    position: relative;
    width: 70%;
    height: 0.4rem;
    background-color: #eaeaea;
    border-radius: 5rem;
}
.bar3::before{
    content: 'Total Buildings';
    position: absolute;
    font-size: 0.8rem;
    font-weight: 500;
    top: -1.2rem;
}
.bar3::after{
    content: '';
    position: absolute;
    background-color: #2797c7;
    width: 90%;
    height: 0.4rem;
    border-radius: 5rem;
}
.data-info{
    font-size: 0.8rem;
}

.next-button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #2797c7;
    float: right;
    bottom: 0;
    margin: 0.3rem;
    transition: all 0.4s;
}
.next-button:active, .nav-button:active{
    background-color: #259d6b;
}
.next-button img{
    width: 0.5rem;
}
#next-back{
    transform: rotate(180deg);
}
.next-button:hover{
    cursor: pointer;
}
.next-button-container{
    margin-top: 18rem;
}
#back-btn{
    cursor: pointer;
}