@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d6caca;
}

.back {
    margin-bottom: 30px;
    transition: 0.2s;
}

.back:hover {
    text-decoration: underline;
}

.slide-container {
    max-width: 1200px;
    width: 100%;
    background-color: rgb(10, 142, 165);
    padding: 40px 0;
}

.slide-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.slide-content {
    margin: 0 40px;
}

.card {
    max-width: 350px;
    border-radius: 25px;
    background-color: #FFF;
}

.image-content, .card-content {
    display: flex;
    flex-direction: column;   
    padding: 10px 14px;
}

.name p {
    font-size: 14px;
}

.image-content {
    position: relative;
    align-items: center;
    row-gap: 5px;
    padding: 25px 0;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #40e5f4;
    border-radius: 25px 25px 0 25px;
}

.overlay::before, .overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #40e5f4;
}

.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070F4;
}

.name {
    font-size: 25px;
    color: rgb(57, 29, 216);
}

.role, .detail, .email {
    font-size: 15px;
    margin-bottom: 24px;
}

button {
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #4070F4;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.button:hover {
    background-color: #265DF2;
}

.swiper-navBtn {
    color: #113eb7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover {
    color: #4070F4;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}