@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #2f3138; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #049DD9; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #01b99f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
:root {
    --nav-color: rgba(255, 255, 255, 0.65); /* The default color of the main navmenu links */
    --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #049DD9; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
body {
    font-family: "Geist", sans-serif !important;
}
.light-background {
    --background-color: #f2f2f3;
    --surface-color: #ffffff;
}
.dark-background {
    --background-color: #222;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #37a626;
    --contrast-color: #ffffff;
}
/* Smooth scroll */ :root {
    scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    overflow-x: hidden;
}
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: #0B6A83;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-family: var(--heading-font);
}
/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}
.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
.pulsating-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);
}
.pulsating-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;
}
.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}
@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}
.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    /*background-color: rgb(229 229 229 / 100%);*/
    padding: 6px 0;
    /* transition: all 0.5s; */
    z-index: 997;
    background-color: mintcream;
}
.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}
.header .logo h1 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #000;
}
.header .cta-btn {
    color: var(--contrast-color);
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
    font-size: 12px;
    padding: 6px 18px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    /* transition: 0.3s; */
    float: left;
}
/* .header .cta-btn:hover, .header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
} */
.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgb(0 0 0 / 75%);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.mainbody {
    min-height: 93vh;
}
main{
    min-height: 93vh;
}
.footer {
    color: #fff;
    background-color: var(--background-color);
    font-size: 12px;
    width: 100%;
    bottom: 0;
    z-index: 5;
}
.footer .footer-top {
    background-color: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
    padding: 30px 0;
}
.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}
.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}
.footer .footer-about .logo span {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}
.footer h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.footer h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}
.footer .footer-links {
    margin-bottom: 30px;
}
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}
.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.footer .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}
.footer .footer-links ul a:hover {
    color: var(--accent-color);
}
.footer .footer-contact p {
    margin-bottom: 5px;
}
.footer .copyright {
    padding: 10px 0;
    /*	background: #222;*/
    background-color: #01b79f;
}
.footer .copyright p {
    margin-bottom: 0;
}
.footer .credits {
    margin-top: 5px;
    font-size: 13px;
}
.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--contrast-color);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
.footer .social-links a:hover {
    background: var(--accent-color);
    text-decoration: none;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}
