* {
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
    border: none;
    outline: none;
    color: #223263;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 4px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: transparent; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    /* background: #d7d7d7;  */
    background: #7EBBE2; 
    border-radius: 100px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #A9D2EB; 
  }

.stop_scroll {
    height: 100vh;
    overflow: hidden;
}

 .body_overlay{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    background: rgba(34, 50, 99, 0.4);
}

.active_overlay .body_overlay{
    visibility: visible !important;
}

.active_pop .name_tag {
    bottom: 10px;
    right: 200px;
    height: 280px;
}


/* nav {
    position: fixed;
    width: 100%;
} */

nav {
    position: fixed;
    width: 100%;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    backdrop-filter: blur(10px);
}

.container {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 12px;
    /* overflow: hidden; */
}

.header_div {
    display: flex ;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.content_img_div {
    width: fit-content;
    position: relative;
    /* margin: auto; */
}

.name_tag {
    position: absolute;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    gap: 2px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

.popup_btn {
    width: -webkit-fill-available;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.span_tag {
    font-size: 16px;
    line-height: 24px;
    color: #9098B1;
}



.p_tag_pri {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    color: #53A5D8;
}

.p_tag_email {
    font-weight: 500;
    font-size: 14px;
    width: -webkit-fill-available;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    color: #53A5D8;
 
}

.p_tag_u {
    font-weight: 700;
    font-size: 13px;
    line-height: 30px;
    width: -webkit-fill-available;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    color: #53A5D8;
    text-decoration: underline;
}


.p_tag_pri {
    font-weight: 600;
}

.p_smb {
    font-weight: 600;
    font-size: 14px;
}

.p_smb_500 {
    font-weight: 500;
    font-size: 14px;
}

.name_tag .p_tag_pri {
    width: 243px;
}

.dropdown {
    position: relative;
    /* overflow: hidden; */
}

.dropdown-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border: 1px solid #EBF0FF;
    border-radius: 8px;
    z-index: 1;
}

.container a, .dropdown .dropbtn {
    white-space: nowrap;
}
.container a:hover, .dropdown:hover .dropbtn {
    color: #288ECE;
}

.dropdown:hover .dropbtn img {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

.dropdown_flex {
    left: -340px;
    flex-direction: row;
    gap: 24px
}

.navh_link_div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.logo_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    border-bottom: 1px solid rgba(40, 142, 206, 0.4);
}

.input_nav_div, .input_email_btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

input#mem_no {
    width: 120px;
}

select#mem_type {
    color: #6B6A75;
    width: 140px;
    border-right: 1.5px solid #288ECE;
}

.nav_input {
    background: #FFFFFF;
    padding: 12px 16px;
}

.nav_loginbtn {
    padding: 6px 8px 4px;
    background: #288ECE;
    border-radius: 28px;
}


.input_mem,
input#mem_email {
    width: fit-content;
    border: 1.5px solid #288ECE;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
}


.social_media_link {
    position: fixed;
    top: 30%;
    width: 50px;
    height: 270px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0px 20px 20px 0px;
    gap: 24px;
}

.social_media_link::before {
    content: "";
    /* top: -8px; */
    position: absolute;
    z-index: -1;
    background-color: cadetblue;
    width: 50px;
    height: 270px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0px 20px 20px 0px;
}


a.sm_icon {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin-left: 8px;
    background-color: #ffff;
    border-radius: 100px;
}

a.sm_icon::before {
    content: "";
    position: absolute;
    /* top: -12px;
    left: -10px; */
    z-index: -2;
    width: 57px;
    height: 48px;
    border-radius: 0px 50px 50px 0px;
    /* filter: blur(2px); */
}

a.facebook::before {
    background: #3B5998;
}

a.youtube::before {
    background: #FA0910;
}

a.twitter::before {
    background: #1DA1F2;
}

a.instagram::before {
    background: #E1306C;
}

a.linkedin::before {
    background: #0A66C2;
}

a.sm_icon img {
    vertical-align: middle;
}

