body {
  overflow-x: hidden;
}

.top-bar {
  background-color: #0083cb;
}

.top-bar a {
  color: #fff;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.top-bar a i { 
  color: #fff;
  font-size: 16px;
  padding-right: 10px;
}

.top-bar ul.social_nav {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.top-bar .social_nav a {
  font-size: 14px;
  color: #fff;
  padding: 0;
  text-align: center;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  margin-left: 10px;
}

.top-bar .social_nav a i {
  font-size: 14px;
}

.top-bar ul.social_nav a i {
  line-height: 24px;
}

.stuck {
  position: fixed !important;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff !important;
  padding: 0px 15px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0083cb;
  z-index: 10000000;
  overflow: hidden;
}

#preloader .loading {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#preloader .loading li {
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  margin: 0;
  height: 10px;
  width: 10px;
  border: 2px solid #fff;
  border-radius: 100%;
  -webkit-transform: transformZ(0);
  transform: transformZ(0);
  -webkit-animation: LOADING 2s infinite;
  animation: LOADING 2s infinite;
}

#preloader .loading li:nth-child(1n) {
  left: -20px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

#preloader .loading li:nth-child(2n) {
  left: 0;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#preloader .loading li:nth-child(3n) {
  left: 20px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@-webkit-keyframes LOADING {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes LOADING {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

#header {
  margin: 0px;
  padding: 0px 0px;
  border-bottom: 1px solid #ddd;
  padding-top: 10px;
  z-index: 10000;
  padding-bottom: 10px;
}

#header .header-fixed {
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: #fff;
  width: 100%;
  animation: 1s menuFix;
  -webkit-animation: 1s menuFix;
  -o-animation: 1s menuFix;
  -moz-animation: 1s menuFix;
}

#header .logo {
  text-align: left;
}

#header .navbar {
  padding: 0px;
}

#header .navbar-brand {
  font-size: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

#header .navbar-brand span {
  color: #0083cb;
}

#header .nav-item {
  position: relative;
}

#header .nav-item a:hover {
  color: #0083cb;
}

#header .nav-item .btn:hover {
  color: #fff;
}

#header .nav-link {
  padding: 5px 13px;
  margin: 0px;
  font-size: 14px;
  color: #343434;
  text-transform: uppercase;
  /*font-weight: 500;*/
  font-family: 'Poppins', sans-serif;
}

#header .dropdown-menu {
  margin: 0px;
  padding: 0px;
  border-radius: 0;
  background-color: #fff;
  font-size: 14px;
  min-width: 14rem;
}

#header .dropdown-active a {
  color: #0083cb;
}

#header .dropdown-menu .dropdown-item {
  padding: 7px 20px;
  color: #3e3e65;
  border-bottom: 1px solid #e5e5e5 !important;
  text-transform: uppercase;
}

#header .dropdown-menu .dropdown-item:hover,
#header .dropdown.active .dropdown-menu .dropdown-item:hover {
  background-color: #0083cb;
  color: #fff;
}

#header .dropdown.active .dropdown-menu a {
  color: #3e3e65;
}

#header .dropdown.active .dropdown-menu .dropdown-item.active {
  background-color: #0083cb;
  color: #fff;
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#header .nav-item a:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-top: 3px solid #0083cb;
  opacity: 0;
  -webkit-animation: 1s fadeIn;
          animation: 1s fadeIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

#header .menu-btn {
  margin: 22px 0px;
}

#header .menu-btn .btn:hover {
  font-weight: 100;
}

#header .navbar-toggler {
  border-radius: 0;
  background-color: #0083cb;
  outline: 0;
  border: 0;
  padding: 12px;
}

#header .navbar-toggler i {
  color: #fff;
}

#header .navbar-toggler[aria-expanded="true"] i:before {
  content: "\f156";
}

#header .navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

#header .menu-toggle {
  position: relative;
  display: block;
  width: 30px;
  height: 26px;
  background: transparent;
  border-top: 4px solid;
  border-bottom: 4px solid;
  color: #0083cb;
  margin-bottom: 13px;
  margin-top: 12px;
  font-size: 0;
  outline: 0 !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

#header .menu-toggle:before, #header .menu-toggle:after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

#header button:hover {
  color: #0083cb;
}

#header button.is-active {
  border-color: transparent;
}

#header button.is-active:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

#header button.is-active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

#header button {
  border: none;
  cursor: pointer;
  outline: none;
}

#home-banner {
  font-family: 'Poppins', sans-serif;
}

#home-banner h1 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  font-size: 70px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

#home-banner .caption-banner {
  position: absolute;
  width: 100%;
  z-index: 1000;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 30%;
}

#home-banner .ml6 {
  position: relative;
}

#home-banner .ml6 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}

#home-banner .ml6 .letter {
  display: inline-block;
  line-height: 1em;
}

