/* @import url("../css/style.css"); */


/* @import "./style.css"; */


/*
**************
    Inner-Head
**************
*/

.inner-head {
    background: #eef5f7;
}

@media only screen and (max-width: 768px) {
    .inner-head {
        text-align: center;
    }
    .inner-head .breadcrumb {
        justify-content: center;
    }
}


/*
*********
    Aside
*********
*/


/* Aside Login */

.aside-login-wrap {
    background: #fafafa;
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
    overflow: hidden;
}

.aside-login-wrap .login-head {
    padding: 0.5rem 0;
    background: #ff006c;
    color: #fff;
    box-shadow: rgba(17, 17, 26, 0.25) 0px 2px 20px;
}

.aside-login .input-group {
    border: 1px solid transparent;
    border-bottom-color: #13add8;
    transition: 300ms ease-out;
}

.aside-login .input-group-text {
    background: none;
    border: none;
}

.aside-login .form-control {
    background: none;
    border: none;
}

.aside-login input:focus {
    box-shadow: none;
}

.aside-login .input-group:focus-within {
    border-color: #13add8;
    background: #fff;
}

.aside-login .btn-login {
    background: #13add8;
    border: none;
    display: flex;
    width: 100%;
    justify-content: center;
}

.aside-login .btn-login:hover {
    background: #5fcfee;
}

.aside-login .btn-login:focus {
    box-shadow: none;
}

.login-help a,
.login-help p {
    font-size: 14px;
}


/* Aside Quick Links */

.aside-links-wrap .links-head {
    color: #ff006c;
    position: relative;
}

.aside-links-wrap .links-head::after {
    content: "⊷";
    font-size: 1.825rem;
    font-weight: 100;
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
}

.aside-links ul {
    padding: 0;
    list-style: none;
}

.aside-links li {
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    overflow: hidden;
}

.aside-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    /* font-size: 1.225rem; */
    padding: 0.5rem 0.75rem;
    font-weight: 300;
    background: #13add8;
    color: #fff;
}

.aside-links a:hover {
    background: #19beeb;
}

.aside-links i {
    margin-right: 0.75rem;
}


/*
**************
    Inner Main
**************
*/

.inner-main {
    margin-bottom: 3rem;
}


/*
***********
    General
***********
*/


/* Content Box */

.content-box {
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    border: 1px solid transparent;
    /* border-top-color: #13add8; */
    padding-top: 0.75rem;
}

.content-box-head {
    text-align: center;
}

.content-box-head h4 {
    display: inline-block;
    padding: 0.25rem 0.725rem;
    /* color: #ff006c; */
    color: #666;
    position: relative;
}

.content-box-head h4:before {
    width: 28px;
    height: 3px;
    display: block;
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    margin-left: -14px;
    /* background-color: #13add8; */
    background-color: #ff006c;
    z-index: 1;
}

.content-box-head h4:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: #19beeb;
    /* background-color: #ff006c; */
}

.content-box-item {
    padding: 1rem;
    text-align: justify;
    background: #fff;
}

.content-box-item ul {
    padding: 0 1rem;
    margin-left: 0.5rem;
}

.content-box-item li {
    margin-bottom: 6px;
}

.content-box-item li::marker {
    content: "◈ ";
    color: #ff006c;
}

.content-box-item h5 {
    color: #13add8;
}


/* Image Box */