#quick_link,#phone_app {
    position: fixed;
    bottom: 19%;
    right: 0;
}

#phone_app{
    bottom: 10%;
}

.float_icon {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    /* margin-right: 16px; */
    /* margin-top: 24px */
}


.float_icon > img {
    width: 40px;
    height: 40px;
    display: block;
    padding: 8px;
    margin-right: 24px;
    background: #288ECE;
    border-radius: 100px;
    /* width: fit-content; */
    box-shadow: 0px 0px 20px rgb(0 0 0 / 30%);
    cursor: pointer;
}

a.action_link {
    width: -webkit-fill-available;
    padding: 16px 24px;
    background: #D4EFFF;
    border-radius: 8px;
}

.right_tag {
    right: 140px;
}

.left_tag {
    left: 165px;
}

.action_link_div {
    /* display: flex; */
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    background: #288ECE;
    border-radius: 16px;
    /* width: fit-content; */
}

.status_bdiv {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    width: 100%;
}

.phone_div {
    padding: 24px;
    background: #288ECE;
    border-radius: 16px;
}

.phone_mockup > h1{
    text-align: center;
}

.phone_mockup {
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 24px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px 2px rgb(0 0 0 / 25%);
    border-radius: 20px;
}

.app_btn span{
 font-weight: 600;
font-size: 14px;
line-height: 17px;
color: #FFFFFF;
}

.app_btn {
    /* width: fit-content; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 16px;
    gap: 8px;
    background: #288ECE;
    border-radius: 8px;
}

img.phone_icon{
    width:150px;
}

.phone_line {
    width: 132px;
    height: 5px;
    background: #000000;
    border-radius: 100px;
}

/* nav---------------- */

.page_content {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 124px 64px 50px;
    gap: 40px;
   height: 100vh;
   overflow: auto;
    gap: 40px;
}

.left_section {
    width:fit-content;
    overflow-y: scroll;
    border-right: 1px solid #223263;
}
.left_section_div{
    width:215% ;
    /* height: 74vh; */
    overflow-y: scroll;
    border-right: 1px solid #223263;
}

.right_section {
    width: fit-content;
    /* height: 74vh; */
    /* overflow-y: scroll; */
}
.right_section_div {
   
    /* height: 74vh; */
    overflow-y: scroll;
}

.left_scroll_div {
    display: flex;
    padding: 40px 8px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.text_div {
    margin: 40px 0 24px;
}

.pri_btn {
    width: fit-content;
    padding: 12px 24px;
    margin: 40px auto 0 auto;
    background: #FFFFFF;
    border: 2px solid #288ECE;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    color: #288ECE;
   
}

.side_navbtn {
    position: relative;
    width: fit-content;
    color: #9098B1;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 16px;
    overflow: hidden;
    white-space: nowrap;
}

.active_snavbtn {
    color: #223263;
    background: rgba(36, 34, 32, 0.04);
    border: 1px solid #EBF0FF;
    border-radius: 12px;
}

.active_snavbtn::before {
    content: "";
    position: absolute;
    width: 293px;
    height: 56px;
    left: calc(50% - 293px/2 - 9.5px);
    top: calc(50% - 56px/2);
    background: radial-gradient(50% 50% at 50% 50%, rgba(126, 187, 226, 0.48) 0%, rgba(126, 187, 226, 0) 100%, rgba(126, 187, 226, 0) 100%);
    opacity: 0.6;
    filter: blur(20px);
}

.display_h1, .display_h {
    font-weight: 300;
    
    font-size: 32px;
    line-height: 39px;
}



.display_h{
    font-weight: 600;
}

.text_div .display_h1{
    padding-bottom: 24px;
   
}



.p_tag {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    ;
}


.p_tag_size {
    font-weight: 400;
    font-size: 38px;
    line-height: 30px;
    text-align: justify;
}
/* * // table_2 data// */ 

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 34px;
  
  }
  
  .table td,
  .table th {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 16px;
  }
  
  .table th {
    background-color: #92c9e6;
    color: #ffffff;
  }
  
  .table tbody tr:nth-child(even) {
    background-color: #d1e8f5;
  }

  /* * // table data// */ 

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 34px;
  
  }
  
  .table td,
  .table th {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 16px;
  }
  
  .table th {
    background-color: #92c9e6;
    color: #ffffff;
  }
  
  .table tbody tr:nth-child(even) {
    background-color: #d1e8f5;
  }
  /* jatin code */

  * {box-sizing: border-box}
  body {font-family: Verdana, sans-serif; margin:0}
  .mySlides {display: none}
  img {vertical-align: middle;}
  
  /* Slideshow container */
  .slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  /* .prev:hover, .next:hover {
    background-color: white;
  } */
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }
 
  /* close jatin code */
  
  /*responsive*/

  

  
  
  @media (max-width: 500px) {
    .table thead {
      display: none;
    }
  
    .table,
    .table tbody,
    .table tr,
    .table td {
      display: block;
      width: 100%;
    }
    .table tr {
      margin-bottom: 15px;
    }
    .table td {
      padding-left:20%;
      text-align: left;
      position: relative;
    }
    .table td::before {
      content: attr(data-label);
      position: absolute;
      left: 0;
      width: 50%;
      padding-left: 15px;
      font-size: 15px;
      font-weight: bold;
      text-align: left;
    }
     .table th::before {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: center;
        font-size: 12px;
      }
  }

