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

*:focus {
    outline: none;
}

:root {
    --main-bg-color: #ffffff;
    --light-bg-color: #F9F9FF;
    --text-color: #000000;
    --head-color: #06265F;
    --main-color: #000000;
    --primary-color: #0D2E69;
    --secondary-color: #F68121;
    --primary-font: 'Open Sans', sans-serif;
    --secondary-font: 'Franklin-regular';
}

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;
}

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;
}

.hero_btn:hover {
    color: #fff;
}

a:focus {
    text-decoration: none;
}

p {
    -moz-text-shadow: none;
    -ms-text-shadow: none;
    text-shadow: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.8;
}

.btn {
    border-radius: 0;
    padding: 0.9rem 1.7rem;
    display: inline-flex;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    gap: 0.5rem;
}

.dynamic_content .btn {
    /* white-space: initial; */
}
.dynamic_content p span{
    color: var(--primary-color);
}
.btn i {
    transition: all 0.2s ease-in-out;
}

.btn:hover i {
    margin-left: 0.4rem;
}

.btn:focus {
    box-shadow: none;
}
@font-face {
    font-family: 'TiemposHeadline-Black';
    src: url(/fonts/TiemposHeadline-Black.otf);
  }
  @font-face {
    font-family: 'TiemposHeadline-Bold';
    src: url(/fonts/TiemposHeadline-Bold.otf);
  }
  @font-face {
    font-family: 'TiemposHeadline-Semibold';
    src: url(/fonts/TiemposHeadline-Semibold.otf);
  }
  @font-face {
    font-family: 'Franklin-regular';
    src: url(/fonts/Franklin-regular.ttf);
  }

/* header */

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

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

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

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

.marquee-with-options ul li a {
    color: var(--secondary-color);
    font-size: 0.8rem;
}
.js-marquee li:last-child::after {
    display: none;
}
.top_header {
    padding: 8px 0;
    background-color: #1D2240;
}

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

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

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

.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;
    border-radius: 50%;
    background-color: #fffbf9;
    margin-right: 10px;
}

.hamburger_menu i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.app_logo h2 {
    font-size: 0.9rem;    
    font-weight: 600;
    /* padding-top: 5px; */
    /* text-transform: uppercase; */
    white-space: nowrap;
    color: #000;
    margin: 0 !important;
    font-family: 'Poppins', sans-serif;
}

.app_logo h1 {
    display: none;
}

.member_login a {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    gap: 0.4rem;
    border-radius: 5px;
    white-space: nowrap;
}

.member_login i {
    font-size: 1rem;
}


/* menu */

.menu_sections{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.header_nav {
    display: flex;
    align-items: center;
    flex: 1;
}

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

.app_nav ul a {
    color: #000000 !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.9rem 0rem;
    position: relative;
}

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

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

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

.app_btn {
    padding: 0.7rem 1.8rem;
    display: inline-flex;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    border: none;
}
.join_btn {
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 5px;
    padding: .8rem 1.2rem;
}

.join_btn:hover {
    color: var(--primary-color) !important;
}
.calculate_btn {
    background-color: #fff;
    color: var(--secondary-color);
    border-radius: 5px;
    padding: .8rem 1.2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: .8rem;
}
.application_btn {
    background-color: #4e89ee;
    color: #fff;
    border-radius: 5px;
    padding: .8rem 1.2rem;
}
.application_btn:hover {
    color: #fff !important;
}
.read_btn_small {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 5px;
    padding: .5rem 1rem;
}
.read_btn_small:hover {
    color: #fff !important;
}
.primary_small_btn:hover {
    color: #fff !important;
}
.primary_small_btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-size: .7rem;
}
.calculate_btn:hover {
    color: var(--secondary-color) !important;
}
.primary_btn {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 5px;
    padding: .8rem 1.2rem;
}
.primary_btn.viewall{
    padding: 0.8rem 2rem;
}
.primary_btn:hover {
    color: #fff !important;
}
.bottom_btn {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 5px;
    padding: .8rem 1.4rem;
    font-weight: 500;
    width: 100%;
    justify-content: center;
}

.bottom_btn:hover {
    color: #fff !important;
}
.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;
}

.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;
    border-radius: 50%;
    background-color: #fffbf9;
    margin-right: 10px;
}

.hamburger_menu i {
    color: var(--main-color);
    font-size: 1.2rem;
}

.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: 2rem 0;
}

.about_area {
    padding-top: 5rem;
    padding-bottom: 2rem;
}
.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;
}

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

