/* begin::Global css */
:root {
    --primary-color: #012549;
    --primary-rgba: rgb(1, 37, 73, 0.5);
    --secondary-color: #e11143;
    --black-color: #0d0d0d;
    --white-color: #ffffff;
    --gray-color: #e5e5e5;
    --flow-chart-gray: #b7b7b7;
    --primary-gradient: linear-gradient(60deg, #012549, #e11143);
    --site-font: "Quicksand", serif;
}

body {
    -webkit-font-smoothing: antialiased;
    line-height: 26px;
    font-size: 16px;
    font-weight: 500;
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
}

.bg_primary {
    background-color: var(--primary-color) !important;
}

.bg_secondary {
    background-color: var(--secondary-color) !important;
}

.padding_top {
    padding-top: 80px;
}

.padding_bottom {
    padding-bottom: 80px;
}

.equal_cols_div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
}

.equal_cols_div:before,
.equal_cols_div:after {
    display: block;
}

.equal_cols_div > [class*="equal_col"] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.equal_cols_div > [class*="equal_col"] > * {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.table th {
    font-weight: 600;
}

.preloader {
    z-index: 110;
}

.mobile-menu {
    z-index: 102;
}

select {
    background-position: calc(100% - 30px) 34px, calc(100% - 25px) 34px,
        calc(100% - 3.5em) 15px;
}

select:focus {
    background-position: calc(100% - 25px) 34px, calc(100% - 30px) 34px,
        calc(100% - 3.5em) 15px;
}

.content-section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 0;
}

.site_list > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site_list > ul > li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--black-color);
}

.site_list > ul > li:last-child {
    margin-bottom: 0;
}

.site_list > ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    width: 4px;
    border-radius: 4px;
}

.site_list_border ul > li {
    margin-bottom: 30px;
}

.site_list_border ul > li::after {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 1px dashed #ddd;
    bottom: -15px;
    left: 0;
}

.site_list_border ul > li:last-child {
    margin-bottom: 0;
}

.site_list_border ul > li:last-child::after {
    display: none;
}

.site_list > ol > li {
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
}

.site_list > ol > li:last-child {
    margin-bottom: 0;
}

.site_table thead tr {
    background-color: var(--primary-color);
}

.site_table thead tr th,
.site_table tbody tr td {
    padding: 15px 20px;
}

.site_table thead tr th {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

.site_table tbody tr td {
    font-weight: 500;
}

.site_btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    font-size: 14px;
    font-weight: bold;
}

.site_btn[bg-orange="true"] {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.site_btn:focus {
    color: var(--white-color) !important;
}

.site_btn > img {
    width: 15px;
    height: 15px;
    margin-left: 10px;
}

.site_btn_group .dropdown-toggle::after {
    display: none;
}

.site_btn_group ul.dropdown-menu li a {
    text-decoration: none !important;
}

.site_btn_group ul.dropdown-menu li {
    margin-bottom: 0;
    padding: 0 10px;
}

.site_btn_group ul.dropdown-menu li::after {
    display: none;
}

#site_datatable_wrapper .dataTables_length select {
    padding: 10px;
    width: 70px;
    height: 40px;
    background-position: calc(100% - 15px) 18px, calc(100% - 10px) 18px, -1px;
}

#site_datatable_wrapper .dataTables_length select:focus {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
}

#site_datatable_wrapper .dataTables_filter input {
    padding: 10px 15px;
    margin-left: 0;
    height: 40px;
    width: 100%;
}

#site_datatable_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--secondary-color);
    border: 1px solid transparent;
    color: var(--white-color) !important;
}

#site_datatable_wrapper .dataTables_paginate .paginate_button:hover {
    background: #424649;
    border: 1px solid transparent;
}

.site_breadcrumbs {
    position: relative;
    z-index: 1;
}

.site_breadcrumbs .breadcrumb {
    margin-bottom: 40px;
}

.site_breadcrumbs .breadcrumb-item a {
    color: var(--white-color);
}

