* {
    font-family: poppins;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, div, li {
    font-family: 'Poppins', sans-serif;
}

.section-2 {
    display: flex;
    justify-content: space-between; /* Align items at the start */
    align-items: center;
    background-color: #194486;
    height: 120px;
}

.logo {
    margin-left: 2rem; /* Add margin to create a gap */
}

nav {
    margin-left: 2rem; /* Add margin to align navigation items to the left */
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Display navigation items in a row */
}

nav li {
    margin-right: 20px; /* Add spacing between navigation items */
}

nav ul li a {
    font-size: 30px;
    color: black;
    font-weight: 500;
    transition: color 0.4s;
}

nav ul li a:hover {
    color: steelblue;
}

div.phone-apointment {
    display: flex;
    align-items: center;
    font-size: 22px;
}

div.social-btn ul li i {
    font-size: 22px;
    margin: 10px 7px;
    color: dimgray;
}

div.social-btn ul li i:hover {
    color: steelblue;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    cursor: default;
}

li {
    display: inline-block;
}

div.phone-number {
    font-size: 18px;
    padding: 5px 10px;
    border: 1px solid grey;
    border-radius: 20px;
}

div.phone-number i {
    transform: rotateY(180deg);
}

div.appointment button {
    padding: 0px 5px 2px 5px;
    text-overflow: ellipsis;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 50%);
    font-size: 13px;
    color: #f0f0f0;
    outline: none;
    margin: 0px 15px;
    transition: box-shadow 0.5s;
    font-family: 'Helvetica Neue', sans-serif;
}

div.appointment button:hover {
    box-shadow: 0px 0px 10px #194486;
    background-color: #194486;
    color: white;
    border-radius: 30px;
    outline: none;
    margin: 0px 15px;
    transition: box-shadow 0.5s;
}

nav {
    background-color: lightgreen;
}

nav ul {
    text-align: center;
}

nav li {
    text-align: center;
}

nav ul li a {
    font-size: 18px;
    display: block;
    color: black;
    font-weight: 500;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-radius: 2px;
    transition-property: border-bottom, background-color;
    transition-duration: 0.4s;
}


#toggle{
    display: none;
}

#toggle-btn{
    display: none;
    text-align: right;
}

#toggle-btn i{
    font-size: 25px;
    padding: 7px;
    background-color: white;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    color:white;

}
.MuiInputLabel-outlined {
    z-index: 0 !important;
}
@media screen and (max-width: 768px) {
    div.phone-apointment{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        grid-gap: 5px;
        align-items: center;
    }
    section.section-1,section.section-2{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        background-color: #194486;
        height: 120px;
    }
}
@media screen and (max-width: 480px) {
    div.phone-apointment{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-gap: 5px;
        align-items: center;
    }

    section.section-1,section.section-2{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        background-color: #194486;
        height: 180px;
    }
}