@media (max-width: 1200px) {
  #home-banner .caption-banner {
    position: absolute;
    width: 100%;
    z-index: 1000;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 30%;
  }
  #home-banner h1 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    font-size: 40px;
    color: #fff;
    text-align: center;
    font-weight: 600;
  }
  #home-banner h6 {
    font-size: 16px !important;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 28px;
  }
}

#home-banner h6 {
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 28px;
}

#home-banner .slick-slide {
  width: 100%;
  outline: 0;
}

#home-banner a.btn.readmore {
  background-color: #0083cb;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  /*padding: 8px 23px;*/
   /* border-radius: 50px;*/
   /* font-size: 15px;*/
}

#home-banner a.btn.readmore:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

#home-banner a.btn.readmore1 {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

#home-banner a.btn.readmore1:hover {
  background-color: #0083cb;
  border-color: #0083cb;
  color: #fff;
}

#about {
  position: relative;
  top: -55px;
  z-index: 1;
}

#about .intro-item {
  padding: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 280px;
  position: relative;
  z-index: 4;
}

#about .item-content {
  position: relative;
  z-index: 1;
}

#about h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  line-height: 28px;
}

#about p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #fff;
  padding-top: 5px;
}

#about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /*z-index: 0;*/
}

#about .overlay.bg-aqua {
  background-color: rgba(24, 191, 195, 0.85);
}

#about .overlay.bg-purple {
  background-color: #9064bfe0;
}

#about .overlay.bg-blue {
  background-color: #0083cbd9;
}

#about .overlay.bg-red {
  background-color: #9b0e0dd9;
}

#about .read_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  font: 500 16px "Poppins", sans-serif;
  color: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  text-decoration: none;
}

#about .read_btn:before {
  content: "";
  width: 0;
  left: 0;
  position: absolute;
  bottom: 0;
  background: #fff;
  height: 2px;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

#about .hover-new:hover .read_btn {
  opacity: 1;
  -webkit-transition: opacity 0.6s linear;
  transition: opacity 0.6s linear;
}

#about .hover-new:hover .read_btn:before {
  width: 100%;
  right: 0;
}

#about .hover-new:hover .item-content {
  display: none;
}

#home-wisdom {
  font-family: 'Poppins', sans-serif;
}

#home-wisdom h5 {
  font-size: 18px;
  color: #18adb0;
  letter-spacing: 0.5px;
  padding-left: 40px;
  padding-top: 5px;
}

#home-wisdom h5:before {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
  background-color: #18adb0;
}

#home-wisdom h2 {
  font-size: 18px;
  margin-top: 30px;
  font-weight: 700;
  color: #0083cb;
  margin-bottom: 20px;
}

#home-wisdom p {
  font-size: 14px;
  color: #6f6f6f;
  line-height: 24px;
}

#home-wisdom h4 {
  padding-top: 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

#home-wisdom a.btn.readmore {
  background-color: #0083cb;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: background-color .3s ease-out;
  transition: background-color .3s ease-out;
  margin-bottom: 30px;
}

#home-wisdom a.btn.readmore:hover {
  background: transparent;
  border-color: #0083cb;
  color: #0083cb;
}

#home-wisdom .item-img {
  overflow: hidden;
  margin-bottom: 30px;
}

#home-wisdom img {
  width: 100%;
  border-radius: 5px;
  position: relative;
  transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -ms-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
}

#home-wisdom img:hover {
  border-radius: 5px;
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

#home-videos {
  background-color: #25b6b6;
  font-family: 'Poppins', sans-serif;
}

#home-videos h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}

#home-videos .slick-slide {
  height: auto;
  outline: 0;
}

#home-videos h1:after {
  content: "";
  background-color: white;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 15px;
}

#home-videos h5 {
  text-align: center;
  padding-top: 24px;
  color: #fff;
  /*margin-bottom: 20px;*/
}

#home-videos .control.wow.fadeInUp {
  position: absolute;
  top: 30%;
  left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#home-videos .prev.slick-arrow {
  left: auto;
  right: 50px;
}

#home-videos span.next.slick-arrow {
  position: absolute;
  top: 50%;
  right: -49px;
}

#home-videos span.prev.slick-arrow {
  position: absolute;
  top: 50%;
  left: -49px;
}

#home-videos .slick-arrow i {
  width: 40px;
  height: 40px;
  line-height: 36px;
  border-radius: 5px;
  border: 2px solid #aaaaaa;
  color: #fff;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

#home-videos .slick-arrow:hover i {
  border-color: #fff;
  background-color: #fff;
  color: #000;
}

#home-teams {
  font-family: 'Poppins', sans-serif;
}

#home-teams h1 {
  font-size: 30px;
  color: #0083cb;
  font-weight: 700;
}

#home-teams h1:after {
  content: "";
  background-color: #0083cb;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 15px;
}

#home-teams .item-team {
  border: 1px solid #cac6c6;
}

#home-teams .slick-slide {
  height: auto;
  outline: 0;
}

#home-teams .prev.slick-arrow {
  left: auto;
  right: 70px;
}

#home-teams .slick-arrow i {
  width: 40px;
  height: 40px;
  line-height: 36px;
  border-radius: 5px;
  border: 2px solid #aaaaaa;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

