@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;700;800;900&display=swap');

@media screen and (max-width: 400px) {
    .header-logo-area-container img:first-child {
        display: none;
    }
}

:root {
    --theme-color: #7e2d84;
    --theme-light: #7e2d84a8;
}

.no-before::before {
    content: unset !important;
}

.custom-banner {
    width: 100%;
    min-height: 75dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    color: #fff;
}

.custom-banner .second-text,
.custom-banner .first-text {
    font-size: 3rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-weight: 350;
    text-align: center;
    line-height: 1.25;
}

.custom-banner .second-text {
    font-size: 3.5rem;
    font-weight: 450;
    line-height: unset;
}

@media screen and (max-width: 768px) {

    .custom-banner .second-text {
        font-size: 3rem;
    }

    .custom-banner .first-text {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {

    .custom-banner .second-text {
        font-size: 2.75rem;
    }

    .custom-banner .first-text {
        font-size: 2.25rem;
    }
}

.fw-light {
    font-weight: light !important;
}

.text-theme {
    color: var(--theme-color) !important;
}

.btn-theme {
    border: none;
    outline: none;
    background-color: var(--theme-color);
    color: #fff;
    padding: 5px 10px;
    min-width: fit-content;
}

.border-theme {
    border-color: var(--theme-color) !important;
}

.border-2 {
    border-width: 2px !important;
}

.member-card-main {
    box-shadow: 1px 1px 3px var(--theme-light);
}

.member-card-main::before {
    content: "";
    height: 17px;
    width: 17px;
    background: var(--theme-color);
    position: absolute;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    margin: -1px;
}

.member-card-main .sub-name::before {
    content: "- ";
}

.member-card-main .sub-name::after {
    content: " -";
}

.member-card-main .profile-area {
    width: 100%;
    /* background-color: var(--theme-color); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    padding-bottom: 5px;
    overflow: hidden;
}

.member-card-main .profile-area img {
    height: 125px;
    width: 125px;
    border-radius: 50%;
    object-position: center;
    object-fit: cover;

    border-radius: 50%;
    background: #7e2d84;
    /* box-shadow: 20px -20px 60px #6b2670, -20px 20px 60px #913498; */
    object-fit: cover;
    padding: 4px;
}

.member-card-main .sub-name {
    font-size: 14px;
    color: var(--secondary);
    font-weight: lighter !important;
    line-height: 1;
    display: block;
}

.member-card-main .location {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: default;
}

.member-card-main .location i {
    font-size: 17px;
    color: var(--theme-color);
    cursor: default;
}

.member-card-main .location span, a {
    font-size: 14px;
    font-weight: lighter !important;
    cursor: default;
    color: #000;
}

.member-card-main .location a {
    cursor: pointer;
}

.member-card-main .location a:hover {
    color: var(--theme-color);
}

.member-card-main .bio-area p {
    font-weight: lighter;
    font-size: 15px;
}