@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --red: #C5221F;
    --blue:#2F98C2;
    --light-blue:#DEF1F9;
    --white: #FFFFFF;
    --dark-blue:#1E3673;
    --font-family: "Roboto", sans-serif;
}
header{
    background-color: var(--white);
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container{
    max-width: 1500px;
    margin: 0 auto;
     padding: 25px 90px;

}
#appointment{
    color: var(--blue);
    font-family: var(--font-family);
}
#log{
    color: var(--red);
    font-family: var(--font-family);

}
#div-2{
    display: flex;
    gap: 18px;
    padding: 0 30px;
}
h2{
    color: var(--blue);
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 700;
}
h3{
    color: var(--blue);
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 400;
}
h4{
    font-size: 24px;
    font-weight: 700;
}
#inside-div-1{
    padding-left: 15px;
}
#div-1{
    display: flex;
    padding: 0 30px;
}
main{
    background-color:var(--light-blue);
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 65px 0;
    
}
.div-4{ 
    display: flex;
    flex-direction: column;
    gap: 30px;
    
}
input{
    width: 510px;
    height: 74px;
    border-radius: 50px;
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    border: var(--dark-blue) 2px solid;
    color: var(--dark-blue);
    padding-left: 30px;
}
.dash{
    width: 30px;
    border: 3px solid var(--blue);
}
#dash-wrapper{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
}

#writings{
    background-color: var(--white);
    padding: 27px 80px;
}
#app{
    padding-bottom: 30px;
    margin-left: 60px;
}
#doctor{
    height: 100%;
}
button{
    background-color: var(--blue);
    border-radius: 50px;
    border: none;
    font-family: var(--font-family);
    height: 74px;
    width: 265px;
    color: var(--light-blue);
    font-size: 20px;
    font-weight: 700;
    align-self: center;
}
footer{
    background-color: var(--dark-blue);
}
section{
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}
.parent{
    display: flex;
    gap: 55px;
}
h5{
    font-size: 16px;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--light-blue);
    padding-bottom: 13px;
}
h6{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: var(--light-blue);
    padding-bottom: 16px;
}
.div-5{
    padding-bottom: 80px;
    padding-top: 80px;
    
}
#div-6{
    padding: 25px 0;
}
#img-wrapper{
    display: flex;
    gap: 40px;
}
.img{
    color: var(--blue);
}
#heal{
    padding-bottom: 12px;
}
#steth{
    display: flex;
    gap: 20px;
}
@media(max-width:438px){
    body{
        width: 428px;
        overflow-x: hidden;
    }
    #inside-div-1{
        padding-right: 10px;
    }
    .container{
        padding: 10px;
        max-width: 438px;
    }
    #div-1{
        padding: 0;
    }
    #div-2{
        display: none;
    }
    #doctor{
        display: none;
    }
    input{
        width: 320px;
        align-self: center;
    }
    #app{
        margin: 0;
        padding: none;
        text-align: center;
    }
    #writings{
        width: 400px;
        border-radius: 30px;
        padding: none;
    }
    .dash{
        display: none;
    }
    footer{
        width: 438px;
    }
    section{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .parent{
        display: flex;
        flex-direction: column;
        gap: 0;
        
    }
    .div-5{
        padding-bottom: 20px;
        padding-top: 0;
    }
    h5{
        padding-bottom: 19px;
    }
    #img-wrapper{
        align-items: center;
        border: red solid 1px;
        display: flex;
        justify-content: center;
    }
    #div-6{
        align-items: center;
    }
    #steth{
        padding-top: 25px;
        align-items: center;
        display: flex;
        justify-content: center;
    }
}