#home-teams .slick-arrow {
  position: absolute;
  top: -55px;
  right: 14px;
}

#home-teams .slick-slide img {
  display: block;
  margin: 0 auto;
}

#home-publications {
  font-family: 'Poppins', sans-serif;
}

#home-publications h1 {
  font-size: 30px;
  color: #0083cb;
  font-weight: 700;
}

#home-publications h1:after {
  content: "";
  background-color: #0083cb;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 15px;
}

#home-publications .slick-slide {
  height: auto;
  outline: 0;
}

#home-publications .prev.slick-arrow {
  left: auto;
  right: 50px;
}

#home-publications span.next.slick-arrow {
  position: absolute;
  top: 50%;
  right: -49px;
}

#home-publications span.prev.slick-arrow {
  position: absolute;
  top: 50%;
  left: -49px;
}

#home-publications .slick-arrow i {
  width: 40px;
  height: 40px;
  line-height: 36px;
  border-radius: 5px;
  border: 2px solid #aaaaaa;
  color: #000;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

#home-publications .slick-arrow:hover i {
  border-color: #aaaaaa;
  background-color: #fff;
  color: #000;
}

/*#home-publications .item-team {
  border: 1px solid #cac6c6;
}*/

#home-journal {
  background: url(../images/bg-1.jpg) no-repeat center center;
  background-size: cover;
  padding-top: 70px;
  font-family: 'Poppins', sans-serif;
  background-attachment: fixed;
}

#home-journal h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}

#home-journal .slick-slide {
  height: auto;
  outline: 0;
}

#home-journal h1:after {
  content: "";
  background-color: white;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 15px;
}

#home-journal .slick-slide {
  height: auto;
  outline: 0;
}

#home-journal .prev.slick-arrow {
  left: auto;
  right: 50px;
}

#home-journal span.next.slick-arrow {
  position: absolute;
  top: 50%;
  right: -49px;
}

#home-journal span.prev.slick-arrow {
  position: absolute;
  top: 50%;
  left: -49px;
}

#home-journal .slick-arrow i {
  width: 40px;
  height: 40px;
  line-height: 36px;
  border-radius: 5px;
  border: 2px solid #aaaaaa;
  color: #fff;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

#home-journal .slick-arrow:hover i {
  border-color: #aaaaaa;
  background-color: #fff;
  color: #000;
}

#home-journal .item-journal {
  background-color: #fff;
  margin-bottom: 25px;
}

#home-journal .item-content {
  padding: 15px;
  padding-top: 20px;
}

#home-journal .journal-img {
  position: relative;
  width: 70px;
  height: 70px;
  display: block;
  padding-left: 10px;
  margin-bottom: 5px;
}

#home-journal .journal-img img {
  border-radius: 50%;
  margin-top: -40px;
}

#home-journal h5 {
  color: #0083cb;
  font-size: 18px;
  padding-left: 10px;
  padding-top: 10px;
}

#home-journal span {
  color: #25b6b6;
  font-size: 16px;
  font-weight: 400;
  padding-left: 10px;
  padding-top: 10px;
}

#home-journal p {
  margin-left: 65px;
  margin-top: -40px;
  font-size: 13px;
}

#home-news {
  font-family: 'Poppins', sans-serif;
}

#home-news h1 {
  font-size: 30px;
  color: #0083cb;
  font-weight: 700;
}

#home-news h1:after {
  content: "";
  background-color: #0083cb;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 15px;
}

#home-news .item-img {
  position: relative;
  height: auto;
}

#home-news .item-img .date {
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 1;
}

#home-news .news-content {
  padding-top: 10px;
}

#home-news h6 {
  color: #20b3b5;
  font-size: 19px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

#home-news p {
  color: #8a8a8a;
  font-size: 14px;
}

#home-news img {
  width: 100%;
}

#home-news p.event {
  color: #777676;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 10px;
}

#home-news .btn {
  padding: 7px 20px;
}

#home-news span.date-day {
  font-size: 3em;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 1;
  display: block;
}

#home-news span.date-month {
  font-size: 1.28571em;
  margin-bottom: 0;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
}

#home-news .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(39, 193, 217, 0.7);
  z-index: 0;
}

#home-news .overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(146, 105, 192, 0.7);
  z-index: 0;
}

#home-news .overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 131, 203, 0.7);
  z-index: 0;
}

#home-news .overlay3 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(155, 14, 13, 0.7);
  z-index: 0;
}

#home-news h6.head1 {
  color: #9269b9 !important;
}

#home-news h6.head2 {
  color: #0083cb !important;
}

#home-news h6.head3 {
  color: #9b0e0d !important;
}

#home-news a.btn.lern {
  background-color: #9269b9;
  color: #fff;
}

#home-news a.btn.lern1 {
  background-color: #0083cb;
  color: #fff;
}

#home-news a.btn.lern2 {
  background-color: #9b0e0d;
  color: #fff;
}