.site_breadcrumbs .breadcrumb-item::before {
    color: var(--white-color);
}

.site_breadcrumbs .breadcrumb-item.active {
    color: var(--secondary-color);
}

.site_breadcrumbs .breadcrumb-item.active::before {
    color: var(--secondary-color);
}

.section-wrapper {
    padding-top: 85px;
}

a.read_more_btn {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

a.read_more_btn > span {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    padding: 5px;
}

a.read_more_btn > span > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.page_title {
    position: relative;
}

.page_title::after {
    content: "";
    position: absolute;
    height: 2px;
    background: var(--secondary-color);
}

.page_title.left_title::after {
    width: 50%;
    bottom: 0;
    left: 0;
}

.page_title.center_title {
    text-align: center;
}

.page_title.center_title::after {
    width: auto;
    bottom: 0;
    left: 46%;
    right: 46%;
}

.section-title > p {
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
    line-height: 1.4;
}

.side-content.left {
    padding-right: 50px;
}

.form-label {
    position: relative;
    font-size: 14px;
}

.form-label::after {
    content: "*";
    color: red;
    font-size: 24px;
    right: -15px;
    top: 0;
    position: absolute;
}
/* end::Global css */

/* begin::Custom scrollbar css */
.custom_scrollbar {
    scrollbar-width: thin;
}

.custom_scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom_scrollbar::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent;
}

.custom_scrollbar::-webkit-scrollbar-thumb {
    background-color: #ff7f00;
}

.custom_scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #e67200;
}

.custom_scrollbar::-webkit-scrollbar-corner,
.custom_scrollbar::-webkit-scrollbar-track {
    background-color: #b0b7c4;
}
/* end::Custom scrollbar css */

/*begin::Preloader css*/
.overflow_none {
    overflow: hidden !important;
}

.preloader .loader-progress {
    background: var(--primary-color);
}

.preloader svg,
.page-transition svg {
    fill: var(--primary-color);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.vertical-centered-box .loader_content {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}

.loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -90px;
    margin-top: -90px;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 180px;
    margin-left: -90px;
    margin-top: -90px;
    overflow: hidden;
    transform-origin: 90px 90px;
    /*    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));*/
    animation: rotate 1.2s infinite linear;
    background: transparent;
}

