
/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
#schedule {
	padding: 10px 0 10px 0;
  }
  
  #schedule .nav-tabs {
	text-align: center;
	margin: auto;
	display: block;
	border-bottom: 0;
	margin-bottom: 30px;
  }
  
  #schedule .nav-tabs li {
	display: inline-block;
	margin-bottom: 5px;
  }
  
  #schedule .nav-tabs a {
	border: none;
	border-radius: 50px;
	font-weight: 400;
	background-color: #7084986b;
	color: #434343;
	padding: 10px 40px;
  }
  
  @media (max-width: 991px) {
	#schedule .nav-tabs a {
	  padding: 8px 60px;
	}
  }
  
  @media (max-width: 767px) {
	#schedule .nav-tabs a {
	  padding: 8px 50px;
	}
  }
  
  @media (max-width: 480px) {
	#schedule .nav-tabs a {
	  padding: 8px 30px;
	}
  }
  
  #schedule .nav-tabs a.active {
	background-color: #00458B;
	color: #ffffff;
  }
  
  #schedule .sub-heading {
	text-align: center;
	font-size: 18px;
	font-style: italic;
	margin: 0 auto 30px auto;
  }
  
  @media (min-width: 991px) {
	#schedule .sub-heading {
	  width: 75%;
	}
  }
  
  #schedule .tab-pane {
	transition: ease-in-out 0.2s;
  }
  
  #schedule .schedule-item {
	border-bottom: 1px solid #cad4f6;
	padding-top: 15px;
	padding-bottom: 15px;
	transition: background-color ease-in-out 0.3s;
  }
  
  #schedule .schedule-item:hover {
	background-color: #fff;
  }
  
  #schedule .schedule-item time {
	padding-bottom: 5px;
	display: inline-block;
  }
  
  #schedule .schedule-item .speaker {
	width: 60px;
	height: 60px;
	overflow: hidden;
	border-radius: 50%;
	float: left;
	margin: 0 10px 10px 0;
  }
  
  #schedule .schedule-item .speaker img {
	height: 100%;
	transform: translateX(-50%);
	margin-left: 50%;
	transition: all ease-in-out 0.3s;
  }
  
  #schedule .schedule-item h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
  }
  
  #schedule .schedule-item h4 span {
	font-style: italic;
	color: #19328e;
	font-weight: normal;
	font-size: 16px;
  }
  
  #schedule .schedule-item p {
	font-style: italic;
	color: #152b79;
	margin-bottom: 0;
  }
  
  
  
  /*--------------------------------------------------------------
  # Gallery Section
  --------------------------------------------------------------*/
  .img-fluid{
	max-width:100%;
	/*height:auto;*/
	
}
.img-fluidinside {
	width:100%;
	height:220px;
	max-width: 100%;
	max-height: 240px;
}

  #gallery {
	padding: 10px;
	overflow: hidden;
  }
  
  #gallery .swiper-pagination {
	margin-top: 20px;
	position: relative;
  }
  
  #gallery .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #0357b8;
  }
  
  #gallery .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #0357b8;
  }
  
  #gallery .swiper-slide-active {
	text-align: center;
  }
  
  @media (min-width: 992px) {
	#gallery .swiper-wrapper {
	  padding: 40px 0;
	}
  
	#gallery .swiper-slide-active {
		filter: drop-shadow(0.2px 0 0.65rem rgb(4, 83, 255));

	/*  filter: drop-shadow(3px 10px 4px #000000);*/
	  border-bottom: 3px  solid rgb(3, 10, 102);
	  padding: 4px;
	  background: #fff;
	  z-index: 1;
	  transform: scale(1.25);
	  margin-top: 6px;
	}
  }
  /*--------------------------------------------------------------
  # Our Services Section
  --------------------------------------------------------------*/
  #services {
	padding: 60px 0;
  }
  
  #services .service-item {
	padding: 40px;
	background: #fff;
	height: 100%;
	border-radius: 10px;
  }
  
  #services .service-item .icon {
	width: 48px;
	height: 48px;
	position: relative;
	margin-bottom: 50px;
  }
  
  #services .service-item .icon i {
	color: var(--color-default);
	font-size: 56px;
	transition: ease-in-out 0.3s;
	z-index: 2;
	position: relative;
  }
  
  #services .service-item .icon:before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	background: #eeeeee;
	border-radius: 50px;
	z-index: 1;
	top: 10px;
	right: -20px;
	transition: 0.3s;
  }
  
  #services .service-item h3 {
	color: var(--color-default);
	font-weight: 700;
	margin: 0 0 20px 0;
	padding-bottom: 8px;
	font-size: 22px;
	position: relative;
	display: inline-block;
	border-bottom: 4px solid #eeeeee;
	transition: 0.3s;
  }
  
  #services .service-item p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
  }
  
  #services .service-item .readmore {
	margin-top: 15px;
	display: inline-block;
	color: var(--color-primary);
  }
  
  #services .service-item:hover .icon:before {
	background: #00b6a1;
  }
  
  #services .service-item:hover h3 {
	border-color: var(--color-primary);
  }
  