.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}
.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --heading-color: var(--contrast-color);
    --default-color: var(--contrast-color);
    color: var(--default-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 10px 0;
    text-align: center;
    position: relative;
    background: none;
}
.page-title:before {
    content: "";
    background-color: color-mix(in srgb, linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%), transparent 90%);
    position: absolute;
    inset: 0;
}
.page-title h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}
.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}
.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
    color: #222;
}
.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: #222;
}
.page-title.login-title {
    background: none;
}
.page-title.login-title:before {
    background: none;
}
.page-title.login-title h1 {
    color: #fff;
}
.page-title.login-title .breadcrumbs ol li a {
    color: #06c1a8;
}
.page-title.login-title .breadcrumbs ol li + li {
    color: #fff;
}
.page-title .breadcrumbs ol li + li::before {
    color: #06c1a8;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 0;
    scroll-margin-top: 92px;
    overflow: clip;
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}
.section-title h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 5px;
    position: relative;
    display: inline-block;
}
.section-title h2:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: auto;
    height: 1px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.section-title p {
    margin-bottom: 0;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 99vh;
    position: relative;
    padding: 100px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(../../assets/img/banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.hero .banner-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}
.hero .container {
    position: relative;
    z-index: 3;
}
.hero h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 30px;
}
.hero h2 span {
    /*    color: linear-gradient(93deg, rgba(4,102,149,1) 31%, rgba(1,185,159,1) 100%);*/
    font-weight: 300;
    text-decoration: underline;
}
.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px;
}
.mobile_Menu {
    display: none
}
.Mobile_login {
    display: none
}
.ban-btn {
    color: #fff;
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
    font-size: 12px;
    padding: 10px 25px;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
    text-transform: uppercase;
}
.ban-btn:hover {
    background: #049dd9;
    color: #fff;
}
.hero .about-info {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    z-index: 2;
    width: 100%;
}
.hero .about-info:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.hero .about-info h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}
.hero .about-info h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}
.hero .about-info p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
}
#header-service-search-list {
    background: #e9e9e9;
    margin-top: 5px;
}
.autocomplete-item {
    font-size: 12px;
    color: #222;
    list-style: none;
    padding: 10px;
}
.botm-social-share h6 {
    margin: 0 20px 0 0;
    font-size: 14px;
}
.social-img img {
    width: 100%;
    max-width: 25px;
}
/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers {
    --default-color: #ffffff;
}
.speakers .member {
    text-align: center;
    position: relative;
    overflow: hidden;
	height: 100%;
    max-height: 100px;
	object-fit: cover;
	display: flex;
    justify-content: space-between;
}
.speakers .member .member-info {
   padding: 15px;
    background: rgb(2 171 157);
    display: block;
    width: 100%;
    height: auto;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.speakers .member .member-info-content h4 {
    color: var(--contrast-color);
    font-weight: 700;
    margin-bottom: 0px;
    font-size: 12px;
}
.speakers .member .member-info-content h4 a {
    color: var(--contrast-color);
}
.speakers .member .member-info-content h4 a:hover {
    color: var(--accent-color);
}
.speakers .member .member-info-content span {
    display: block;
    font-size: 13px;
    color: #DFDFDF
}
.speakers .member .member-info-content em {
    font-style: normal;
    display: block;
    font-size: 11px;
    color: #DFDFDF
}
.speakers .member .social {
    text-align: center;
    padding-top: 0px;
    margin: 0;
}
.speakers .member .social a {
/*
    transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
*/
    margin: 0 4px;
    display: inline-block;
}
.speakers .member .social a:hover {
    color: var(--default-color);
}
.speakers .member .social i {
    font-size: 13px;
    margin: 0 2px;
}
#gallery.section{
	padding: 10px 0;
}
#gallery .member img{
	max-width: 140px;
}
/*
.speakers .member:hover .member-info {
    bottom: 0;
}
*/
/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule {
    --background-color: color-mix(in srgb, var(--alt-background-color), transparent 95%);
}
.schedule .nav-tabs {
    text-align: center;
    margin: auto;
    display: block;
    border-bottom: 0;
    margin-bottom: 10px;
}
.schedule .nav-tabs li {
    display: inline-block;
    margin-bottom: 0;
}
.schedule .nav-tabs a {
    border: none;
    font-weight: 600;
    background: #ffffff;
    color: #046695;
    border-radius: 4px;
    padding: 6px 12px;
}
.schedule .nav-tabs a.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}
.schedule .sub-heading {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    margin: 0 auto 30px auto;
}
.schedule .tab-pane {
    transition: ease-in-out 0.2s;
    background: #ffffff;
    padding: 15px 15px 0;
    border-radius: 6px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.schedule .schedule-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding-top: 15px;
    padding-bottom: 15px;
    transition: background-color ease-in-out 0.3s;
}
.schedule .schedule-item time {
    padding-bottom: 5px;
    display: inline-block;
}
.schedule .schedule-item .speaker {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    float: left;
    margin: 0 10px 10px 0;
}
.schedule .schedule-item .speaker img {
    height: 100%;
    transform: translateX(-50%);
    margin-left: 50%;
    transition: all ease-in-out 0.3s;
}
.schedule .schedule-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.schedule .schedule-item h4 span {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-weight: normal;
    font-size: 16px;
}
.schedule .schedule-item p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}
/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue .container-fluid {
    margin-bottom: 3px;
}
.venue .venue-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}
.venue .venue-info {
    background: url("../img/venue-info-bg.jpg") top center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
.venue .venue-info:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.venue .venue-info h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--contrast-color);
}
.venue .venue-info p {
    color: var(--contrast-color);
    margin-bottom: 0;
}
.venue .venue-gallery-container {
    padding-right: 12px;
}
.venue .venue-gallery {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
}
.venue .venue-gallery img {
    transition: all ease-in-out 0.4s;
}
.venue .venue-gallery:hover img {
    transform: scale(1.1);
}
/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/
.hotels .card {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    border-radius: 0;
}
.hotels .card .card-img {
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 0;
}
.hotels .card .card-img img {
    transition: 0.3s ease-in-out;
}
.hotels .card h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    padding: 0 20px;
}
.hotels .card a {
    color: var(--heading-color);
    transition: 0.3;
}
.hotels .card a:hover {
    color: var(--accent-color);
}
.hotels .card .stars {
    padding: 0 20px;
    margin-bottom: 5px;
}
.hotels .card .stars i {
    color: #ffc107;
}
.hotels .card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-style: italic;
    font-size: 15px;
}
.hotels .card:hover .card-img img {
    transform: scale(1.1);
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
    overflow: hidden;
}
.gallery img {
    border-radius: 4px;
    width: 100%;
}
.gallery .swiper-wrapper {
    height: auto;
}
.gallery .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.gallery .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--background-color);
    border: 1px solid var(--accent-color);
    width: 12px;
    height: 12px;
    opacity: 1;
}
.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}
.gallery .swiper-slide-active {
    text-align: center;
}
/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
.sponsors .clients-wrap {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.sponsors .client-logo {
    background-color: var(--surface-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}
.sponsors .client-logo img {
    padding: 50px;
    max-width: 80%;
    transition: 0.3s;
}
.sponsors .client-logo:hover img {
    transform: scale(1.1);
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden;
}
.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}
.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}
.faq .faq-container .faq-item h3:hover {
    color: var(--accent-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: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}
.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}
.faq .faq-container .faq-active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}
.faq .faq-container .faq-active h3 {
    color: var(--accent-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(--accent-color);
}
/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
.buy-tickets .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    position: relative;
}
.buy-tickets .pricing-item h3 {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 24px;
}
.buy-tickets .pricing-item h4 {
    font-size: 48px;
    color: var(--accent-color);
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 25px;
    text-align: center;
}
.buy-tickets .pricing-item h4 sup {
    font-size: 28px;
}
.buy-tickets .pricing-item h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 18px;
}
.buy-tickets .pricing-item ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-align: left;
    line-height: 20px;
}
.buy-tickets .pricing-item ul li {
    padding-top: 15px;
    display: flex;
    align-items: center;
}
.buy-tickets .pricing-item ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}
.buy-tickets .pricing-item ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.buy-tickets .pricing-item ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.buy-tickets .pricing-item ul .na span {
    text-decoration: line-through;
}
.buy-tickets .buy-btn {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    display: inline-block;
    padding: 12px 40px;
    border-radius: 4px;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    font-family: var(--heading-font);
}
.buy-tickets .buy-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.buy-tickets .featured {
    background: var(--accent-color);
}
.buy-tickets .featured h3, .buy-tickets .featured h4, .buy-tickets .featured h4 span, .buy-tickets .featured ul, .buy-tickets .featured ul .na, .buy-tickets .featured ul i, .buy-tickets .featured ul .na i {
    color: var(--contrast-color);
}
.buy-tickets .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}
.buy-tickets .featured .buy-btn:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
    color: var(--contrast-color);
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-title {
    display: flex;
    align-items: center;
}
.contact-title i {
    padding-right: 10px;
}
.contact-title h4 {
    font-size: 16px;
    margin: 0;
}
.contact .info-item {
    background-color: var(--surface-color);
    padding: 20px 0 30px 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}
.contact .info-item h3 {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    text-align: center;
}
.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email], .contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus, .contact .php-email-form input[type=email]:focus, .contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::placeholder, .contact .php-email-form input[type=email]::placeholder, .contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .details h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.events .details .social {
    margin-bottom: 15px;
}
.events .details .social a {
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.events .details .social a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}
.events .details .social a i {
    font-size: 16px;
    line-height: 0;
}
.events .details p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 15px;
    margin-bottom: 10px;
}
/* SEARCH BOX */
.input-box {
    position: relative;
    height: 40px;
/*    max-width: 415px;*/
    width: 100%;
    background: #fff;
    margin: 0;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid #b5b5b5;
}
.user-slip-sec .input-box {
    margin: 0 auto;
}
.input-box i, .input-box .button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.input-box i {
    left: 40px;
    font-size: 19px;
    color: #272727;
}
#user-slip-sec .input-box input {
	margin: 0;
}
.input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    border: none;
    padding: 0 80px 0 25px;
    background-color: transparent;
	margin: 7px 0 0;
}
.input-box .button {
    right: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    background-color: transparent;
    cursor: pointer;
}
.input-box .button:active {
    transform: translateY(-50%) scale(0.98);
}
/*-----------------------------------------COUNTER----------------------------------------------*/
.stats-card {
    /*    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 41%);*/
    padding: 6px;
    text-align: left;
    color: #049DD9;
}
.stats-card h3 {
    font-size: 12px;
    font-weight: 400;
}
.stats-card h3 span {
    font-size: 20px;
    font-weight: 700;
}
.stats-card em, .stats-card em span {
    font-size: 16px;
    line-height: 26px;
    font-style: normal;
    font-weight: bolder;
    margin: 10px 5px;
}
.footer-menu {
	background: #046695;
    padding: 6px;
    margin: 0;
}
	
