:root{
    /* Colors */
    --white: #fff;
    --dark: #252525;
    --primary: #3b141c;
    --secondary: #f3961c;
    --light-pink: #faf4f5;
    --medium-gray: #ccc;
}

/* Team section styling */
.team-section{
    color: var(--white);
    background: var(--dark);
    padding: 50px 0 100px;
}
.section-title{
    padding: 60px 0 60px;
}
.team-section .section-content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.team-section .card{
    width: 300px;
    background: transparent;
    border-radius: 10px;
    margin-top: 10px;
    text-align: center;
    padding: 20px 0 25px;
    transition: .3s ease;
}
.team-section .card:hover{
    box-shadow: 0px 0px 20px 1px var(--medium-gray);
}
.team-section .card .one:hover{
    transform: scale(1.1);
}
.team-section .card .one{
    width: 50%;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    padding: 4px;
    transition: .3s ease;
}
.team-section .card h3{
    text-align: center;
    color: white;
    cursor: pointer;
    margin-top: 20px;
}
.team-section .card h4{
    text-align: center;
    color: beige;
    font-weight: 500;
}
.team-section .card .icon{
    text-align: center;
    margin-top: 20px;
    display: flex;
    margin: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.team-section .icon i{
    font-size: 20px;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
    opacity: 1;
}
.team-section .icon i:hover{
    color: gray;
    border: 1px solid grey;
    background: transparent;
}
.team-section .card:hover .icon i{
    opacity: 1;
}


.testimonials-section{
    background: white;
}