
:root {
    --primary-font: 'Poppins', sans-serif;
    --title-font: 'Poppins', sans-serif;
    --gradient-color: linear-gradient(106.7deg, #235B72, #236C8A);
    --nav-hover-color: #235B72;
    --nav-dropdown-background-color: #ffffff;
    --nav-color: #000;

    --nav-dropdown-color: #235B72;
    --nav-dropdown-hover-color: #42895F;
    --nav-mobile-background-color: #ffffff;

    --primary-color : #235B72;
    --background-color : #42895F;
    --title-color : #42895F;
    --color-white : #FFF;

    --header-text-color-1 : #235B72;
    --header-text-color-2 : #42895F;
    --header-text-color-3 :#64646480;

    --background-color-rgb: 0, 0, 0;
    --btn-color: #235B72;
    --btn-text-color: #FFFFFF;
    --title-color-1: #FFFFFF;
    --first-text-color:#235B72;
    --second-text-color:#235B72;
    --thread-text-color:#235B72;
    --header-text-color: #FFFFFF;
    --header-background-color: #FFFFFF;

    --section-background-color: #EFEFEF;
    --color-secondary: #42895F;
    --color-secondary-rgb: 72, 86, 100;
    /* Secondary colors */
    --color-secondary-light: #8f9fae;
    --color-secondary-dark: #235B72;

    --color-secondary-light-rgb: 143, 159, 174;
    --color-secondary-dark-rgb: 58, 71, 83;

    --color-white-rgb: 255, 255, 255;
    --heading-color: #000;
    --text-color: #0B0B0B;
    --default-color: #0B0B0B;
    --primary-button-color: #fff;
    --top-header-background-color: #f7f7f7;
    --middle-header-background-color: #fff;
    --bottom-header-background-color: #fff;

    --header-text-secondary-color: rgba(0, 0, 0, 0.5);
    --header-deliver-color: rgba(0, 0, 0, 0.15);
    --footer-text-color: #555;
    --footer-heading-color: #555;
    --footer-hover-color: #235B72;
    --footer-border-color: #dee2e6;
}
body {
    font-family: var(--primary-font);
    color: var(--text-color);
}
a {
    color:  var(--title-color);;
    text-decoration: none;
}

@media (max-width: 576px) {
    .container, .container-sm {
        padding: 0 35px;
    }
}

.text-background-color {
    color:var(--background-color);
}
.text-title-color {
    color:var(--title-color);
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.page-link {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.home-banner {
    overflow: hidden;
}
.home-banner .background-banner {
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 600px;
    display: flex;
    align-items: center;
    background-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
}


* {
    text-transform: capitalize !important;
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0;
}


.btn {
    background-color: var(--primary-color) !important;
    color: var(--color-white);
    list-style: none;
    text-transform: none;
    text-wrap: wrap;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 45px;
}

.btn:hover {
    background-color: var(--background-color) !important;
    color: var(--primary-color);
    border: 2px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 0 5px var(--primary-color);
}

.login-btn {
    background-color: var(--background-color) !important;
    color: var(--color-white);
    list-style: none;
    text-transform: none;
    text-wrap: wrap;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 45px;
}
.login-btn:hover {
    background-color: var(--title-color) !important;
    color: var(--color-white);
    border: 2px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 0 5px var(--title-color);
}
.register-btn {
    background-color: var(--title-color) !important;
    color: var(--color-white);
    list-style: none;
    text-transform: none;
    text-wrap: wrap;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 45px;
}
.register-btn:hover {
    background-color: var(--background-color) !important;
    color: var(--color-white);
    border: 2px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 0 5px var(--background-color);
}
.play-btn {
    width: 94px;
    height: 94px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    z-index: 100;
    background-color: var(--header-text-color-2);
    border-radius: 50%;
    display: block;
    overflow: hidden;
}

.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
    border-left: 15px solid var(--primary-color);
    transform: scale(20);
}
.play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.title {
    font-weight: 800;
    font-size: 34px;
    font-family: var(--primary-font);
    text-transform: capitalize;
    color:var(--title-color);
}

.location-details .title {
    font-weight: 800;
    font-size: 34px;
    font-family: var(--primary-font);
    text-transform: capitalize;
    color:var(--background-color);
}

.content .back {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color: var(--primary-color);
    position: relative;
    cursor: pointer;
    height: 100%;
    border: 0;
    text-decoration: underline;
}
.section-p {
    padding: 140px 0 0 0;
}
#main {
    padding: 0 0 0 0;
}
@media (max-width: 1199px) {
    #main {
        padding: 120px 0 0 0;
    }
}

.invalid-feedback {
    display:block;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
}

.bg-section {
    background: var(--section-background-color);
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}




/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--primary-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 15px 3px silver;
    padding: 0;
}
.sticked {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px 3px silver;
}