.footer-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    align-items: center;
}
.footer-menu ul li a {
    padding: 0 10px;
    color: #E8E8E8;
}
/*-----------------------------------------ABOUT SECTION----------------------------------------------*/
.about .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
    max-width: 65%;
    margin: 0 0 80px 0;
}
.about .our-story {
    padding: 40px;
    padding-right: 35%;
    background-color: color-mix(in srgb, #7eab48, transparent 77%);
    border-radius: 20px;
}
.about .our-story h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.about ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
.about ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}
.about ul i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    line-height: 1.2;
    color: var(--accent-color);
}
.about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
}
.about .about-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 65%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    border-radius: 20px;
}
.user-slip-card {
    transition: ease-in-out 0.2s;
    background: #fff;
    font-size: 11px;
    padding: 10px;
    border: 2px solid #79b8d6;
    border-radius: 12px;
}
.user-slip-content h4{
	padding: 8px!important;
	font-size: 14px!important;
}
.card-body.slip-title h6{
	font-size: 12px;
}
.user-slip-content h4{
	    padding: 4px 0 !important;
    font-size: 11px !important;
}
.profile-sec .user-slip-card {
    padding: 20px;
}
.user-slip img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    line-height: 100px;
}
.user-slip-slider section, .user-slip-slider  .section {
        padding: 10px 0;

}
.single-slide-img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    overflow: hidden;
    object-fit: cover;
    border-radius: 6px;
}
.single-slide-img img {
    width: 100%;
    border-radius: 6px;
}
.socialnewbtn {
    background-color: #eee;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
}
.socialnewbtn i {
    font-size: 11px;
}
.btn-link {
    text-decoration: underline;
    font-weight: bold;
    color: #0B6A83;
    font-size: 12px;
}
.slip-btn a, .yellow-btn a {
    margin: 0;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
    text-transform: capitalize;
}
.slip-btn a, .yellow-btn a {
    color: var(--contrast-color);
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
}
.slip-btn a:hover, .yellow-btn a:hover {
    color: #fff;
    background: #222;
}
.yellow-btn a {
    background: #F4C048;
    color: #000;
}
.slip-btn a:hover {
    color: #fff;
    background: #046695;
}
.slip-icon {
    background: #078586;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 5px;
    display: flex;
    justify-content: center;align-items: center;
}
.slip-icon i {
    font-size: 12px;
    color: #fff;
}
.slip-title {
    margin-left: 15px;
}
.slip-title h4 {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
}
.slip-title p {
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}
.slip-data .title-tab h6 {
    font-size: 11px;
    color: #4d4d4d;
    margin: 0 0 2px;
}
.slip-data .title-tab h5 {
    font-size: 12px;
    color: #000000;
    margin: 0 0 2px;
}
.slip-data .ans-tab h6 {
    font-size: 11px;
    color: #000;
    margin: 0;
}
.botm-btns {
    padding: 5px 0px;
}
.one-profile {
    background: #fff;
    width: 100%;
    margin: auto;
    padding: 20px;
    border-radius: 20px;
}
.organization .relg-card.donation-card {
    background-color: #fff;
}
.bg-lavendar {
    background-color: #faebd7;
}
.user-slip {
    position: relative;
    display: flex;
    justify-content: center;
}
.profile-sec .social {
    margin: 0px 50px 0 0;
}
.regstration_form {
    width: 100%;
    margin: 0;
    padding: 35px;
    border-radius: 6px;
    float: left;
    background: #fff;
    box-shadow: rgba(2, -52, -21, 0.15) 0px -33px 200px -26px;
}
.regstration_form input[type="text"], .regstration_form input[type="password"], .regstration_form input[type="email"] {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    margin: 8px 0;
}
.regstration_form textarea {
    width: 100%;
    height: 80px;
    padding: 0 10px;
    margin: 8px 0;
}
.regstration_form button {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    margin: 8px 0;
    border: none;
    background: #046695;
    color: #fff;
    border-radius: 4px;
}
.regstration_form p {
    font-size: 12px;
    padding-left: 22px;
}
.register_card h2 {
    text-align: center;
    padding-bottom: 25px;
}
.editModal input[type="file"]{
	height: 45px;
}
.editModal input[type="file"]::file-selector-button {
  border: 2px solid #046695;
  padding: 3px 7px;
  border-radius: 5px;
  background-color: #046695;
	color: #fff;
	font-size: 12px;
}
.soc-btns {
    margin: 10px 0 0;
}
.table td {
    font-size: 12px;
    background: transparent;
    padding: 3px;
    border: none;
}
.pay-icons a img {
    width: 100%;
    max-width: 20px;
    margin-left: 10px;
    height: auto;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
    border: none;
    border-bottom: 1px solid #adadad;
    background: none;
    border-radius: 0;
    margin: 8px 0;
    height: 25px !important;
}
.nav-tabs .nav-link {
    font-size: 13px;
    color: #222;
}
.nav-tabs .nav-link.active {
    background: #046695;
    color: #fff;
    border-radius: 4px;
    padding: 3px 12px;
}
.upper-form {
    padding: 0px;
    margin-bottom: 4px;
}
.pro-link a {
    font-size: 12px;
    margin: 10px 0 0;
    font-weight: 600;
    background: #ffffff;
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
}
.ban-form-text h6 {
    color: #222;
    font-size: 13px;
}
.ban-form .tab-content h4{
    font-size: 18px;
    font-weight: 700;
}
.form-banner {
    background-color: mintcream;
    padding: 20px;
    margin-bottom: 47px;
}
.form-control:focus {
    background: none!important;
    border: none;
    outline: none;
    box-shadow: none;
}
.form-control::placeholder {
    color: #222 !important
}
.form-check label {
    font-size: 14px
}
#day-1 h4 {
    font-size: 15px;
    margin: 20px 0 10px;
}
.issue-btn {
    color: var(--contrast-color);
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
    font-size: 12px;
    line-height: 11px;
    font-weight: 500;
    padding: 6px 15px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
    border: none;
    text-transform: capitalize !important;
}
.issue-btn:hover {
    color: #046695;
    background: var(--contrast-color);
    border: 1px solid #046695;
}
input, optgroup, select, textarea, email, .select2.select2-container {
    border: none;
    border-bottom: 1px solid #ababab;
    font-size: 14px;
    height: 25px;
    padding: 0 10px;
    margin: 0;
    background: none;
    width: 100%;
}
.dashboard-register button, .dashboard-register input, .dashboard-register optgroup, .dashboard-register select, .dashboard-register textarea, .dashboard-register email, .dashboard-register .select2.select2-container {
    border: none;
    border-bottom: 1px solid #ababab;
    font-size: 14px;
    height: 30px;
    padding: 0 10px;
    margin: 8px 0;
    width: 100%;
}
.relg-card input, .relg-card optgroup, .relg-card select, .relg-card textarea, .relg-card email, .relg-card select, .relg-card .select2.select2-container, .relg-card input[type="date"i] {
    border: none;
    border-bottom: 1px solid #ababab;
    font-size: 14px;
    height: 25px;
    padding: 0 10px;
    margin: 8px 0;
    width: 100% !important;
	color: #757575;
}
input[type="checkbox"i] {
    width: 10px !important;
    height: 10px;
    margin-right: 10px;
}
input[type="radio"i] {
    width: 30px !important;
    height: 15px;
}
label {
    font-size: 13px;
    font-weight: 600;
    padding-left: 10px;
}
.relg-card .select2.select2-container {
    border: none;
    font-size: 14px;
    height: 30px;
    padding: 0 10px;
    margin: 8px 0;
    width: 100% !important;
    position: relative;
}
.relg-card .selection .select2-selection.select2-selection--multiple {
    border: none !important;
    border-bottom: 1px solid #ababab !important;
    border-radius: 0;
}
.relg-card .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #046695 !important;
    color: white;
}
.relg-card.donation-card input[type="radio"i] {
    margin: 5px;
}
.relg-card.donation-card input[type="checkbox"i] {
    width: 15px !important;
    height: 16px;
    margin: 0 10px 0 0px;
}
.botm-social-share label {
    margin-right: 15px;
}
.entries h4 {
    font-size: 12px;
    margin: 0;
}
.soc-login.social-btn {
    color: #000;
    font-weight: 600;
    font-size: 13px;
    background: #eee;
    padding: 6px 15px;
    border-radius: 4px;
    display: block;
    text-align: center;
    width: 100%;
}
.social-btn {
    color: #000;
    font-weight: 600;
    font-size: 13px;
    background: #eee;
    padding: 6px 10px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30%;
}
.social-btn:hover {
    background: #222;
    color: #fff;
}
.social-btn img {
    width: 100%;
    max-width: 14px;
    margin-right: 10px;
}
.single-bar.info-item a {
    font-size: 14px;
    text-decoration: underline;
}
.social-btn.active, .religion-btn.active {
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
    color: #fff;
    border-radius: 4px;
    padding: 6px 12px;
}
.social-btn.active:hover, .religion-btn.active:hover {
    background: #222;
    color: #fff;
}
.relg-card {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    /*    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);*/
}
.relg-card.donation-card {
    background-color: none;
    box-shadow: none;
}
.relg-card h6 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.relg-card .regstration_form {
    background: none;
    box-shadow: none;
    padding: 0;
}
.religion-btn, .religion-head {
    background: #a5a5a5;
    color: #fff;
    border-radius: 4px;
    width: 100%;
    display: flex;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0px;
    color: #000;
    font-weight: 600;
    font-size: 13px;
    background: #eee;
    padding: 6px 15px;
}
.religion-btn:hover {
    background: #046695;
    color: #fff;
}
.religion-head {
    background: #000;
    color: #fff;
}
.no-checkbox{
	margin: 0 0 11px;
}
.check-btns {
    display: inline;
}
.check-btns {
    display: inline;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    margin: 0 auto 10px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
    color: #000;
    font-weight: 600;
    font-size: 13px;
    background: #eee;
    padding: 6px 15px;
}
.form-check {
    display: inline-block;
    margin: 10px 0;
}
.check-btns label {
    padding: 5px 10px;
    cursor: pointer;
}
.check-btns label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Bootstrap-icons";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "\F633";
    transition: transform .3s ease-in-out;
}
.check-btns input[type="checkbox"]:checked + label::before {
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}
.check-btns input[type="checkbox"]:checked + label {
    border: 2px solid linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
    background-color: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
    color: #fff;
    transition: all .2s;
}
.check-btns input[type="checkbox"] {
    display: absolute;
}
.check-btns input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
.check-btns input[type="checkbox"]:focus + label {
    border: 2px solid #3f9774;
}
.form-select {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    border: none;
    border-bottom: 1px solid #ababab;
    font-size: 14px;
    color: #626262;
    border-radius: 0;
    margin: 8px 0;
    background: transparent;
}
.form-select:focus {
    outline: 1px solid #222;
    border: 1px solid #222;
    border-radius: 3px;
}
div.file {
    position: relative;
    overflow: hidden;
}
.file input {
    position: absolute;
    font-size: 50px;
    line-height: 80px;
    height: 120px;
    opacity: 0;
    right: 0;
    top: 0;
}
.file.upload-btn {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    border: none;
    border-bottom: 1px solid #ababab;
    font-size: 14px;
    color: #626262;
    border-radius: 0;
    margin: 8px 0;
}
input[type="date"i] {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    border: none;
    border-bottom: 1px solid #ababab;
    font-size: 14px;
    color: #626262;
    border-radius: 0;
    margin: 8px 0;
}
.upload-pic {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    border: 2px solid #046695;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 0 auto 10px;
}
.reg-form-btn .social-btn {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    background: #046695;
    padding: 4px 20px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto !important;
    border: none;
}
.reg-form-btn .social-btn:hover {
    background: #000;
    color: #fff;
}
/*
----------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------
DASHBOARD CSS
-------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------------------*/
.page-header {
    margin: 20px 0 0;
}
.page-header .issue-btn:hover {
    color: #fff;
    background: #222;
}
.page-header h3 {
    font-size: 18px;
    margin: 0;
}
.breadcrumb {
    font-size: 12px;
}
.user-dashpage {
    margin-top: 40px;
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
}
.admin-sidebar {
    background: #eeeeee;
    padding: 0px;
}
.admin-sidebar .side-ul {
    padding: 10px;
    margin: 0;
}
.admin-sidebar .side-ul li {
    list-style: none;
    padding: 4px 22px;
    background: #eee;
    border-bottom: 1px solid #e1e1e1;
    font-size: 14px;
}
.admin-sidebar .side-ul li a {
    color: #000;
}
.dropdown-btn {
    padding: 4px 22px;
    text-decoration: none;
    font-size: 14px;
    color: #000;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}
/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
}
.admin-sidebar .side-ul li:last-child {
    border-bottom: none;
}
.admin-sidebar .side-ul li:hover {
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
}
.admin-sidebar .side-ul li:nth-child(2):hover {
    background: #eee;
}
.admin-sidebar .side-ul li:hover .smenu-link {
    color: #fff;
}
.admin-sidebar .side-ul .sub-dropdn {
    padding: 10px 20px !important;
}
.admin-sidebar .side-ul .sub-dropdn:hover {
    background: none;
}
.admin-sidebar .side-ul .sub-dropdn li {
    padding: 4px 12px;
}
.admin-sidebar .side-ul .sub-dropdn li:hover {
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
}
.dataTables_info, .paginate_button {
    font-size: 12px;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    font-size: 13px;
}
table.dataTable thead th, table.dataTable thead td {
    font-size: 14px;
}
.badge.edit_btn {
    font-size: 16px;
    color: var(--contrast-color);
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
}
.user-dashpage .card {
    margin: 15px 0 0;
}
.social-btn:active {
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
}
.form-check .form-check-input {
    float: none;
}
.profile-sec {
    margin-top: 80px;
}
.botm-social-share {
    margin: 15px 0;
    display: flex;
}
.registeration {
    margin: 50px 0 0;
}
.no-checkbox input[type="checkbox"] {
    display: none;
}
.no-checkbox input[type="checkbox"]:checked + label {
    color: #ffffff;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.no-checkbox input[type="checkbox"]:checked + label i:before {
    content: "";
}
.no-checkbox input[type="radio"] {
    display: none;
}
.no-checkbox input[type="radio"]:checked + label {
    color: #ffffff;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.no-checkbox input[type="radio"]:checked + label i:before {
    content: "";
}
.agent-card {
    background: #d3d3d3;
    padding: 20px;
}
.new-bank {
    background: #fff;
    padding: 10px;
    border: 2px solid #79b8d6;
    border-radius: 10px;
    /*height: 350px;*/
}
.new-bank-list {
    background: #fff;
    padding: 0px;
}
.new-bank-list h4 {
    font-size: 11px;
    color: #535353;
    font-weight: 500;
    margin: 0 0 2px;
}
.new-bank-list h6 {
    font-size: 12px;
    color: #000;text-align: left;
}
.coll-name {
    background: #cbe9e5;
    padding: 7px;
    margin: 0 0 10px;
    border-radius: 4px;
	display: flex;
    justify-content: space-between;
    flex-direction: column;    align-items: center;
}
.coll-name h4 {
    font-size: 14px;
    color: #222;
    margin: 0;
    font-weight: 600
}
.coll-name h6 {
    font-size: 13px;
    color: #222;
    margin: 0;
}
.coll-detail h6 {
    font-size: 14px;
    color: #fff;
}
.collection-detail {
    padding: 12px;
    /*    background: linear-gradient(93deg, rgb(88 162 197) 31%, rgb(117 243 226) 100%);*/
    background-color: mintcream;
    margin: 0px 0 10px;
    border-radius: 10px;
}
.collection-detail .js-select2 {
    border-radius: 0px;
}
.collection-detail select option {
    color: #222;
}
select.js-select2 :focus, input:focus {
    border: none !important;
}
.collect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.collect-btn a {
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
    color: #fff;
    font-weight: 600;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}
