@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;1,500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-image: url("../img/background-dc.jpg");
    background-size: cover;
}

.container{
    position: absolute;
    max-width: 1120px;
    width: 100%;
}

.slide-container{
    margin: 50px 30px;
    overflow: hidden;
}

.card{
    background: #fff;
    border-radius: 8px;
    min-height: 330px;
}

.card .image-box{
    height: 200px;
}

.card .image-box img{
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

.card .profile-details{
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 15px;
}

.card .profile-details img{
    max-height: 50px;
    max-width:50px;
}

.profile-details .job{
    font-size: 12px;
    font-weight: 500;
    color: #4d4d4d;
}

.swiper-navBtn{
    color: #000;
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50%;
}
.swiper-navBtn::before,.swiper-navBtn::after{
    font-size: 18px;
}

.swiper-pagination-bullet{
    background-color: #f4f4f4;

}
