.duty
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.duty .container
{
    width: 90%;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn
{
    from
    {
        opacity: 0;
        transform: translateY(20px);
    }
    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}

.duty .content
{
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.duty .content img
{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--background-color);
}

.duty .text
{
    width: 70%;
}

.duty .text h2
{
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--background-color);
}

.duty .text p
{
    font-size: 16px;
    color: black;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px)
{
    .duty .content
    {
        flex-direction: column;
        text-align: center;
    }

    .duty .content img
    {
        width: 200px;
        height: 200px;
    }

    .duty .text
    {
        width: 100%;
    }
}

@media (max-width: 450px)
{
    .duty .content img
    {
        width: 100px;
        height: 100px;
    }
    .duty .text h2
    {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .duty .text p
    {
        font-size: 12px;
    }

}


.duty .sci
{
    position: relative;
    display: flex;
}

.duty .sci ul
{
    display: flex;
}

.duty .sci li
{
    list-style: none;
    margin: 0 10px;
    transition: 0.4s;
}

.duty .sci li a
{
    text-decoration: none;
}

.duty .sci li a .icn
{
    object-fit: contain;
    width: 30px;
    fill: var(--background-color);
}