.social_icons {
    gap: 0.3rem;
}

.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_title {
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    color: #fff;
    font-weight: 700;
    font-size: 2.4rem;
    margin: 0;
}

.breadcrumb {
    position: relative;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #fff;
}

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

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "\EA6E";
    font-family: remixicon !important;
}

.inner_page {
    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: 0.9rem;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 400;
    border-radius: 0px;
    color: #000 !important;
}
.nav-links li a:hover {
    color: var(--secondary-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: #ffffff;
    /* border-top: 1px solid rgba(232, 232, 232, 1); */
}
.header_right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.app_header {
    z-index: 99;
    position: sticky;
    top: 0;
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.1);
}
.login_btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0.7rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 5px;
}
.event_logo img{
    width: 75px;
}
.login_btn:hover {
    color: #fff;
}
.header .search-bar {
    min-width: 360px;
    padding: 0 20px;
}
.header .search-form {
    width: 100%;
}
.header .search-form input {
    border: 0;
    font-size: 14px;
    color: #012970;
    border: 1px solid rgba(1, 41, 112, 0.2);
    padding: 7px 38px 7px 8px;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}
.header .search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: none;
}
.header .search-form button i {
    color: #012970;
}
.has-search .form-control {
    padding-left: 2.375rem;
}
.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}
#search::placeholder{
    font-size: .8rem;
    color: #aaa;

}
#search:focus{
    -webkit-box-shadow: none;
    box-shadow: none;
}
.menu_icons{
    display: flex;
    gap: 0.5rem;
}
.menu_icons a{
    color: #B6B6B6;
    font-size: 1.3rem;
}
.menu_right{
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}
/* banner */

.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: 500px;
}

.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: rgb(0 0 0 / 26%);
    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: 1rem;
}

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

.img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: rgb(0 0 0 / 63%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.img_overlay .row{
    justify-content: center;
    text-align: center;
}
.banner_content {
    color: #fff;
}

.banner_content h1 {
    color: #fff;
    font-weight: 600;
    font-size: 3rem;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.banner_content h3 {
    color: #fff;
    line-height: 1.8;
    font-size: 1.3rem;
    font-weight: 400;
}

.banner_content a {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
}

.banner_slide_box {
    border: 1px dashed;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.048);
    margin-bottom: 1.5rem;
}

.banner_slide_box h5 {
    color: #fff;
}

.banner_slide_box p {
    color: #fff;
    margin: 0;
}

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

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

.main_header {
    background-color: #fff;
}
/* timeline */

.timeline_content {
    width: 100%;
  }
  
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    /* background-color: rgb(0, 0, 0); */
    border: none;
    border-left: 3px dotted #C0C5C9;
    top: 0;
    bottom: 0;
    left: 0;
    /* margin-left: -3px; */
}
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 13px;
}
.timeline_area {
    padding: 0 2.5rem;
    position: relative;
    background-color: inherit;
    /* width: 50%; */
  }
