

.slider {
    width: 100%;
    height: 100%;
    background-image: url(/asset/img/background.png);
    padding-bottom: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.slider .learn-more-btn {
    position: absolute;
    z-index: 2;
    bottom: 25%;
    padding: 20px 50px;
    font-size: 20px;
    left: 50%;
    transform: translate(-50%);
    border-radius: 20px;
    border: none;
    font-weight: 550;
    background-color: var(--white);
    text-decoration: none;
    color: var(--blue);
    box-shadow: 0px 9px 0px 0px var(--blue);
}


.slider .learn-more-btn:hover {
    background-color: var(--red);
    color: white;
    animation: hover ease-out .3s;
    transition: all 0.3s;
}








.about {
    width: 100%;
    height: 400px;
    display: flex;
    background-color: var(--red);
}


.about-containter {
    height: 260px;
    background-color: var(--blue);
    width: 95%;
    margin: auto;
    border-radius: 46px;
    padding: 20px 60px;
    display: flex;
}



.main-page-btn:hover {
    transform: translate(-50%,9px);
    box-shadow: none;
}

.about-logo {
    display: inline-block;
    display: flex;
}


.about-logo img {
    width: 200px;
    border-radius: 50%;
}

.about-content {
    margin-left: 10%;
    margin-top: 20px;
    position: relative;
}


.about-containter p {
    color: var(--white);
    font-size: 24px;
    text-align: justify;
}

.about-containter .about-btn {
    padding: 16px 48px;
    bottom: 10px;
    border-radius: 24px;
    position: absolute;
    right: 10%;
    font-size: 18px;
    background-color: var(--white);
    text-decoration: none;
    box-shadow: 0px 9px 0px 0px var(--red);
    color: var(--blue);
    font-weight: 400;
}


.about-containter .about-btn:hover {
    background-color: var(--red);
    color: white;
    animation: hover ease-out .3s;
    transform: translate(0 , 9px);
    font-weight: 400;
    transition: all 0.3s;   
    box-shadow: none;
    
}







.members-overview {
    height: 550px;
    width: 100%;
    background-color: var(--blue);
}


.member-container {
    height: 100%;
    padding: 70px 20px;
}


.member-container .member-title {
    font-size: 50px;
    width: 100%;
    display: flex;
    margin-bottom: 70px;
}

.member-title p {
    display: inline-block;
    margin: auto;
    color: var(--white);
}


.role-container {
    width: 100%;
    display: flex;
    padding: 0 100px;
    justify-content: space-between;
}


.role-btn {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    background-color: var(--red);
    font-size: 36px;
    position: relative;
    cursor: pointer;
}


.role-btn p {
    text-decoration: none;
    color: var(--blue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}


.role-btn:hover {
    background-color: var(--white);
    animation: hover ease-out .5s;
    transition: all .5s;
}

.role-btn:hover p {
    color: var(--red);
    animation: hover ease-out .5s;
    transition: all .5s;
}