#home-news a.btn.readmore {
  background-color: #0083cb;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: background-color .3s ease-out;
  transition: background-color .3s ease-out;
  margin-bottom: 10px;
}

#home-news a.btn.readmore:hover {
  background: transparent;
  border-color: #0083cb;
  color: #0083cb;
}

#home-institution {
  background-color: #0baa83;
  font-family: 'Poppins', sans-serif;
}

#home-institution h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}

#home-institution .slick-slide {
  height: auto;
  outline: 0;
}

#home-institution h1:after {
  content: "";
  background-color: white;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 15px;
}

#home-institution h5 {
  text-align: center;
  padding-top: 24px;
  color: #fff;
  /*margin-bottom: 20px;*/
}

#home-institution .prev.slick-arrow {
  left: auto;
  right: 50px;
}

#home-institution span.next.slick-arrow {
  position: absolute;
  top: 50%;
  right: -49px;
}

#home-institution span.prev.slick-arrow {
  position: absolute;
  top: 50%;
  left: -49px;
}

#home-institution .slick-arrow i {
  width: 40px;
  height: 40px;
  line-height: 36px;
  border-radius: 5px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

#home-institution .slick-arrow:hover i {
  border-color: #fff;
  background-color: #fff;
  color: #000;
}

#home-social {
  font-family: 'Poppins', sans-serif;
  /*padding-top: 70px;*/
}

#home-social h1 {
  font-size: 30px;
  color: #0083cb;
  font-weight: 700;
}

#home-social h1:after {
  content: "";
  background-color: #0083cb;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 15px;
}

#home-social .slick-slide {
  height: auto;
  outline: 0;
}

#footer {
  background: #262e3b url(../images/map-bg.png) no-repeat center center;
  font-family: 'Poppins', sans-serif;
  padding-top: 70px;
}

#footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .address-list li {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 20px;
  display: inline-block;
}

#footer .address-list i {
  float: left;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #18bfc3;
  text-align: center;
  color: #FFFFFF;
  font-size: 1.14286em;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  margin-right: 20px;
}

#footer h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 40px;
}

#footer a {
  margin-top: 8px;
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #fff;
}

#footer .quick_link {
  padding: 0;
  margin: 0;
}

#footer .quick_link li a {
  font: 400 14px/28px "Roboto", sans-serif;
  color: #fefefe;
  position: relative;
  padding-left: 30px;
  text-decoration: none;
}

#footer .quick_link li a i {
  font-size: 14px;
  padding-right: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
}

#footer .quick_link li a:hover {
  color: #0083cb;
}

#footer .posts-thumb {
  padding-right: 20px;
}

#footer .posts-thumb a {
  display: block;
  position: relative;
}

#footer .date {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

#footer .entry-date span {
  font-size: 1.28571em;
  color: #FFFFFF;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 600;
}

#footer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

#footer .overlay.bg-blue {
  background-color: #18bfc3d9;
}

#footer .overlay.bg-red {
  background-color: #9b0e0dd9;
}

#footer h4.entry-title {
  color: #FFFFFF;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 16px;
  padding-top: 25px;
  font-weight: 400;
}

#footer p {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
}

#footer .links a {
  font-size: 14px;
}

#footer a.ds {
  color: #18bfc3 !important;
}

#inner-page {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  height: 250px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

#inner-page span.overlay-top-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.32);
}

#inner-page .page-title-wrapper {
  position: relative;
  z-index: 3;
  right: 0;
  left: 0;
  border: 0;
  margin: auto;
  color: #fff;
  top: 40%;
}

#inner-page .inner_title {
  padding-top: 0px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
}

#inner-page h4 {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 36px;
  text-transform: none;
}

#inner-page .paths {
  text-align: center;
  padding-top: 10px;
}

#inner-page ul.breadcrumbs-custom-path {
  margin-left: -55px;
  line-height: 1.33;
  letter-spacing: .1em;
  display: -webkit-inline-flex;
  list-style-type: none;
  font-size: 14px;
  color: #18bfc3;
  font-weight: 500;
}

#inner-page li.path {
  padding: 0px 20px;
}

#inner-page li.path:after {
  content: "/";
  display: inline-block;
  position: absolute;
  color: #fff;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  margin: 0 auto;
  margin-left: 8px;
  margin-top: 8px;
}

#inner-page a {
  color: #fff;
  text-decoration: none;
}

#inner-about {
  font-family: 'Poppins', sans-serif;
}

#inner-about p {
  font-size: 14px;
  line-height: 24px;
}

#inner-about h1 {
  font-size: 30px;
  color: #0083cb;
  font-weight: 700;
}

#inner-about h1:after {
  content: "";
  background-color: #0083cb;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 15px;
}

#inner-about .item-img {
  overflow: hidden;
  margin-bottom: 30px;
}

#inner-about img {
  width: 100%;
  position: relative;
  transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -ms-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
}

#inner-about img:hover {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

#inner-contact-us {
  font-family: 'Poppins', sans-serif;
}