.collect-btn a:hover {
    color: #000;
    background: #fff;
}
.new-bank-list h6.theme-colr {
    color: #01b89f;
    font-size: 12px;
    font-weight: bold;
    margin-top: 15px;
}
.new-bank-list h6.fwt-bold, .coll-name h4.fwt-bold {
    font-size: 14px;
    font-weight: 600;
    margin: 0
}
.new-bank-list h5 {
    color: #9A9A9A;
    font-size: 11px;
    margin: 5px 0;
}
.second-nav.navmenu a {
    color: #000;
}
.second-nav.navmenu a:hover {
    color: #dbdbdb;
}
.collect-download {
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center
}
.collect-download a {
    height: 60px;
    color: #01b89f;
    font-weight: bolder;
}
.legal-detail {
    border-radius: 4px;
    margin: 8px 0;
    align-items: center;
}
.legal-detail.form-control {
    border-bottom: 1px solid #ababab;
    font-size: 14px;
    height: 100%;
    padding: 0 10px;
    margin: 0;
    background: none;
    color: #fff;
    height: 35px;
}
.legal-detail input::placeholder {
    color: #fff;
    font-size: 14px;
}
.danger-text {
    color: red;
    font-size: 10px;
    display: inline-block;
    margin-top: 5px;
}
.form-select .danger-text {
    margin-top: 0px !important;
}
.collection-detail .form-select {
    margin: 8px 0 0 !important;
}
.legal-btn {
    margin: 0;
    font-size: 12px;
    line-height: 14px;
    padding: 8px 20px;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--contrast-color);
    background: #01b89f;
    border: 1px solid #01b89f;
    display: block;
}
.fwt-semibold {
    font-weight: 600;
    margin: 0;
}
.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
}
.login_box {
    position: relative;
    width: 450px;
    backdrop-filter: blur(25px);
    border: 2px solid #01b99f;
    border-radius: 15px;
    padding: 6.5em 2.5em 3em 2.5em;
    /*  color: #fff;*/
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}
	.agent-log-btn{
	padding: 6px 0;	
	}
	.agent-log-btn p{
	font-size: 15px;
		font-weight: 400;
		color: #fff;
		text-align: center;
	}
	.agent-log-btn p a{
	font-size: 16px;
		font-weight: 600;
		margin-left: 6px;
		color: #046695;
		text-decoration: underline;
	}
	.agent-log-btn p a:hover{
		color: #fff;
	}