.img-box-wrap {
    display: flex;
    gap: 1.5rem 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.img-box {
    border-radius: 0.25rem;
    flex: 1 1 33%;
    max-width: 30%;
}

.img-box-content {
    border: 1px solid #ddd;
    padding: 1rem;
    height: 100%;
    transition: 250ms ease;
    border-radius: 1rem;
    text-align: center;
}

.img-box-content h4 {
    text-align: center;
    font-size: 1rem;
    color: #ffffff;
    padding: 0.5rem 1rem;
    background: #ff006c;
    border-radius: 50vw;
    border: 1px solid;
    display: inline-block;
}


/* .img-box-content h4::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid;
    border-radius: 50vw;
    inset: -4px;
} */

.img-box:hover .img-box-content {
    border-color: transparent;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}

.ibc-photo {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #13add8, 4px 4px 0 8px #eef5f7;
    margin: 1rem auto;
    position: relative;
    width: 65%;
}

.img-box:hover .ibc-photo::after {
    opacity: 1;
    left: 98%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}

.img-box .ibc-photo img {
    transform: scale(1);
    transition: all 250ms ease-out;
}

.img-box:hover .ibc-photo img {
    transform: scale(1.05);
    transition: all 250ms ease-in;
}

.ibc-info {
    padding: 0 0.5rem;
    text-align: center;
    color: #333;
    position: relative;
    word-wrap: break-word;
    overflow: hidden;
}

.ibc-info h5 {
    color: #333333;
    /* outline: 2px solid #fff;
    box-shadow: 1px 1px 8px rgb(0 0 0 / 5%); */
}

.ibc-info em {
    font-size: small;
    color: #333;
    font-weight: 400;
}

.ibc-info p {
    margin-bottom: 0;
}

.ibc-info .contact {
    margin: 1rem 0;
}

.ibc-info .contact::before {
    background-color: #e1e1e1;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    right: 0.5em;
    margin-left: -50%;
}

.ibc-info .contact::after {
    background-color: #e1e1e1;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    left: 0.5em;
    margin-right: -50%;
}

.ibc-info a {
    display: inline-block;
    margin: 0 8px;
    width: 40px;
    height: 40px;
    background: #eefbff;
    border-radius: 30px;
    text-align: center;
    line-height: 40px;
}

.ibc-info a:hover {
    color: #fff;
    background: #ff006c;
}

.ibc-info i.bi {
    cursor: pointer;
    position: absolute;
    color: #ff006c;
    font-size: 1.5rem;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
}

.ibc-info i.bi-box-arrow-in-up {
    bottom: -1rem;
}

@media only screen and (max-width: 768px) {
    .img-box {
        flex: 0 0 80%;
        max-width: 80%;
    }
}


/* Reponsive Tab */

.responsive-tab .nav-pills {
    display: none;
}

.responsive-tab-pane .collapsed i {
    transform: rotate(180deg);
    transition: transform 250ms ease;
}

@media (min-width: 768px) {
    .responsive-tab .nav-pills {
        display: flex;
    }
    .responsive-tab .tab-pane .responsive-tab-pane {
        display: none;
    }
    .responsive-tab .tab-pane .collapse {
        display: block;
    }
}

@media (max-width: 767px) {
    .responsive-tab .tab-content>.tab-pane {
        display: block !important;
        opacity: 1;
    }
}


/* Accordion */

.accordion-item {
    border: none;
    border-bottom: 1px solid #fff;
}

.accordion-button {
    font-size: 1.35rem;
    font-weight: 600;
    color: #13add8;
    background: #eef5f7;
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2313add8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) {
    box-shadow: inset 0 -1px 0 rgb(19 173 216 / 13%);
    color: #13add8;
    background: #eef5f7;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2313add8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


/* Table */

.table-wrap {
    padding: 1rem 1rem;
    outline: 2px solid #eef5f7;
}

.table-responsive {
    transform: rotateX(180deg);
}

.table-responsive table {
    transform: rotateX(180deg);
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    /* --bs-table-striped-bg: rgba(0, 0, 0, 0.05); */
    --bs-table-striped-bg: #eef5f7;
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: #eef5f7;
}

.table thead {
    /* background: #13add8; */
}

.table thead th {
    vertical-align: top;
    font-weight: 400;
}

.table tbody {
    border-top: none;
}

.table> :not(:first-child) {
    border-top-color: #13add8;
}

.table> :not(caption)>*>* {
    border: none;
}

.table td {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .table-wrap {
        padding: 0.5rem;
        outline: 1px solid #eef5f7;
    }
}


/* Events */

.event-box .card {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

@media (max-width: 768px) {
    .event-box .card {
        grid-template-columns: auto;
        grid-template-rows: auto;
    }
}

.event-box .card-img {
    /* width: 50%; */
    overflow: hidden;
    position: relative;
    display: flex;
    padding: 1rem;
    border: 1px solid #ddd;
    /* box-shadow: inset 0 0 10px 0px rgb(0 0 0 / 15%); */
    border-radius: 1rem;
}


/* .event-box .card-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/conference.jpg);
    background-size: cover;
    background-position: center;
    inset: 0 0 auto auto;
} */

.event-box .card-img img {
    /* display: block;
    width: auto;
    margin: 0 auto; */
    object-fit: contain;
}

.event-box .card-img img[src*="logo"] {
    display: block;
    margin: 0 auto;
    width: 50%;
}


/* .event-box .card-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    z-index: 0;
    inset: 0;
    opacity: 0.85;
} */


/* .event-box .card-img p {
    position: absolute;
    color: #fff;
    inset: 50% 0 auto 0;
    transform: translateY(-50%);
    letter-spacing: 6px;
    z-index: 1;
} */

.event-box .card-img p span {
    font-size: 2rem;
    letter-spacing: initial;
}

.event-box .card-body {
    padding: 1.5rem;
}

.event-box .card-text {
    font-size: 1rem;
}

.event-box .card-text i {
    margin-bottom: 0.5rem;
}

@media only screen and (max-width: 600px) {
    .event-box .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}


/*
*********
    About
*********
*/

.about-page-brief {
    position: relative;
    text-align: justify;
    padding: 2rem;
    background: #fdfdfd;
    border-radius: 0.25rem;
    border-top-left-radius: 2rem;
    /* outline: 1px solid #13add8; */
    /* outline-offset: -10px; */
    /* outline-style: inset; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: 300ms ease-in;
}

.about-page-brief::before {
    content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    top: 0;
    left: -1px;
    background: linear-gradient(135deg, #fdfdfd, #fbfbfb 45%, #eee 50%, #bbb 50%, #ccc 56%, #ddd 62%, #f3f3f3 80%, #f2f2f2 100%);
    transition: 300ms ease-out;
}

.about-page-brief:hover {
    border-top-left-radius: 2.5rem;
    box-shadow: 3px 3px 0 1px #fff, 4px 4px 0px 2px #eee, 5px 5px 0px 3px #fff, 6px 6px 0px 4px #ddd;
}

.about-page-brief:hover::before {
    width: 2rem;
    height: 2rem;
}


/* About-Tab */

.about-page-main .responsive-tab .nav-pills .nav-link {
    color: #333;
    transition: color 250ms ease;
    border-right: 1px solid #13add8;
    border-radius: unset;
    position: relative;
    padding: 1rem;
}

.about-page-main .responsive-tab .nav-pills .nav-link::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 36px;
    background-color: #000;
    inset: auto auto 20% 8%;
}

.about-page-main .responsive-tab .nav-pills .nav-link:hover {
    color: #000;
}

.about-page-main .responsive-tab .nav-pills .nav-link.active {
    background-color: transparent;
    color: #13add8;
    transition: background-color 250ms ease;
    border: 1px solid;
    border-right-color: transparent;
}

.about-page-main .responsive-tab .nav-pills .nav-link.active::after {
    background-color: #13add8;
}

.about-page-main .responsive-tab .tab-pane {
    text-align: justify;
}

.about-page-main .responsive-tab .card-body {
    padding: 0 1rem;
}


/*
**************
Office Bearers
**************
*/

.ob-page .ob-council-wrap h3 {
    border-left: 4px solid #ff006c;
    padding: 0.5rem 1rem;
    color: #13add8;
    background: #eef5f7;
}

.ob-council-wrap {
    margin-bottom: 3rem;
}

.ob-council-wrap>hr {
    color: #13add8;
    height: 2px;
    margin: 2rem;
}


/*
***************
    Membership
***************
*/

.bmp-detail-wrap {
    padding: 2rem 1rem;
    border: 1px solid #ddd;
    position: relative;
}

.bmp-detail-wrap .starDiv {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #13add8;
    margin-bottom: 1rem;
}

.bmp-detail-wrap .starDiv::before {
    padding: 1rem;
    background: #fff;
    box-shadow: 0 2px 4px #13add8;
    border-radius: 100%;
    outline: 1px dashed #13add8;
    outline-offset: -6px;
}

.bmp-detail-wrap .starDiv::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 60%;
    height: 3px;
    background: #13add8;
    box-shadow: 0 1px 2px #13add8;
    border-radius: 50%;
    opacity: 0.5;
}

.starDivider {
    margin: 2rem auto;
    width: 65%;
    max-width: 100%;
    position: relative;
}

.starDividerMask {
    overflow: hidden;
    height: 20px;
}

.starDividerMask:after {
    content: "";
    display: block;
    margin: -25px auto 0;
    width: 100%;
    height: 25px;
    border-radius: 125px / 12px;
    box-shadow: 0 0 8px #13add8;
}

.starDivider span {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 100%;
    margin-bottom: -25px;
    left: 50%;
    margin-left: -25px;
    border-radius: 100%;
    box-shadow: 0 2px 4px #13add8;
    background: #fff;
}

.starDivider i {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    border-radius: 100%;
    border: 1px dashed #13add8;
    text-align: center;
    line-height: 40px;
    font-style: normal;
    color: #13add8;
}

.bmp-detail p {
    /* text-align: justify;
    text-align-last: center; */
}

@media only screen and (min-width: 768px) {
    .bmp-detail .card {
        width: 40%;
        margin: 0 auto;
    }
}

.bmp-detail .card {
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: 2rem;
}

.bmp-detail .card-body {
    color: #fff;
    position: relative;
    border: none;
    outline: 2px solid #fff;
    outline-offset: -6px;
}

.bmp-detail .card-body::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset: 0;
    background: url(../img/hexaPattern1.png);
    opacity: 0.75;
    z-index: -1;
}

.bmp-detail .card-body::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, #ff006c 25%, transparent 75%), radial-gradient(circle at 100% 0%, #13add8 25%, transparent 75%), radial-gradient(circle at 100% 100%, #ff006c 25%, transparent 75%), radial-gradient(circle at 0% 100%, #13add8 25%, transparent 75%);
    z-index: -2;
}

