@font-face {
  font-family: "Flaticon";
  src: url(/fonts/flaticon/font/Flaticon.eot);
  src: url(/fonts/flaticon/font/Flaticon.eot?#iefix) format("embedded-opentype"),
       url(/fonts/flaticon/font/Flaticon.woff) format("woff"),
       url(/fonts/flaticon/font/Flaticon.ttf) format("truetype"),
       url(/fonts/flaticon/font/Flaticon.svg#Flaticon) format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url(/fonts/flaticon/font/Flaticon.svg#Flaticon) format("svg");
  }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
  font-family: Flaticon;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flaticon-teacher:before { content: "\f100"; }
.flaticon-books:before { content: "\f101"; }
.flaticon-diploma:before { content: "\f102"; }
.flaticon-reading:before { content: "\f103"; }
.flaticon-security:before { content: "\f104"; }
.flaticon-education:before { content: "\f105"; }
.flaticon-jigsaw:before { content: "\f106"; }
.flaticon-kids:before { content: "\f107"; }
.scrolling-news-container {
  overflow: hidden;
}

.scrolling-text.scroll-left {
  transform: translateX(100%);
  animation: scroll-left-animation 30s linear infinite;
}

.scrolling-text.scroll-right {
  transform: translateX(-100%);
  animation: scroll-right-animation 30s linear infinite;
}

@keyframes scroll-left-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scroll-right-animation {
  from {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}


a#bouncy_arrow { 
  color: #5B85AA; 
  text-decoration: none; 
  cursor: pointer;
}

.arrow.bounce{
  position: absolute;
  bottom: 48px;
  left: 50%;
}

.arrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  /* bottom: 24px; */
  z-index: 50;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

 .animatable {
	transition: all 200ms ease-in-out;
	opacity: 0;
	position: relative;
}

.fade-in {
	animation-name: fadein;
	animation-fill-mode: forwards;
	animation-duration: 0.7s;
	animation-timing-function: ease;
}

.fade-in-up {
	animation-name: fadeinup;
	animation-fill-mode: forwards;
	animation-duration: 0.7s;
	animation-timing-function: ease;
}

.fade-in-right {
	animation-name: fadeinright;
	animation-fill-mode: forwards;
	animation-duration: 0.7s;
	animation-timing-function: ease;
}

.fade-in-left {
	animation-name: fadeinleft;
	animation-fill-mode: forwards;
	animation-duration: 0.7s;
	animation-timing-function: ease;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeinup {
	0% {
		opacity: 0;
		transform: translateY(300px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeinright {
	0% {
		opacity: 0;
		transform: translateX(300px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeinleft {
	0% {
		opacity: 0;
		transform: translateX(-300px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


.bell-container{
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 100;
  background: white;
  padding: 16px;
  padding-left: 20px;
  border-radius: 50%;
}

.bell-container a {
  text-decoration: none;
}

.bell{
  display:block;
  width: 40px;
  height: 40px;
  font-size: 40px;
  /* margin:50px auto 0; */
  color: #5B85AA;
}

.ringing {
  -webkit-animation: ring 4s .7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s .7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s .7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
  0% { -webkit-transform: rotateZ(0); }
  1% { -webkit-transform: rotateZ(30deg); }
  3% { -webkit-transform: rotateZ(-28deg); }
  5% { -webkit-transform: rotateZ(34deg); }
  7% { -webkit-transform: rotateZ(-32deg); }
  9% { -webkit-transform: rotateZ(30deg); }
  11% { -webkit-transform: rotateZ(-28deg); }
  13% { -webkit-transform: rotateZ(26deg); }
  15% { -webkit-transform: rotateZ(-24deg); }
  17% { -webkit-transform: rotateZ(22deg); }
  19% { -webkit-transform: rotateZ(-20deg); }
  21% { -webkit-transform: rotateZ(18deg); }
  23% { -webkit-transform: rotateZ(-16deg); }
  25% { -webkit-transform: rotateZ(14deg); }
  27% { -webkit-transform: rotateZ(-12deg); }
  29% { -webkit-transform: rotateZ(10deg); }
  31% { -webkit-transform: rotateZ(-8deg); }
  33% { -webkit-transform: rotateZ(6deg); }
  35% { -webkit-transform: rotateZ(-4deg); }
  37% { -webkit-transform: rotateZ(2deg); }
  39% { -webkit-transform: rotateZ(-1deg); }
  41% { -webkit-transform: rotateZ(1deg); }

  43% { -webkit-transform: rotateZ(0); }
  100% { -webkit-transform: rotateZ(0); }
}

@-moz-keyframes ring {
  0% { -moz-transform: rotate(0); }
  1% { -moz-transform: rotate(30deg); }
  3% { -moz-transform: rotate(-28deg); }
  5% { -moz-transform: rotate(34deg); }
  7% { -moz-transform: rotate(-32deg); }
  9% { -moz-transform: rotate(30deg); }
  11% { -moz-transform: rotate(-28deg); }
  13% { -moz-transform: rotate(26deg); }
  15% { -moz-transform: rotate(-24deg); }
  17% { -moz-transform: rotate(22deg); }
  19% { -moz-transform: rotate(-20deg); }
  21% { -moz-transform: rotate(18deg); }
  23% { -moz-transform: rotate(-16deg); }
  25% { -moz-transform: rotate(14deg); }
  27% { -moz-transform: rotate(-12deg); }
  29% { -moz-transform: rotate(10deg); }
  31% { -moz-transform: rotate(-8deg); }
  33% { -moz-transform: rotate(6deg); }
  35% { -moz-transform: rotate(-4deg); }
  37% { -moz-transform: rotate(2deg); }
  39% { -moz-transform: rotate(-1deg); }
  41% { -moz-transform: rotate(1deg); }

  43% { -moz-transform: rotate(0); }
  100% { -moz-transform: rotate(0); }
}

@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(30deg); }
  3% { transform: rotate(-28deg); }
  5% { transform: rotate(34deg); }
  7% { transform: rotate(-32deg); }
  9% { transform: rotate(30deg); }
  11% { transform: rotate(-28deg); }
  13% { transform: rotate(26deg); }
  15% { transform: rotate(-24deg); }
  17% { transform: rotate(22deg); }
  19% { transform: rotate(-20deg); }
  21% { transform: rotate(18deg); }
  23% { transform: rotate(-16deg); }
  25% { transform: rotate(14deg); }
  27% { transform: rotate(-12deg); }
  29% { transform: rotate(10deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }

  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}


.marquee {
  overflow: hidden;
}
.marquee.marquee-speed-drowsy:before {
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
}
.marquee.marquee-speed-slow:before {
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}
.marquee.marquee-speed-custom:before {
  -webkit-animation-duration: inherit;
          animation-duration: inherit;
}
.marquee.marquee-speed-normal:before {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}
.marquee.marquee-speed-fast:before {
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}
.marquee.marquee-speed-swift:before {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}
.marquee.marquee-speed-hyper:before {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
@-webkit-keyframes movement-smooth {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    left: 100%;
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0%;
  }
}
@keyframes movement-smooth {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    left: 100%;
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0%;
  }
}
@-webkit-keyframes movement-steps20 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    left: 100%;
  }
  5%,
  9.99% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    left: 95%;
  }
  10%,
  14.99% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    left: 90%;
  }
  15%,
  19.99% {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
    left: 85%;
  }
  20%,
  24.99% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
    left: 80%;
  }
  25%,
  29.99% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
    left: 75%;
  }
  30%,
  34.99% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    left: 70%;
  }
  35%,
  39.99% {
    -webkit-transform: translateX(-35%);
            transform: translateX(-35%);
    left: 65%;
  }
  40%,
  44.99% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
    left: 60%;
  }
  45%,
  49.99% {
    -webkit-transform: translateX(-45%);
            transform: translateX(-45%);
    left: 55%;
  }
  50%,
  54.99% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
  }
  55%,
  59.99% {
    -webkit-transform: translateX(-55%);
            transform: translateX(-55%);
    left: 45%;
  }
  60%,
  64.99% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
    left: 40%;
  }
  65%,
  69.99% {
    -webkit-transform: translateX(-65%);
            transform: translateX(-65%);
    left: 35%;
  }
  70%,
  74.99% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
    left: 30%;
  }
  75%,
  79.99% {
    -webkit-transform: translateX(-75%);
            transform: translateX(-75%);
    left: 25%;
  }
  80%,
  84.99% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
    left: 20%;
  }
  85%,
  89.99% {
    -webkit-transform: translateX(-85%);
            transform: translateX(-85%);
    left: 15%;
  }
  90%,
  94.99% {
    -webkit-transform: translateX(-90%);
            transform: translateX(-90%);
    left: 10%;
  }
  95%,
  99.99% {
    -webkit-transform: translateX(-95%);
            transform: translateX(-95%);
    left: 5%;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0%;
  }
}
@keyframes movement-steps20 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    left: 100%;
  }
  5%,
  9.99% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    left: 95%;
  }
  10%,
  14.99% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    left: 90%;
  }
  15%,
  19.99% {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
    left: 85%;
  }
  20%,
  24.99% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
    left: 80%;
  }
  25%,
  29.99% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
    left: 75%;
  }
  30%,
  34.99% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    left: 70%;
  }
  35%,
  39.99% {
    -webkit-transform: translateX(-35%);
            transform: translateX(-35%);
    left: 65%;
  }
  40%,
  44.99% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
    left: 60%;
  }
  45%,
  49.99% {
    -webkit-transform: translateX(-45%);
            transform: translateX(-45%);
    left: 55%;
  }
  50%,
  54.99% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
  }
  55%,
  59.99% {
    -webkit-transform: translateX(-55%);
            transform: translateX(-55%);
    left: 45%;
  }
  60%,
  64.99% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
    left: 40%;
  }
  65%,
  69.99% {
    -webkit-transform: translateX(-65%);
            transform: translateX(-65%);
    left: 35%;
  }
  70%,
  74.99% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
    left: 30%;
  }
  75%,
  79.99% {
    -webkit-transform: translateX(-75%);
            transform: translateX(-75%);
    left: 25%;
  }
  80%,
  84.99% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
    left: 20%;
  }
  85%,
  89.99% {
    -webkit-transform: translateX(-85%);
            transform: translateX(-85%);
    left: 15%;
  }
  90%,
  94.99% {
    -webkit-transform: translateX(-90%);
            transform: translateX(-90%);
    left: 10%;
  }
  95%,
  99.99% {
    -webkit-transform: translateX(-95%);
            transform: translateX(-95%);
    left: 5%;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0%;
  }
}
@-webkit-keyframes movement-steps10 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    left: 100%;
  }
  10%,
  19.99% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    left: 90%;
  }
  20%,
  29.99% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
    left: 80%;
  }
  30%,
  39.99% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    left: 70%;
  }
  40%,
  49.99% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
    left: 60%;
  }
  50%,
  59.99% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
  }
  60%,
  69.99% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
    left: 40%;
  }
  70%,
  79.99% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
    left: 30%;
  }
  80%,
  89.99% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
    left: 20%;
  }
  90%,
  99.99% {
    -webkit-transform: translateX(-90%);
            transform: translateX(-90%);
    left: 10%;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0%;
  }
}
@keyframes movement-steps10 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    left: 100%;
  }
  10%,
  19.99% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    left: 90%;
  }
  20%,
  29.99% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
    left: 80%;
  }
  30%,
  39.99% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    left: 70%;
  }
  40%,
  49.99% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
    left: 60%;
  }
  50%,
  59.99% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
  }
  60%,
  69.99% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
    left: 40%;
  }
  70%,
  79.99% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
    left: 30%;
  }
  80%,
  89.99% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
    left: 20%;
  }
  90%,
  99.99% {
    -webkit-transform: translateX(-90%);
            transform: translateX(-90%);
    left: 10%;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0%;
  }
}
@-webkit-keyframes movement-steps5 {
  0%,
  19.99% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    left: 100%;
  }
  20%,
  39.99% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
    left: 80%;
  }
  40%,
  59.99% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
    left: 60%;
  }
  60%,
  79.99% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
    left: 40%;
  }
  80%,
  99.99% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
    left: 20%;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0%;
  }
}
@keyframes movement-steps5 {
  0%,
  19.99% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    left: 100%;
  }
  20%,
  39.99% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
    left: 80%;
  }
  40%,
  59.99% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
    left: 60%;
  }
  60%,
  79.99% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
    left: 40%;
  }
  80%,
  99.99% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
    left: 20%;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0%;
  }
}
.marquee.marquee-movement-smooth:before {
  -webkit-animation-name: movement-smooth;
          animation-name: movement-smooth;
}
.marquee.marquee-movement-steps20:before {
  -webkit-animation-name: movement-steps20;
          animation-name: movement-steps20;
}
.marquee.marquee-movement-steps10:before {
  -webkit-animation-name: movement-steps10;
          animation-name: movement-steps10;
}
.marquee.marquee-movement-steps5:before {
  -webkit-animation-name: movement-steps5;
          animation-name: movement-steps5;
}
.marquee.marquee-direction-left:before,
.marquee.marquee-direction-normal:before {
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
.marquee.marquee-direction-alternate:before {
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.marquee.marquee-direction-right:before,
.marquee.marquee-direction-reverse:before {
  -webkit-animation-direction: reverse;
          animation-direction: reverse;
}
.marquee:before {
  content: attr(data-marquee);
  white-space: nowrap;
  position: relative;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  left: 50%;
  -webkit-animation: linear infinite;
          animation: linear infinite;
}
.marquee:before {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}
.marquee:before {
  -webkit-animation-name: movement-smooth;
          animation-name: movement-smooth;
}
.marquee:before {
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 @import "font-awesome";

:root {
  --first-color: #1eaaf1;
  --second-color: #8cc152;
  --third-color: #5d50c6;
  --fourth-color: #f1453d;
  --fifth-color: #fda638;
  --sixth-color: rgba(0, 0, 0, 0.7);
  --seventh-color: rgba(115, 198, 253, 1);
  --eighth-color: #4682B4;

  --hero-container-height: 600px;
}

.first-background{
  background-color: var(--first-color);
}
.second-background{
  background-color: var(--second-color);
}
.third-background{
  background-color: var(--third-color);
}
.fourth-background{
  background-color: var(--fourth-color);
}
.fifth-background{
  background-color: var(--fifth-color);
}
.sixth-background{
  background-color: var(--sixth-color);
}
.seventh-background{
  background-color: var(--seventh-color);
}
.eighth-background{
  background-color: var(--eighth-color);
}

.first-text{
  color: var(--first-color);
  /* color: white; */
}
.second-text{
  color: var(--second-color);
  /* color: white; */
}
.third-text{
  color: var(--third-color);
  /* color: white; */
}
.fourth-text{
  color: var(--fourth-color);
  /* color: white; */
}
.fifth-text{
  color: var(--fifth-color);
  /* color: white; */
}

.btn {
  border: 1px solid rgba(0,0,0,0);
  border-radius: 50px;
}

.btn.fifth-background {
  color: black;
}

.btn.fifth-background.white-text{
  color: white;
}

.btn {
  transition: all ease 0.5s;
}

.special-underline::after{
  margin: auto;
  margin-top: 8px;
  display: block;
  content: " ";
  width: 100px;
  height: 4px;
  background-color: var(--third-color);
}

.special-underline.left-aligned-underline::after{
  margin-left: 0;
  margin-right: auto;
}

.special-underline.right-aligned-underline::after{
  margin-left: auto;
  margin-right: 0;
}

.special-text{
  color: var(--third-color);
}

a:hover{
  color: var(--fifth-color);
}

.third-background .special-underline::after{
  background-color: var(--second-color);
}

.white-text{
  color:#fff !important;
}

.white-text *{
  color:#fff !important;
}

.white-background{
  color:#000;
}

.black-background{
  background-color:#000;
}

.black-text{
  color:#000 !important;
}

.red-text{
  color:red;
}

body{
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 28px;
  color: rgba(0,0,0,0.8);
}

.fancy-banner {
  position: relative;
  z-index: 1000;
  margin-bottom: 32px;
}

.fancy-banner a:hover {
  color: initial !important;
  text-decoration: none;
}

.fancy-banner a:hover h3{
  color: initial !important;
}

.fancy-banner .media-body {
  min-height: 320px;
  transform: scale(1.0);
  transition: all ease-in 0.2s;
  box-shadow: none;
  margin-inline: 0.5rem;
  border-radius: 16px;
}

.fancy-banner .media-body:hover {
  transform: scale(1.1);
  transition: all ease-in 0.2s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}

.fancy-banner .media-body h3::after{
  display: block;
  content: " ";
  height: 2px;
  width: 100px;
  background-color: #474747;
  margin-top: 8px;
  margin-inline: auto;
}

@media screen and (max-width: 1398px) {
  .fancy-banner .media-body {
    min-height: 350px;
  }
}

@media screen and (max-width: 1200px) {
  .fancy-banner .media-body {
    min-height: 400px;
  }
}


@media screen and (max-width: 998px) {
  .fancy-banner .media-body {
    min-height: auto;
  }
}

.slightly-bigger {
  width: 768px !important;
  max-width: 768px !important;
}

.offer-item {
  margin-bottom: 24px;
  margin-right: 16px;
}

.offer-item h4{
  font-size: 1rem;
  line-height: 18px;
  font-weight: 700;
}

.icon {
  position: relative;
  min-width: 80px;
  min-height: 80px;
  width: 80px;
  height: 80px;
  background: var(--first-color);
  color: white;
  border-radius: 50%;
  font-size: 30px;
}

.large-icon {
  position: relative;
  margin-top: -60px;
  z-index: 1001;
  width: 120px;
  height: 120px;
  border: 1px solid white;
  border-radius: 60px;
  background-color: #fff;
}

.large-icon .icon{
  font-size: 50px;
  line-height: 65px;
  color: var(--first-color);
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .slightly-bigger {
    width: 100% !important;
    max-width: 100% !important;
  }
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Monteserrat', serif;
  color: black;
}

h3 {
  font-size: 1.1rem;
}

h4{
  font-size: 1rem;
}

h5{
  font-size: 0.85rem;
}

a{
  color:inherit;
  text-decoration: none;
}

p{
  text-indent: 32px;
  text-align: justify;
}
p.no-indent{
  text-indent: 0px;
}
.large-text{
  font-size: 1.5rem;
  line-height: 48px;
}
.special-text{
  font-family: 'Monteserrat', serif;
}
.special-font{
  font-family: 'Monteserrat', serif;
}

.modal-dialog.slightly-big{
  max-width: 900px;
}

#important-contact-info{  
  font-size: 0.9rem;
}

#important-contact-info div{
  padding-top:8px;
  padding-bottom:8px;
}

#important-contact-info a {
  text-decoration: none;
}