.header .topbar {
    background-color: var(--primary-color);
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}
.header .topbar .social-links {
    display: contents;
}
.header .topbar .social-links .link {
    color: var(--color-white);
    line-height: 0;
    transition: 0.3s;
    font-size: 20px;
    margin: 10px 6px;
    padding: 4px;
    background: none;
    border: 0;
}

.header .topbar .social-links .link:hover {
    background-color: var(--color-white) !important;
    color: var(--primary-color);
    border-radius: 3px;
}

.header .topbar  .dropdown ul li {
    min-width: 200px;
}

.header .topbar .social-links .dropdown ul li .item {
    font-size: 15px;
    text-transform: none;
    display: block;
    width: 100%;
    clear: both;
    font-weight: 400;
    color: var(--primary-color);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    padding: 5px 8px;
}

.header .topbar .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
}

.header .topbar .social-links .dropdown ul li .item:hover,
.header .topbar .social-links .dropdown ul li:hover,
.header .topbar  .dropdown ul .active:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
    cursor: pointer;
}

.header .topbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.header .topbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}



.header .navmenu .link {
    color: var(--primary-color);
    line-height: 0;
    transition: 0.3s;
    font-size: 20px;
    margin: 10px 6px;
    padding: 4px;
    background: none;
    border: 0;
}
.header .navmenu .link:hover {
    background-color: var(--color-white) !important;
    color: var(--primary-color);
    border-radius: 3px;
}
.header .navmenu  .dropdown ul li {
    min-width: 200px;
}

.header .navmenu .dropdown ul {
    top: 0;
    left: 0;
    visibility: hidden;
}
.header .navmenu .dropdown ul li .item:hover,
.header .navmenu .dropdown ul li:hover,
.header .navmenu  .dropdown ul .active:hover {
    background-color: var(--primary-color);
    color: var(--color-white );
    cursor: pointer;
}
.header .navmenu .dropdown ul li a:hover ,
.header .navmenu .dropdown ul li .item a:hover{
    color: var(--color-white );
}

.header .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    transform: none;
}
.header .navmenu .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.header .branding {
    min-height: 80px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}



.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header .logo img {
    margin-right: 8px;
    max-width: 200px;
}

.footer {
    background-color: var(--primary-color);
    height: max-content;
}

.footer .footer-top {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-white);
}

.footer .footer-top span  {
    font-family: var(--title-font);
    color: var(--color-white);
    font-size: 25px;
}
.footer .copy-right ,.footer .footer-title span {
    font-family: var(--title-font);
    color: var(--color-white);
}

.footer a {
    color: var(--color-white);
}

.footer a:hover {
    background-color: var(--color-white);
    color: var(--primary-color);
    text-decoration: none;
    padding: 5px;
    border-radius: 5px;
}

.footer .social-links a {
    color: var(--color-white);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
    font-size: 20px;
    padding: 5px;
    background: none;
    border: 0;
}

.footer .social-links a:hover {
    background-color: var(--color-white) !important;
    color: var(--primary-color);
    border-radius: 3px;
}
.footer .footer-info a:hover {
    background: none;
    color: var(--color-white);
}

.footer .footer-logo {
    width: 110px;
    padding: 20px;
    animation: logo 5s ease infinite;
}

@keyframes logo {
    50%{
        transform: translate(0px, 10px)
        scale(1.5)
    }
}

@media (max-width:576px) {
    .footer {
        text-align: center;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .header .branding .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--heading-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--primary-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 20px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu li:hover> .header-link,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color) !important;
        transform: scale(1.1);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 0;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        transform: none;
        background-color: var(--primary-color);
        color: var(--color-white );
        cursor: pointer;
    }


    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 20%;
        visibility: visible;
        transform: none;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .header .branding .container {
        display: flex;
        justify-content: start;
        align-items: start;
    }
    .header .logo {
        display: none;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        color: var(--nav-hover-color) !important;
        transform: scale(1.1);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 0px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

.home-page .events  .event {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 45px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 330px;
    background-size: cover;
    background-position: center;
}
.home-page .events  .member .event-img {
    position: relative;
    overflow: hidden;
}
.home-page .events  .event .event-info {
    width: 100%;
    color: white;
    height: 100%;
    padding: 10px;
    display: flex;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) -10.53%, rgb(0 0 0 / 47%) 74.67%, rgb(0 0 0) 99.22%);
    justify-content: flex-start;
    align-items: center;
}

.home-page .events  .event .event-info h4 {
    font-style: normal;
    height: 50px;
    font-weight: 700;
    font-size: 34px;
    line-height: 127.13%;
    color: #FFFFFF;
}

.item-details .content span {
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--primary-font);
}

.item-details .content p{
    margin: 0 50px;
    font-family: var(--primary-font);
    text-align: justify;
}
.item-details .content p:last-child {
    margin-bottom: 0;
}

