@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
}
body{
    background-color: black;
    font-family: 'Inter', sans-serif;
}
.container{
    box-sizing: border-box;
    width: 550px;
    height: 720px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
}
.header{
    background: #F5F5F5;
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    padding: 50px 0;
}
.header h1{
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-size: 40px;
line-height: 40px;
text-align: center;
letter-spacing: -0.02em;
color: #2B283A;
}
.header p{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 28px;
text-align: center;
color: #2B283A;
margin-top: 10px;
}
.main{
    box-sizing: border-box;
    width: 100%;
    max-height: 370px;
}
.service{
    display: flex;
    box-sizing: border-box;
    width: 100%;
    height: 120px;
    justify-content: space-around;
    text-align: center;
    padding: 35px 0;
    background: #FFFFFF;
}
.service-item{
    background: #FFFFFF;
    border: 1px solid #D5D4D8;
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 7px;
    width: 145px;
    height: 45px;
    cursor: pointer;
}
.service-item:hover{
    border: 2px solid #4A4E74
}
.service-item h3{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 20px;
color: #4A4E74;
}
h2{
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 12px;
line-height: 20px;
color: #918E9B;
}
.notes{
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;

}
.notes p{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 15px;
color: #4A4E74;
padding-top: 10px;
}
#note-1{
    width: 70%;
}
#note-2 p{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 32px;
    text-align: right;
    color: #4A4E74;
}
.task{
    box-sizing: border-box;
    min-height: 120px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}
hr{
    width: 471px;
    height: 0px;
    border: 1px solid #C3C6DB;
    margin: 10px auto;
}
.footer{
    box-sizing: border-box;
    height: 150px;
    width: 100%;
    padding-top: 30px;

}
.btn{
    box-sizing: border-box;
    height: 45px;
    width: 475px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 17px 9px 15px;
    background: #3770ED;
    
    border-radius: 7px;
    margin-left: 40px;
    cursor: pointer;
}
.btn:hover{
    opacity: 0.7;
    box-shadow: 0px 4px 8px rgba(0, 0, 226, 0.5);
}
.btn img{
    box-sizing: border-box;
    width: 16px;
    height: 12px;
    margin-right: 15px;
}
.btn p{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #FFFFFF;
}
ul{
    display: block;
    list-style: none;
}
li{
    display: flex;
    margin-top: 15px;
}
li h3{
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 20px;
line-height: 20px;
color: #4A4E74;
padding-right: 10px;
}
li h4{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 8px;
line-height: 20px;
color: #918E9B;
cursor: pointer;
}
li p{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 20px;
text-align: right;
color: #4A4E74;
}
li p span{
    color: #918E9B;
}