/*-------- Our Courese -------------*/
.courses
{
   padding:20px 0px;   
}

.gallery_section ul{
    justify-content:left;
}
@media(max-width:992px){
 .gallery_section ul{
    justify-content:center;
}   
}

.heading_h3{
  text-align: center;
  padding-top: 60px;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}

.heading_h3::after{
  content: '';
  background: #0c4c91;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
}

/*.service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #303ef7;
}*/
.service i {
  font-size: 40px;
  margin-bottom: 12px;
  animation: move 3s linear infinite;
  background: linear-gradient(
    to right,
    #0c4c91,
    #0c519c,
    #0b56a7,
    #0b5cb3,
    #0a61bf,
    #0966ca,
    #086bd6,
    #0670e2,
    #0576ee,
    #047bfb,
    #0c80fd,
    #1586ff
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

@keyframes move {
  to {
    background-position: 200% center;
  }
}

.service h4 {
  font-size:20px;
  font-weight: 600;
}

.service:hover {
  background: rgb(41 197 241);
  color: #fff;
  transform: scale(1.05);
}

.service:hover i {
    background: #fff;
    background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service a:hover{
    color:white;
}
/*---------------read more btn-----------------*/
.readmore {
	color:#fff;
	overflow: hidden;
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-right: 2rem;
}
.readmore:before {
	animation: ts-link-arrow-effect-animation-out;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
    background-color: #fff;
    bottom: 0;
    height: .125rem;
    margin: auto;
    left: 0;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    transform: scaleX(.2);
    transform-origin: left center;
    z-index: 0;
}
.readmore span {
	position: relative;
    transform: translateX(-200%);
    display: inline-block;
    transition: .6s cubic-bezier(.6, .01, 0, 1);
}
.service:hover .readmore span {
    transform: translateX(0%);
}
.service:hover .readmore:before {
	animation: ts-link-arrow-effect-animation-in;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
}
/*----------------Our Services-------------------*/
.services{
    background-image:linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.2)), url("../images/intern_intro.png");
    background-repeat: no-repeat;
    background-size:cover;
    background-position:bottom;
    padding-bottom:40px;
}
.services .box {
	background-color:#12141c;
	overflow:hidden;
	transition: .3s ease;
}
@media(min-width:768px){
    .services .box {    
    	height:400px;
    }
}
@media(min-width:1200px){
    .services .box {    
    	height:auto;
    }
}
.services .box i {
	color:rgb(27 177 220);
	transition:inherit;
	transition-delay: 0s
}
.services h4 {
	color:#fff;
	text-align:left;
	font-weight: 600;
	font-size:20px;
	transition:inherit;
	transition-delay: .05s;
}
.services p {
	color:#dfdfdf;
	text-align:left;
	transition:inherit;
	transition-delay: .1s;
}
.readmore_1{
	color:#fff;
	overflow: hidden;
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-right: 2rem;
}
.readmore_1:before {
	animation: ts-link-arrow-effect-animation-out;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
    background-color: rgb(27 177 220);
    bottom: 0;
    height: .125rem;
    margin: auto;
    left: 0;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    transform: scaleX(.2);
    transform-origin: left center;
    z-index: 0;
}
.readmore_1 span {
	position: relative;
    transform: translateX(-200%);
    display: inline-block;
    transition: .6s cubic-bezier(.6, .01, 0, 1);
}
.box:hover .readmore_1 span {
    transform: translateX(0%);
}
.box:hover .readmore_1:before {
	animation: ts-link-arrow-effect-animation-in;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
}
.box:hover i,
.box:hover h4,
.box:hover p {
    transform: translateY(-0.625rem);
}
/*---------Readmore Animation Funcitons----------*/
@keyframes ts-link-arrow-effect-animation-out {
    0% {
        transform-origin: right center;
        transform: scaleX(.2);
    }

    70% {
        transform-origin: right center;
    }

    71% {
        transform-origin: left center;
        transform: scaleX(1);
    }

    100% {
        transform-origin: left center;
        transform: scaleX(.2);
    }
}
@keyframes ts-link-arrow-effect-animation-in {
    0% {
        transform-origin: left center;
        transform: scaleX(.2);
    }

    70% {
        transform-origin: left center;
        transform: scaleX(1);
    }

    71% {
        transform-origin: right center;
    }

    100% {
        transform-origin: right center;
        transform: scaleX(.2);
    }
}
/*====================================|Gallery Section|=====================================*/
.gallery_section{
  /*background-color: #202125;*/
  background-color: #fff;
  padding-bottom:40px;
}
.gallery_section .nav .btn:focus{
    box-shadow:none!important;
}
.heading {
    text-align: center;
    font-size: 2.0em;
    letter-spacing: 1px;
    padding-top:30px;
    padding-bottom:30px;
    color: #000;
}
.gallery-image {
  /*padding: 20px;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-image img {
  height: 250px;
  width: 350px;
  border-radius:0px;
  transform: scale(1.0);
  transition: transform 0.4s ease;
}

.img-box {
  /*margin-bottom:25px;*/
  box-sizing: content-box;
  /*margin: 10px;*/
  height: 250px;
  width: 350px;
  overflow: hidden;
  display: block;
  color: white;
  position: relative;
  /*background-color: white;*/
}

.caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 0.0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
  height: 263px;
  width: 365px;
  background-color:rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.img-box:hover img { 
  transform: scale(1.05);
}

.img-box:hover .transparent-box {
  background-color:rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
  transform: translateY(-20px);
  opacity: 1.0;
}

.img-box:hover {
  cursor: pointer;
}

.caption > p:nth-child(2) {
  font-size: 0.8em;
}

.opacity-low {
  opacity: 0.5;
}

/*-================|EVENTS SECTION CSS|===========================*/
.sec1 {
  height: auto;
  width: 100%;
  background-color: #12141c;
  padding-left: 135px !important;
  padding-right: 135px !important;
  padding-bottom: 60px;
}
.eventBox{
      text-align:left!important;
}
.modal-body h2 {
  font-weight: 800;
  background: -webkit-linear-gradient(45deg, rgb(27 177 220), #12141c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align:left!important;
}

.eventBox .card-body p {
  font-size: 14px;
  line-height: normal;
  margin-bottom:10px;
}

.eventBox .card-body h5 {
  font-size: 16px;
  line-height: normal;
}

.eventBox .card-body button {
  font-size: 14px;
  background-color: #000;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 576px) {
  .sec1 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }

  .eventBox .card-body p {
    font-size: 12px;
  }

  .eventBox .sec3 .card {
    height: 250px;
  }
}

@media screen and (max-width: 320px) {
  .eventBox h5 {
    font-size: 14px !important;
  }

  .eventBox .card-body p {
    font-size: 12px;
  }
}

@media screen and (max-width: 300px) {
  .eventBox h5 {
    font-size: 12px !important;
  }

  .eventBox .card-body p {
    font-size: 10px;
  }

  .sec3 .card {
    height: 250px;
  }
}

@media screen and (max-width: 245px) {

  .eventBox h5 {
    font-size: 11px !important;
  }

  .eventBox .card-body p {
    font-size: 10px;
    line-height: 100%;
  }

  .sec3 .card {
    height: 300px;
  }
}

.sec3 h2 {
  color: #0c4c91;
}

.sec3 h5 {
  font-weight: 800;
}

.sec3 .fa-check-circle {
  color: #000;
}

.sec3 .card {
  border-radius: 0px !important;
  border: 1px solid white;
  box-shadow: 0 8px 20px lightgray;
  overflow: hidden;
  height: 200px;
}

.sec3 .card {
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.sec3 .card:hover {
  background: rgb(27 177 220);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  .sec3 .card {
    height: 280px;
  }

  .img-full {
    height: 150px;
    width: 125px;
    object-fit: contain;
  }
}

@media screen and (max-width: 764px) {
  .sec3 .card {
    height: 200px;
  }

  .img-full {
    height: 150px;
    width: 125px;
    object-fit: contain;
  }
}

.eventModal .modal-body p {
  font-size: 14px;
    text-align:left!important;
}

.eventModal .modal-body a {
  text-decoration: none;
  font-size: 14px;
}

.eventModal .modal-header {
  padding: 10px 20px;
  justify-content: end;
}

.eventModal .modal-header .close {
  font-size: 20px;
      font-size: 20px;
      cursor:pointer;
    border: none;
    background: transparent;
}
.eventDateTime{
    margin:8px 0px 5px;
    display:inline-block;
    
}
.eventDesc{
    display: inline-block;
    margin-bottom: 6px;
}
.subTitle{
    font-size:20px;
    text-align:left!important;
}
.modal-open .modal{
    z-index:9999!important;
}