.item-details .content .col-md-7  {
    display: flex;
    align-items: center;
}
.item-details .content .col-md-5  {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-details .content img {
    height: 250px;
    box-shadow: 0px 4px 47px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
}

@media (min-width: 768px) {
    .item-details {
        display: flex;
    }
}

@media (max-width: 767px) {
    .item-details {
        display: flex;
    }
}

.item-details .item-details-btn {
    padding: 5px 20px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) -10.53%, rgb(0 0 0 / 47%) 74.67%, rgb(0 0 0) 99.22%);
    border: 1px solid var(--btn-text-color);
    border-radius: 32px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    text-transform: capitalize;
    color: var(--btn-text-color);
    text-decoration-line: underline;
}

.item-details .content .back {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color: var(--title-color);

    position: relative;
    cursor: pointer;
    height: 100%;
    border: 0;
    text-decoration: underline;
}
.item-posts .content .back {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color: var(--title-color);

    position: relative;
    cursor: pointer;
    height: 100%;
    border: 0;
    text-decoration: underline;
}

.item-details .content .back i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.item-details .content .back:hover {
    padding-right: 19px;
}

.item-details .content .back:hover i {
    margin-left: 10px;
}


.person-swiper .swiper-slide {
    overflow: visible !important;
    z-index: 1;
    position: relative;

}
.person-swiper .swiper-wrapper  {
    height: auto;
    overflow: visible !important;
    z-index: 1;
    position: relative;

}
.person-swiper .person-swiper-item {
    position: relative;
    background-color: var(--background-color);
    border-radius: 45px;
    overflow: visible;
    width: 100%;
    z-index: 1;
    align-items: center;
    padding: 50px;
    min-height: 243px;
}

.person-swiper .person-swiper-item .testimonial-img {
    position: absolute;
    top: 32%;
    bottom: 0;
    left: auto;
    right: 10px;
    transform: translateY(-52%);
    width: 300px;
    height: auto;
}
.person-swiper .person-swiper-item h4 {
    font-size: 14px;
    margin: 0 0 10px 0;
    color : var(--color-white);
}
.person-swiper .person-swiper-item p {
    min-height: 73px;
    color : var(--color-white);
}

.person-swiper .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.person-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.person-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--default-color);
}
.person-swiper .person-swiper-content {
    flex: 1;
    padding-right: 220px;
}

@media (max-width: 768px) {
    .person-swiper .person-swiper-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .person-swiper .person-swiper-item .testimonial-img {
        position: static;
        transform: none;
        margin-top: 20px;
        width: 200px;
    }

    .person-swiper .person-swiper-content {
        padding-right: 0;
    }
}

.destinations  .destination {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 45px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 330px;
    background-size: cover;
    background-position: center;
}
.destinations  .destination .destination-img {
    position: relative;
    overflow: hidden;
}
.destinations  .destination .destination-info {
    width: 100%;
    color: white;
    height: 100%;
    padding: 10px;
    display: flex;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) -10.53%, rgb(0 0 0 / 47%) 74.67%, rgb(0 0 0) 99.22%);
    justify-content: flex-start;
    align-items: flex-end;
}
.destinations .destination .destination-info h4 {
    position: relative;
    font-style: normal;
    height: 50px;
    font-weight: 700;
    font-size: 24px;
    line-height: 127.13%;
    color: #FFFFFF;
    margin: 65px 0;
    display: inline-block;

}
.destinations .destination .destination-info h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.8em;
    width: 100%;
    height: 2px;
    background-color: var(--background-color);
}

.achievers .achiever-item {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    padding: 85px 50px 45px 70px;
    margin: 120px 15px 35px;
    background: var(--background-color);
    border-radius: 45px;
    position: relative;
}


.achievers .achiever-item .achiever-img {
    width: 160px;
    margin: 0 auto;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
}

.achievers .achiever-item h4 {
    font-size: 14px;
    margin: 0 0 10px 0;
    color : var(--color-white);
}
.achievers .achiever-item p {
    min-height: 73px;
    color : var(--color-white);
}

.achievers .swiper-wrapper {
    height: auto;
}

.achievers .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.achievers .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.achievers .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--default-color);
}

.achievers .swiper-slide {
    opacity: 0.3;
}

@media (max-width: 1199px) {
    .achievers .swiper-slide-active {
        opacity: 1;
    }

    .achievers .swiper-pagination {
        margin-top: 0;
    }

    .achievers .achiever-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {
    .achievers .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

.objectives .objective-box {
    color: var(--color-white);
    background: var(--background-color);
    padding: 30px;
    border-radius: 45px;
    min-height: 260px;
}

.objectives .objective-box h3 {
    color: var(--color-white);
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.objectives .objective-box h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2em;
    width: 100%;
    height: 3px;
    background-color: var(--header-text-color-2);
}

.objectives .objective-box p {
    margin-bottom: 30px;
    color: var(--color-white);
}



#contact-us {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 75px 0;
}


#contact-us .item-position {
    display: inline-grid;
}
#contact-us .logo-position{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#contact-us .logo{
    width: 250px;
    height: 150px;
    background: rgba(93, 93, 93, 0.4);
    /* #064469 */
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}