.loader-line-mask .loader-line {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

#particles-background,
#particles-foreground {
    left: -51%;
    top: -51%;
    width: 202%;
    height: 202%;
    transform: scale3d(0.5, 0.5, 1);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fade {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.vertical-centered-box {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.vertical-centered-box svg {
    height: 125px;
    width: 125px;
    position: static;
    display: block;
    margin: 0 auto;
    fill: none !important;
}

.vertical-centered-box svg {
    -webkit-animation: fillUp 1.7s cubic-bezier(0.05, 0.32, 1, 1) infinite;
    animation: fillUp 1.7s cubic-bezier(0.05, 0.32, 1, 1) infinite;
}

@keyframes fillUp {
    0% {
        transform: translate(0, 135px);
    }
    100% {
        transform: translate(0, -135px);
    }
}

.preloader .inner .percentage {
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.percentTextDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
    transform: translateY(140px);
    -webkit-transform: translateY(140px);
    -moz-transform: translateY(140px);
    -o-transform: translateY(140px);
    -ms-transform: translateY(140px);
}

.preloaderCls {
    position: relative;
    z-index: 11;
    background: var(--white-color);
    border-radius: 2px;
}

.preloaderCls:hover,
.preloaderCls:focus,
.preloaderCls:active {
    background: #e11143;
    color: var(--white-color);
}
/*end::Preloader css*/

/* begin:: Site logo css */
.navbar {
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: transparent;
}

.site_navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logos_bar {
    width: 100%;
    padding-top: 8px;
    background: var(--white-color);
}

.navbar.pinned .logos_bar {
    display: none;
}

.navbar .navbar-button {
    margin-left: 0;
}

.logos_holder {
    display: flex;
    align-items: center;
}

.logos_holder ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    width: 100%;
}

.logos_holder ul > li {
    text-align: center;
}

a.logos_div {
    display: block;
    height: 70px;
    overflow: hidden;
    position: relative;
    font-size: 0;
    line-height: 0;
    padding: 3px 0;
    margin-right: 20px;
}

a.logos_div img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.navbar {
    transition-delay: unset;
}

.navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    animation: slideDown 0.25s ease-in-out;
    z-index: 101;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
}

.navbar.is-sticky .site-menu {
    margin: 0 auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.site-menu .dropdown .dropdown-toggle {
    padding: 0 !important;
}

.site-menu .dropdown .dropdown-toggle::after {
    vertical-align: middle;
}

.navbar .site-menu ul li a {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 15px;
}

.navbar .site-menu ul > li > a {
    color: var(--black-color);
}

.site-menu .dropdown .dropdown-menu {
    border-radius: 6px;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    background-color: var(--white-color);
    padding: 10px 13px;
    min-width: 200px;
    border: none;
    transform: translate3d(0px, 6px, 0px);
    left: auto;
    right: 0;
}

.site-menu .dropdown .dropdown-menu .dropdown-item {
    padding: 6px 12px;
    border-radius: 4px;
    color: var(--black-color);
}

.site-menu .dropdown .dropdown-menu .dropdown-item.active,
.site-menu .dropdown .dropdown-menu .dropdown-item:active {
    background-color: #e9ecef;
}

.level_two {
    position: absolute;
    left: 100% !important;
    margin-left: -14px;
    top: 0 !important;
}

.navbar .site-menu ul > li.active > a::before {
    width: 100%;
    left: 0;
}

.navbar .hamburger-menu .line {
    stroke: var(--black-color);
}
/* end:: Site logo css */

/*begin::Banner section css*/
.banner_section {
    width: 100%;
    position: relative;
}

.banner_slide {
    height: calc(100vh - 85px);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    display: flex;
    align-items: center;
    position: relative;
}

/*.banner_slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}*/

.bannerSwiper .swiper_controls {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.bannerSwiper .swiper_controls .swiper-button-next,
.bannerSwiper .swiper_controls .swiper-button-prev {
    position: static;
    background: #e11143;
    width: 70px;
    height: 50px;
    color: var(--white-color);
}

.bannerSwiper .swiper_controls .swiper-button-next::after,
.bannerSwiper .swiper_controls .swiper-button-prev::after {
    font-size: 20px;
}

.page-header {
    height: 105px;
    padding: 0;
    align-items: flex-end;
}

.page-header::before {
    z-index: 1;
}
/*end::Banner section css*/

/*begin::General styling css*/
.img_caption {
    background-color: var(--primary-color);
    padding: 40px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_caption > span {
    font-size: 30px;
    font-weight: bold;
    line-height: normal;
    color: var(--white-color);
}

.about_description > p {
    text-align: justify;
}

.journey_box {
    width: 100%;
    height: 200px;
    margin-left: 200px;
}

.journey_box > img {
    object-fit: cover;
    object-position: left;
    height: 100%;
}

.aboutSwiper {
    overflow: hidden;
}

.aboutSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

.aboutSwiper .swiper-wrapper .swiper-slide {
    width: auto;
}

.org_tabs .nav-pills .nav-link {
    color: var(--black-color);
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    padding-left: 0;
    padding-right: 0;
    margin-right: 15px;
}

.org_tabs .nav-pills .nav-item:last-child .nav-link {
    margin-right: 0;
}

.org_tabs .nav-pills .nav-link.active,
.org_tabs .nav-pills .show > .nav-link,
.org_tabs .nav-pills .nav-link:hover {
    background-color: transparent;
    border-bottom: 3px solid var(--primary-color);
    border-radius: 0;
    color: var(--primary-color);
}

.org_tabs .content-box {
    border-top: 1px solid #ddd;
}

.org_tabs .content-box a.btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.org_tabs .content-box a.btn > img {
    width: 15px;
    height: 15px;
    margin-left: 10px;
}

.site_accordion .accordion-button {
    background-color: var(--black-color);
    color: var(--white-color);
    font-weight: 600;
}

.site_accordion .accordion-button:focus {
    border-color: unset;
    box-shadow: none;
}

.site_accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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");
}

.side-content p {
    line-height: 26px;
    margin-bottom: 0;
    text-align: justify;
}

.side-content h2 {
    margin-bottom: 15px;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: bold;
}

.event-box {
    height: 100%;
}

.event-box .content-box p {
    line-height: 22px;
}

.event-box.custom_event_box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-rgba);
    z-index: 1;
}

.event-box.custom_event_box .content-box {
    background: transparent;
    position: absolute;
    bottom: 0;
    border: none;
    z-index: 2;
}

.event-box .content-box:before {
    top: auto;
    bottom: 0;
}

.event-box.custom_event_box .content-box:before {
    display: none;
}

.event-box.custom_event_box .content-box h2 {
    color: var(--white-color);
}

.event_box_b_top {
    border-top: 1px solid #ddd !important;
}

.google-maps iframe {
    pointer-events: auto;
}

.gallerySwiper {
    overflow-x: hidden;
}

.swiper_pagination {
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: row-reverse;
    display: flex;
}

.swiper_pagination .swiper-button-prev,
.swiper_pagination .swiper-button-next {
    position: static;
    width: 60px;
    height: auto;
    margin-top: -60px;
    background-size: 42px auto;
}

.swiper_pagination .swiper-button-prev {
    background-image: url("../img/icons/prev2.svg");
}

.swiper_pagination .swiper-button-next {
    background-image: url("../img/icons/next2.svg");
}

.reform_img {
    overflow: hidden;
    max-height: 450px;
    margin: 0;
}

.reform_img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
/*end::General styling css*/

/*begin::Press release section css*/
#press_slider {
    height: 450px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pressSwiper .swiper-wrapper .swiper-slide {
    width: 100%;
    position: relative;
    background-color: white;
}

.pressSwiperSlide {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    min-height: 450px;
    background-size: cover;
    background-position: center center;
}

.pressSlideContent {
    padding: 0 70px;
    height: 100%;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pressSlideContent::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-rgba);
    z-index: -1;
}