.bmp-detail .card-body i {
    position: absolute;
    content: "";
    /* width: 100%;
    height: 100%; */
    color: #fff;
    font-size: 3rem;
    opacity: 1;
    /* inset: -4% auto auto 33%; */
    inset: -4% auto auto 75%;
}

.bmp-detail .btn {
    color: #fff;
    background: #13add8;
    /* flex: 0 1 33%; */
    margin: 0 1rem;
    /* border-radius: 2rem; */
    display: flex;
    flex-direction: column;
}

.bmp-detail .btn:hover {
    background: #5fcfee;
}

.bmp-detail .btn i {
    font-size: 2rem;
}


/*
Payment
*/

.bmp-payment .table .head {
    color: #fff;
    background-color: #13add8;
    border: 1px solid #13add8;
}

.bmp-payment .table .detail>* {
    border: 1px solid #13add8;
    font-weight: 300;
}

.bmp-payment .secDetail {
    background: #13add8;
    color: #fff;
    padding: 2rem 1.5rem;
}

.bmp-payment .secDetail a {
    color: #fff;
}

.bmp-payment .secDetail h2 {
    font-size: 1.35rem;
    font-weight: 600;
    position: relative;
    /* color: #13add8;
    background: #eef5f7;
    padding: 1rem 1.5rem; */
}

