.top-header{
    background-color: color(srgb 0.0007 0.2832 0.663);
    padding: 10px;
}
.top-header ul {
    display: flex;
}
.top-header ul li a {
    color: white;
}
.top-header ul li {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid white;
    line-height: 10px;
}
.top-header ul li:last-child{
    border: none;
    margin-right: 0;
    padding-right: 0;
}
.top-header ul li i{
    padding-right: 5px;
}
.top-header ul.social-link {
    float: left;
}
.top-header ul.social-link li{
    margin-right: 5px;
    border: none;
}
.top-header ul.social-link li i{
    font-size: 15px;
}
.footer{
    background: #f7fbff;
    padding-top: 40px;
}
.w-lg-70 {
    width: 70%;
}
.swiper-group-row .swiper-wrapper{
    flex-direction: unset !important;
    }
.box-swiper .swiper-container .item-logo {
    background: #fff !important;
    height: 160px;
    text-align: center;
    border: 1px solid #fff;
    box-shadow: 2px 0 10px rgb(226, 226, 226);
    /* background: linear-gradient(to top right, color(srgb 0.9179 0.9529 1), white); */
}
.location-small {
    background: url(../imgs/template/icons/location.svg) no-repeat 0px 5px;
    display: inline-block;
    padding: 0px 0px 0px 20px;
    font-size: 12px;
    color: #A0ABB8;
}
.h-400{
    height: 440px;
}
.h-320{
    height: 370px;
}
.facility li{
width: 18% !important;
margin-right: 10px !important;
}
.facility li img{
    width: 25px !important;
}
ul.education {
  display: block;
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 30px;
}
ul.education li {
  width: 100%;
  display: list-item;
  margin-bottom: 5px;
  margin-right: 0;
}
/* Timeline  */
  /* Timeline */
  /* Code Here ↓ */

  
  .tl-content .tl-header, 
  .tl-content .tl-body {
    padding-left: 25.6px;
    
    border-left: 2px solid rgb(196, 195, 195);
  }
  
  .tl-body {
    padding-bottom:1rem;
  }
  
  .tl-content:last-child .tl-body {
    border-left: 1px solid transparent;
  }
  
  .tl-header {
    position: relative;
    display: grid;
    
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .tl-header p{
    margin: 0;
  }
  
  .tl-title {
    font-weight: 600;
    font-size: 1em;
    
    border-bottom: 1px solid gainsboro;
  }
  
  .tl-time {
    font-size: 0.7em;
  }
  
  .tl-marker {
    display:block;
    position: absolute;
  
    width: 13px;
    height: 13px;
    border-radius: 50% / 50%;
    
    background: rgb(196, 195, 195);
    
    left: -14px;
    top: 50%;
    
    transform: translate(50%,-50%);
  }
  
  .tl-content-active .tl-title {
    font-weight: 700;
    
    color: green;
  }

  .popup-youtube img{
    border-radius: 8px;
  }
  
  /* Play Button */
  .play-btn {
    width: 70px;
    height: 70px;
    background: radial-gradient(red 60%, rgba(255, 0, 0, 0.86) 62%);
    border-radius: 50%;
    position: absolute;
    display: block;
    margin: auto;
    /* box-shadow: 0px 0px 25px 3px red; */
    top: 34%;
    left: 40%;
}
  
  /* triangle */
  .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #fff;
    z-index: 100;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  /* pulse wave */
  .play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 4s;
    animation: pulsate1 4s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(245, 157, 157, 0.75);
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
  }
  
  @-webkit-keyframes pulsate1 {
    0% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
      opacity: 1;
      box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0;
      box-shadow: none;
  
    }
  }
  
  @keyframes pulsate1 {
    0% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
      opacity: 1;
      box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
      -webkit-transform: scale(1, 1);
      transform: scale(1);
      opacity: 0;
      box-shadow: none;
  
    }
  }
  .top-header ul li a:hover i {
color: white;
}
.blog .card-grid-3 .card-block-info {
  height: 210px;
}
.author img {
  height: 60px;
  margin-right: 15px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.accordion-button:not(.collapsed) {
  color: #0048a9;
  background-color: #f7fbff;
}
.accordion-button{
  line-height: 30pxs;
}
.float-right{
  float: right;
}
.btn-primary {
  color: #fff;
  background-color: #0255b5;
  border-color: #0048a9;
}
.btn-primary:hover {
  color: #fff;
  background-color: #91c075;
  border-color: #91c075;
}
.bottom-header{
    background-color: #0255b5;
}
.bottom-header  .main-header .header-nav {
  display: inline-block;
  width: 100%;
  text-align: left;
}
.bottom-header  .main-menu li a{
  color: white;
}
.bottom-header  .nav-main-menu{
  display: block;
}
.bottom-header  .nav-main-menu ul{
  justify-content: center;
}
.color-theme {
  color: #0255b5 !important;
}
@media (max-width: 576px){
  .bottom-header{
    display: none;
  }
  header{
    border-bottom: 1px solid #f2f2f2;
   }
   
}
@media (min-width: 578px){

.hide-desktop{
  display: none;
}
}