.login-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #01b99f;
    width: 180px;
    height: 50px;
    border-radius: 0 0 20px 20px;
}
.login-header span {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}
.login-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    border-top-right-radius: 50%;
    background: transparent;
    box-shadow: 15px 0 0 0 #01b99f;
}
.login-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    border-top-left-radius: 50%;
    background: transparent;
    box-shadow: -15px 0 0 0 #01b99f;
}
.wrapper .input_box {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 0 10px 0;
}
.wrapper .input-field {
    width: 100%;
    height: 55px;
    font-size: 13px;
    background: transparent;
    color: #fff;
    padding-inline: 20px 50px;
    border: 2px solid #01b99f;
    border-radius: 30px;
    outline: none;
}
#user {
    margin-bottom: 10px;
}
.label {
    position: absolute;
    top: 15px;
    left: 20px;
    transition: 0.2s;
}
.wrapper label {
    display: inline-block;
    color: #c3c3c3;
}
.input-field:focus ~ .label, .input-field:valid .label {
    /* Added missing closing brace here */
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 14px;
    background-color: #01b99f;
    border-radius: 30px;
    color: #fff;
    padding: 0 10px;
} /* Closed the missing brace */
.icon {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 20px;
}
.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}
.wrapper input::placeholder {
    color: #eee;
}
.input-submit {
    width: 100%;
    height: 50px;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}