.bmp-payment .secDetail h2 span {
    display: block;
    position: relative;
    z-index: 11;
}

.bmp-payment .secDetail h2 span::before {
    position: absolute;
    content: "";
    width: 110%;
    height: 125%;
    inset: auto -5% -10% auto;
    background: #19beeb;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    z-index: -1;
}

.bmp-payment .secDetail h2::before {
    content: "";
    position: absolute;
    border: 0.5rem solid transparent;
    border-bottom-color: #006581;
    inset: 75% auto auto -4.5%;
    transform: rotate(45deg);
    z-index: -1;
}

.bmp-payment .secDetail h2::after {
    content: "";
    position: absolute;
    border: 0.5rem solid transparent;
    border-bottom-color: #006581;
    inset: 75% -4.5% auto auto;
    transform: rotate(315deg);
    z-index: -1;
}


/*
***************************
    Categories and Benefits
***************************
*/


/*
*******************
    Upcoming Events
*******************
*/


/*
***************
    Past Events
***************
*/

.past-events-page .nav {
    position: relative;
}

.past-events-page .nav::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    inset: auto 0 0 0;
    background-color: #13add8;
    z-index: -1;
}

.past-events-page .nav-item:not(:first-child) {
    margin-left: 0.5rem;
}

.past-events-page .nav-link.active {
    background: #eef5f7;
    border: 1px solid #13add8;
    border-bottom-color: transparent;
    color: #000;
}

.past-events-page .nav-link {
    border: 1px solid #13add8;
    border-bottom-color: transparent;
    color: #fff;
    background: #13add8;
    border-radius: 0;
}


