/*==============================New Css designed by mehak==================================*/

img.feature-img {
    width: 8em;
  }
  
  figure.feature-image-fig {
    margin: 1rem auto 0;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    img.feature-img {
      /* width: 100%; */
    }
  
    figure.feature-image-fig {
      margin: 1rem auto 0;
      max-width: 300px;
    }
  }
  
  
  
  
  
  /*===================== COEs CSS ============================*/
  
  /* variables */
  :root {
    /* colors */
    --ty9-color-primary-hsl: 250, 84%, 54%;
    --ty9-color-bg-hsl: 0, 0%, 100%;
    --ty9-color-contrast-high-hsl: 230, 7%, 23%;
    --ty9-color-contrast-higher-hsl: 230, 13%, 9%;
  
    /* spacing */
    --ty9-space-3xs: 0.25rem;
    --ty9-space-sm: 0.75rem;
    --ty9-space-md: 1.25rem;
    --ty9-space-lg: 2rem;
    --ty9-space-xl: 3.25rem;
  
    /* typography */
    --ty9-text-md: 1.2rem;
    --ty9-text-base: 1rem;
    --ty9-text-sm: 0.833rem;
  }
  
  @media(min-width: 64rem){
    :root {
      /* spacing */
      --ty9-space-3xs: 0.375rem;
      --ty9-space-sm: 1.125rem;
      --ty9-space-md: 2rem;
      --ty9-space-lg: 3.125rem;
      --ty9-space-xl: 5.125rem;
  
      /* typography */
      --ty9-text-md: 1.5625rem;
      --ty9-text-base: 1.25rem;
      --ty9-text-sm: 1rem;
    }
  }
  
  /* component */
  .team {
    position: relative;
    z-index: 1;
  }
  
  /* utility classes */
  .ty9-opacity-70\% {
    opacity: 0.7;
  }
  
  .ty9-text-sm {
    font-size: var(--ty9-text-sm);
  }
  
  .ty9-margin-top-3xs {
    margin-top: var(--ty9-space-3xs);
  }
  
  .ty9-text-md {
    font-size: var(--ty9-text-md);
  }
  
  .ty9-text-center {
    text-align: center;
  }
  
  .ty9-padding-sm {
    padding: var(--ty9-space-sm);
  }
  
  .ty9-radius-md {
    border-radius: 0.25em;
  }
  
  .ty9-gap-sm {
    gap: var(--ty9-space-sm);
  }
  
  .ty8-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }

  .ty9-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
  
  .ty9-grid > * {
    min-width: 0;
    grid-column-end: span 12;
  }

  .ty8-grid > * {
    min-width: 0;
    grid-column-end: span 10;
  }
  
  .ty9-margin-bottom-lg {
    /* margin-bottom: var(--ty9-space-lg); */
  }
  
  .ty9-max-width-adaptive-lg {
    max-width: 32rem;
  }
  
  @media(min-width: 48rem) {
    .ty9-max-width-adaptive-lg {
      max-width: 48rem;
    }
  }
  
  @media(min-width: 64rem) {
    .ty9-max-width-adaptive-lg {
      max-width: 84rem;
    }
  }
  
  @media(min-width: 80rem) {
    .ty9-max-width-adaptive-lg {
      max-width: 100rem;
    }
  }
  
  .ty9-container {
    width: calc(100% - 2*var(--ty9-space-md));
    margin-left: auto;
    margin-right: auto;
    margin-top:1%;
  }
  
  .ty9-padding-y-xl {
    /* padding-top: var(--ty9-space-xl);
    padding-bottom: var(--ty9-space-xl); */
    background-color: white;
  }
  
  .ty9-padding-bottom-sm {
    padding-bottom: var(--ty9-space-sm);
  }
  
  .ty9-padding-top-md {
    padding-top: var(--ty9-space-md);
  }
  
  .ty9-padding-x-sm {
    padding-left: var(--ty9-space-sm);
    padding-right: var(--ty9-space-sm);
  }
  
  @media(min-width: 64rem){
    .ty9-text-base\@md {
      font-size: var(--ty9-text-base);
    }
  
    .ty9-col-3\@md {
      grid-column-end: span 2;
    }
  
    .ty9-col-4\@md {
      grid-column-end: span 7;
    }
    .ty9-col-5\@md {
      grid-column-end: span 3;
    }
  }
  
  
  
  
  .cd-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375em;
    font-size: 1em;
    text-decoration: none;
    line-height: 1.2;
    cursor: pointer;
    transition: 0.2s;
    will-change: transform;
  }
  
  .cd-btn:focus-visible {
    outline: none;
  }
  
  .cd-btn:active {
    transform: translateY(2px);
  }
  
  .cd-btn--primary {
    background: #3282B8;
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15), 
                0 1px 3px hsla(250, 84%, 38%, 0.25), 
                0 2px 6px hsla(250, 84%, 38%, 0.1), 
                0 6px 10px -2px hsla(250, 84%, 38%, 0.25);
    color: hsl(0, 0%, 100%);
  }
  
  .cd-btn--primary:hover {
    /* background: hsl(250, 84%, 60%); */
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15), 
                0 1px 2px hsla(250, 84%, 38%, 0.25), 
                0 1px 4px hsla(250, 84%, 38%, 0.1), 
                0 3px 6px -2px hsla(250, 84%, 38%, 0.25);
    color: white;
  }
  
  .cd-btn--primary:focus-visible {
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15), 
                0 1px 2px hsla(250, 84%, 38%, 0.25), 
                0 1px 4px hsla(250, 84%, 38%, 0.1), 
                0 3px 6px -2px hsla(250, 84%, 38%, 0.25), 
                0 0 0 2px hsl(0, 0%, 100%), 
                0 0 0 4px hsl(250, 84%, 54%);
  }
  
  /* -------------------------------- 
  
  Icons 
  
  -------------------------------- */
  
  .cd-icon {
    --size: 1em;
    font-size: var(--size);
    height: 1em;
    width: 1em;
    display: inline-block;
    color: inherit;
    fill: currentColor;
    line-height: 1;
    flex-shrink: 0;
    max-width: initial;
  }
  
  .cd-icon use { /* SVG symbols - enable icon color corrections */
    color: inherit;
    fill: currentColor;
  }
  
  /* -------------------------------- 
  
  Component 
  
  -------------------------------- */
  
  .card {
    height: 100%;
    background-color: hsl(0, 0%, 100%);
    box-shadow: 0 0 0 1px hsla(230, 13%, 9%, 0.05),
                0 0.3px 0.4px hsla(230, 13%, 9%, 0.02),
                0 0.9px 1.5px hsla(230, 13%, 9%, 0.045),
                0 3.5px 6px hsla(230, 13%, 9%, 0.09);
    border-radius: 0.375em;
    overflow: hidden;
  }
  
  
  .card:hover {
      background-color: #d6e6f0;
  }
  .card__img-wrapper img {
    display: block;
    width: 100%;
  }
  
  .card img {
    transition: transform 0.3s;
  }
  
  .card:hover img {
    transform: scale(1.1);
  }
  
  .card__content {
    height: 100%;
    padding: 1rem;
    display: grid;
    text-align: center;
  }
  
  .card__description {
    height: 100%;
    font-size: 0.9375rem;
    color: hsl(225, 4%, 47%);
  }
  
  .card__btn {
    width: 100%;
    font-size: 0.9375rem;
  }
  
  /* --link variation */
  .card--link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: box-shadow 0.2s;
  }
  
  .card--link:hover {
    box-shadow: 0 0 0 1px hsla(230, 13%, 9%, 0.05),
                0 0.9px 1.25px hsla(230, 13%, 9%, 0.025),
                0 3px 5px hsla(230, 13%, 9%, 0.05),
                0 12px 20px hsla(230, 13%, 9%, 0.09);
  }
  
  .card--link .card__img-wrapper {
    position: relative;
  }
  
  .card--link .card__img-wrapper::after { /* overlay layer */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(230, 13%, 9%, 0.6);
    opacity: 0;
    transition: 0.2s;
  }
  
  .card__link-icon-wrapper {
    position: absolute;
    z-index: 1;
    width: 64px;
    height: 64px;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    background-color: hsla(0, 0%, 100%, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.2s;
  }
  
  .card__link-icon-wrapper .cd-icon {
    --size: 32px;
    display: block;
    color: hsl(230, 13%, 9%);
  }
  
  .card--link:hover .card__img-wrapper::after {
    opacity: 1;
  }
  
  .card--link:hover .card__link-icon-wrapper {
    opacity: 1;
    transform: scale(1);
  }
  
  
  
  
  
  /*===================== News ticker CSS ============================*/
  
  .news{width: 160px}.news-scroll a{text-decoration: none}.dot{
    height: 6px;
    width: 6px;
    margin-left: 80px;
    margin-right: 3px;
    margin-top: 2px !important;
    background-color:#3282B8;
    border-radius: 50%;
    display: inline-block
    }
  
  .bg-blue{
    background-color: #d6e6f0;
  }
  
  
  
  
  
  /*===================== Upcoming Event  CSS ============================*/
  
  .vertical-slider {
    width: 100%;
    height: 224px;
    overflow: hidden;
  }
  
  .vertical-slider-container {
    display: flex;
    flex-direction: column;
    animation: scroll-up 12s linear infinite;
    animation-play-state: running;
    animation-delay: 2s;
    width: 100%;
    margin: 0 auto; /* Center the container horizontally */
  }
  
  .vertical-slider-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border-bottom: solid 1px #dbdbdb;
  }
  
  .content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .left-content {
    width: 80%;
  }
  
  .left-content h3 {
    margin-top: 0;
  }
  
  .right-content {
    width: 20%;
    text-align: center;
    margin: 10px 10px 10px 10px;
  }
  
  .right-content img {
    width: 120px;
    height: 120px;
  }
  
  @keyframes scroll-up {
    0% {
      transform: translateY(0);
    }
    25% {
      transform: translateY(-25%);
    }
    50% {
      transform: translateY(-50%);
    }
    75% {
      transform: translateY(-75%);
    }
    100% {
      transform: translateY(-100%);
    }
  }
  
  /* Responsive Styles */
  
  @media (max-width: 768px) {
    .vertical-slider {
      width: 100%;
      height: 200px;
    }
  
    .vertical-slider-item {
      flex-direction: column;
      padding: 10px;
    }
  
    .left-content,
    .right-content {
      width: 100%;
    }
  
    .right-content img {
      margin: 1em auto;
    }
  }
  
  
  
  
  .text-bg-fx--underline,
  .text-bg-fx--underline-bold {
    text-decoration: none;
    background-size: 0% 100%;
  }
  
  .text-bg-fx--underline {
    /* text underline size = 1px */
    background-image: linear-gradient(transparent calc(100% - 3px), currentColor calc(100% - 3px), currentColor calc(100% - 2px), transparent 2px);
  }
  
  .text-bg-fx--underline-bold {
    background-image: linear-gradient(transparent 50%, hsla(var(--tm7-color-primary-hsl), 0.2) 50%);
  }
  
  .text-bg-fx--text-shadow {
    /* you can use this with the .text-bg-fx--underline effect */
    text-shadow: 1.5px 1px hsl(var(--tm7-color-bg-hsl)), -1.5px 1px hsl(var(--tm7-color-bg-hsl)), 0px 1px hsl(var(--tm7-color-bg-hsl));
  }
  