.input-submit:hover {
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%)
}
.register {
    text-align: center;
}
.register span {
    color: #c3c3c3;
}
.register a {
    font-weight: 500;
}
.accordion-item {
    border: 2px solid #046695;
    padding: 7px 12px;
    margin: 6px 0;
    border-radius: 6px;
}
.accordion-item:not(:first-of-type) {
    border: 2px solid #046695;
}
.accordion-button:not(.collapsed), .accordion-item.accordion-header .accordion-button.collapsed, .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    color: #212529;
    background-color: transparent;
    box-shadow: none!important;
    border: none !important;
}
.accordion-button {
    font-size: 14px;
    font-weight: 600;
}

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

.social-url {
    width: 100%;
    display: flex;
}
.social-url img {
    width: 100%;
    max-width: 18px;
    height: 100%;
    max-height: 18px;
    display: block;
    margin-top: 13px;
}
textarea:focus, input:focus, .accordion-button.collapsed:focus {
    outline: none !important;
    border: none !important;
	box-shadow: none!important;
}
.agent-img {
    padding: 0 0 15px;
    display: block;
    text-align: center;
}
.agent-img img {
    width: 80px;
    border-radius: 100%;
    height: 80px;
}
.canc_btn{
	font-size: 12px;
	font-weight: 700;
	color: red;
	display: inline-block;
}
.check_btn {
    font-size: 20px;
    color: green;
    float: right;
    padding: 0;
}
.new-bank.coll-unit.card .card-body {
    padding: 0;
}
.new-bank.coll-unit {
    padding: 6px 10px;
    border-radius: 8px;
}
.new-bank.coll-unit .new-bank-list {
    padding: 0;
}
.new-bank.coll-unit .new-bank-list h6 {
    margin: 0;
}

.legal-content .content-tab {
    display: flex;
    text-align: left;
}
.legal-content .content-tab h4 {
    display: block;
    text-align: left;
    font-size: 12px;
    color: #000;
    font-weight: 600;
}
.legal-content .content-tab h6 {
    display: block;
    text-align: center;
    font-size: 11px;
    color: #000;
    margin-left: 20px;
    font-weight: 400;
}
.event-sec, .bank-details {
    padding: 20px 0;
}
.card-title {
padding: 8px 14px;
    background: #046695;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}
textarea.form-control {
    min-height: 25px;
}
textarea.form-control.vision {
    min-height: 85px;
}
#subcategory-section {
    background: mintcream;
    border-radius: 10px;
    padding: 10px 20px;
}

.select2-container--default .select2-selection--multiple {
    padding: 0;
    background: none !important;
    background-color: transparent !important;
}
.select2-container .select2-search--inline .select2-search__field {
    margin: 0 !important;
    height: 20px !important;
}
.relg-card .selection .select2-selection.select2-selection--multiple {
    padding: 0;
}
.select2-container .select2-selection--multiple {
    min-height: 26px !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #046695 !important;
}
.select2-results__option {
    padding: 0 6px !important;
}
.soc-icon-pic {
    width: 100%;
    max-width: 30px;
}
.soc-icon-pic img {
    width: 100%;
    max-width: 20px
}
.accordion-button {
    padding: 0;
}
.ques-ans {
    padding: 4px;
    border: 1px solid #b6b6b6;
    border-radius: 6px;
    margin: 6px 0;
}
.ques-ans .ques {
    padding: 4px;
    font-weight: bolder;
    font-size: 14px;
    margin: 0 0 6px;
}
.ques-ans .ans {
    padding: 4px;
    font-weight: normal;
    font-size: 14px;
    background: #d1d1d1;
    border-radius: 6px;
}
.user-slip-content .card-header {
    background: #eee;
    margin: 0 0 20px;
}
.card-body.slip-title {}
.razor-btn input[type=submit] {
    margin: 0;
    height: 40px;
    font-size: 12px;
    line-height: 22px;
    padding: 8px 20px;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--contrast-color);
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
}
.OrgDetail {
    width: 75% !important
}
/*
-----------------------------------------------------------------------------
Certificate Page
------------------------------------------------------------
*/
.full-slip {
    display: inline-block;
    background: #fff;
    padding: 10px;
    width: 100%;
    height: 100%;
}
.slip-data {
    padding: 5px 0;
    ;
}
.slip-data h6 {
    font-size: 14px;
    color: #000;
    margin: 0
}
.slip-pic {
    width: 100%;
    height: 100%;
    max-width: 60px;
    max-height: 60px;
}
.slip-pic img {
    width: 100%;
}
.pm-certificate-container {
    position: relative;
    width: 745px;
    height: auto;
    margin: auto;
    background-color: #046695;
    padding: 15px;
    color: #333;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.pm-certificate-title.cursive h2 {
    font-family: "Pinyon Script", serif;
    font-weight: 400;
    font-style: normal;
}
.pm-certificate-container .pm-certificate-border {
    position: relative;
    padding: 0;
    border: 1px solid #E1E5F0;
    background-color: #ffffff;
    background-image: none;
    left: 0;
    top: 0;
    margin: auto;
}
.pm-certificate-container .pm-certificate-border .pm-certificate-block {
    position: relative;
    top: 13px;
    margin: 0;
}
.pm-certificate-container .pm-certificate-border .pm-certificate-header {
    margin-bottom: 10px;
}
.pm-certificate-container .pm-certificate-border .pm-certificate-title {
    position: relative;
    top: 20px;
}
.pm-certificate-container .pm-certificate-border .pm-certificate-title h2 {
    font-size: 24px !important;
}
.pm-certificate-container .pm-certificate-border .pm-certificate-body {
    padding: 0 10px 20px;
    background: #eefffd;
    width: 95%;
    margin: 30px auto;
}
#search {
    padding: 12px;
    border: 1px solid #078586;
    border-right: 0;margin: 0;
}
.search-btn {
    background: #078586;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 12px;
}
.accordion-body {
    padding: 10px 0 0;
}
.certi-btn {
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 9;
}
#certificate .section-title h2 {
    font-size: 16px;
}
.faq-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.faq-content ul li {
    font-size: 12px;
    font-weight: 500;
}
.heading-data {
    font-size: 12px;
    font-weight: 700;
}
.heading-data, .ans-data {
    width: 45%;
}
.Spacer-100 {
    float: left;
    width: 100%;
    margin-top: 20px;
}
.Small_img {
    position: relative;
	width: 100%;
	height: 100%;
	max-height: 90px;
	object-fit: cover;
	    margin: 0 0 10px;
}
.Small_img img {
    width: 100%;
}
.DEL_btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f00 !important;
}
.MT_100 {
    margin-top: 100px !important;
}
.DEL_btn:hover {
    color: #fff !important
}
.text-danger {
    font-size: 12px;
}
.js-select2 {
    margin-bottom: 8px;
}
.edit_btn {
    background: linear-gradient(93deg, rgba(4, 102, 149, 1) 31%, rgba(1, 185, 159, 1) 100%);
    padding: 2px;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 16px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    margin: 2px;
    float: left;
}
.edit_btn i {
    font-size: 12px;
    font-weight: bolder;
}
.edit_btn:hover {
    background: #fff;
    color: #046695;
    border: 1px solid #046695;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 0px;
    padding-right: 3px;
    font-size: 11px;
}
.accordion-button::after {
    width: 12px;
    height: 12px;
    background-size: 12px;
}
#subcategory-section .form-check {
    padding-left: 6px;
}
#subcategory-section ul {
    padding: 0;
    margin: 0;
}
.SumoSelect > .CaptionCont > span.placeholder {
    opacity: 1;
    color: #222 !important;
    font-size: 12px;
    font-style: normal !important;
    background: #fff;
}
.SumoSelect label {
    padding-left: 0;
    font-size: 11px;
}
.SumoSelect > .CaptionCont > span {
    font-size: 11px;
}
.total-records h5{
	font-size: 12px
}
.thanku-page{
	margin: 120px auto 0;
	width: 80%;
}
.thanku-page p{
	font-size: 16px;
    line-height: 21px;
}
.issue-btn.red-btn{
    background: #ad0000;
    color: #fff;
}
.navmenu ul li a, .navmenu ul li a:focus{
	font-size: 14px!important;
}
	.log__out{
		position: relative;
		bottom: 0;
		width: 100%;
		background: #046695;
	}
		.log__out:hover{
		background: #fff;
	}

	.log__out a{
		color: #fff!important;
		font-weight: 600;
		font-size: 12px;
	}
	.log__out:hover a{
		color: #046695!important;
		border: 1px solid #046695;
	}