/*
************
    Educaton
************
*/

.education-page {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
}

.education-page .card {
    flex-basis: 30%;
    overflow: hidden;
    transition: border 500ms ease;
}

.education-page .card:hover {
    border-color: #13add8;
}

.education-page .card img {
    transform: scale(1);
    transition: transform 500ms ease-out;
}

.education-page .card:hover img {
    transform: scale(1.1);
    transition: transform 250m ease-in;
}

.education-page .card .card-body {
    z-index: 11;
    border-top: 2px solid #13add8;
    background: #fff;
}

@media (max-width: 768px) {
    .education-page {
        flex-direction: column;
        align-items: center;
    }
    .education-page .card {
        width: 80%;
        margin-bottom: 1.5rem;
    }
    .education-page .card img {
        max-height: 33vh;
        object-fit: contain;
    }
}


/*
**************
    Fellowship
**************
*/

.fellowship-page h4 {
    padding: 0.25rem 0.725rem;
    color: #ff006c;
    position: relative;
}

.fellowship-page h4::before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    margin-left: -14px;
    background-color: #13add8;
}

.fellowship-page h4:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 10px;
    left: 50%;
    margin-left: -50px;
    background-color: #19beeb;
}

.fellowship-page .img-box-wrap {
    gap: 1rem 0.5rem;
}

.fellowship-page .img-box {
    flex-basis: 33%;
    max-width: 30%;
}

.fellowship-page .img-box-content {
    padding: 0.5rem;
}


/* .fellowship-page .ibc-info h5 {
    font-size: 0.825rem;
} */

.fellowship-page .ibc-info p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .fellowship-page .img-box {
        flex-basis: 45%;
        max-width: 45%;
    }
}


/*
**********
    Mumbai
**********
*/

.mumbai-page .mumbai-council-wrap h2 {
    /* color: #ff006c; */
    padding: 0 1rem;
    font-size: 1.8rem;
}

.mumbai-page .mumbai-council-wrap h2::before {
    content: "";
    display: block;
    background: #13add8;
    width: 6%;
    height: 4px;
    margin-bottom: 8px;
}

.mumbai-page .mumbai-council-wrap h3 {
    border-left: 4px solid #ff006c;
    padding: 0.5rem 1rem;
    color: #13add8;
    background: #eef5f7;
}


/*
********
    WFSA
********
*/

.wfsa-page .card-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.wfsa-page .card {
    padding: 1.5rem 1rem;
}

.wfsa-page .card-img-top {
    /* margin-bottom: 1rem; */
    border-radius: 50%;
    overflow: hidden;
    outline: 1px solid #13add8;
    position: relative;
    width: 92px;
    height: 92px;
}

.wfsa-page .card-img-top img {
    width: max-content;
    margin: auto;
    position: absolute;
    inset: 0;
    object-fit: contain;
}

.wfsa-page .card-img-top img.outline {
    filter: invert(53%) sepia(58%) saturate(672%) hue-rotate(146deg) brightness(95%) contrast(92%);
}