/* // end table data// */


  
.fellows_detail{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:16px;
}


.left{
    font-weight:650;
}

.years_fellow{
    background-color: #288ECE;
    color:white;

    font-size: 27px;

  
}
.years_dr{
    background-color:white;

   
    padding-left:0px;
}
.card_container{
    display: flex;
    justify-content: space-between;
    padding: 8px;
}
.card{
    border-radius: 25px;
    padding: 2px;
    box-shadow: 5px 5px 5px 5px #cfcccc;
    width: 55%;
}
.card-header{
    border-radius: 25px  25px 0  0;
    padding: 5px;
}
.card-body{
    border-radius: 25px;
}
.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #53A5D8;
    position: fixed;
    bottom:0;
    width: 100%;
    
}

.footer * {
    color: #FFFFFF;
    vertical-align: middle;
}
/* .footer_div{
    grid:;
} */

@media (max-width: 991px) {
    .logo_div {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0px 24px 14px;
        border: none;
    }

    .input_nav_div {
        justify-content: center;
        flex-wrap: wrap;
    }

    .container {
        display: none;
        position: absolute;
        width: 100vw;
        height: 90vh;
        padding: 24px;
        justify-content: flex-start;
        background-color: #ddf2ff;
        flex-direction: column;
        overflow-x: scroll;
    }

    .container a, .dropdown .dropbtn{
        padding: 8px;
        border-bottom: solid 0.5px rgba(34, 50, 99, 0.3);
    }

    .dropdown .dropbtn img{
        margin-left: 8px;
    }

    .dropdown-content{
      position: static;
      flex-direction: column !important;
      box-shadow: none;
      border: none;
      border-radius: none;
      background-color: transparent;
    }

    .toggle .container{
        display: flex;
    }

    .toggle-menu {
        position: absolute;
        top: 20%;
        left: 2%;
        width: 34px;
        height: 30px;
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        padding: 4px;
        background-color: #288ECE;
        /* background-color: rgba(0, 0, 0, 0.2); */
        border-radius: 5px;
        cursor: pointer;
    }

    .line {
        width: 100%;
        height: 3px;
        border-radius: 5px;
        background-color: #ffff;
        transition: transform 0.2s ease-out;
    }

    .toggle .line1 {
        background-color: #ffff;
        transform: scale(0.9) rotateZ(-45deg) translate(-5px, 4px);
    }

    .toggle .line2 {
        display: none;
    }

    .toggle .line3 {
        background-color: #ffff;
        transform: scale(0.9) rotateZ(45deg) translate(-5px, -4px);
    }

    .toggle .toggle-menu {
        background-color: #288ECE;
    }

    .nav_link {
        position: fixed;
        padding-top: 12%;
        background-color: #ffffff;
        /* margin: auto; */
        z-index: 2;
        top: 90px;
        left: 0%;
        height: 100vh;
        width: 0px;
        overflow: hidden;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 4%;
        transition: all .2s ease-in-out;
    }

    .toggle .nav_link{
        display: flex;
        width: 300px;
        box-shadow: 1px 0 15px 2px rgba(0, 0, 0, 0.4);
    }

    .page_content {
        display: grid;
        grid-template-columns: auto 1fr;
        padding: 124px 64px 70px;
        gap: 40px;
    }
    .footer {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 12px 16px;
        background: #53A5D8;
        position: fixed;
        gap:5px;
        bottom:0;
        width: 100%;
        
    }
}