#inner-contact-us .icon {
  font-size: 56px;
  margin-bottom: 10px;
}

#inner-contact-us h5 {
  font-size: 24px;
  font-weight: 600;
  padding-top: 15px;
}

#inner-contact-us h5:after {
  content: "";
  background-color: #fff;
  width: 30px;
  height: 3px;
  display: block;
  margin: 0 auto;
  margin-top: 15px;
}

#inner-contact-us form {
  margin-top: 40px;
}

#inner-contact-us .form-control {
  display: block;
  width: 100%;
  padding: .395rem .75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0rem;
  height: 50px;
  -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

#inner-contact-us textarea, #inner-contact-us textarea.form-control {
  height: auto;
  min-height: 128px;
  padding-top: 10px;
}

#inner-contact-us .btn.btn-small {
  min-width: 150px;
}

#inner-contact-us .btn-maincolor {
  background-color: #18bfc3;
  border: 3px solid #18bfc3;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  outline: 0;
  border-radius: 0px;
  color: #fff;
}

#inner-contact-us .btn-maincolor:hover {
  background-color: transparent;
  color: #18bfc3;
}

#inner-contact-us .map {
  border: 1px solid #d2d2d2;
}

#inner-contact-us .contact-list {
  margin-bottom: 80px;
}

#inner-contact-us p {
  padding-top: 15px;
  font-size: 18px;
  line-height: 30px;
}

#inner-contact-us h2 {
  font-size: 38px;
  font-weight: 600;
  color: #464545;
  letter-spacing: 0.5px;
}

#inner-contact-us h2:after {
  content: "";
  background-color: #0083cb;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 15px;
}

#inner-programs {
  font-family: 'Poppins', sans-serif;
}

#inner-programs p {
  font-size: 14px;
  line-height: 24px;
  color: #676666;
}

#inner-programs .item-content {
  border: 1px solid #ccc;
  padding: 50px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}

#inner-programs h2 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #3ac9cc;
}

#inner-gallery img {
  padding-bottom: 30px;
}

#inner-articles {
  font-family: 'Poppins', sans-serif;
}

#inner-articles .articles-area {
  border: 1px solid #e4e4e4;
  margin-bottom: 30px;
}

#inner-articles .articles-content {
  padding-top: 40px;
  padding-left: 25px;
}

#inner-articles .articles-content h1 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

#inner-articles .articles-content p {
  font-size: 14px;
  text-transform: capitalize;
  color: #3c3c3c;
  line-height: 26px;
  margin: 0;
}

#inner-articles .articles-content .post-meta {
  position: relative;
  padding: 0;
  margin-top: 25px;
  float: right;
}

#inner-articles .articles-content .post-meta li {
  position: relative;
  color: #1a224d;
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
  padding-right: 4px;
  margin-right: 20px;
  margin-bottom: 2px;
  display: inline-block;
  font-family: 'Muli', sans-serif;
}

#inner-articles a.btn.readmore {
  background-color: #0083cb;
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 13px;
  margin-top: 10px;
  font-weight: 400;
  -webkit-transition: background-color .3s ease-out;
  transition: background-color .3s ease-out;
  margin-bottom: 10px;
}

#inner-articles a.btn.readmore:hover {
  background: transparent;
  border-color: #0083cb;
  color: #0083cb;
}

#inner-articles .item-img {
  overflow: hidden;
}

#inner-articles img {
  border-radius: 5px;
  position: relative;
  transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -ms-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
}

#inner-articles img:hover {
  border-radius: 5px;
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

a.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 150px;
  width: 47px;
  height: 47px;
  line-height: 30px;
  background-color: #0083cb;
  color: #fff;
  font-size: 26px;
  border-radius: 25px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  display: none;
  padding-top: 10px;
}

.biz-team-three-img {
  padding: 0;
  margin: 0;
  position: relative;
}

.biz-team-three-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*start team three css*/
.biz-team-three-info {
  margin-bottom: 20px;
}

.biz-team-three-circle {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.biz-team-three-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0083cb;
  overflow: hidden;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
}

.biz-team-three-info:hover .biz-team-three-social {
  height: 20%;
}

.biz-team-three-info:hover .biz-team-three-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.biz-team-three-social ul li {
  margin-bottom: 2px;
  text-align: right;
  display: inline-block;
  padding-right: 10px;
  padding-top: 20px;
}

.biz-team-three-social ul li a {
  color: #fff;
  font-size: 15px;
  text-align: right;
  display: block;
}

.biz-team-three-social ul li a:hover {
  color: #000;
}

.biz-team-three-content h6 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.biz-team-three-content p {
  font-size: 15px;
  font-weight: 400;
}

/*end team three css*/
/*============================================================ 
    11. CLIENT TESTIMONIAL CSS 
============================================================*/
.biz-call-to-action {
  float: left;
  width: 100%;
  position: relative;
  z-index: 2;
  background: url("../img/testimonial-bg.jpg") no-repeat center center/cover;
  overflow: hidden;
}

.biz-call-to-action:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.8);
}