.timeline_content h5{
    font-size: 1rem ;
    color: var(--primary-color);
    font-weight: 600;
}
.timeline_area::after {
    content: '\ED04';
    font-family: 'remixicon' !important;
    color: #fff;
    position: absolute;
    width: 30px;
    height: 30px;
    right: -17px;
    /* background-color: white; */
    background: linear-gradient(58.67deg, #4A82F0 19.88%, #75A1FA 89.86%);
    /* border: 4px solid #FF9F55; */
    top: 0;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right {
    /* left: 50%; */
}
.right::after {
    left: -13px;
}
  
/* BMI box */
#input_bmi{
    width: 100%;
}
.calculator_grid_box {
    background-color: #fff;
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0px 2px 30px 4px rgba(0, 0, 0, 0.07);
}
.calculator_grid_box h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.calculator_grid_box.gradient {
    background: linear-gradient(180deg, #FCA146 0%, #D36E0A 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}
.calculate_box{
    flex: 1;
}
.calculator_grid_box.gradient::before {
    content: '';
    background-image: url('../../img/Home/picture-2.jpg');
    opacity: 0.1;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.bmi_box_content{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem .5rem;
}
.bmi_box_content p{
    color: #fff;
    font-size: .8rem;
    font-weight: 300;
}
.bmi_box_content h2{
    font-size: 1.1rem;
    color: #fff;
    padding: .5rem 0;
    margin: 0;
}

.academic_img img {
    border-radius: 10px;
    /* max-width: 600px; */
    height: 100%;
}
.content_block.second{
    padding-top: 6rem;
}

/* ********************************************* */



.event_area{
    gap: 3rem;
}
.calculator_info{
    padding: 1.5rem 2rem;
    border-radius: 5px;
    
}
.calculator_boxes {
    position: relative;
    width: 100%;
}
.bmi_overlay::before{
    content: '';
    background-image: url(../../img/Home/picture-2.jpg);
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.bmi_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: linear-gradient(55.64deg, rgba(246, 129, 33, 0.9) 50.11%, rgba(255, 180, 119, 0.9) 100%);
    border-radius: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* #input_bmi input[type=text], select {
    width: 100%;
    padding: 8px 15px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 1);
    color: #fff;
    background: rgba(255, 255, 255, 0.217);
    border-radius: 4px;
    box-sizing: border-box;
} */
#country input[type=text], select {
    width: 100%;
    padding: 8px 15px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 1);
    /* color: #fff; */
    background: rgba(255, 255, 255, 0.217);
    border-radius: 4px;
    box-sizing: border-box;
}
input[type=text]::placeholder{
    color: #fff;
    font-size: .8rem;
    font-weight: 300;
}
/* banner bottom */

.button_grid_box {
    background-color: #fff;
    border-radius: 6px;
    padding: 3rem;
    
}
.button_grid_box.gradient {
    background: linear-gradient(53deg, rgba(8, 62, 169, 0.90) 47.51%, rgba(90, 127, 202, 0.90) 100%);
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.button_grid_box.gradient::before {
    content: '';
    background-image: url('../../img/Home/picture-1.jpg');
    opacity: .1;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.button_grid_box h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.gradient_box_content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.gradient_box_content h2 {
    color: #fff;
}

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

.banner_box_content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    height: 100%;
}
.box_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: linear-gradient(55.64deg, rgba(74, 129, 240, 0.916) 50.11%, rgba(117, 161, 250, 0.925) 100%);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.box_img img{
    width: 40px;
    height: auto;
}
.box_info{
    position: absolute;
    overflow: hidden;
}
.box_info::before{
    content: '';
    background-image: url(../../img/Home/picture-1.jpg);
    /* border-radius: 5px; */
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.banner_boxes {
    margin: -80px 0 0 0;
    /* position: relative; */
    bottom: 30px;
    left: 0;
}
.box_info{
    padding: 1.5rem 2rem;
    border-radius: 5px;
    /* gap: 3.4rem; */
    width: 100%;
}
.bottom_section{
    position: relative;
}
.bottom_section::before {
    content: '';
    background-color: #1D2240;
    /* background: linear-gradient(137deg, #09214C 20.4%, #113A85 72.2%); */
    width: 100%;
    height: calc(100% - 40px);
    position: absolute;
  }
.search_heading h4{
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}
.bottom_box{
    padding: 2rem 0 0;
    position: relative;
}
.form-control-borderless {
    border: none;
}
.form-control-borderless:hover, 
.form-control-borderless:active, 
.form-control-borderless:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.card-body {
    padding: .6rem 1rem;
}

.form-control::placeholder{
    font-size: 1rem;
    color: #959595;
}
#country-state{
    border: 0;
}
#country-state::placeholder{
    font-size: 1rem;
    color: #959595;
}
.bottom_search{
    border-right: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bottom_location{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.search_bottom_box{
    padding: 0 1rem;
    align-items: center;
    display: grid;
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    grid-template-columns: 1fr 1fr 100px;
    gap: 1rem;
}
.form-control-lg{
    padding-left: 0;
    margin: 0;
    font-size: 1rem;
    padding-right: 20px;
}
.search_icon i{
    font-size: 1.3rem;
}
#country-state{
    color: #000;
    padding-left: 0;
    font-size: 1rem;
}
/* about home */
.about_content h2{
    font-weight: 700;
    font-size: 2.2rem;
}
.primary_outline_btn {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}.light_bg{
    background-color: #F6F6F9;
}

/* footer */
.app_footer {
    border-top: 0.5px solid #E1E1EB;
    background-color: #1D2240;
}
.footer_top {
    padding: 1.5rem 0;
    color: #fff;
}
.foot_brand .app_logo {
    max-width: 70px;
    margin-bottom: 0.2rem;
}
.foot_brand h4{
    font-size: 1rem;
}
.foot_brand h2{
    font-size: 1rem;
    font-weight: 500;
    padding-top: 1.5rem;
    line-height: 1.5;
}
.foot_brand{
    display: flex;
    gap: 1rem;
    align-items: center;
}
.foot_logo {
    max-width: 60px;
    transition: all 0.2s ease-in-out;
}
.foot_nav h2 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}
.footer-social a i{
    color: #fff;
    font-size: 1.5rem;
}
.footer-social a i:hover{
    color: var(--secondary-color);
}
.footer-social{
    display: flex;
    gap: 0.8rem;
}
.foot_nav li a {
    font-size: 0.9rem;
    color: #404253;
    display: flex;
    padding: 0.4rem 0;
}
.foot_nav {
    padding-top: 1rem;
}
.footer_bottom {
    border-top: 1px solid #294a826b;
    padding: 0.8rem 0;
}
.foot_bottom_flex {
    display: flex;
    align-items: center;
    /* padding: 0rem 0; */
    justify-content: space-between;
}
.copyright {
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
}
.powered_by {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* margin: .6rem 0; */
    /* padding-right: 1.2rem; */
}

.powered_by img {
    /* max-width: 150px; */
    width: 170px;
}

.powered_by span {
    font-size: .53rem;
    position: relative;
    top: 2px;
    color: #fff;
    font-family: 'Poppins', sans-serif;

}
.foot_nav ul li a::before {
    content: "\EA6E";
    color: var(--primary-color);
    font-family: remixicon !important;
    padding-right: .7rem;
}
.foot_nav_contact h2 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.foot_nav_contact li a {
    font-size: 0.9rem;
    color: #404253;
    display: block;
    padding: 0.4rem 0;
}
.foot_nav_contact {
    padding-top: 1rem;
}
.foot_nav_contact li a i{
    color: var(--secondary-color);
    padding-right: .7rem;
    font-size: 1rem;
}
.foot_address p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 10px;
}
.foot_address i {
    color: var(--secondary-color);
}
.foot_address a {
    color: #fff;
    font-size: .9rem;
    word-wrap: anywhere;
}
.foot_address a:hover {
    color: var(--secondary-color);
}
.foot_address span,
.foot_address a {
        flex: 1;
}
.foot_address p{
    font-size: .9rem;
}
.foot_address p span{
    line-height: 1.6;
}