#contact-us .btn-register {
    height: 102px;
    margin: 29px 0;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    border-radius: 10px;
    width: 200px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    text-align: justify;
    text-transform: capitalize;
    color: #F9F9F9;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#contact-us .btn-register a {
    color: inherit;
    text-decoration: none;
}

#contact-us .btn-register:hover {
    background: rgb(255 255 255 / 0%);
    border: 2px solid #064469;
}

@media (max-width: 1250px) {

}
@media (max-width: 500px) {

    #contact-us .submit {
        width: 100%;
    }
}

@media (max-height: 500px) {

}

#contact-us .bg-register {
    background: var(--section-background-color);
    border-radius: 16px;
    border: 1px solid var(--background-color);
    box-shadow: 0 4px 10px #ce34348f;
}

#contact-us .required-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 0 0.25rem;
}
#contact-us .required-label i{
    font-family: var(--primary-font);
    font-size: 14px;
    color: var(--title-color);
    padding-right: 0.25rem;
}

#contact-us .upload__box {
    position: relative;
}

#contact-us .upload__inputfile {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

#contact-us .upload__btn {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    height: 64px;
    background: #2E4049;
    text-align: center;
    color: #FFFFFF;
    border: 0;
    border-radius: 8px;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
}

#contact-us .upload__btn:hover {
    background-color: unset;
    color: #4045ba;
    transition: all .3s ease;
}

#contact-us .upload__btn-box {
    margin-bottom: 10px;
}

#contact-us .upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

#contact-us .upload__img-box {
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 12px;
}

#contact-us .upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 45%;
    right: 0%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

#contact-us .upload__img-close:after {
    content: '\2716';
    font-size: 14px;
    color: white;
}

#contact-us .img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

#contact-us .document-bg {
    background-color: #EFEFEF;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    width: 100%;
    height: 100%;
}
#contact-us .document-bg a{
    color: var(--primary-color);
    line-height: 30px;
    font-size: 12px;
}
#contact-us .document-bg a:hover{
    color: var(--title-color);
}

#contact-us .document-bg:hover {
    background-color: #afb0c14f;
    transition: background-color 0.3s ease;
}
#contact-us .link-file {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-decoration-line: underline;
    text-transform: capitalize;
}
#contact-us .title h2  {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    text-transform: capitalize;
}

#contact-us .form-control {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#contact-us .form-control[type="file"] {
    height: 48px;
    padding: 0;
    box-sizing: border-box;
}

#contact-us .form-control[type="file"]::file-selector-button {
    height: 48px;
    padding: 0 16px;
    line-height: 48px;
    box-sizing: border-box;
    margin: 0;
}
#contact-us .form-control:focus {
    height: 42px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}

#contact-us .nav-tabs .nav-link {
    color: var(--primary-color);
    border: 0;
    background-color: var(--color-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-us .nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--btn-text-color);
}


#contact-us .btn {
    background-color: var(--btn-color);
    color: var(--btn-text-color);
    border: 0;
}


#contact-us #prevBtn , #contact-us #nextBtn , #contact-us #submitBtn {
    color: var(--header-text-color);
    font-family: var(--primary-font);
    background: var(--title-color);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 10px 20px;
    text-align: center;
    border: 0;
    border-radius: 16px;
}

#contact-us .form-control:-webkit-autofill {
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#contact-us .select2-container--default .select2-selection--single  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#contact-us .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}


#contact-us .submit {
    color: var(--header-text-color);
    font-family: var(--primary-font);
    background: var(--title-color);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    width: 100%;
    height: 64px;

    text-align: center;
    border: 0;
    border-radius: 16px;
}

#contact-us .btn:hover {
    background-color: var(--background-color) !important;
    color: var(--primary-color);
    border: 2px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 0 5px var(--primary-color);
}
#contact-us .title h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 44px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--title-color);
}
#contact-us .title span {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 23px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--primary-color);

}
#contact-us h4 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 19px;

    color: var(--primary-color);
}

/* checkbox */
#contact-us .form-control-checkbox {
    width: 21.52px;
    height: 22px;
    border: 1px solid var(--primary-color);
    background-color: transparent; /* Set the background-color to transparent */
    border-radius: 0;
    margin-top: 0;
}
#contact-us .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
#contact-us .form-control-checkbox-group {
    display: flex;
    align-items: center;
}
#contact-us .form-check-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    width: 100%;
    text-decoration-line: none;
    color: #212121;
    padding-left: 12px;
}
#contact-us .form-check-label a{
    color: #212121;
}
#contact-us .logo-img {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    padding: 0 0.75rem;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
#contact-us .logo-img img {
    width: 200px;
}

.places .post-details .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--default-color);
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    min-height: 48px;
}
.places .post-details p , b , small {
    color: var(--default-color);
}
.places article {
    background: var(--middle-header-background-color);

}