.biz-call-to-action:after {
  background-color: #505cfd;
}

.biz-call-to-action:after {
  content: '';
  position: absolute;
  left: 0;
  top: -30px;
  width: 46%;
  height: 550px;
  z-index: -1;
  -webkit-transform: rotate(15deg) scale(1.55) translateX(-105px);
  transform: rotate(15deg) scale(1.55) translateX(-105px);
}

.biz-call-to-action {
  color: #fff;
}

.testimonial-intro.style-two {
  position: relative;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 25px;
}

.testimonial-intro.style-two:before {
  content: "\f10d";
  color: #fff;
  font-size: 40px;
  position: absolute;
  top: 0;
  line-height: 1;
  font-family: FontAwesome;
}

.call-box {
  margin-bottom: 15px;
}

.call-box span {
  font-size: 25px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background: #fff;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
}

.call-box .call-box-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 15px 0 0;
  line-height: 20px;
}

.call-box-text p a {
  color: #505cfd;
}

.call-box-text p a:hover {
  color: #fff;
}

/*testimonial section*/
.testimonial-intro {
  position: relative;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 25px;
}

.testimonial-intro:before {
  content: "\f10d";
  color: #505cfd;
  font-size: 40px;
  position: absolute;
  top: 0;
  line-height: 1;
  font-family: FontAwesome;
}

.testimonial-client img {
  width: 60px !important;
  height: 60px;
  line-height: 60;
  margin-right: 10px;
  float: left;
  border-radius: 100%;
  background: #505cfd;
  overflow: hidden;
  padding: 2px;
}

.testimonial-client-info {
  padding-top: 8px;
}

.testimonial-client-info a {
  text-decoration: none;
  display: inline-block;
  color: #dddddd;
}

.testimonial-client-info a:hover {
  color: #000;
}

.testimonial-client-info h5 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: block;
}

.testimonial-client-info h5 > small {
  background: #000;
  padding: 2px 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
}

.client-testimonial.padding {
  padding: 8% 0;
  position: absolute;
}

.client-testimonial {
  margin-bottom: 20px;
}

.white-indicator.owl-theme .owl-nav.disabled + .owl-dots, .color-indicator.owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  bottom: 5%;
  right: 50px;
}

.white-indicator.owl-theme .owl-dots .owl-dot.active span {
  background: #505cfd;
}

.color-indicator.owl-theme .owl-dots .owl-dot.active span {
  background: #000;
}

#inner-gallery img {
  padding-bottom: 30px;
}

#gallery .hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

#gallery .hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate(460px, -100px) rotate(180deg);
  transform: translate(460px, -100px) rotate(180deg);
  -webkit-transition: all 0.2s 0.4s ease-in-out;
  transition: all 0.2s 0.4s ease-in-out;
}

#gallery .hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#gallery .hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
}

#gallery .hovereffect a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#gallery .hovereffect a.info:hover {
  -webkit-box-shadow: 0 0 5px #fff;
  box-shadow: 0 0 5px #fff;
}

#gallery .hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

#gallery .hovereffect:hover h2 {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

#gallery .hovereffect:hover a.info {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
/*# sourceMappingURL=main.css.map */

@media screen and (max-width: 768px) {
    #home-wisdom, #home-videos, #home-news, #home-publications, #home-news, #home-institution, #home-social, #home-gallery {
    padding: 30px 0px !important;
}
    div#home- {
    padding: 40px 0px;
}
    #header .dropdown-menu .dropdown-item {
  padding: 4px 20px;
    }
    .sm-btn {
    padding-top: 7px !important;
}
/*    .slick-slide {*/
/*    height: 155px;*/
/*}*/
    .item-team{
        height: 530px !important;
    }
    .sm-pt-0 {
    margin-top: 0px !important;
}
#home-wisdom a.btn.readmore {
    font-size: 12px;
}
#footer{
    padding-top: 15px !important;
}
    div#home-news {
    padding-bottom: 25px !important;
     margin-top: 0px !important;
}
   .lg-mt-0 {
    margin-top: 0px !important;
}
  
    #home-social {
    padding-top: 50px;
}
    div#home-wisdom {
    margin-bottom: 5px !important;
}
    #about {
   top: -24px;
    height: 102px;
    }
    #footer p{
        margin-bottom: 0px;
        font-size: 13px;
    }
    #footer .links a {
    font-size: 13px;
}
    #footer h4.entry-title {
    font-size: 13px;
    }
    #footer h2 {
  margin-bottom: 15px;
   margin-top: 35px;
   font-size: 18px;
}
    #about .intro-item {
    height: 220px;
    }

div#inner-about{
   margin-top: 0px !important;
    padding-top: 20px !important;
    padding-bottom: 10px !important;
}
div#inner-programs{
    padding-top : 0px !important;
}
div#inner-articles{
      padding-top : 0px !important;
}
div#gallery{
    margin-top: 0px !important;
}
section.products.mt-4.pt-5.pb-5{
    margin-top: 0px !important;
}
div#inner-contact-us{
    margin-top : 0px !important;
}
.contact-list.text-center {
    margin-bottom: 20px !important;
}
}