.navbar-brand img{
  height: 96px;
  width: auto;
}

.navbar-toggler {
  background-color: white;
}

.navbar-brand h1{
  font-size: 1.5rem;
}

.dropdown-menu {
  width: 300px;
  padding: 1.5rem;
}

.carousel-caption{
  border-radius: 10px;
  background-color: rgba(0,0,0,0.5);
}

.parallax-bg{
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-image img{
  display: block;
  width:100%;
  text-align: center;
  height: auto;
  max-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.photo-gallery{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px;
}

.photo-gallery a{
  width: 300px;
  height: 300px;
  padding: 8px;
  background: white;
  margin: 16px;
}

.photo-gallery a img{
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.footer-link a:hover{
  color:inherit;
  text-decoration: none;
  font-weight: bold;
}

ul.footer-link li{
  list-style-type: none;
}

.restricted-size{
  max-width: 300px;
  height: auto;
}

.smaller-restricted-size{
  max-width: 200px;
  height: auto;
}

@media screen and (max-width:992px) {
  .service-item {
    padding-bottom: 164px;
  }
  .smaller-restricted-size{
    max-width: 250px;
    width: 250px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
  }
}

#navbarNavDropdown li a:hover {
  background-color: var(--fifth-color);;
}

.feature-img{
  max-width: 256px;
  max-height: 256px;
  margin-top: 16px;
  margin-bottom:16px;
  object-fit: cover;
}

@media screen and (max-width:768px) {
  .feature-img{
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin-top: 16px;
    margin-bottom:16px;
  }
}

@media screen and (max-width:620px) {
  #g-map{
    width:100% !important;
    height:300px;
  }
  .navbar-brand h1{
    font-size: 1.1rem;
  }
  .navbar-brand span{
    font-size: 0.75rem;
  }
}

#youtube-video-container{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

a.link {
  text-decoration: underline !important;
}

.hero-container {
  width: 100vw;
  height: var(--hero-container-height);
}

.hero-section {
  width: 100%;
  height: var(--hero-container-height);
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.navbar-nav .nav-link {
  padding-left: 1rem;
  padding-right: 1rem;
}

.dark-text {
  color: #000 !important;
}

.dark-text * {
  color: #000 !important;
}

.transparent-bg div {
  background-color: rgba(0,0,0,0) !important;
}

.white-border div {
  border-color: #fff !important;
}

.no-border {
  border-color: rgba(0,0,0,0) !important;
}

.no-border div {
  border-color: rgba(0,0,0,0) !important;
}

.grid{
  display: grid;
}

.grid.grid-2x3{
  grid-template-columns: 1fr 1fr 1fr;
}

.grid.grid-3c{
  grid-template-columns: 1fr 1fr 1fr;
}

.grid.grid-gap-1{
  gap: 1rem;
}

@media screen and (max-width: 992px){
  .grid.grid-2x3{
    grid-template-columns: 1fr 1fr;
  }
  .grid.grid-3c{
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px){
  .grid.grid-2x3{
    grid-template-columns: 1fr;
  }
  .grid.grid-3c{
    grid-template-columns: 1fr ;
  }  
}

.grid-item.h-300{
  max-height: 300px;
}

.grid-center-aligned .grid-item{
  text-align: center;
}

.img-cover{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-login-app-logo {
  max-width: 250px;
  height: auto;
  width: 100%;
}

.admin-login-decun-logo {
  max-width: 250px;
  height: auto;
  width: 100%;
}

.clickable {
  cursor: pointer;
}

.news-content img {
  max-width: 100% !important;
  height: auto;
}

.home-slider.owl-carousel{
  height: 700px;
}

.home-slider.owl-carousel .slider-item{
  height: 700px;
}

.home-slider.owl-carousel .slider-text{
  height: 700px;
}

.slider-item{
  background-position: 50% 50%;
  background-size: cover;
}

.slider-item h1 {
  text-shadow: 0px 0px 10px #000;
}

.carousel-item {
  max-height: 450px;
}

.carousel-item img {
  max-height: 450px;
  width: auto;
  height: auto;
}

.carousel-inner {
  padding-inline: 64px;
}

.carousel-inner a {
  text-decoration: none;
}

.carousel .carousel-indicators{
  margin-bottom: -20px;
}

/* .carousel.dark .carousel-indicators{
  background-color: rgba(0,0,0,0.3); 
} */

.carousel.light .carousel-indicators button{
  background-color: rgba(0,0,0,0.3);
}

.carousel.light .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000' fill-opacity='0.4' %3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
 
.carousel.light .carousel-control-next-icon {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000' fill-opacity='0.4' %3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.news-circular-item-content{
  max-height: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-item.padded-inline {
  padding-inline: 5rem;
}

iframe#g-map{
  max-width: 800px !important;
  height: 300px !important;
}

iframe.youtube-video{
  width: 800px !important;
  height: 450px !important;
  margin-inline: auto;
  display: block;
}

@media screen and (max-width: 1200px){
  iframe.youtube-video{
    width: 100% !important;
    height: 350px !important;
    margin-inline: auto;
    display: block;
  }
}

@media screen and (max-width: 768px){
  #important-contact-info div{
    padding-inline: 1rem;
  }
  .carousel-item.padded-inline {
    padding-inline: 1rem;
  }
}

@media screen and (max-width: 550px){
  .alumni-img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  iframe#g-map{
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
  }
}

@media (min-width: 768px) {
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (max-width: 767px) {
  .card-deck {
    flex-flow: column wrap;
    margin-right: 0px;
    margin-left: 0px;
  }
}

.merits-banner, .quotes-banner, .quotes-banner-2{
  background-image: url(/img/school_front.jpg);
  background-color: rgba(23, 17, 35, 0.6);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 90%;
  background-attachment: fixed;
  color: white;
}

.quotes-banner{
  background-image: url(/img/kids.jpg);
  background-position: 50% 10%;
}

.quotes-banner-2{
  background-image: url(/img/school.jpg);
  background-position: 50% 10%;
}

.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -10;
}

.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  -webkit-animation-name: kenburns;
  animation-name: kenburns;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 24s;
  animation-duration: 24s;
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.slideshow-image:nth-child(1) {
  -webkit-animation-name: kenburns-1;
  animation-name: kenburns-1;
  z-index: 8;
}

.slideshow-image:nth-child(2) {
  -webkit-animation-name: kenburns-2;
  animation-name: kenburns-2;
  z-index: 7;
}

.slideshow-image:nth-child(3) {
  -webkit-animation-name: kenburns-3;
  animation-name: kenburns-3;
  z-index: 6;
}

.slideshow-image:nth-child(4) {
  -webkit-animation-name: kenburns-4;
  animation-name: kenburns-4;
  z-index: 5;
}
.slideshow-image:nth-child(5) {
  -webkit-animation-name: kenburns-5;
  animation-name: kenburns-5;
  z-index: 4;
}

.slideshow-image:nth-child(6) {
  -webkit-animation-name: kenburns-6;
  animation-name: kenburns-6;
  z-index: 3;
}
 
@keyframes 
kenburns-1 {  
  0% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transform-origin: bottom;
  }
  15.33%{
    opacity: 1;
  }
  16.666% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  98% {
    opacity: 0;
    -webkit-transform: scale(1.2130);
    transform: scale(1.2130);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.2125);
    transform: scale(1.2125);
    transform-origin: bottom;
  }
}