.places .copy-link-btn {
    display: inline-flex;
    text-wrap: nowrap;
    align-items: center;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .3px;
    border-radius: 4px;
    color: var(--heading-color);
    transition: all .3s;
    justify-content: center;
    border: 1px solid #cfd4e4;
    margin: 0;
    float: right;
    background: var(--middle-header-background-color);

}

.places .card {
    border: 0;
    background: none;
}
.places article {
    box-shadow: 0 4px 16px rgba(var(--color-secondary-dark-rgb), 0.1);
    padding: 30px;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 45px;
    background: var(--color-white);
}

.places .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.places .post-details .post-category {
    font-size: 16px;
    color: var(--default-color);
    margin-bottom: 10px;
}
.places .post-details .post-description {
    font-size: 16px;
    color: var(--default-color);
    margin-bottom: 10px;
    min-height: 100px;
}
.places .post-details .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--default-color);
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    min-height: 48px;
}






.places .select2-container--default .select2-selection--single  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    min-height: 42px;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 5px;
    background: none;
}
.places .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.places .select2-container--default .select2-selection--multiple  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 5px;
    background: none;
    min-height: 42px;
}
.places .select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 0;
}

.places .form-control {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    padding: 0.375rem 0.75rem;
    color: #212121;
    min-height: 42px;
    border: 1px solid #727272;
    border-radius: 5px;
    background: none;
}
.places .form-control:focus {
    min-height: 42px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.places .form-control:-webkit-autofill {
    min-height: 42px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.places .section-title h2 {
    font-weight: 800;
    font-size: 28px;
    font-family: var(--title-font);
    font-style: italic;
    text-transform: capitalize;
    color: var(--default-color);
}

.places .dataTables_length {
    display: inline-block;
    margin-left: 0;
}
.places .culture-category .section-title-blog {
    padding-bottom: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.places .culture-category .section-title-blog h2 {
    font-weight: 800;
    font-size: 48px;
    font-family: var(--title-font);
    font-style: normal;
    text-transform: capitalize;
    color: var(--default-color);
    border-bottom: 5px solid var(--default-color);
    width: fit-content;
    text-align: center;
}
.places .culture-category .post-entry {
    margin-bottom: 30px;
}

.places .culture-category .post-entry h3 a {
    color: var(--default-color);
    font-weight: 600;
}

.places .culture-category .post-entry h3 a:hover {
    text-decoration: underline;
}

.places .culture-category .post-entry .thumbnail {
    flex: 0 0 65%;
}

@media (max-width: 960px) {
    .culture-category .post-entry .thumbnail {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

.places .culture-category .post-entry.half .thumbnail {
    flex: 0 0 50%;
}

@media (max-width: 768px) {
    .places  .culture-category .post-entry.half .thumbnail {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

.places .culture-category .post-entry.small-img .thumbnail {
    flex: 0 0 30%;
}

@media (max-width: 768px) {
    .places .culture-category .post-entry.small-img .thumbnail {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

.places .culture-category .border-bottom {
    border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

.places .culture-category .post-meta {
    font-size: 11px;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 10px;
}

.places .culture-category .author .photo {
    margin-right: 10px;
}

.places .culture-category .author .photo img {
    width: 40px;
    border-radius: 50%;
    margin-bottom: 0;
}

.places .culture-category .author .name h3 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: var( --primary-font);
}

.places .culture-category .post-list {
    margin-bottom: 30px;
}

.places .culture-category .post-list img {
    margin-bottom: 30px;
}

.places .culture-category .post-list h2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.places .culture-category .post-list h2 a {
    color: var(--default-color);

}

.places .culture-category .post-list h2 a:hover {
    text-decoration: underline;
    color: var(--title-color);
}

.places .culture-category .post-list.lg h2 {
    font-size: 40px;
    line-height: 1;
}
.places .culture-category .post-list img {
    width: 100%;
    height: auto;
}
.places ul li {
    padding-bottom: 10px;
    display: block;
    align-items: flex-start;
}
.places ul {
    list-style: unset;
    padding: 0;
}

.recent-comments .list-comments {
    transition: box-shadow 0.2s;
    box-shadow: 0px 4px 30.6px rgba(0, 0, 0, 0.07);
    border-radius: 45px;
    padding: 20px;
    background: var(--color-white);
}

.recent-comments .results-item {
    transition: box-shadow 0.2s;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--header-text-color-3);

}



.recent-comments .results-item .item-detail {
    font-size: 14px;
    margin-bottom: 10px
}

.recent-comments .results-item .item-detail .item-detail-label {
    font-weight: 400;
    text-transform: uppercase;
    color: var(--title-color);
    font-size: 0.9rem
}

.recent-comments .results-item .item-detail .item-detail-value {
    font-weight: 600
}

.recent-comments .results-item .item-detail .item-detail-subvalue {
    font-size: 0.9rem
}

.recent-comments .results-item .search-fragment {
    font-size: 0.75rem;
    color: var(--title-color);
    display: block
}

.recent-comments .results-item .search-fragment .highlight {
    background: #F0F0F0;
    color: var(--title-color);
    font-weight: 600;
    padding: 0 2px
}

.recent-comments .results-item ion-icon.watch {
    font-size: 34px;
    transition: transform 0.2s
}

.recent-comments .results-item:hover {
    box-shadow: rgba(0,0,0,0.08) 0px 4px 12px
}

.recent-comments .results-item:hover ion-icon.watch {
    color: var(--title-color);
    transform: scale(1.1)
}

.recent-comments .results-item .type.pi .badge {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0px;
    margin: 0px;
    font-family: var(--primary-font);
    border-radius: 0;
    position: relative;
    display: inline-block;
}
.recent-comments .results-item .type.pi .badge::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2em;
    width: 100%;
    height: 3px;
    background-color: var(--header-text-color-2);
}





.faq .content h3 {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq .section-title span {
    font-weight: 700;
    color:var(--primary-color);
    font-family: var(--primary-font);
}

.faq .section-title p{
    font-family: var(--primary-font);
    text-align: left;
}
.faq .content h3 {
    font-weight: 400;
    font-size: 28px;


}

.faq .content p {
    font-size: 15px;
    /* color: #727272;*/
}

.faq .faq-container .faq-item {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.faq .faq-container .faq-item::after {
    content: '';
    position: absolute;
    top: 100%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #D3D3D3;
    z-index: -1;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    /*font-weight: 600;*/
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--primary-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--primary-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;

}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
    color: var(--primary-color);
    /*background: #F2F2F2;*/
    padding: 5px;
    border-radius: 100%;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--primary-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--primary-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--primary-color);
    /* background: #ED553B;*/
    font-size: 14px;
    padding: 5px;
    border-radius: 100%;
}


#register {
    width: 100%;
    padding: 200px 0 150px 0;
    overflow: hidden;
    position: relative;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


#register .item-position {
    display: inline-grid;
}
#register .logo-position{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#register .logo{
    width: 250px;
    height: 150px;
    background: rgba(93, 93, 93, 0.4);
    /* #064469 */
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}




#register .btn-register {
    height: 102px;
    margin: 29px 0;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    border-radius: 10px;
    width: 200px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    text-align: justify;
    text-transform: capitalize;
    color: #F9F9F9;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#register .btn-register a {
    color: inherit;
    text-decoration: none;
}

#register .btn-register:hover {
    background: rgb(255 255 255 / 0%);
    border: 2px solid #064469;
}

@media (max-width: 1250px) {

}
@media (max-width: 500px) {

    #register .submit {
        width: 100%;
    }
}

@media (max-height: 500px) {

}

#register .bg-register {
    background: var(--section-background-color);
    border-radius: 16px;
    border: 1px solid var(--background-color);
    box-shadow: 0 4px 10px #ce34348f;
}

#register .required-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 0 0.25rem;
}
#register .required-label i{
    font-family: var(--primary-font);
    font-size: 14px;
    color: var(--title-color);
    padding-right: 0.25rem;
}

