* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

:root {
    --main-bg-color: #ffffff;
    --para-color: #606172;
    --light-bg-color: #F3F8FF;
    --text-color: #606172;
    --main-color: #0f0d0d;
    --primary-color: #2E91D5;
    --secondary-color: #F68121;
    --dark-color: #060D3B;
    --primary-font: 'Jost', sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    outline: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 1rem;
    color: var(--main-color);
    background-color: var(--main-bg-color);
}

body {
    font-family: var(--primary-font);
    font-weight: 400;
}

img {
    width: 100%;
}

b,
strong {
    font-weight: 600;
}

button {
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 1rem;
}

a,
button {
    color: var(--primary-color);
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover,
button:hover {
    color: var(--primary-color);
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:focus {
    text-decoration: none;
}

p {
    -moz-text-shadow: none;
    -ms-text-shadow: none;
    text-shadow: none;
    color: var(--text-color);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.65em;
}

.app_section.light_bg {
    background-color: var(--light-bg-color);
}

.president_section.light_bg {
    background-color: var(--light-bg-color);
}

/* header */
.app_header.sticky .header_grid {
    margin-top: 0;
}

.header_grid {
    background-color: #fff;
    /* margin-top: 1rem; */
    /* display: grid; */
    grid-template-columns: 150px calc(100% - 150px);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.app_header {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.1);
}

.header_event_btn {
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}

.top_header {
    padding: 8px 0;
    background-color: var(--primary-color);
}

.top_alert {
    padding: 0;
    overflow: hidden;
    color: #fff;
}

.marquee-with-options ul {
    display: flex;
    /* padding: 4px 0; */
    margin: 0 !important;
    gap: 20px;
    overflow: hidden;
}

.marquee-with-options ul li {
    font-size: 0.9rem;
}

.marquee-with-options ul li::after {
    content: '|';
    margin-left: 10px;
    opacity: 0.4;
}

.marquee-with-options ul li:last-child::after {
    display: none;
}

.marquee-with-options ul li a {
    color: #FDC495;
    text-decoration: underline;
}

.main_header {
    background-color: #fff;
}

.header_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 1.5rem;
    gap: 1rem;
}

.header_brand {
    padding: 0.5rem 0;
    /* width: 55px; */
}

.header_brand img {
    display: block;
    width: 100px;
}

.hamburger_menu {
    border: none;
    /* background-color: transparent; */
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.6rem;
    width: 2.4rem;
    height: 2.4rem;
    background-color: var(--primary-color);
    border-radius: 0;
    margin-right: 10px;
}

.hamburger_menu i {
    color: #fff;
    font-size: 1.2rem;
}

.app_logo {
    /* width: 55px; */
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.primary_btn small {
    font-weight: 400;
    color: #e7e7e7;
}

.secondary_btn small {
    font-weight: 400;
}

.secondary_btn {
    background-color: var(--secondary-color);
    border: none;
    text-align: left;
    color: #fff;
    font-weight: 500;
    line-height: 1.1;
    padding: 0.7rem 2rem 0.7rem 1rem;
    border-radius: 0px;
}

.primary_btn {
    background-color: var(--primary-color);
    border: none;
    text-align: left;
    color: #fff;
    font-weight: 500;
    line-height: 1.1;
    padding: 0.7rem 2rem 0.7rem 1rem;
    border-radius: 0px;
}

.btn:focus {
    /* outline: 0; */
    box-shadow: none;
}

.header_event_btn small {
    display: block;
}

.join_nav_btn small {
    display: block;
}

.primary_btn:hover {
    color: #fff !important;
}

.secondary_btn:hover {
    color: #fff !important;
}

.app_btn:hover {
    color: #fff !important;
}

.app_btn small {
    text-transform: uppercase;
    font-weight: 400;
    color: #e7e7e7;
}

.app_btn.double {
    flex-direction: column;
    line-height: 1.1;
}

.btn_outline.secondary_btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.btn_outline.secondary_btn:hover {
    color: var(--primary-color) !important;
}

.btn_outline.primary_btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn_outline.primary_btn:hover {
    color: var(--primary-color) !important;
}

.btn_sm {
    padding: 0.6rem 0.8rem;
}

/* menu header */

.header_right {
    display: flex;

}

.header_nav {
    display: flex;
    align-items: center;
    flex: 1;
    /* padding: 0 1.5rem; */
}

.header_right.mob-view {
    position: absolute;
    right: 5%;
    top: 0;
    display: none;
}

.header_right.mob-view .menu_icons {
    border: none;
}

.app_nav ul {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin: 0;
}

.app_nav ul a {
    color: var(--main-color) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.9rem 0rem;
    position: relative;
}

.app_nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app_nav li.active a {
    color: var(--primary-color) !important;
    box-shadow: inset 0px -3px 0px var(--primary-color);
}

.nav-links li.active>ul li a {
    color: var(--main-color) !important;
    box-shadow: none;
}

.app_btn {
    padding: 0.8rem 1.8rem;
    display: inline-flex;
    align-items: center;
    text-align: center;
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    background-color: var(--primary-color);
    border-radius: 0px;
    color: #fff;
}


.primary_outline_btn {
    border: 2px solid var(--primary-color);
}

.app_btn i {
    margin-left: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.app_btn:hover i {
    margin-left: 1rem;
}


.nav_close {
    width: 2.4rem;
    height: 2.4rem;
    background-color: #fffbf9;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    position: absolute;
    right: 1rem;
    top: 1rem;
    display: none;
}

.nav_close span {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.nav_overlay {
    background-color: rgba(9, 10, 12, 0.87);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -99;
    transition: all 0.1s ease-in-out;
}

.app_section {
    padding: 5rem 0;
}

.president_section {
    padding-bottom: 5rem;
    padding-top: 1rem;
}

.event_section {
    padding-bottom: 1rem;
}

.app_btn.secondary {
    background-color: var(--danger-color);
    color: #fff;
}

.header_top {
    padding: 0.3rem 0;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
}

.header_social {
    display: flex;
    align-items: center;
    flex: 1;
}

.header_social ul {
    margin: 0px;
    display: flex;
    align-items: center;
}

.header_social a {
    color: #625F5F;
    padding: 2px 5px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contact_info li {
    border-left: 1px solid #e6e6e6;
    padding-left: 10px;
    margin-left: 10px;
}

.contact_location .app_heading {
    margin-bottom: 2rem;
}

.contact_form .app_heading {
    margin-bottom: 2rem;
}

.header_social a i {
    display: block;
    font-size: 16px;
}

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

.social_icons a {
    /* color: var(--main-color); */
    color: #B6B6B6;
    padding: 0.5rem;
    font-size: 1.2rem;
}

.social_icons a:hover {
    color: var(--primary-color);
}

.my_page a {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.85rem;
    display: inline-flex;
    gap: 0.4rem;
    border-radius: 60px;
}

.my_profile a {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.85rem;
    display: inline-flex;
    gap: 0.4rem;
    border-radius: 60px;
}

.user_button a {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 30px;
    font-size: 0.85rem;
    display: inline-block;
    gap: 0.4rem;
    border-radius: 60px;
    /* box-shadow: 1.0px 3.0px 3.0px hsl(0deg 0% 0% / 0.19); */
    /* left: 10px; */
    position: relative;
    padding-left: 50px;
    width: 165px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user_button {
    position: relative;
}

.user_button img {
    position: absolute;
    z-index: 1;
    /* top: 2%; */
    /* left: 6%; */
    width: 40px;
    height: auto;
    border-radius: 20px;
}

.user_button i {
    width: 10px;
}

.login_section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.user_dropdown {
    position: absolute;
    background: var(--primary-color) !important;
    width: 165px;
    height: 85px;
    top: 95%;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    /* transition: all 0.1s ease-in-out; */
    display: block;
    padding: 5px 0 15px;
    border-radius: 10px;
    z-index: 99;
}

.user_dropdown ul li a {
    color: #fff;
    padding: 0.3rem 0.5rem;
    font-weight: 400;
    background: var(--primary-color);
}

.user_dropdown li a:hover {
    color: var(--main-color) !important;
}

.active2 {
    top: 80px;
    visibility: visible;
    opacity: 1;
    width: 400px;
    position: absolute;
}

.inner_page {
    padding: 3rem 0;
    min-height: 50vh;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links li {
    position: relative;
}

.nav-links .drop-menu {
    position: absolute;
    background: #fff;
    width: 210px;
    top: 120%;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0 15px;
    border-radius: 0 0 5px 5px;
    z-index: 99;
}

.drop-menu .drop-menu {
    position: absolute;
    right: -210px;
    top: 20px !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.drop-menu li:hover .drop-menu {
    top: 0px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-links li:hover .drop-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav-links li a {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 400;
    border-radius: 0px;
    color: var(--main-color) !important;
}

.nav-links li a:hover {
    color: var(--primary-color) !important;
}

.nav-links input[type="checkbox"] {
    display: none;
}

.drop-menu .dp a {
    display: flex;
    align-items: center;
}

.drop-menu .dp .drop-menu a::after {
    display: none;
}

.drop-menu .dp a::after {
    content: "\EA6E";
    font-family: 'remixicon' !important;
    margin-left: 4px;
}

.drop_ico::after {
    content: "\ea4e";
    font-family: 'remixicon' !important;
    margin-left: 4px;
}

.drop_ico.active {
    color: var(--primary-color) !important;
}

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

.menu_header {
    /* background-color: #F6F6FA; */
    /* border-top: 1px solid #e8e8e8dd; */
}

.join_btn a {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1.3rem;
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: .9rem;
    white-space: nowrap;
}

.menu_bar {
    padding: 0rem 1.5rem;
}

.menu_icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-right: 1px solid #e9e9e9;
    padding-right: 0.5rem;
}

.login_btn {
    background-color: transparent;
    color: #B6B6B6;
    border: none;
    font-size: 1.4rem;
}

.menu_icons a {
    color: #B6B6B6;
    font-size: 1.3rem;
}

/* banner */
.banner_slide_box {
    border-radius: 4rem;
    padding: 0.5rem 1rem;
    background-color: rgb(246, 129, 33);
    margin: 0 0 0.8rem;
    display: inline-block;
}

.banner_slide_box h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.home_banner {
    background-color: #001723;
    min-height: 100vh;
    position: relative;
}

.banner_content {
    /* padding-top: 8rem; */
    padding-top: 0;
    padding-bottom: 12rem;
    z-index: 9;
    position: relative;
    color: #fff;
}

.banner_content_wrap {
    max-width: 50%;
}

.banner_area {
    padding-top: 21rem;
    padding-bottom: 8rem;
    z-index: 9;
    position: relative;
    color: #fff;
}

.underline {
    max-width: 225px;
    height: 2px;
    background-color: #bcbcbcd6;
    position: relative;
    display: block;
    margin: 1rem 0;
}

.underline::before {
    content: '';
    height: 2px;
    width: 50px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.banner_content_wrap .underline,
.primary_bg .underline {
    background-color: rgba(255, 255, 255, 0.3);
}

.banner_content_wrap .underline::before,
.primary_bg .underline::before {
    background-color: var(--primary-color)
}

.app_heading h2 {
    font-size: 3rem;
    font-weight: 700;
}

.app_heading .underline {
    max-width: 125px;
}

.banner_content_wrap p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.wrap_title {
    margin-bottom: 2rem;
}

.wrap_title h1 {
    font-weight: 600;
    margin: 0;
    font-size: 3rem;
}

.wrap_title h2 {
    font-size: 1.8rem;
    padding: 1rem 0;
}

.wrap_title h1 span {
    color: #009AEC;
}

/* .home_banner::before {
    content: '';
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-image: url("../../img/banner/banner-1.jpg");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 100%;
} */
.banner_slider {
    overflow: hidden;
}

.banner_slider .carousel {
    height: 100%;
}

.banner_slider .carousel-inner {
    height: 100%;
}

.banner_slider .carousel-inner .carousel-item {
    height: 100%;
}

.banner_slider .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
    min-height: 580px;
}

.banner_slider .carousel-control-prev,
.banner_slider .carousel-control-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    opacity: 1;
    top: calc(50% - 22.5px);
}

.banner_slider .carousel-control-prev:hover,
.banner_slider .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.banner_slider .carousel-control-prev i,
.banner_slider .carousel-control-next i {
    font-size: 1.2rem;
}

.banner_slider .carousel-control-prev {
    left: .75rem;
}

.banner_slider .carousel-control-next {
    right: .75rem;
}

.banner_img {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    /* background-color: rgba(9, 8, 40, 0.7); */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* .home_banner::after {
    content: '';
    width: 45%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.85;
    background-color: #001723;
} */
.banner_boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
    z-index: 9;
}

.banner_boxes {
    padding-bottom: 2rem;
    gap: .8rem;
}

.box_items {
    background-color: #fff;
    padding: 1.8rem;
}

.box_items:first-child {
    background-color: #fff;
}

.box_items:nth-child(2) {
    background-color: #F3F3F3;
}

.box_head {
    display: flex;
    align-items: center;
    margin: 0 0 1.2rem;
}

.box_head h3 {
    flex: 1;
    margin: 0rem;
    font-weight: 500;
    font-size: 1.5rem;
}

.box_head a {
    font-weight: 500;
    font-size: 0.95rem;
}

.box_body .media {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.box_body h4 {
    line-height: 1.3;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    min-height: 45px;
}

.box_body h5 {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0 0px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.announce_body a {
    color: #000;
    line-height: 1.3;
    font-size: 1.1rem;
    /* margin-bottom: 1rem; */
    min-height: 35px;
}

.box_body h5 i {
    font-size: 1rem;
    color: #FF7B1C;
}

.web_link i {
    font-size: 1rem;
    color: #FF7B1C;
}

.web_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.web_link a {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.box_body .carousel-indicators [data-bs-target] {
    background-color: #CCCCCC;
    opacity: 1;
    margin: 0;
}

.box_body .carousel-indicators .active {
    background-color: #F68121;
}

.box_body .carousel-indicators {
    position: relative;
    margin: 0.5rem 0 0;
    justify-content: flex-start;
    gap: 0.2rem;
}

.media_icon {
    width: 100px;
}

.media_body {
    flex: 1;
}

.media_body h6 {
    font-size: 1.1rem;
}

.media_body p {
    font-size: .9rem;
    color: var(--text-color);
    font-weight: 400;
}

.banner_bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* msg section */
.msg_section {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-top: 3rem;
}

.president_img {
    background-color: #DBDFEA;
    padding: 0.7rem;
}

.president_img img {
    width: 150px;
    min-height: 165px;
    object-fit: cover;
}

.president_img_inner {
    background-color: #DBDFEA;
    padding: 0.7rem;
    width: 172px;
    margin-bottom: 2rem;
}

.president_img_inner img {
    width: 150px;
    min-height: 165px;
    object-fit: cover;
}

.president_content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.president_content p {
    color: var(--para-color);
    font-weight: 400;
    margin: 0 0 1rem;
}

/* training */
.app_section.primary_bg {
    background-color: #050827;
    position: relative;
}

.app_section.primary_bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('../../img/home/middle_banner.jpg');
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    opacity: 0.02;
}

.training_heading {
    margin: 4rem 4rem;
}

.training_heading h4 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}

.app_section.primary_bg.image2 {
    background-color: #050827e8;
}

.app_section.primary_bg.image2::before {
    background-image: url('../../img/home/middle_banner.jpg');
    opacity: 0.05;
}

.training_heading .underline::before {
    content: '';
    height: 2px;
    width: 80px;
    background-color: var(--primary-color);
    position: absolute;
    /* left: 0; */
    top: 0;

}

.training_heading .underline,
.primary_bg .underline {
    background-color: rgba(255, 255, 255, 0.3);
}

.training_heading .underline::before,
.primary_bg .underline::before {
    background-color: var(--primary-color);
    left: calc(50% - 25px);
}

.training_heading .underline {
    max-width: 300px;
    margin: 20px auto 0;
}

/* subscribe */
.app_section.subscribe_bg.image3 {
    background-color: rgb(6, 13, 59);
}

.app_section.subscribe_bg.image3::before {
    background-image: url('../../img/home/subscribe.jpg');
    opacity: .4;
}

.app_section.subscribe_bg {
    /* background-color: #060D3B; */
    position: relative;
}

.app_section.subscribe_bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('../../img/home/subscribe.jpg');
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    opacity: 0.02;
}

.section_subscribe {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    padding: 2rem 0;
}

.section_subscribe h2 {
    color: #fff;
    font-weight: 700;
    font-size: 2.3rem;
    flex: 1;
}

.input_box {
    display: flex;
    width: 100%;
}

.subscribe_input {
    width: 100%;
    max-width: 420px;
}

input[type=email],
select {
    padding: 12px 20px;
    margin: 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
}

.search_field,
.search_btn {
    margin: 0;
}

.search_btn {
    background-color: var(--primary-color);
    border: none;
    text-align: left;
    color: #fff;
    font-weight: 500;
    line-height: 1.1;
    padding: 1rem 2rem;
    border-radius: 0px;
}

.search_btn:hover {
    color: #fff !important;
}

/* about */
.about_section {
    display: flex;
    justify-content: space-between;
    /* padding: 4rem 0; */
    flex-wrap: wrap;
}

.about_content ul li {
    display: flex;
}

.about_content ul li span {
    flex: 1;
}

.about_content p {
    max-width: 600px;
    color: var(--para-color);
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about_img img {
    border-radius: 10px;
    max-width: 500px;
    height: 100%;
}

.about_content ul li::before {
    color: var(--primary-color);
    content: "\f058";
    font-family: "Font Awesome 5 Free" !important;
    padding-right: 15px;
}

.about_content ul li {
    line-height: 1.4;
    color: var(--para-color);
    max-width: 700px;
    margin-bottom: 10px;

}

/* gallery */
.section_header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
}

.home_gallery {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem -5px;
}

.gallery_item {
    width: 100%;
    padding: 0 5px;
}

.gallery_item img {
    height: 300px;
    object-fit: cover;
}

.gallery_grid .gallery_item {
    width: 100%;
}

/* footer */
.app_footer {
    background-color: var(--light-bg-color);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer_top {
    padding: 2.5rem 0;
}

.foot_brand .app_logo {
    max-width: 110px;
}

.foot_brand p {
    font-size: .9rem;
    line-height: 1.4;
    color: var(--para-color);
    font-weight: 400;
    max-width: 350px;
}


.foot_brand .app_logo {
    margin-bottom: 0.5rem;
}

.foot_nav {
    padding-top: 2rem;
}

.foot_nav h2 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #191A24;
}

.foot_nav ul li a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0;
}

.foot_nav ul li a:hover {
    color: var(--primary-color);
}

.foot_nav ul li a::before {
    content: "\EA6E";
    color: var(--primary-color);
    font-family: 'remixicon' !important;
}

.foot_address p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.foot_address i {
    color: var(--primary-color);
}

.foot_address a {
    color: var(--main-color);
}

.foot_address a:hover {
    color: var(--primary-color);
}

.foot_address span,
.foot_address a {
    flex: 1;
    font-weight: 400;
    color: var(--text-color);
}

.footer_bottom {
    background-color: #fff;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
    font-weight: 400;

}

.foot_bottom_flex {
    display: flex;
    align-items: center;
    padding: 0rem 0;
    justify-content: space-between;
}

.powered_by {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.powered_by svg {
    width: 170px;
}

.powered_by img {
    width: 170px;
}


.powered_by span {
    font-size: .63rem;
    position: relative;
    top: 3px;
    font-weight: 500;

}

/* inner pages */
.inner_banner {
    position: relative;
    background-color: #001723;
    padding-top: 12rem;
    padding-bottom: 2.5rem;
}

.inner_banner::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../../img/banner/banner-1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.inner_title {
    color: #fff;
    position: relative;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.breadcrumbs li::after {
    position: relative;
    top: 0.2rem;
    content: "\EA6E";
    font-family: remixicon !important;
    color: #FF7B1C;
    padding: 0 0.3rem;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs li a {
    color: #fff;
}

.app_title h1 {
    font-weight: 700;
    font-size: 3rem;
}

.dynamic_content ul {
    list-style: disc;
    padding-left: 30px;
    /* padding-top: 1rem; */
    /* margin: 0; */
    /* max-width: 600px; */
}

.dynamic_content ol {
    padding-left: 30px;
}

.dynamic_content ul li,
.dynamic_content ol li {
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5em;
    margin-bottom: 0.4rem;
}

.dynamic_content li strong {
    font-weight: 500;
}

.dynamic_content h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.app_heading_inner {
    /* padding-top: 3rem; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.objective_img img {
    max-width: 400px;
    height: 100%;
    border-radius: 10px;
}

.app_heading_inner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.app_heading_inner h2 span {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-color);
}

.founders_area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 2rem;
}

.founders_grid {
    background: #fff;
    border: 0.5px solid #E1E1EB;
    box-shadow: 0px 2px 30px 4px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    object-fit: cover;
}

.founders_img {
    border-radius: 6px 6px 0 0;
    object-fit: cover;
    overflow: hidden;
    position: relative;
}

.founders_content h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    text-align: center;
    font-weight: 600;
    margin-bottom: 3px;
}

.founders_content h4 {
    font-size: 1rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 400;
}

.founders_content h6 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

.founders_content {
    padding: 1rem;
}

.zone_members h5 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    /* padding-bottom: 1rem; */
}

.zone_members {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

/* contact */
.location_grid {
    margin-bottom: 1.5rem;
}

.location_box_icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
}

.form-label span {
    color: #f00;
}

.auth_modal .form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6f778c;
}

.auth_modal .form-group {
    margin-bottom: 1rem;
}

.location_map {
    margin-top: 2rem;
}

.location_map iframe {
    width: 100%;
    height: 460px;
    display: block;
}

.location_body p {
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.location_body a {
    font-size: 1.1rem;
}

/* members */
.member_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.member_section h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.member_section h6 {
    font-size: 1.1rem;
    font-weight: 500;
    /* text-decoration: underline; */
}

.table thead {
    background-color: #dbe6f6;
}

.table thead th {
    font-weight: 500;
}

.table th,
.table td {
    padding: 0.5rem 1rem;
}

.table td {
    padding: 1rem 1rem;
}

.nowrap td {
    white-space: nowrap;
}

.member_section .table-responsive {
    margin-top: 1rem;
}

/* EVENTS */
.nav-pills .nav-link {
    border-radius: 0;
    color: var(--primary-color);
    padding: 0.8rem 1.2rem;
    background-color: #eee;
    font-size: 1.1rem;
    min-width: 170px;
}

.app_tab {
    gap: 0.4rem;
    border-bottom: 1px solid #eee;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--primary-color);
}

.events_list {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1.5rem;
}

.events_list {
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.events_list:last-child {
    border: none;
}

.listing_title {
    font-size: 1.2rem;
}

h4.date_simple {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.listing_info span {
    color: var(--main-color);
    font-weight: 500;
}

.listing_info {
    font-weight: 400;
    color: var(--text-color);
    font-size: 0.95rem;
}

.event_label {
    background-color: #FF7B1C;
    color: var(--main-coloe);
    padding: 0px 9px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    min-width: 170px;
    text-align: center;
}

.event_label.label_2 {
    min-width: 90px;
}

/* COE */
.coe_btn {
    margin-top: 2.3rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.bg_dark {
    background-color: #0e1a68;
}

.coe_para {
    margin-top: 1.5rem;
}

.coe_para h6 {
    font-weight: 500;
    margin-bottom: 0;
}

.coe_para p span {
    color: var(--primary-color);
    font-weight: 500;
}

.coe_para h3 {
    /* margin: 0; */
    font-size: 2rem;
    font-weight: 600;
}

.coe_para h6 {
    font-size: 1.1rem;
    font-weight: 500;
    /* text-decoration: underline; */
}

.coe_para h5 {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: underline;
}

/* fellowship */
.fellowship_section h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.fellowship_img img {
    height: auto;
    max-width: 900px;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.fellowship_btns {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* journal */
.journal_btns {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.journal_img img {
    height: auto;
    max-width: 350px;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* news */
.news_section {
    padding-bottom: 5rem;
    padding-top: 2rem;
}

.news_grid {
    background: #fff;
    border: 1px solid #E1E1EB;
    object-fit: cover;
    margin: 0 0.5rem;
}

.news_img {
    /* border-radius: 6px 6px 0 0; */
    object-fit: cover;
    overflow: hidden;
    position: relative;
}

.news_content h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-width: 100%;
    height: 40px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_content h6 {
    font-size: .8rem;
    color: var(--text-color);
    font-weight: 400;
    /* text-align: center; */
}

.news_content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
}

.news_content {
    padding: 1rem;
}

.home_news {
    margin-top: 2rem;
}

.home_news_inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    ;
    gap: 1rem;
}

.news_inner h5 {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.5rem 0;
    color: var(--primary-color);
}

.dynamic_content.news_inner h2 {
    font-size: 1.8rem;
}

.news_logos img {
    height: auto;
    max-width: 130px;
}

.news_logos {
    padding: .5rem 0;
}

.news_content_inner h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
    max-width: 100%;
    margin: 0;
    /* height: 40px; */
}

.news_content_inner h6 {
    font-size: .8rem;
    color: var(--text-color);
    font-weight: 400;
    /* text-align: center; */
}

.news_content_inner {
    padding: 1rem;
}

/* backtotop */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    z-index: 99;
}

.join_nav_btn {
    display: none;
}

/* announcement */
.listing_block h3 {
    font-size: 1.05rem;
    margin: 0 0 5px;
    color: var(--main-color);
}

.listing_block h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0 0px 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.listing_block h4 i {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.listing_block img {
    max-width: 620px;
    margin-top: 0.6rem;
}

.listing_block h5 {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.listing_block h5 i {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.listing_block {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

/* gallery */
.gallery_grid_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.gallery_grid_items img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
}

.in_this_section {
    background-color: var(--light-bg-color);
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-radius: 4px;
    border: 0.5px solid #E1E1EB;
    position: sticky;
    top: 175px;
}

.in_this_section h2 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.in_this_section li {
    border-bottom: 1px solid #ddd;
}

.in_this_section li:last-child {
    border-bottom: 0;
}

.in_this_section li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.in_this_section li a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 0;
    /* display: block; */
}

.in_this_section li.active a {
    color: var(--primary-color);
}

.in_this_section li a::before {
    color: var(--primary-color);
    content: "\EA6E";
    font-family: remixicon !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: none;
    color: #012970;
    background-color: #e1e9fa;
}

.accordion-button:not(.collapsed) {
    color: #012970;
    background-color: #e1e9fa;
}

.accordion-button {
    color: #012970;
    background-color: #e1e9fa;
}

.sections {
    padding: 0.5rem 0;
}

.wrap_none {
    flex-wrap: nowrap;
}

.align_item_start {
    align-items: flex-start !important;
}

.button_grid_box.gradient {
    background: linear-gradient(53deg, rgba(8, 62, 169, 0.90) 47.51%, rgba(90, 127, 202, 0.90) 100%);
    /* background: linear-gradient(53deg, rgb(0 34 102) 47.51%, rgb(48 101 208 / 92%) 100%); */
    /* position: absolute; */
    overflow: hidden;
    background-color: #fff;
    padding: 2rem;
    height: 100%;
    width: 100%;
}

.button_grid_box.gradient::before {
    content: '';
    background-image: url(../../img/home/picture2.jpg);
    opacity: .1;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.banner_box_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    height: 100%;
}

.box_content h2 {
    font-size: 1.3rem;
    color: #fff;
    padding: .5rem 0;
    margin: 0;
}

.join_btn {
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 5px;
    padding: .8rem 1.2rem;
}

.join_btn:hover {
    color: var(--primary-color) !important;
}

.box_items.bg_blue {
    padding: 0;
    position: relative;
}

.box_img img {
    width: 40px;
}

.box_content p {
    font-size: 0.9rem;
    color: #fff;
    max-width: 300px;
}
.endorsement_head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.endorsement_head h3{
    margin: 0;
}

@media screen and (max-width: 1398px) {
    .banner_bottom {
        position: static;
        bottom: 0;
        width: 100%;
        margin-top: .75rem;
    }

    .banner_bottom .container {
        max-width: 100%;
    }

    .banner_content {
        padding-bottom: 0;
    }

    .banner_boxes {
        padding-bottom: .75rem;
    }
}

@media screen and (max-width: 1199px) {
    .app_logo h2 {
        font-size: 1rem;
    }

    .app_header .container {
        max-width: 100%;
    }

    .banner_img img {
        min-height: 30rem;
    }

    .gallery_grid .gallery_item img {
        height: 170px;
    }

    .about_section {
        gap: 2rem;
    }

    .banner_slider .carousel-inner .carousel-item img {
        min-height: 850px;
    }

    .msg_section {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 991px) {

    .header_grid {
        grid-template-columns: 120px calc(100% - 120px);
    }

    .app_header .container {
        padding: 0;
    }

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

    .hamburger_menu {
        display: flex;
    }

    /* .header_right {
        border-top: 1px solid #eee;
        margin: 0 -0.75rem;
        padding: 0.2rem 0.75rem;
    } */
    .header_nav {
        position: fixed;
        width: 320px;
        height: 100%;
        background-color: #fff;
        top: 0;
        padding: 4rem 0 2rem;
        overflow-y: auto;
        z-index: 9;
        transition: all 0.2s ease-in-out;
        flex-direction: column;
        /* gap: 1.3rem; */
    }

    .header_nav {
        left: -320px;
    }

    .sidenav_open .header_nav {
        left: 0;
    }

    .app_nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .app_nav ul a {
        color: var(--main-color) !important;
    }

    .app_nav {
        width: 100%;
    }

    .app_nav {
        justify-content: flex-start;
        flex: initial;
        margin-bottom: 1.5rem;
    }

    .app_nav ul {
        align-items: flex-start;
        width: 100%;
    }

    .app_nav ul a {
        padding: 0.2rem 1.5rem;
        width: 100%;
        display: block;
    }

    .nav_close {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        padding: 0.2rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links .mobile-item::before {
        position: relative;
        bottom: 2px;
    }

    .nav-links .mobile-item:hover {
        color: var(--primary-color);
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        padding: 0 0 0 1rem !important;
    }

    .nav-links .drop-menu li:first-child {
        padding-top: 0.5rem;
    }

    .nav-links .drop-menu li:last-child {
        padding-bottom: 0.5rem;
    }

    #showDrop:checked~.drop-menu {
        max-height: 180px;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }

    #showDrop:checked~.drop_ico::after {
        transform: rotate(180deg);
    }

    #showDrop2:checked~.drop-menu {
        max-height: 180px;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }

    #showDrop2:checked~.drop_ico::after {
        transform: rotate(180deg);
    }

    .header_top {
        border: none;
    }

    .header_social {
        display: none;
    }

    .header_top {
        justify-content: flex-end;
    }

    .drop_ico.desktop-item {
        display: none !important;
    }

    .nav_overlay.active {
        visibility: visible;
        opacity: 1;
        z-index: 1;
    }

    .social_icons {
        flex: 1;
    }

    .social_icons {
        gap: 1rem;
    }

    .social_icons a {
        padding-left: 0;
        padding-right: 0;
    }

    .banner_boxes {
        grid-template-columns: 100%;
    }

    .about_section {
        gap: 2rem;
    }

    .training_heading {
        margin: 1rem 1rem;
    }

    .founders_area {
        grid-template-columns: repeat(2, 1fr);
    }

    .coe_btn {
        gap: 1rem;
    }

    .coe_btn .app_btn {
        padding: 0.8rem .8rem;
        display: inline-flex;
        align-items: center;
        text-align: center;
        font-size: .7rem;
        font-weight: 600;
        white-space: nowrap;
        border: none;
        background-color: var(--primary-color);
        border-radius: 0px;
        color: #fff;
    }

    .dynamic_content h2 {
        font-size: 1.6rem;
    }

    .app_title h1 {
        font-size: 2rem
    }

    .app_nav li.active a {
        box-shadow: none;
    }

    .banner_content_wrap {
        max-width: 100%;
    }

    .event_section .container {
        max-width: 100%;
    }

    .app_section .container {
        max-width: 100%;
    }

    .section_subscribe {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 0;
    }

    .home_news_inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .president_section .container {
        max-width: 100%;
    }

    .inner_announce {
        max-width: 100%;
    }

    .gallery_grid_list {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .gallery_grid_items img {
        height: 180px;
    }

    .in_this_section {
        display: none;
    }

    .header_right.mob-view {
        display: block;
    }
    .header_right .menu_icons{
        display: none;
    }
    .header_right.mob-view .menu_icons {
        display: block;
    }
}


@media screen and (max-width: 767px) {
    .app_header {
        position: sticky;
        top: 0;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    }

    .header_brand img {
        width: 120px;
    }

    .app_logo {
        display: flex;
        /* justify-content: center; */
        align-items: center;
        gap: .5rem;
    }

    .home_banner::before {
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto 100%;
    }

    .home_banner::after {
        background: rgba(0, 23, 35, 0.9);
        opacity: 1;
        width: 100%;
    }

    .banner_content_wrap {
        max-width: 100%;
    }

    .banner_content {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .banner_slider .carousel-control-prev,
    .banner_slider .carousel-control-next {
        top: auto;
        bottom: 2rem;
    }

    .banner_slider .carousel-control-next {
        right: auto;
        left: 4.5rem;
    }

    .img_overlay {
        padding-bottom: 5rem;
    }

    .wrap_title h1 {
        font-size: 2rem;
    }

    .banner_content_wrap p {
        font-size: 1rem;
    }

    .gallery_item img {
        height: 200px;
    }

    .foot_flex {
        flex-direction: column;
    }

    .inner_banner {
        padding-top: 5rem;
    }

    .contact_location {
        margin-bottom: 3rem
    }

    .events_list {
        flex-direction: column-reverse;
        gap: 0;
        align-items: flex-start;
    }

    .banner_slider .carousel-inner .carousel-item img {
        min-height: 550px;
    }

    .img_overlay .container {
        max-width: 100%;
    }

    .header_grid {
        margin-top: 0;
    }

    .gallery_grid_list {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media screen and (max-width: 520px) {
    .app_logo h2 {
        display: none;
    }

    .app_logo h1 {
        display: block;
        font-size: 1.2rem;
        font-weight: 700;
        color: #000;
        margin: 0;
    }

    .header_event_btn .btn_sm {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }

    .header_flex {
        padding: 0 .8rem;
    }

    .primary_btn {
        font-size: .8rem;
    }

    .banner_img img {
        min-height: 40rem;
    }

    .section_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 2rem;
    }

    .home_gallery {
        flex-direction: column;
    }

    .gallery_item {
        width: 100%;
    }

    .app_heading h2 {
        font-size: 2rem;
    }

    .founders_area {
        grid-template-columns: 100%;
    }

    .home_news_inner {
        grid-template-columns: 100%;
    }

    .inner_banner {
        padding-top: 2rem;
    }

    .fellowship_section h3 {
        font-size: 1.6rem;
    }

    .fellowship_btns {
        gap: 1rem;
        margin-top: 1rem;
    }

    .journal_btns {
        gap: 1rem;
        margin-top: 1rem;
    }

    .section_subscribe {
        padding: 0;
    }

    .menu_bar {
        padding: 0 0.1rem;
    }

    .section_subscribe h2 {
        text-align: center;
    }

    .secondary_btn {
        font-size: .8rem;
    }

    .copyright {
        text-align: center;
    }

    .header_event_btn .secondary_btn {
        display: none;
    }

    .join_nav_btn {
        display: block;
    }

    .sub_menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0.8rem;
    }

    .app_section {
        padding: 2rem 0;
    }

    .gallery_grid_items img {
        height: 140px;
    }

    .foot_bottom_flex {
        flex-direction: column;
        gap: 0.6rem;
    }

    .powered_by {
        margin: 0;
    }

    .member_head.wrap_none.align_item_start {
        flex-wrap: wrap !important;
    }
}

@media screen and (max-width: 420px) {
    .header_event_btn {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        padding: 5.2px 0;
        width: 100%;
    }
}

label.error {
    color: #f00;
}

.modal-open {
    overflow: auto !important;
    padding-right: 0px !important;
}


.btn-back {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M7.82843%2010.9999H20V12.9999H7.82843L13.1924%2018.3638L11.7782%2019.778L4%2011.9999L11.7782%204.22168L13.1924%205.63589L7.82843%2010.9999Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

.btn-back:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}

.btn-back:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    opacity: 1;
}

.btn-back:disabled,
.btn-back.disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: 0.25;
}

.btn-back:focus {
    box-shadow: none;
    border: none;
}

.btn-back {
    width: 1em;
    height: 1em;
    border: 0;
    background-color: #eee;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 10px;
    background-size: 57%;
    z-index: 9;
}

.intl-tel-input {
    width: 100%;
}

.iti-flag span {
    display: none;
}