@media (max-width: 780px) {
    .years_fellow {
        background-color: #288ECE;
        color: white;
        width: 100%;
        height: 43px;
        font-size: 27px;
    }
    .left_section{
        display: none;
    }
    .col-right_row{
    
        padding-left:0%;
    }
    .card {
        border-radius: 25px;
        padding: 2px;
        box-shadow: 5px 5px 5px 5px #cfcccc;
        width: 99%;
    }
}
/* <jatin code> */
@media (width:451px) {
    .footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: #53A5D8;
       
        
}
.page_content {
    display: grid;
    grid-template-columns: auto auto;

    height:100vh;
   overflow: auto;
    gap: 40px;
}
.logo_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(40, 142, 206, 0.4);
}



}

@media (max-width: 991px) {
    .logo_div {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0px 24px 14px;
        border: none;
    }

    .input_nav_div {
        justify-content: center;
        flex-wrap: wrap;
    }

    .container {
        display: none;
        position: absolute;
        width: 100vw;
        height: 90vh;
        padding: 24px;
        justify-content: flex-start;
        background-color: #ddf2ff;
        flex-direction: column;
        overflow-x: scroll;
    }

    .container a,
    .dropdown .dropbtn {
        padding: 8px;
        border-bottom: solid 0.5px rgba(34, 50, 99, 0.3);
    }

    .dropdown .dropbtn img {
        margin-left: 8px;
    }

    .dropdown-content {
        position: static;
        flex-direction: column !important;
        box-shadow: none;
        border: none;
        border-radius: none;
        background-color: transparent;
    }

    .toggle .container {
        display: flex;
    }

    .toggle-menu {
        position: absolute;
        top: 20%;
        left: 2%;
        width: 34px;
        height: 30px;
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        padding: 4px;
        background-color: #288ECE;
        /* background-color: rgba(0, 0, 0, 0.2); */
        border-radius: 5px;
        cursor: pointer;
    }

    .line {
        width: 100%;
        height: 3px;
        border-radius: 5px;
        background-color: #ffff;
        transition: transform 0.2s ease-out;
    }

    .toggle .line1 {
        background-color: #ffff;
        transform: scale(0.9) rotateZ(-45deg) translate(-5px, 4px);
    }

    .toggle .line2 {
        display: none;
    }

    .toggle .line3 {
        background-color: #ffff;
        transform: scale(0.9) rotateZ(45deg) translate(-5px, -4px);
    }

    .toggle .toggle-menu {
        background-color: #288ECE;
    }

    .nav_link {
        position: fixed;
        padding-top: 12%;
        background-color: #ffffff;
        /* margin: auto; */
        z-index: 2;
        top: 90px;
        left: 0%;
        height: 100vh;
        width: 0px;
        overflow: hidden;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 4%;
        transition: all .2s ease-in-out;
    }

    .toggle .nav_link {
        display: flex;
        width: 300px;
        box-shadow: 1px 0 15px 2px rgba(0, 0, 0, 0.4);
    }

    .page_content {
        padding: 150px 64px 0;
    }
}

@media (max-width: 780px) {
    .left_section {
        display: none;
    }
}