#register .upload__box {
    position: relative;
}

#register .upload__inputfile {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

#register .upload__btn {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    height: 64px;
    background: #2E4049;
    text-align: center;
    color: #FFFFFF;
    border: 0;
    border-radius: 8px;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
}

#register .upload__btn:hover {
    background-color: unset;
    color: #4045ba;
    transition: all .3s ease;
}

#register .upload__btn-box {
    margin-bottom: 10px;
}

#register .upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

#register .upload__img-box {
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 12px;
}

#register .upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 45%;
    right: 0%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

#register .upload__img-close:after {
    content: '\2716';
    font-size: 14px;
    color: white;
}

#register .img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

#register .document-bg {
    background-color: #EFEFEF;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    width: 100%;
    height: 100%;
}
#register .document-bg a{
    color: var(--primary-color);
    line-height: 30px;
    font-size: 12px;
}
#register .document-bg a:hover{
    color: var(--title-color);
}

#register .document-bg:hover {
    background-color: #afb0c14f;
    transition: background-color 0.3s ease;
}
#register .link-file {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-decoration-line: underline;
    text-transform: capitalize;
}
#register .title h2  {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    text-transform: capitalize;
}

#register .form-control {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .form-control[type="file"] {
    height: 48px;
    padding: 0;
    box-sizing: border-box;
}

#register .form-control[type="file"]::file-selector-button {
    height: 48px;
    padding: 0 16px;
    line-height: 48px;
    box-sizing: border-box;
    margin: 0;
}
#register .form-control:focus {
    height: 42px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}

#register .nav-tabs .nav-link {
    color: var(--primary-color);
    border: 0;
    background-color: var(--color-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#register .nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--btn-text-color);
}


#register .btn {
    background-color: var(--btn-color);
    color: var(--btn-text-color);
    border: 0;
}


