@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
*{    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
.agreement-main{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}
.agreement-main .agreement-heading{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.agreement-main .agreement-heading>span{
    font-size: 18px;
    font-weight: bold;
    color: #008994;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.agreement-main .export>span{
    font-size: 14px;
    background-color: #2E6C9A;
    color: white;
    padding: 5px 10px;
    display: flex;
    gap: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 400;
}
.fetching{
    border-radius: 10px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.agreement-main .all-details-head{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left:10px ;
}
.agreement-main .all-details-head .org-details{
    display: flex;
    align-items: center;
    gap: 30px;
}
.agreement-main .all-details-head .org-details figure{
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bdbdbd;
}
.all-details-head .org-details figure img{
    background-color: white;
    border-radius: 50%;
    height: 65px;
    width: 65px;
    object-fit: contain;
}
.all-details-head .org-details span{
    font-family: "Saira", sans-serif;
    font-size: 19px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    i{
        font-size: 16px;
    }
}
.agreement-main .all-details-head .this-heading{
    display: flex;
    align-items: center;
    padding:30px 40px;
    border-radius: 40px 0px 0px 40px;
    background-color: #10578B;
    height: 100%;
}
.agreement-main .all-details-head .this-heading div{
    font-size: 18px;
    font-weight: 500;
    color: white;
}
.agreement-main .all-details{
    border-top: 1px solid rgba(27, 31, 35, 0.264);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: space-between;
    font-size: 14px;
    gap: 10px;
}
.agreement-main .organisation-det{
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: rgb(113, 113, 113);
    max-width: 400px;
    width: 100%;
}
.agreement-main .all-details .details{
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    justify-content: flex-start;
    gap: 5px;
    .material-symbols-outlined{
        font-size: 20px;
    }
}

.agreement-main .all-details .enter-det{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    justify-content: space-evenly;
    font-size: 14px;
    color: rgb(113, 113, 113);
    max-width: 300px;
    width: 100%;
    text-align: right;
}
.all-details .enter-det .client input{
    width: 100px;
    padding: 5px;
    text-align: left;
    border: 1px solid rgb(207, 207, 207);
    border-radius: 3px;
    outline: none;
    color: rgb(113, 113, 113);
}
.enter-det .client span:last-child{
    padding: 0px 7px;
}

@media (max-width:768px) {
    .all-details-head{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: right;
        gap: 20px;
    }
    .agreement-main .all-details-head .this-heading{
        padding: 10px 20px;
        border-radius: 30px;
    }
    .agreement-main .all-details{
        justify-content: center;
        gap: 25px;
    }
    .agreement-main .all-details .enter-det{
        align-items: flex-start;
        text-align: left;
        width: 100%;
        max-width: 400px;
    }
}
.agreement-main .agreement{
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.agreement-main .agreement>span:first-child{
    font-weight: bold;
    font-size: 16px;
}
.agreement-main .agreement>ol{
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}
.agreement-main .agreement>ol>li>input{
    text-align: center;
    border: none;
    outline: none;
    border-bottom: 1px solid black;
    background-color: white;
}
.agreement-main .witnesss{
    font-size: 15px;
}
.agreement-main .agreement .submit{
    max-width: 435px;
    width: 100%;
    margin-top: 5px;
}
.agreement-main .agreement .submit>input{
    background-color: #008994;
    padding: 5px 10px;
    color: white;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.agreement-main #agreementForm{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.agreement-main #agreementForm>span{
    max-width: 435px;
    width: 100%;
}