.container {
    /* display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 100px;
    flex-direction: column;
    font-family: Montserrat;
    gap: 60px; */
}

.header-doc {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-family: Montserrat;
    color: #273c8b;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.header-doc h1 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    color: #273c8b;
}

.header-doc h3 {
    font-size: 16px;
    line-height: 150%;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.card-doc {
    display: flex;
    gap: 5px;
    /* width: 410px; */
    min-height: 180px;
    border-radius: 10px;
    padding: 10px 5px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-bottom: 10px;
}

.card-right-doc p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 7px;
}

.card-right-doc span {
    color: #9e9e9e;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
}

.card-right-doc .buttonWrapper-doc {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    cursor: pointer;
    flex-shrink: 0;
    fill: #fff;
    border: 1px solid #273c8b;
    border-radius: 20px;
}

.buttonWrapper-doc button {
    cursor: pointer;
    border: none;
    background-color: transparent;
    color: #273c8b;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
}

.card-right-doc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
/* 
@media (max-width: 480px) {
    .container {
        padding: unset;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .header {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .header h1 {
        font-size: 24px;
    }

    .header h3 {
        font-size: 12px;
    }

    .card {
        flex-direction: column;
        align-items: center;
        width: unset;
        height: auto;
        padding: 10px;
    }

    .card-right p,
    .card-right span {
        font-size: 14px;
    }

    .buttonWrapper {
        width: 100px;
        height: 30px;
    }

    .buttonWrapper button {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 30px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header h1 {
        font-size: 28px;
    }

    .header h3 {
        font-size: 14px;
    }

    .card {
        width: 100%;
    }

    .buttonWrapper {
        width: 120px;
        height: 32px;
    }

    .buttonWrapper button {
        font-size: 14px;
    }
} */