.searchBox {
  position: fixed;
  top: 0%;
  left: 0%;
  /*transform:  translate(-50%,50%);*/
  background: #464646;
  /* height: 40px; */
  border-radius: 40px;
  padding: 10px;

}

.searchBox:hover > .searchInput {
  width: 240px;
  padding: 0 6px;
}

.searchBox:hover > .searchButton {
background: white;
color : #2f3640;
}

.searchButton {
  color: white;
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2f3640;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

.searchInput {
  border:none;
  background: none;
  outline:none;
  float:left;
  padding: 0;
  color: white;
  font-size: 16px;
  transition: 0.4s;
  line-height: 40px;
  width: 0px;

}

@media screen and (max-width: 620px) {
.searchBox:hover > .searchInput {
  width: 150px;
  padding: 0 6px;
}
}


.searchBox .suggestions.active {
	box-shadow: 0px -2px 15px rgba(33,33,33,0.1);
}

.searchBox .suggestions li {
  margin: 18px 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  font-size: 15px;
}

.searchBox .suggestions.active li {
	opacity: 1;
	height: unset;
}
.searchBox .suggestions li:hover {
  color: #4D8DCB;
}
.searchBox .suggestions li b {
  font-weight: 600;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  *zoom: 1;
  /* Für den IE6 und IE7 */
}


.search-float{
 position: fixed;
    top: 390px;
    left: 30px;
 
  z-index: 999999;
}

div#myInputautocomplete-list {
 font-size: 15px;
    width: 285px;
    color: white;
    padding: 10px;
    cursor: pointer;
}


button:focus {
    /*outline: 1px dotted;*/
    /*outline: 5px auto -webkit-focus-ring-color;*/
    outline: none;
}

@media only screen and (min-width: 1200px) and (max-width: 1800px) {
    
    li.more-btn {
    padding-top: 50px !important;
}

.search-float {
    position: fixed;
    top: 345px;
    left: 30px;
    z-index: 9999;
}
}

.pre {
    position: absolute;
    cursor: pointer;
    z-index: 1000;
    top: 50%;
    left: -48px;
    /*background: #ffcb06;*/
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #aaaaaa;
    transform: translateY(-50%);
}
.nex {
    display: block;
    cursor: pointer;
    position: absolute;
    right: -48px;
    top: 50%;
    border-radius: 5px;
    border: 2px solid #aaaaaa;
    /*background: #ffcb06;*/
    padding: 10px;
    transform: translateY(-50%);
    z-index: 1000;
}


.pre-p {
    position: absolute;
    z-index: 1000;
    top: 60%;
    left: -48px;
    /*background: #ffcb06;*/
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid #aaaaaa;
    transform: translateY(-50%);
}
.nex-n {
    display: block;
    position: absolute;
    right: -48px;
    top: 60%;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid #aaaaaa;
    /*background: #ffcb06;*/
    padding: 10px;
    transform: translateY(-50%);
    z-index: 1000;
}

@media only screen and (min-width: 1200px) and (max-width: 1800px) {
.pre-p{
    top: 53% !important;
}
.nex-n{
    top: 53% !important;
}
}

.slick-list {
  outline: none !important;
}
.slick-slide {
  outline: none !important;
  /*height: 400px;*/
  }
  
  
  
.card {
    width: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 1px 15px 20px rgb(0 0 0 / 44%);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.details {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 5px 10px;
    transform: translateY(100%);
    transition: all 0.3s;
}

.details h2 {
    font-family: 'Raleway', sans-serif ;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: #565656;
    margin: auto;
}

.details a {
    margin-left: 20px;
    transform: translateY(50px);
    transition: all 0.3s;
    color: #565656;
}

.details a:first-child {
    transition-delay: 0.1s;
}

.details a:nth-child(2) {
    transition-delay: 0.2s;
}

.details a:last-child {
    transition-delay: 0.3s;
}

.card:hover img {
    transform: scale(1.2);
}

.card:hover .details, card:hover .details a {
    transform: none;
}

@media (max-width: 360px) {
    .card {
        width: auto;
        flex: 1 1 100%;
    }

    .details h2, .details a {
        font-size: 14px;
    }
}

li.more-btn {
    padding-top: 30px;
}
.box{
    font-family: 'Raleway', sans-serif;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    border-bottom: 1px solid #e1e1e1;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
}
.box:hover{ box-shadow: 15px 15px 30px rgba(0,0,0,0.4); }
.box:before{
    content: '';
    background: radial-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.7));
    height: 100%;
    width: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}
.box:hover:before{ right: 0%; }
.box img{
    width: 100%;
    height: auto;
    transition: all 0.4s ease-in-out;
}
.box:hover img{ transform: translateX(90%); }
.box img:nth-child(2n){
    filter: grayscale(100%);
    position: absolute;
    right: 100%;
    top: 0;
}
.box .box-content{
    color: #fff;
    background-color: rgb(0 131 203 / 78%);
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 15px 15px 12px;
    opacity: 0;
    transform: scale(0);
    transform-origin: left bottom;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}