.wfsa-page .card-img-top img.solid {
    visibility: hidden;
    opacity: 0;
    /* display: none; */
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.wfsa-page .card:hover .card-img-top img.outline {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    /* display: none; */
}

.wfsa-page .card:hover .card-img-top img.solid {
    visibility: visible;
    opacity: 1;
    /* display: block; */
}

.wfsa-page .card-body {
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/*
***********
    Gallery
***********
*/

.gallery-page .section {
    word-wrap: break-word;
}

.gallery-page .section h4 {
    margin-bottom: 1rem;
    background-color: #fff6fa;
    color: #ff006c;
    padding: 0.5rem 1rem;
    border-left: 4px solid #ff006c;
}

.gallery-page .section h4 span {
    font-size: 16px;
    color: #000;
}

.gallerySec {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    grid-gap: 20px;
}

.thumbnail {
    box-shadow: 0 20px 30px -10px rgb(0 0 0 / 25%);
    border-radius: 0.25rem;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
}

@media (max-width: 767px) {
    .gallerySec {
        grid-gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
        grid-auto-rows: 128px;
    }
    .thumbnail {
        box-shadow: 0 10px 15px -5px rgb(0 0 0 / 25%);
        border: 2px solid #ffffff;
        outline: 1px solid #bbb;
        border-radius: 0;
    }
}


/*
***********
    Contact
***********
*/

#contact-page {
    background: url("../img/contact-bg.jpg");
    /* background-attachment: ; */
    background-size: cover;
    background-position: center center;
}

.contact-page .contact-mail {
    /* margin-top: -16rem; */
}

.contact-page .contact-mail .card {
    border: none;
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.contact-page .contact-mail .card-body {
    padding: 2rem 1.5rem;
}

.contact-page .contact-mail input,
.contact-page .contact-mail textarea {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.contact-page .contact-mail input {
    border: none;
    border-bottom: 1px solid #f9ecf1;
}

.contact-page .contact-mail textarea {
    border-color: #f9ecf1;
}

.contact-page .contact-mail input:focus,
.contact-page .contact-mail textarea:focus {
    box-shadow: none;
}

.contact-page .secAddr {
    position: relative;
}

.contact-page .secAddr::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 39%;
    inset: 5% 1% auto auto;
    outline: 4px solid #fbfbfb;
    /* outline-offset: 4px; */
    background: #fff;
    background: radial-gradient(circle at 50% 50%, #fff, 80%, #fafafa);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 0.15rem;
}

.contact-page .secAddr .icon .fa-circle {
    color: transparent;
    background: radial-gradient(circle at 50% 50%, #13add8, 60%, #0d6efd);
    clip-path: circle(40% at 50% 50%);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.contact-page .secAddr .icon .fa-location-dot {
    font-size: 1.5rem;
    color: #fff;
}

.contact-page .secAddr .addr {
    position: relative;
}

@media (max-width: 767px) {
    .contact-page .contact-mail .card {
        border-radius: 0;
    }
    .contact-page .secAddr::before {
        height: 100%;
        outline: none;
        inset: 10% 0% auto auto;
        padding: inherit;
        background-clip: content-box;
    }
}


/* Resources */

.links-page li {
    padding: 10px 0px;
    background: #eef5f7;
    margin: 5px 0px;
}

.links-page li a {
    color: #000;
    transition: 0.5s ease-out;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -ms-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    margin-left: 10px;
    display: inline-block;
    font-weight: 500;
}

.links-page li a:hover {
    color: #ff006c;
}

.links-page li a i {
    transition: 0.5s ease-out;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -ms-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    margin-left: 10px;
}

.links-page li a:hover i {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

.ml-council .ibc-photo {
    width: 125px;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #13add8, 4px 4px 0 8px #ffffff;
}

.ml-council .img-box-content {
    position: relative;
    overflow: hidden;
}

.img-box-content .s-no {
    position: absolute;
    top: 32px;
    left: 0;
    background-color: #ff006c;
    text-align: center;
    color: #ffffff;
}

.img-box-content .s-no span {
    font-weight: 500;
}

.ml-council .ibc-info h5 {
    font-size: 15px;
}

.pagination a,
.pagination span {
    margin: 2px;
    color: #13add8;
    border: 1px solid;
    /* padding: 0px 14px; */
    min-width: 34px;
    align-items: center;
}

.pagination .disabled,
.pagination span {
    padding: 0px 10px;
}

.pagination {
    margin-top: 20px;
}

div.pagination span.current {
    font-weight: bold;
    background: #249abb;
    color: #fff;
    min-width: 34px;
    border: 1px solid;
}

.ribbon {
    background-color: #eef5f7;
    position: absolute;
    left: 10px;
    top: 10px;
    animation: drop forwards 0.8s 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-width: 40px;
    line-height: 40px;
    height: 40px;
    color: #13add8;
    text-align: center;
    border-radius: 50px;
}

.ribbon::before {
    content: none;
    position: absolute;
    z-index: 2;
    left: 42px;
    top: 6px;
    border-left: 13px solid #13add8;
    border-right: 13px solid #13add8;
    border-bottom: 14px solid transparent;
    transform: rotate(-89deg);
    -webkit-transform: rotate(-89deg);
    -moz-transform: rotate(-89deg);
    -ms-transform: rotate(-89deg);
    -o-transform: rotate(-89deg);
}


/*event-flyer-links*/

.event-flyer-links li a {
    display: block;
    padding: .5rem;
    border: 1px solid var(--bs-gray-200);
    border-radius: .255rem;
    margin: .5rem;
}

.event-flyer-links li img {
    border-radius: .255rem;
}