#register #prevBtn , #register #nextBtn , #register #submitBtn {
    color: var(--header-text-color);
    font-family: var(--primary-font);
    background: var(--title-color);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 10px 20px;
    text-align: center;
    border: 0;
    border-radius: 16px;
}

#register .form-control:-webkit-autofill {
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .select2-container--default .select2-selection--single  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-container--default .select2-selection--single  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    min-height: 32px;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-container--default .select2-selection--multiple  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
    min-height: 32px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 0;
}

#register .submit {
    color: var(--header-text-color);
    font-family: var(--primary-font);
    background: var(--title-color);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    width: 100%;
    height: 64px;

    text-align: center;
    border: 0;
    border-radius: 16px;
}

#register .btn:hover {
    background-color: var(--background-color) !important;
    color: var(--primary-color);
    border: 2px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 0 5px var(--primary-color);
}
#register .title h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 44px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--title-color);
}
#register .title span {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 23px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--primary-color);

}
#register h4 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 19px;

    color: var(--primary-color);
}

/* checkbox */
#register .form-control-checkbox {
    width: 21.52px;
    height: 22px;
    border: 1px solid var(--primary-color);
    background-color: transparent; /* Set the background-color to transparent */
    border-radius: 0;
    margin-top: 0;
}
#register .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
#register .form-control-checkbox-group {
    display: flex;
    align-items: center;
}
#register .form-check-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    width: 100%;
    text-decoration-line: none;
    color: #212121;
    padding-left: 12px;
}
#register .form-check-label a{
    color: #212121;
}
#register .logo-img {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    padding: 0 0.75rem;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
#register .logo-img img {
    width: 200px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


#hero {
    width: 100%;
    height: 95vh;
    background: linear-gradient(to top, rgba(144, 56, 127, 0.65), transparent);
    overflow: hidden;
    position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 37px;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#hero .carousel-item::before {
    content: "";
    z-index: -1;
    background: linear-gradient(to top, rgba(144, 56, 127, 0.65), transparent);
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero h2 {
    font-weight: 700;
    font-size: 28px;
    color:var(--title-color-1);
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
}

#hero p {
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    font-family: var(--title-font);
    color:var(--title-color-1);
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--primary-color);
}

#hero .btn-get-started {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: var(--primary-color);
}

#hero .btn-get-started:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    #hero {
        height: 100vh;
    }

    #hero .carousel-container {
        top: 8px;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #FBFAF8;
}

.section-title h2 {
    font-weight: 800;
    font-size: 28px;
    font-family: var(--title-font);
    text-transform: capitalize;
    color:var(--title-color);
}

.section-title h3 {
    font-weight: 400;
    font-size: 28px;
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color: var(--primary-color);
}
.section-title p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    text-transform: capitalize;
    margin-bottom: 0;
}

.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.user-avatar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;
    margin: 0 30px;
}

.user-avatar a {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 12px;
    text-align: right;
    text-transform: capitalize;
    color: #000000;
    padding: 10px 5px;
    border: 2px solid #000000;
}

.logout-button a {
    color: #333;
    text-decoration: none;
}
.profile {
    margin: 0 30px;
}
@media (max-width: 990px) {
    .logout-button {
        margin-right: 0;
    }
    .user-avatar {
        justify-content: start;
        margin: 0 20px;
    }
    .profile {
        margin: 0;
    }
}


input.-internal-autofill-selected {
    background-color: transparent !important;
}


#pagination-links .pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #064469;
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: #064469;
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: #064469;
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem #064469;;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #064469;
    --bs-pagination-active-border-color: #064469;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

.progress, .progress-stacked {
    height: 11px;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: var(--bs-secondary-bg);
    --bs-progress-border-radius: var(--bs-border-radius);
    --bs-progress-box-shadow: var(--bs-box-shadow-inset);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: #064469;
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color: #064469;
    border-radius: var(--bs-progress-border-radius);
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
    content: attr(data-browse);
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
    padding: 0.9rem 0.75rem;
    overflow: hidden;
    line-height: 1.5;
    color: #495057;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 48px;padding: 0.9rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 31px;
    position: absolute;
    top: 6px;
    right: 1px;
    width: 20px;
}


#view-modal .modal-footer a{
    background: var(--primary-color);
    font-family: var(--primary-font);
    color: var( --color-white);
    border-radius: 20px;
    border: var(--bs-btn-border-width) solid var(--primary-color);
}
#view-modal #frm_add span {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: justify;
}
#view-modal .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border:0;
    /* border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color); */
    /* border-top-left-radius: var(--bs-modal-inner-border-radius); */
    /* border-top-right-radius: var(--bs-modal-inner-border-radius); */
}
#view-modal .modal-header h4 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
}
#view-modal .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}
#view-modal .modal-footer {
    display: flex;
    width: 100%;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--bs-modal-footer-bg);
    border:0;
    text-align: center;
}
.icon_close {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    width: 100%;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 18px;
}


#contact .info {
    padding: 40px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}