@media (min-width: 1920px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1000px;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1000px;
    }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1000px;
    }
    .header .logo {
        order: 1;
    }
    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
    .header .navmenu {
        order: 3;
    }
    .navmenu {
        padding: 0;
    }
    .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: 6px 8px;
    }
    .navmenu > ul > li:last-child {
        padding-right: 0;
    }
    .navmenu a, .navmenu a:focus {
        color: #222;
        font-size: 12px;
        /* padding: 0 2px; */
        font-family: var(--nav-font);
        font-weight: 600;
        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: 12px;
        line-height: 0;
        margin-left: 5px;
        /* transition: 0.3s; */
    }
    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0px;
        /* transition: all 0.3s ease-in-out 0s; */
    }
    .navmenu a:hover:before, .navmenu li:hover > a:before, .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }
    .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
        color: #222;
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        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: 6px 15px;
        font-size: 11px;
        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 {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
    .section {
        scroll-margin-top: 76px;
    }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: rgb(0 0 0);
        font-size: 25px;
        line-height: 0;
        margin-right: 0;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 3px 10px 0;
        z-index: 99;
    }
    .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-dropdown-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 {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .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: 15px;
        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;
    }
}
@media (max-width: 1025px) {
		.header .cta-btn{
		padding: 3px;
		margin: 0;
	}
	.footer-menu ul li a {
    padding: 0 5px;
}
}

@media (max-width: 991px) {
    .schedule .nav-tabs a {
        padding: 8px 60px;
    }
    .schedule .sub-heading {
        width: 75%;
    }
	.header .cta-btn{
		padding: 3px;
		margin: 0;
	}
	.footer-menu ul li a {
    padding: 0 5px;
}
}
@media only screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
    .hero h2 {
        font-size: 26px;
        line-height: 33px;
        margin-bottom: 15px;
    }
    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
    .mobile_Menu {
        display: block
    }
    .Mobile_login {
        display: block
    }
    .D_NONE_mob {
        display: none !important;
    }
    .schedule .nav-tabs a {
        padding: 5px;
    }
    .stats-card {
        padding: 0;
        text-align: center;
    }
    .stats-card h3 {
        font-size: 11px;
    }
    .stats-card h3 span {
        font-size: 14px;
    }
    .form-banner {
        padding: 0px 20px 20px;
        margin-bottom: 20px;
    }
    .sponsors .client-logo img {
        padding: 30px;
        max-width: 50%;
    }
		.mb-4 {
    margin-bottom: 0.7rem!important;
}
	.tab-content.mt-4 {
    margin-top: 0.7rem!important;
}
	.login-header{
		height: 35px;
	}
