*{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
}

body{
    max-width: 1440px;
    background-color: #f0f4f5;
    overflow: hidden;
    margin: auto;
}

/* disigning the navigation Menu */

nav{
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

/* disigning the logo */
nav img{
    width: 150px;
}

/* designing the navigation menu link */
nav ul{
    display: flex;
    align-items: center;
}

nav ul li{
    list-style-type: none;
    margin-right: 50px;
    font-weight: 600;
}

nav ul li:first-child{
    font-weight: 700;
    color: #20BC7E;
}

a{
    text-decoration: none;
    color: black;
}

/* designing the main section */
main{
   height: 85vh;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 0 5%;
}


.hospitalDescription{
    width: 50%;
    text-align: center;
}

.hospitalDescription h1{
   margin-bottom: 20px;
   color: #20BC7E;
}

.hospitalDescription p{
    font-size: 18px;
    font-weight: 400;
}

/*  desingin the achivements cards */
.achievement{
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;

}

.achievementCards {
    width: 200px;
    height: 100px;
    border-radius: 10px;   
    box-shadow:  0 0 10px black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.achievementCards span{
    color: #20BC7E;
    font-weight: 700;
    font-size: 25px;
}

.achievementCards p{
    font-size: 20px;
    font-weight: 500;
}