.team
{
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team .inform
{
    background: rgb(10 23 56 / 68%) url(../img/2copy.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 30vh;
    background-size: cover;
    object-fit: cover;
    object-position: center;
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-attachment: fixed;
}

.team .inform h1
{
    color: var(--text-on-bg);
    font-size: 2em;
}

.team .inform p
{
    color: var(--text-on-bg);
    font-size: 1.1em;
}

.team .container
{
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
}

.team .container .card
{
    position: relative;
    width: 300px;
    height: 400px;
    background: rgb(255 255 255 / 69%);
    margin: 20px;
    box-shadow: 0 15px 35px rgb(0 0 0 / 21%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease-in-out;
}

.team .container .card:hover
{
    border: 1px solid var(--background-color);
}

.team .container .card .content
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0.8;
    transition: 0.4s ease-in-out;
    margin-bottom: 20px;
}

.team .container .card:hover .content
{
    opacity: 1;
}


.team .container .card:hover .content
{
    opacity: 1;
}

.team .container .card .content .imgBx
{
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid rgba(0, 0, 0, 0.25);
}

.team .container .card .content .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team .container .card .content .contentBx
{
    text-align: center;
}

.team .container .card .content .contentBx h3
{
    color: var(--background-color);
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 15px 0 2px;
    line-height: 1.1em;
}

.team .container .card .content .contentBx h3 span
{
    font-size: 12px;
    font-weight: 300;
    text-transform: initial;
}


.team .container .card .sci
{
    position: relative;
    bottom: 70px;
    display: flex;
}

.team .container .card .sci ul
{
    display: flex;
}

.team .container .card .sci li
{
    list-style: none;
    margin: 0 10px;
    transform: translateY(80px);
    opacity: 0.7;
    transition: 0.4s;
}

.team .container .card:hover .sci li
{
    transform: translateY(70px);
    opacity: 1;
}

.team .container .card .sci li a
{
    text-decoration: none;
}

.team .container .card .sci li a .icn
{
    object-fit: contain;
    width: 30px;
    fill: var(--background-color);
}

.team .container .card .btn
{
    position: relative;
    bottom: -20px;
    background: var(--background-color);
    padding: 10px 20px;
    color: var(--text-on-bg);
    transform: translateY(0px);
    transition: 0.6s;
    border-radius: 20px;
}

.team .container .card:hover .btn
{
    transform: translateY(-10px);
}

.team .tab2
{
    width: 100%;
    min-height: 30vh;
}

.team .tab2 .info
{
    width: 80%;
}

.team .tab2 .info h1
{
    margin-bottom: 20px;
}

.team .tab2 .info p
{
    font-size: 1.2em;
}

@media (max-width: 600px)
{
    .team .tab2 .info p
    {
        font-size: 1em;
    }
}

.ptn
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 100px;
}

.ptn .carousel-container
{
    width: 80%;
    min-height: 65vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.ptn .carousel-container .carousel
{
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ptn .carousel-container .carousel .carousel-item
{
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.ptn .carousel-container .carousel .carousel-item img
{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(0, 178, 237, 0.25);
    object-fit: contain;
}

.ptn .carousel-container .carousel .carousel-item h3
{
    font-size: 1.7rem;
    color: var(--background-color);
    margin-bottom: 10px;
    margin: 10px 0;
}

.ptn .carousel-container .carousel .carousel-item h3 span
{
    color: var(--on-hover);
}

.ptn .carousel-container .carousel .carousel-item p
{
    width: 70%;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--background-color);
}

.ptn .carousel-container .carousel .carousel-item a
{
    padding: 10px 15px;
    border: none;
    background: var(--background-color);
    text-decoration: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ptn .carousel-container .carousel .carousel-item a:hover
{
    background: var(--on-hover);
}

.ptn .carousel-container .buttons
{
    position: relative;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 40px;
}

.ptn .carousel-container .buttons button
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    border: none;
    background: var(--background-color);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ptn .carousel-container .buttons button:hover
{
    background: var(--on-hover);
}

.ptn .carousel-container .buttons button svg
{
    fill: white;
    object-fit: contain;
    width: 20px;
    height: 20px;
}

@media (max-width: 980px)
{
    .ptn .carousel-container .carousel .carousel-item p
    {
        width: 50%;
    }
}

@media (max-width: 750px)
{
    .ptn .carousel-container
    {
        min-height: 55vh;
    }
    .ptn .carousel-container .carousel .carousel-item img
    {
        width: 100px;
        height: 100px;
        border: 4px solid rgba(0, 178, 237, 0.25);
    }
    .ptn .carousel-container .carousel .carousel-item h3
    {
        font-size: 1.5rem;
    }
    .ptn .carousel-container .carousel .carousel-item p
    {
        width: 40%;
        font-size: 15px;
        margin-bottom: 20px;
    }
    .ptn .carousel-container .carousel .carousel-item a
    {
        padding: 8px 10px;
    }
}

@media (max-width: 500px)
{
    .ptn .carousel-container
    {
        padding: 20px;
    }
    .ptn .carousel-container .carousel .carousel-item
    {
        margin-bottom: 10px;
    }
    .ptn .carousel-container .carousel .carousel-item p
    {
        width: 30%;
        font-size: 13px;
    }
    .ptn .carousel-container .carousel .carousel-item h3
    {
        font-size: 18px;
    }
    .ptn .carousel-container .buttons
    {
        margin-top: 0;
        bottom: 30px;
    }
    .ptn .carousel-container .buttons button
    {
        position: relative;
        bottom: -20px;
        padding: 5px 10px;
    }
    .ptn .carousel-container
    {
        min-height: 50vh;
    }
    .ptn .carousel-container .carousel .carousel-item a
    {
        padding: 10px 8px;
        font-size: 14px;
    }
}