#menu-footer-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1rem;
}
.footnav ul li a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.footnav ul li a::before {
    content: "\EA6E";
    color: var(--secondary-color);
    font-family: "remixicon" !important;
}
.footnav h2 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}
.footnav{
    padding-top: 1rem;
}
/* blog section */
.blog_section_header{
    padding-top: 3rem;
}
.blog_section_header h2{
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
}
.blog_section{
    padding-bottom: 1.5rem;
    background-color: #F6F6F9;
}
.blog_img img{
    border-radius: 5px;
}
.blog_section_header p{
    text-align: center;
    white-space: pre-line;
}
.blog_items{
    /* background-color: #fff; */
    /* box-shadow: 0px 2px 30px 4px rgba(0, 0, 0, 0.046); */
}
.blog_box_content h4 {
    color: var(--secondary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.blog_box_content{
    margin-top: 1rem;
}
.blog_box_content h4 i {
    font-size: 1.1rem;
    color: #F68121;
}
.blog_box_content span{
    color: #404253;
}
.blog_box_content h6{
    font-weight: 600;
    font-size: .9rem;
    color: #191A24;
}
.blog_box_content p{
    font-size: .8rem;
    margin-top: .7rem;
}
.blog_btn{
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}
.blog_btn{
    padding-top: 2rem;
}
/* events */
.event_section{
    padding: 6rem 0 4rem;
    margin-top: -3rem;
}
.event_section.bg_gray{
    background-color: #F6F6F9;
}
.block_head{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    color: var(--head-color);
}
.block_head h3{
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--secondary-font);
}
.block_head a{
    text-decoration: underline;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}
.block_head.center{
    display: flex;
    justify-content: center;
    font-family: var(--secondary-font);
}
.block_body h5 i {
    font-size: 1rem;
}
.block_body h4 {
    line-height: 1.1;
    font-size: 1rem;
    margin-bottom: .7rem;
}
.block_body .carousel-indicators [data-bs-target] {
    background-color: #CCCCCC;
    opacity: 1;
    margin: 0;
}

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

.block_body .carousel-indicators {
    position: relative;
    justify-content: flex-start;
    gap: 0.2rem;
    margin: 0 !important;
}
.block_body{
    width: 100%;
    padding-bottom: 2rem;
}
.timeline_head {
    margin-bottom: 1.5rem;
}

.timeline_head h3 {
    flex: 1;
    margin: 0;
    font-weight: 600;
    font-size: 1.4rem;
}
.block_card {
    padding: .5rem 0;
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    min-height: 86px;
}
.card_image img{
    width: 90px;
    border-radius: 5px;
}
.card_body {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.card_body h3 {
    font-size: 1.05rem;
    margin: 0 0 5px;
    color: var(--main-color);
}
.card_body h2 {
    font-size: .9rem;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--main-color);
}
.card_body h4 {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0 0px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card_body h4 i {
    font-size: 1.1rem;
    color: #F68121;
}
.card_body span{
    color: #404253;
    font-weight: 400;
}
.card_body h5 i {
    font-size: 1.1rem;
    color: var(--primary-color);
}
.card_body h5 span{
    font-size: .8rem;
    color: #404253;
}
.card_body h4 span{
    font-size: .8rem;
    color: #404253;
}
.card_body h5 {
    margin: 0 0px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.card_body_content {
    flex: 1;
}
/* inner banner */
.inner_banner {
    background-color: #242236;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.inner_banner::before {
    content: '';
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url('../../img/banner/inner-banner.jpg');
    position: absolute;
    top: 0;
    background-position: top;
    opacity: 0.1;
}
.dynamic_content h1,
.dynamic_content h2{
    font-weight: 600;
}
.dynamic_content h3{
    font-weight: 300;
    color: var(--primary-color);
}
.dynamic_content h1 {
    margin-bottom: 1rem;
}
.dynamic_content ul {
    list-style: disc;
    padding-left: 15px;
}
.dynamic_content h4{
    margin-bottom: 1rem;
}
.dynamic_content ul li {
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.5em;
    margin-bottom: 0.4rem;
}
.dynamic_content ol li {
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.5em;
    margin-bottom: 0.4rem;
}

.dynamic_content h1 {
    padding-bottom: 0.5rem;
}

.dynamic_content h1::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    margin-top: 0.7rem;
}
.dynamic_content h5{
    text-align: center;
    font-weight: 700;
}
.dynamic_content h6{
    font-size: 1rem;
    font-weight: 500;
}
.dynamic_content h6 span{
    font-weight: 400;
}
.in_this_section {
    /* background-color: var(--light-bg-color); */
    /* background: linear-gradient(180deg, #003CA7 0%, #042053 100%); */
    /* padding: 1.5rem; */
    padding-bottom: 0.1rem !important;
    border-radius: 10px;
    /* border: 0.5px solid #E1E1EB; */
    position: sticky;
    top: 135px;
    /* box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.029); */
}

.in_this_section li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4e89ee;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    display: block;
}

.in_this_section li a:hover {
    color: var(--secondary-color)
}

.in_this_section li a::before {
    /* color: #4e89ee; */
    content: "\EA6E";
    font-family: remixicon !important;
}
.in_this_section li.active a ::before{
    color: var(--secondary-color);
}

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

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

.in_this_section h2 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}
.pdf_area img{
    width: 20px;
}
.pdf_area{
    display: flex;
    align-items: center;
    gap: .5rem;
}
.online_application{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.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;
}
.cico_link a{
    font-size: 1.5rem;
}
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    border: 1px solid #ccc;
}
table {
    border-collapse: collapse;
}
.table thead {
    background-color: #dbe6f6;
}
.table thead th{
    font-weight: 500;
}
.table td{
    padding: 1rem 1rem;
}
.table td a{
    font-size: .9rem;
}
.ceo_table .table td{
    font-size: .9rem;
}
article a {
    color: #41A5A7;
}
.panel h4{
    font-size: 1.2rem;
    color: var(--primary-color);
}
.coe_logo{
    width: 250px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1rem;
}
.course_exam {
    background: #fff3e9;
    min-height: 140px;
    display: flex;
    align-items: start;
    gap: 1rem;
}
.course_exam img{
    width: 200px;
}
.course_exam_content {
    /* display: flex; */
    margin-top: .5rem;
}
.course_exam_content h3{
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
}
.doctor_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.doctor_item {
    display: flex;
    justify-content: center;
}
.doctor_item_body {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    background-color: #fbfbfd;
    padding: 1rem;
    border-radius: 4px;
    border: 0.5px solid #E1E1EB;
    width: 100%;
}
.doctor_pic {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    /* border: 2px solid var(--primary-color); */
    margin-bottom: 0.5rem;
}
.doctor_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.doctor_item_body h4{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}
.doctor_item_body h5{
    font-weight: 500;
    font-size: 1.1rem;
}
.cico_table .table td {
    font-size: 0.9rem;
}
.cico_table{
    margin-top: 3rem;
}
.cico_table td h2 strong{
    font-size: 1.2rem;
}
.cico_table .tg-tp{
    background-color: #f5f5f5;
    text-align: center;
}
.cico_table .tg-dt{
    text-align: center;
}
.cico_table .tg-details{
    text-align: center;
}
.cico_table table{
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}
.tg-date, .tg-topic, .tg-speaker{
    text-align: center;
}
.tba_head h2{
    font-size: 1.3rem;
    margin: 2rem 0;
}
.tg-wk, .tg-tm, .tg-day, .tg-day1 {
    padding: 1rem 1rem;
}
.publication_table table tr{
    border-color: inherit;
    border-style: solid;
}
.fmbs_table table tr{
    background-color: #f8f8f8;
}
.news_list{
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px dashed #b3b3b3;
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}
.news_list:last-child {
    border: none;
}
.listing_title {
    font-size: 1.2rem;
}
h4.date_simple {
    font-weight: 300;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.listing_info {
    font-weight: 300;
    color: var(--text-color);
    font-size: 0.95rem;
}
.news_btn{
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 5px;
    font-size: .75rem;
    padding: 0.4rem 1rem;
    white-space: nowrap;
}
.news_btn:hover{
    color: #fff;
}
.news_list_body h3{
    font-weight: 400;
    font-size: 1.2rem;
}
.formHead {
    background: #FF8D11;
    color: #ffffff;
    padding: 5px 10px;
}
.nutrition_img {
    max-width: 70%;
}
.bmi_table td{
    border: 1px solid #b3b3b3;
}
.surgery_types_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* padding-top: 3rem; */
}
.surgery_types_box {
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    /* background: #f1f1f1; */
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
    /* border-left: 6px solid var(--primary-color); */
    text-align: start;
}
.surgery_types_box a{
    font-size: .8rem;
}
.surgery_types_heading{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.surgery_types_heading a{
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--main-color);
}
.surgery_types_content{
    display:flex ;
    flex-direction: column;
    height: 100%;
}
.surgery_types_content p{
    flex: 1;
}
.surgery_types_icon{
    min-width: 50px;
    height: auto;
}
.bariatric_img{
    max-width: 70%;
}
.rps_img{
    float: right;
    margin: 0 0 10px 10px;
}
.rps_block{
    display: flex;
    justify-content: center;
    
}
.rps_img img{
    min-width: 200px;
    width: auto;
}
.img_rps{
    float: right;
    margin: 0 0 10px 10px;
}
.novel_img{
    max-width: 80%;
}
.news_details_body h3{
    font-size: 2rem;
}
.news_details_body h4 {
    font-weight: 300;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: .4rem;
}
.find_member_top{
    clear: both;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px dashed #999;
    text-align: center;
}
.sel_reg {
    display: inline-block;
    vertical-align: top;
}
.find_member_block .search_bottom_box{
    background-color: #f3f3f3;
}
.find_member_block .ri-search-line:before {
    /* color: #fff; */
}
.find_member_block .form-control-lg{
    /* padding-left: 10px;s */
    background-color: #F8FAFF;
    border-radius: 10px;
}
.find_member_block #country-state{
    padding-left: 10px;
    color: #161616;
    background-color: #F8FAFF;
    border: 1px solid #eee;
    border-radius: 10px;
}
.find_member_block #country{
    padding-left: 10px;
    color: #161616;
    background-color: #F8FAFF;
    border: 1px solid #eee;
    border-radius: 10px;
}
.find_member_block .bottom_search{
    border: none;
}
.find_member_block .search_member_box{
    padding: 1.5rem 1.2rem;
    grid-template-columns: 1fr 1fr 200px;
    padding: 0.6rem 1rem;
    align-items: center;
    display: grid;
    position: relative;
    min-width: 0;
    gap: 1rem;
}
.find_member_block .find_provider{
    padding: 1.5rem 1.2rem;
    grid-template-columns: 1fr 1fr;
    padding: 0.6rem 1rem;
    align-items: center;
    display: grid;
    position: relative;
    min-width: 0;
    gap: 1rem;
}
.ref-list ul li.col03 {
    width: 15%;
}
.ref-list ul li.col01 {
    width: 30%;
}
.ref-list ul li.col04 {
    width:20%;
}
.ref-list ul li {
    float: left;
    list-style: outside none none;
    margin: 0;
    padding: .5rem .5rem;
    font-size: 12px;
}
.find-a-member2 {
    width: 100%;
    clear: both;
    float: left;
}
.ref-list {
    border: 1px solid #e1e9fa;
    clear: both;
    color: #000000;
    float: left;
    font-size: 14px;
    letter-spacing: 0;
    width: 100%;
}
.ref-list-h {
    background: #e1e9fa none repeat scroll 0 0;
    float: left;
    font-weight: bold;
    width: 100%;
    font-size: 14px;
}
.ref-list-h ul li {
    color: #012970;
    /* font-size: 1rem; */
    font-weight: 600;
}
.filters {
    margin: 1rem 0;
    width: auto;
}
.filters a{
    margin: 0 6px;
}
.member_search_box{
    word-wrap: break-word;
    background-color: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.137);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    padding: 1rem 0.5rem;
}
.search_btn{
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    padding: 0.5rem 1.4rem;
    font-weight: 500;
    width: 100%;
    justify-content: center;
}
.search_btn:hover {
    color: #fff !important;
}
.search_country{
    padding: 0.4rem 1rem;
    display: flex;
    align-items: center;
}
.search_left{
    width: 100%;
}
.search_bottom_area{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1rem;
    /* justify-content: end; */
    padding: 0.6rem 1rem;
}
.or_text{
    display: flex;
    justify-content: center;
}
.or_text h4{
    font-size: .8rem;
}
.bmi_btn{
    background-color: #fff;
}
.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}
/* members */
.members_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.members_items h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.members_items_body h3 {
    font-size: 1rem;
    margin: 0;
}

