/*==================================================
GLOBAL AGENTS
==================================================*/

.agents-section{
    padding:110px 0;
    background:#ffffff;
}

.agents-section .container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

.agents-section .section-header{
    text-align:center;
    margin-bottom:60px;
}

.agents-section .section-subtitle{
    color:#E53935;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
}

.agents-section h2{
    margin:15px 0;
    font-size:42px;
    color:#0E2A57;
    font-weight:800;
}

.agents-section p{
    max-width:760px;
    margin:auto;
    color:#6E7B8B;
    font-size:18px;
    line-height:2;
}

/*======================*/

.agents-slider{

    position:relative;

    display:flex;

    align-items:center;

    gap:20px;

}

.agents-wrapper{

    overflow:hidden;

    width:100%;

}

.agents-track{

    display:flex;

    gap:25px;

}

/*======================*/

.agent-card{

    flex:0 0 calc((100% - 100px)/5);

    height:220px;

    background:#fff;

    border-radius:22px;

    border:1px solid rgba(14,42,87,.06);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.agent-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.agent-flag{

    font-size:52px;

    margin-bottom:18px;

}

.agent-card h3{

    color:#0E2A57;

    font-size:22px;

    margin-bottom:8px;

    font-weight:700;

}

.agent-card span{

    color:#6E7B8B;

    font-size:16px;

}

/*======================*/

.agents-btn{

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#0E2A57;

    color:#fff;

    cursor:pointer;

    font-size:22px;

    transition:.3s;

    flex-shrink:0;

}

.agents-btn:hover{

    background:#E53935;

}

/*======================*/

@media(max-width:1200px){

.agent-card{

flex:0 0 calc((100% - 50px)/3);

}

}

@media(max-width:768px){

.agent-card{

flex:0 0 calc((100% - 25px)/2);

height:190px;

}

.agent-flag{

font-size:42px;

}

.agent-card h3{

font-size:18px;

}

}

@media(max-width:576px){

.agent-card{

flex:0 0 100%;

}

.agents-btn{

display:none;

}

}