.box:hover .box-content{
    opacity: 1;
    transform: scale(1);
}
.box .title{
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    margin: 0 0 2px;
}
.box .post{
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    margin: 0 0 7px;
    display: block;
}
.box .icon{
    padding: 0px;
    margin: 0;
    list-style: none;
}
.box .icon li{
    display: inline-block;
    margin: 0 4px;
}
.box .icon li a{
    color: #fff;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
    height: 30px;
    width: 30px;
    /*border: 1px solid #fff;*/
    border-left: none;
    border-top: none;
    border-radius: 50%;
    display: block;
    transition: all 0.3s;
}
/*.box .icon li a:hover{ box-shadow: 0 0 10px #fff inset; }*/.slick-slide
@media only screen and (max-width:990px){
    .box { margin: 0 0 30px; }
}
}

/*.carousel-h.slick-initialized.slick-slider{*/
/*    height: 180px !important;*/
/*}*/

.item-team.h-large{
    height: 385px !important;
}

div#home- {
    padding: 60px 0px;
}

.tawk-bubble-container {
    cursor: pointer;
    position: relative;
    height: 100%;
    display: none !important;
}

.float-whatsapp {
		position: fixed;
		width: 45px;
		height: 45px;
		bottom: 205px;
         right: 22px;
		background-color: #25d366;
		color: #FFF;
		border-radius: 50px;
		text-align: center;
		font-size: 28px;
		/* box-shadow: 2px 2px 3px #999; */
		z-index: 1;
	  }
	  .my-float-whatsapp{
		  margin-top: 8px;
	  }
	  .float-call {
		position: fixed;
		width: 45px;
		height: 45px;
		bottom: 144px;
        right: 34px;
		background-color: #2196F3;
		color: #FFF;
		border-radius: 50px;
		text-align: center;
		font-size: 32px;
		/* box-shadow: 2px 2px 3px #999; */
		z-index: 1;
	  }
	  
	  .my-float-call{
		  margin-top:8px;
	  }
	  
	  @media only screen and (max-width: 767px){
		.float-whatsapp {
		  bottom:85px;
		  right: 20px;
		  z-index: 11;
	  }
	  .float-call {
		bottom: 153px;
		right: 20px;
		}
	  }




@-webkit-keyframes float {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	50% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes float {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	50% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.faa-float.animated,
.faa-float.animated-hover:hover,
.faa-parent.animated-hover:hover>.faa-float {
	-webkit-animation: float 2s linear infinite;
	animation: float 2s linear infinite
}

.faa-float.animated-hover.faa-fast:hover,
.faa-float.animated.faa-fast,
.faa-parent.animated-hover:hover>.faa-float.faa-fast {
	-webkit-animation: float 1s linear infinite;
	animation: float 1s linear infinite
}

.faa-float.animated-hover.faa-slow:hover,
.faa-float.animated.faa-slow,
.faa-parent.animated-hover:hover>.faa-float.faa-slow {
	-webkit-animation: float 3s linear infinite;
	animation: float 3s linear infinite
}

#home-wisdom, #home-videos, #home-news,
#home-publications, #home-news, #home-institution,
#home-social, #home-gallery {
    padding: 60px 0px;
}

.banner_area {
  position: relative;
  z-index: 1;
  min-height: auto; }
  .banner_area .banner_inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 260px;
    background: #000;
    z-index: 1; }
    .banner_area .banner_inner .overlay {
      position: absolute;
      left: 0;
      right: 0;
      background-repeat: no-repeat;
      background-attachment: fixed;
      top: 0;
      width: 100%;
      height: 125%;
      bottom: 0;
      z-index: -1;
      opacity: .40; }
    
      .banner_area .banner_inner .banner_content h2 {
        font-size: 30px;
    color: #0083cb;
    font-weight: 700;
        font-family: "Heebo", sans-serif;
        margin-bottom: 0px;
        text-transform: uppercase;
         }
      .banner_area .banner_inner .banner_content .page_link a {
        font-size: 14px;
        color: #fff;
        font-family: "Roboto", sans-serif;
        margin-right: 32px;
        position: relative; }
        .banner_area .banner_inner .banner_content .page_link a:before {
          content: "\e87a";
          font-family: 'Linearicons-Free';
          font-size: 14px;
          position: absolute;
          right: -25px;
          top: 54%;
          transform: translateY(-50%); }
        .banner_area .banner_inner .banner_content .page_link a:last-child {
          margin-right: 0px; }
          .banner_area .banner_inner .banner_content .page_link a:last-child:before {
            display: none; }
            
            
           a.btn.readmore-btn.mt-3 {
    background-color: #0083cb;
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    -webkit-transition: background-color .3s ease-out;
    transition: background-color .3s ease-out;
    margin-bottom: 10px;
}
 a.btn.readmore-btn.mt-3:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}