.members_items_body {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.members_items {
    display: flex;
    justify-content: center;
}

.members_items_body {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    background-color: #fbfbfd;
    padding: 1.5rem;
    border-radius: 4px;
    border: 0.5px solid #E1E1EB;
    width: 100%;
}

.members_items_body h4 {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 400;
}
.members_items_body h5{
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 400;
}
.member_pic {
    width: 135px;
    height: 160px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.member_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.committee_section{
    margin: 2rem 0;
}
.committee_section h3{
    padding-bottom: .5rem;
}
/* contact page */
.contact_location .app_heading{
    margin-bottom: 2rem;
}
.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;
}
.location_body p{
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}
.location_body a{
    font-size: 1.1rem;
}
.contact_form .app_heading{
    margin-bottom: 2rem;
}
.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;
}
.readmore_section{
    padding: 5rem 0;
}
.readmore_section h3{
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.readmore_section p{
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}
.content_block{
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    align-items: center;
}
.underline {
    max-width: 200px;
    height: 2px;
    background-color: #d7d7d7d6;
    position: relative;
    display: block;
    margin-top: 1rem;
}
.underline::before {
    content: '';
    height: 2px;
    width: 80px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}
.blog_section .underline{
    width: 300px;
    margin: 20px auto 0;
}
.blog_section .underline::before{
    background-color: var(--primary-color);
    left: calc(50% - 40px);
    /* width: 100px; */
}
@media screen and (max-width: 1200px) {
    .container{
        max-width: 100%;
    }

    .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;
    }
    .hamburger_menu {
        display: flex;
    }
    .nav_close {
        display: flex;
    }
    .sidenav_open .header_nav {
        left: 0;
    }
    .header_brand {
        display: flex;
        align-items: center;
    }
    .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%;
    }
    .nav-links li {
        width: 100%;
    }
    .app_nav ul a {
        padding: 0.2rem 1.5rem;
        width: 100%;
        display: block;
    }
    .nav-links .desktop-item {
        display: none;
    }
    .nav-links .mobile-item {
        padding: 0.2rem 1.5rem;
        font-size: 0.9rem;
        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);
    }
    #showDrop1:checked~.drop-menu {
        max-height: 180px;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }
    #showDrop1: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);
    }
    #showDrop3:checked~.drop-menu {
        max-height: 180px;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }
    #showDrop3:checked~.drop_ico::after {
        transform: rotate(180deg);
    }
    #showDrop4:checked~.drop-menu {
        max-height: 180px;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }
    #showDrop4:checked~.drop_ico::after {
        transform: rotate(180deg);
    }
    #showDrop5:checked~.drop-menu {
        max-height: 180px;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }
    #showDrop5:checked~.drop_ico::after {
        transform: rotate(180deg);
    }
    #showDrop6:checked~.drop-menu {
        max-height: 180px;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }
    #showDrop6:checked~.drop_ico::after {
        transform: rotate(180deg);
    }#showDrop7:checked~.drop-menu {
        max-height: 180px;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }
    #showDrop7: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: 2;
    }
    .menu_sections{
        justify-content: flex-end;
    }
    .members_grid {
        grid-template-columns: 1fr 1fr;
    }

}
@media screen and (max-width: 991px) {
    .banner_boxes{
        margin: 0;
        bottom: 0;
        top: 20px;
        position: relative;
        width: 100%;
    }
    .calculate_box{
        display: flex;
    }
    .timeline_section{
        padding-top: 2rem;
    }
    .surgery_types_grid{
        grid-template-columns: 1fr 1fr;
    }
}   
@media screen and (max-width: 921px) {
    
    .header_flex {
        flex-direction: column;
        align-items: inherit;
        gap: 0;
    }
    .login{
        position: absolute;
        z-index: 1;
        top: 30px;
        padding-top: 1.8rem;
    }
    .about_grid{
        gap: 2rem;
    }
    .header_right{
        background-color: #F6F6FA;
        border-top: 1px solid rgba(232, 232, 232, 1);
        margin: 0 -.75rem;
        padding: 0.5rem 0.75rem;
    }
    .event_logo{
        width: 65px;
    }
    .form-group.has-search{
        flex: 1;
    }
    .find_member_block .search_member_box{
        grid-template-columns: 1fr 1fr;
    }
    .readmore_section{
        padding: 4rem 0;
    }
    .event_section{
        padding-bottom: 1rem;
    }
    .content_block{
        flex-wrap: wrap;
    }
    .content_block.second{
        flex-wrap: wrap-reverse;
    }
}