.pressSlideContent > span {
    font-size: 1.1rem;
    color: var(--white-color);
    display: block;
    margin-bottom: 6px;
}

.pressSlideContent > p {
    font-size: 3rem;
    color: var(--white-color);
}

#press_slider .swiper-pagination-bullet {
    width: 20px;
    height: 6px;
    background: #fff;
    border-radius: 10px;
    opacity: 0.4;
}

#press_slider .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    opacity: 1;
}
/*end::Press release section css*/

/*begin::Footer css*/
.footer {
    background: linear-gradient(60deg, #012549 30%, #135ca6 100%);
    margin-top: 50px;
}

.footer .bottom-bar {
    padding: 10px 0;
}

.footer .bottom-bar .copyright {
    display: block;
    text-align: center;
    width: 100%;
}

.footer .footer-bar {
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px 0;
}

.footer .social-media {
    margin-bottom: 0;
    margin-left: unset;
}

.footer_about > p {
    line-height: 24px;
    text-align: justify;
}

.footer .footer-widget {
    margin-bottom: 30px;
}

.footer_menu ul {
    list-style: none;
    display: flex;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
}

.footer_menu ul > li {
    margin-bottom: 5px;
    font-size: 13px;
}

.footer_menu ul > li:last-child {
    margin-bottom: 0;
}

.footer_menu ul > li > a {
    color: var(--white-color);
}
/*end::Footer css*/

/*begin::Sitemap css*/
.sitemap_list {
    margin-bottom: 40px;
}

.sitemap_list ul {
    padding-left: 1.1rem;
}

.sitemap_list > ul {
    list-style-type: disclosure-closed;
}

.sitemap_list > ul > li {
    font-weight: 500;
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.sitemap_list > ul > li > a {
    font-weight: 500;
    font-size: 22px;
    color: var(--secondary-color);
}

.sitemap_list > ul > ul > li {
    margin-bottom: 8px;
    font-size: 18px;
}

.sitemap_list > ul > ul > li:last-child {
    margin-bottom: 0;
}

.sitemap_list > ul > ul > li > ul {
    list-style: disc;
}

.sitemap_list > ul > ul > li > ul > li {
    margin-top: 8px;
    font-size: 16px;
}
/*end::Sitemap css*/

/*begin::Vision mission css*/
#vision_section .side-content {
    padding-top: 80px;
}

.key_functions {
    width: 490px;
    border-radius: 12px;
    box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
}

.key_functions .key_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(115deg, #012549, #130866);
    color: var(--white-color);
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.key_functions .key_header .key__logo {
    display: block;
    overflow: hidden;
    width: 80px;
}

.key_functions .key_header .key__logo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.key_functions .key_header .key__title {
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 5px;
    width: auto;
}

.key__profiles {
    background-color: var(--white-color);
    border-radius: 0 0 12px 12px;
    padding: 15px 15px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.key__profile {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 10px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 7px -1px rgba(51, 51, 51, 0.23);
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.7, 0.98, 0.86, 0.98),
        box-shadow 0.25s cubic-bezier(0.7, 0.98, 0.86, 0.98);
    background-color: var(--white-color);
}

.key__profile:hover {
    transform: scale(1.2);
    box-shadow: 0 9px 47px 11px rgba(51, 51, 51, 0.18);
}

.key__picture {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0 0 0 10px #ebeef3, 0 0 0 22px #f3f4f6;
}

.key__picture > img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.key__name {
    color: var(--black-color);
    font-weight: 600;
    font-size: 16px;
    padding-left: 35px;
    flex: 1;
}

.vision_objectives {
    padding-top: 25px;
    width: 100%;
}

.objective_list {
    width: 100%;
}

.objective_list > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.objective_list > ul > li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    padding-left: 50px;
}

.objective_list > ul > li::before {
    content: "\f178";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 0;
    top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: linear-gradient(135deg, #012549 40%, #e11143 100%);
}

.objective_list > ul > li > span {
    flex: 1;
}

.vision_mission {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-bottom: 20px;
}

.vision_mission h4 {
    background-image: -webkit-linear-gradient(120deg, #012549, #130866);
    background-image: linear-gradient(120deg, #012549, #130866);
    color: transparent;
    background-clip: text;
    font-size: 30px;
    font-weight: 600;
    background-color: #012549;
}

.vision_mission > p {
}
/*end::Vision mission css*/

/*begin::Gallery page css*/
.culture_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.culture_header > h2 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.load-more {
    display: block;
    width: 150px;
    margin: 30px auto;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.load-more:hover {
    background-color: #0056b3;
}

.homepage_gallery .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.homepage_gallery .gallery .gallery-item {
    height: 200px;
}

.homepage_gallery .gallery .gallery-item img {
    height: 100%;
}

@media (max-width: 992px) {
    .homepage_gallery .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .homepage_gallery .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .homepage_gallery .gallery {
        grid-template-columns: 1fr;
    }
}
/*end::Gallery page css*/

/*begin::CTA section css*/
.cta_section {
    background-color: #135ca6;
    min-height: 300px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cta_section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/line-shape.png");
    background-position: center;
    background-size: auto;
}

.cta_section h4 {
    color: var(--white-color);
    font-size: 45px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta_content {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.cta_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px;
    min-width: 150px;
    border-radius: 10px;
    text-decoration: none !important;
    border: 2px solid #fff;
}

.cta_btn > span {
    display: block;
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.cta_btn > span > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.cta_btn > p {
    color: var(--white-color);
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

.bjp_btn {
    background-color: #e05716;
}

.register_btn {
    background-color: #135ca6;
}
/*end::CTA section css*/

/*begin::Form wizard customization css*/
.registration_wizard {
}

.registration_wizard .step {
    display: none;
}

.registration_wizard .step.active {
    display: block;
}

.registration_wizard .profile-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--primary-color);
}

.registration_wizard .progress-bar {
    width: 33.33%;
    background: linear-gradient(45deg, #012549 30%, #135ca6 70%);
}

.registration_wizard .otp-input {
    width: 40px;
    text-align: center;
    margin-right: 10px;
    font-size: 20px;
}

.registration_wizard .otp-group {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.registration_wizard .otp-group input:last-child {
    margin-right: 0;
}

.registration_wizard .step h4 {
    margin-bottom: 20px;
    color: #135ca6;
    text-align: center;
    font-weight: bold;
}

.registration_wizard #step-1,
.registration_wizard #step-2,
.registration_wizard #step-3,
.registration_wizard #step-4 {
    max-width: 50%;
    margin: 0 auto;
}

.registration_wizard .input-group {
    flex-wrap: unset;
}

.registration_wizard .input-group .btn {
    white-space: nowrap;
}

.registration_wizard .form-control,
.registration_wizard .form-select {
    font-size: 14px;
    height: 50px;
    padding: 0 15px;
}

.registration_wizard input[type="file"] {
    height: auto;
    padding: 0.675rem 0.75rem;
}

.registration_wizard select:focus {
    background-position: calc(100% - 20px) 20px, calc(100% - 25px) 20px,
        calc(100% - 3.5em) 4px;
}
/*end::Form wizard customization css*/

/*begin::All sports wheel slider css*/
.sports_wheel_section {
    height: 100%;
    position: relative;
    overflow: hidden;
    perspective: 1500px;
}

.sports_wheel_section::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: -255px;
    background: url(../img/20002.jpg);
    background-size: cover;
    background-position: center;
    transform: rotateX(65deg) rotateY(0deg) rotateZ(65deg) scale(2.5);
    transform-origin: center;
}

#sport_wheel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

#sport_wheel::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));    
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    -webkit-filter: blur(30px) brightness(0.7) sepia(0.8);
    filter: blur(30px) brightness(0.7) sepia(0.8);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: spherePulse 6s infinite alternate ease-in-out;
}

@keyframes spherePulse {
    0% {
        transform: scale(1); /* Default position and size */
    }
    50% {
        transform: scale(1.05); /* Slightly larger */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}

#showcase {
    width: 100%;
    max-width: 980px;
    min-height: 400px;
    overflow: visible !important;
    z-index: 1;
    position: relative;
}

.center_mono {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.center_mono span {
    width: 100px;
    display: block;
    overflow: hidden;
}

.sprt_icon_card {
    margin-bottom: 30px;
}

#desktop_sports .sprt_icon_card {
    width: 200px;
}

.sprt_icon_tile {
    background: var(--primary-color);
    border-radius: 20px;
    text-align: center;
    min-height: 100px;
    box-shadow: none;
    border: 1px solid #fff;
    padding: 30px;
}

.sprt_icon_tile span {
    height: 80px;
    width: 80px;
    display: inline-flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.sprt_icon_tile span img {
    height: 80px;
}

#mobile_sports .sprt_icon_tile span {
    width: 40px;
    height: 40px;
}

#mobile_sports .sprt_icon_tile span img {
    height: 40px;
}

.sprt_icon_text {
    position: relative;
}

.sprt_icon_text h4 {
    color: var(--white-color);
    padding-bottom: 0;
    font-size: 18px;
}

.sprt_icon_text a {
    color: rgba(255, 255, 255, 0.5);
}

#nav-buttons {
    margin-top: 80px;
    text-align: center;
}

.nav-button {
    display: inline-block;
    position: relative;
    background: var(--primary-color);
    cursor: pointer;
    padding: 5px 20px;
    border-radius: 4px;
    border: 1px solid var(--white-color);
}

.nav-button span {
    font-size: 20px;
    color: var(--white-color);
}

#nav-left {
    margin-right: 4px;
}

#nav-right {
    margin-left: 4px;
}
/*end::All sports wheel slider css*/