#contact .info p {
    font-family: var(--primary-font);
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--btn-text-color);
}

#contact .info-item {
    padding: 10px 0;
}

#contact .info-item i {
    color: var(--btn-text-color);
    transition: all 0.3s ease-in-out;
    margin-right: 5px;
    padding: 0 20px;
}
#contact .info-item a {
    font-family: var(--primary-font);
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--btn-text-color);
}
#contact .social-links {
    padding: 10px 0;
}
#contact .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: var(--btn-text-color);
    transition: 0.3s;
}
#contact .social-links a img {
    width: 30px;
    height: 30px;
}

#contact .social-links a:hover {
    color: var(--btn-text-color);
    border-color: var(--btn-text-color);
}

#contact .info-item h4 {
    padding: 0;
    margin-bottom: 5px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 19px;
    color: var(--btn-text-color);
    text-transform: capitalize;
}

#contact .section-title h2 {
    color: var(--btn-text-color);
}

#contact .info-item p {
    font-family: var(--primary-font);
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--btn-text-color);
}







#contact {
    width: 100%;
    padding: 50px 0;
    position: relative;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}




@media (max-width: 500px) {

    #contact .submit {
        width: 100%;
    }
}

@media (max-height: 500px) {

}
#contact .col-form-label , #contact .form-check-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: var(--primary-color);
}
#contact .link-file {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-decoration-line: underline;
    text-transform: capitalize;
}
#contact .form-control {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;

    color: var(--primary-color);
    height: 48px;
    border:0;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid var(--primary-color);

}
#contact .form-control:focus {
    height: 42px;
    border: 0;
    border-radius: 0;
}
#contact .form-control:-webkit-autofill {
    height: 48px;
    border: 0;
    border-radius: 0;
}
#contact .submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 10px 20px;
    gap: 10px;
    background: var(--title-color);
    border:0;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    background: var(--gradient-color);
    color: var(--color-secondary);
    border-radius: 7px;
}

#contact  h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 44px;
    color: var(--primary-color);

    text-transform: capitalize;

}

#contact h3 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;

    color: var(--primary-color);
    text-transform: capitalize;
}

.achiever-banner {
    overflow: hidden;
}
.achiever-banner .background-banner {
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 450px;
    display: flex;
    align-items: center;
    background-position: center;
}
.achiever-banner .title {
    font-family: var(--title-font) !important;
    color: var(--title-color);
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
}

#team-modal {
    align-items: flex-start;
    justify-content: flex-start;
}

#team-modal .modal-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#team-modal .modal-body {
    flex: 1;
}

#team-modal .icon {
    width: 90px;
    height: 90px;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
    order: -1;
}

#team-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

#team-modal .icon_close  {
    display: flex;
    display: flex;
    margin-top: -10px;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 18px;
    order: -1;
}

#team-modal .icon_close  .close{
    padding: 0px 10px;
    border: 0;
    background: none;
    overflow: hidden;
}


.achievers-women {
    height: max-content;
}
.achievers-women .title {
    font-family: var(--primary-font) !important;
    color: var(--title-color);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
}

.achievers-women .achievers-card .card {
    border: none;
}

.achievers-women .achievers-card .card a{
    border: none;
    font-style: normal;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    text-decoration-line: underline;
    color: var(--text-color);

}

.achievers-women .card-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;


}
.achievers-women  .card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
    color: var(--bs-card-title-color);
    font-style: normal;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
}


.contribute-and-contributor {
    background-color: var(--background-color);
    height: max-content;
}

.contribute-and-contributor h1 {
    color: var(--color-white) !important;
    font-family: var(--title-font) !important;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    margin: 15px 0;
}

.contribute-and-contributor p {
    width: 90%;
}



#copy-modal .modal-footer a{
    background: var(--primary-color);
    font-family: var(--primary-font);
    color: var( --color-white);
    border-radius: 20px;
    border: var(--bs-btn-border-width) solid var(--primary-color);
}
#copy-modal #copy_add span {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: justify;
}
#copy-modal .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border:0;
    /* border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color); */
    /* border-top-left-radius: var(--bs-modal-inner-border-radius); */
    /* border-top-right-radius: var(--bs-modal-inner-border-radius); */
}
#copy-modal .modal-header h4 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
}
#copy-modal .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}
#copy-modal .modal-footer {
    display: flex;
    width: 100%;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--bs-modal-footer-bg);
    border:0;
    text-align: center;
}
#copy-modal .modal-header .close {
    padding: 1rem 1rem;
    margin: 0.25rem 0.25rem 0.25rem auto;
}

.btn-share {
    border    : 1px solid var(--primary-color);
    color     : var(--primary-color);
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-radius: var(--bs-btn-border-radius);
    background-color: transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0 5px ;
}

.btn-share:hover {
    border    : 1px solid var(--title-color);
    color     : var(--title-color);
    background: none !important;
    transform: scale(1.05);
    box-shadow: 0 0 5px var(--title-color);
}
