.sectionPartners {
    position: relative;
    height: 450px;
    max-width: 1600px;
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;

}

.swiperPartner {
    width: 100vw;
}

.cardPartners {
    position: relative;
    background: #fff;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.cardPartners::before {
    content: "";
    position: absolute;
    height: 40%;
    width: 100%;
    background: rgb(35, 112, 255);
    border-radius: 20px 20px 0 0;
}

.cardPartners .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: relative;
    z-index: 100;
}

.sectionPartners .cardPartners .image {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    padding: 3px;
    background: rgb(35, 112, 255);
}

.sectionPartners .cardPartners .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}

.cardPartners .media-icons {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cardPartners .media-icons i {
    color: #fff;
    opacity: 0.6;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cardPartners .media-icons i:hover {
    opacity: 1;
}

.cardPartners .name-profession {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.name-profession .name {
    font-size: 20px;
    font-weight: 600;
}

.name-profession .profession {
    font-size: 15px;
    font-weight: 500;
}

.cardPartners .rating {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.cardPartners .rating i {
    font-size: 18px;
    margin: 0 2px;
    color: rgb(35, 112, 255);
}

.cardPartners .button {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.cardPartners .button button {
    background: rgb(35, 112, 255);
    outline: none;
    border: none;
    color: #fff;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.enviar-logo {
    display: none;
}

.label-logo {
    background-color: rgb(155, 155, 155);
    color: white;
    width: 200px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-enviar-parters {
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
}

.sectionPartners a {
    text-decoration: none;
}