@keyframes 
kenburns-2 {  
  0% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transform-origin: right;
  }
  23% {
    opacity: 1;
  }
  32% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes 
kenburns-3 {
  0% {
    opacity: 1;
    transform-origin: top;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  48.7% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes 
kenburns-4 {  
  0% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transform-origin: left;
  }
  65.33% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  66.66% {
    opacity: 0;
  }
  98.4375% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes
kenburns-5 {  
  0% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transform-origin: bottom;
  }
  82% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  83.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes
kenburns-6 {  
  0% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transform-origin: right;
  }
  59% {
    opacity: 1;
  }
  99% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.anim-pulsate {
  opacity: 0;
  animation-duration: 1s;
  -webkit-animation-name: anim-pulsate;
  animation-name: anim-pulsate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes anim-pulsate {  
  0% { opacity: 0 ; }
  25% { opacity: 1 ; }
  75% { opacity: 1 ; }
  100% { opacity: 0 ; }
}

.text-center {
  text-align: center !important;
}

article.news-item {
  margin-bottom: 32px;
}

article.news-item h2 *, article.news-item h4 *{
  text-decoration: none;
}

article.news-item h4{
  color: #474747;
  font-size: 0.85rem;
}

.pagination {
  gap: 8px;
}

article.news-item .read-more{
  padding-left: 32px;
}

.certified-teachers, .our-facilities, .special-banner, .recent-news{
  margin-top: 100px;
  margin-bottom: 100px;
}

.special-banner{
  padding-top: 50px;
  padding-bottom: 50px;
}

.news-item-card {
  min-width: 400px;
  width: 400px;
}

.service-item {
  padding-bottom: 64px;
}

.d-flex .bottom-aligned{
  align-self: flex-end;
}

.alumni-img {
  max-width: 500px;
  max-height: 300px;
  object-fit: contain;
  width: 100%;
  height: auto;
  margin-inline: auto;
  display: block;
  margin-bottom: 20px;
}

.facilities-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 350px;
  object-fit: cover;
  margin-inline: auto;
  display: block;
  margin-bottom: 20px;
  margin-top: 40px;
}

#scroll-to-top-button {
  background-color: #2684FE;
  border: 0;
  border-radius: 24px;
  color: white;
  cursor: pointer;
  font-size: 20px;
  width: 48px;
  height: 48px;
  position: fixed;
  z-index: 10000;
  bottom: 120px;
  right: 30px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

#scroll-to-top-button.show-button{
  opacity: 1;
}

.file-list-simple .img {
  max-width: 400px;
  max-height: 250px;
}

.scrolling-news-container a:hover{
  color:rgba(23, 17, 35, 0.6);
}

.hide {
  display: none;
}

.curved-border {
  border-radius: 16px;
}

.role {
  color: #555;
  font-weight: bold;
}