@media screen and (max-width: 767px) {
    .app_header {
        position: sticky;
        top: 0;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    }
    .inner_banner {
        padding: 2rem 0;
    }
    .in_this_section {
        display: none;
    }
    .list_filter {
        flex-direction: column;
        align-items: flex-start;
    }
    .filter_reset {
        width: 100%;
    }
    .events_list {
        flex-direction: column-reverse;
        gap: 0;
        align-items: flex-start;
    }
    .contact_location {
        margin-bottom: 3rem
    }
    .foot_brand p {
        max-width: 100%;
    }
    .app_logo {
        display: flex;
        /* justify-content: center; */
        align-items: center;
        gap: .5rem;
    }
    .header_brand img {
        width: 50px;
    }
    .banner_content h2 {
        font-size: 2rem;
    }
    .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;
    }
    .msg_section {
        margin-bottom: 1rem;
    }
    .box_info {
        gap: 0;
    }
    .search_bottom_box{
        grid-template-columns: 100%;
        gap: 0;
    }
    .bottom_search{
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,.125);
    }
    .member_search_box{
        flex-wrap: wrap;
        justify-content: center;
        display: block;
    }
    .contact_location {
        margin-bottom: 3rem
    }
    .find_member_block .search_member_box{
        grid-template-columns: 100%;
    }
    .bariatic_section{
        margin-bottom: 1.5rem;
    }
    .search_bottom_box{
        padding: 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;
    }
    .event_logo {
        width: 55px;
    }
    .marquee-with-options ul li a {
        
        font-size: 0.7rem;
    }
    .app_section{
        padding: 1rem 0;
    }
    .about_area{
        padding: 1rem 0;
    }
    .app_section_header{
        padding-top: 3rem;
    }
    .app_section_header h2 {
        font-size: 1.5rem;
    }
    .banner_img img{
        min-height: 40rem;
    }
    .footer_bottom {
        padding: 1rem 0;
    }
    .foot_bottom_flex {
        flex-direction: column;
        gap: 0.6rem;
    }
    .powered_by {
        margin: 0;
    }
    .banner_content h1{
        font-size: 2.5rem;
    }
    .banner_content h3{
        font-size: 1.3rem;
    }
    .about_content{
        margin-top: 2rem;
    }
    .doctor_grid{
        grid-template-columns: 100%;
    }
    .surgery_types_grid{
        grid-template-columns: 100%;
    }
    .members_grid {
        grid-template-columns: 100%;
    }
    .find_member_block .search_member_box{
        grid-template-columns: 100%;
    }
}