.login-header::before, .login-header::after {
    height: 16px;
	}
	.login-header span {
    font-size: 15px;
}
	.wrapper .input-field {
    height: 42px;
	}
	.faq .faq-container .faq-item .faq-toggle {
    top: 15px;
	}
	.faq .faq-container .faq-item {
    padding: 8px;
    margin-bottom: 9px;
	}
	.user-slip img {
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
}
	.regstration_form input[type="text"], .regstration_form input[type="password"], .regstration_form input[type="email"] {
    height: 16px;
    padding: 0 10px;
    margin: 0 0 8px 0;
}
	.single-slide-img {
    max-height: 140px;
}
	.SumoSelect>.CaptionCont {
    position: relative!important;
	}
	.SumoSelect>.optWrapper.isFloating {
    position: relative!important;
}
		.org-social .d-flex {
    display: block !important;
}
		.navmenu .dropdown ul {
        display: block !important;margin: 5px 20px 20px;padding: 0;
    }
		.navmenu .dropdown ul li a{
       padding: 5px 12px!important;
		font-size: 12px!important;
    }
        .contact-title h4 {
    font-size: 13px;
}
.contact-title i {
    font-size: 11px;
}
}
@media only screen and (max-width: 564px) {
    .wrapper {
        padding: 20px;
    }
    .contact .php-email-form {
        padding: 20px;
    }
    .login_box {
        padding: 7.5em 1.5em 1em 1.5em;
        width: auto;
    }
    .header .cta-btn {
        margin: 0;
    }
    .footer-menu ul li a {
        font-size: 11px;
        padding: 0 3px;
    }
    .user-slip-card {
        padding: 10px;
    }
    .org-donation.user-slip-card {
        padding: 11px 11px 16px;
    }
    .user-dashpage .navmenu a {
        font-size: 14px;
        color: #000;
    }
    .bank-details {
       padding: 10px 0 50px !important;
        margin: 15px !important;
        height: auto !important;
    }
    .issue-btn {
        font-size: 10px;
        text-align: center;
    }
    .breadcrumb {
        margin: 0;
    }
    .event-sec {
        padding: 20px 0 !important;
    }
    .nav-tabs .nav-link {
        font-size: 12px;
    }
    .nav-tabs .nav-link.active {
        padding: 5px;
    }
    .relg-card {
        padding: 10px;
    }
    .login_box {
        width: auto;
    }
    .footer-menu {
        display: flex;
        justify-content: center;
		margin: 0 0 7px;
    }
    .slip-btn a, .yellow-btn a {
        padding: 8px 12px;
    }
    .new-bank-list h6 {
        font-size: 12px;    text-align: left;
    }
    .user-slip-content .row.py-5 {
        padding: 10px 0 !important;
    }
    .new-bank {
        margin: 0 0 10px;
        padding: 10px;
        height: auto;
    }
    .pm-certificate-container {
        width: auto;
        padding: 6px;
    }
    .pm-certificate-title h1 {
        font-size: 22px;
    }
    .certi-btn {
        top: 0.5%;
        right: 0.5%;
    }
    .certificate.section.mt-5 {
        margin-top: 0 !important;
        height: auto !important;
    }
    .certificate section, .section {
        padding: 0 0;
    }
    .full-slip {
        height: auto;
    }
    .pm-certificate-footer {
        display: block;
        text-align: center;
    }
    .pm-certificate-footer .slip-pic {
        display: block;
        text-align: center;
        margin: auto;
    }
    .form-control {
        margin: 0 0 5px;
    }
    .slip-btn a, .yellow-btn a {
        padding: 8px 12px;
    }
    .venue .venue-info h3 {
        font-size: 24px;
    }
		.mb-4 {
    margin-bottom: 0.7rem!important;
}
	.tab-content.mt-4 {
    margin-top: 0.7rem!important;
}
	.regstration_form {
    margin: 10px 0 0;
    padding: 15px;
}
	.regstration_form input[type="text"], .regstration_form input[type="password"], .regstration_form input[type="email"] {
    height: 22px;
    padding: 0 10px;
    margin: 0 0 8px 0;
}
	.social-btn {
    font-size: 12px;
}
	.relg-card#section-1 .col-md-3, .relg-card#section-1 .col-md-6, .relg-card#section-1 .col-md-12{
		    font-size: 12px;
    font-weight: 700;
	}
	.relg-card input, .relg-card optgroup, .relg-card select, .relg-card textarea, .relg-card email, .relg-card select, .relg-card .select2.select2-container, .relg-card input[type="date"] {
    font-size: 11px;
    height: 20px;
    padding: 0 3px;
    margin: 0 0 8px 0;
}
	#gallery .member img {
    max-width: 75px;
}
		.SumoSelect>.CaptionCont {
    position: relative!important;
	}
	.SumoSelect>.optWrapper.isFloating {
    position: relative!important;
}
		.org-social .d-flex {
    display: block !important;
}
		.navmenu .dropdown ul {
        display: block !important;margin: 5px 20px 20px;padding: 0;
    }
		.navmenu .dropdown ul li a{
       padding: 5px 12px!important;
		font-size: 12px!important;
    }
        .contact-title h4 {
    font-size: 13px;
}
.contact-title i {
    font-size: 11px;
}
}
@media (max-width: 480px) {
    .schedule .nav-tabs a {
        padding: 5px;
    }
	.form-banner {
        position: relative;
        padding-top: 60px;
    }
    #hero .input-box {
        height: 33px;
        margin: 0 auto 12px;
        position: absolute;
        top: 3%;
        z-index: 999;
        width: 80%;
        left: 50%;
        transform: translate(-50%, 17%);
    }
    #hero .input-box i {
        left: 12px;
        font-size: 18px;
    }
    #hero .input-box input {
        padding: 0 20px;
        font-size: 10px;
        line-height: 20px;
        display: flex;
        align-items: center;
        margin: 0 0 5px;
        height: 30px !important;
    }
    #hero .input-box .button {
        right: 12px;
        font-size: 14px;
        padding: 8px 18px;
    }
    .hero {
        padding: 50px 0 0 0;
    }
    section, .section {
        padding: 15px 0;
    }
    .user-slip-sec.section {
        padding: 0px 0 60px
    }
    .ban-content {
        margin: 8px 0px;
    }
    .form-banner {
        margin-bottom: 15px;
    }
    .section-title {
        padding-bottom: 5px;
    }
    .section-title h2 {
        font-size: 15px;
    }
    .faq .faq-container {
        margin: 15px;
    }
    .profile-sec .user-slip-card {
        padding: 0;
    }
    .one-profile {
        padding: 0px !important;
        border-radius: 8px;
    }
    .profile-sec .user-slip-card {
        padding: 10px 0 !important;
        border-radius: 6px !important;
    }
		.mb-4 {
    margin-bottom: 0.7rem!important;
}
	.mt-4 {
    margin-top: 0.7rem!important;
}
		.SumoSelect>.CaptionCont {
    position: relative!important;
	}
	.SumoSelect>.optWrapper.isFloating {
    position: relative!important;
}
	.org-social .d-flex {
    display: block !important;
}
	.navmenu .dropdown ul {
        display: block !important;margin: 5px 20px 20px;padding: 0;
    }
		.navmenu .dropdown ul li a{
       padding: 5px 12px!important;
		font-size: 12px!important;
    }
    .contact-title h4 {
    font-size: 13px;
}
.contact-title i {
    font-size: 11px;
}
	
}