/* -------------- Swiper CSS -------------- */
:root {
    --main-color1: #673de6;
    --main-color2: #fc5185;
    --main-color3: rgba(0, 0, 0, 0.8);
    --text-color: #2f1c6a;
    --gerideant-color: linear-gradient(163deg,
            rgba(103, 61, 230, 0.9836309523809523) 23%,
            rgba(252, 81, 133, 1) 100%);
    --gerideant-color2: rgb(103, 61, 230);
}

/* * {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: .3s linear;
} */

.swiper {
    width: 100%;
    padding-top: 200px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px;
    height: auto;
    cursor: pointer;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.team-box {
    width: 100%;
    height: 100%;
}

.team-name {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0px 0px 15px black;
}

.team-name::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: .5s;
    margin: auto;
    margin-top: 40px;
    border-radius: 10px;
}

.team-name:hover::before {
    width: 60%;
    height: 60%;
}

.img {
    width: 70%;
    height: 50%;
    opacity: 0;
    z-index: 999999;
}

.team-name:hover {
    backdrop-filter: blur(10px);
}

.team-content {
    width: 100%;
    height: auto;
    margin-top: 50px;
    opacity: 0;
}

.team-content h2 {
    font-size: 25px;
    margin-top: 10px;
    /* line-height: 50px; */
    color: #e1cfc8;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'monospace';
    /* text-shadow: 0px 0px 5px black; */
    /* text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;  */
    text-transform: uppercase;
}

.team-content p {
    font-size: 23px;
    text-shadow: 0px 0px 5px black;
    /* font-family: 'Fantasy','Copperplate'; */
    font-family: Georgia, serif;
    text-decoration: none;
    text-transform: capitalize;
    color: white;
    letter-spacing: .5px;
}

.team-content ion-icon {
    position: relative;
    font-size: 25px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    margin: 10px 10px;
    cursor: pointer;
}

.team-name:hover .team-content {
    opacity: 1;
}