
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url(//db.onlinewebfonts.com/c/4a24899e94d8236f671c1090cd9e068c?family=Canela);





body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #009970;
  text-decoration: none;
}

a:hover {
  color: #00cc95;
  text-decoration: none;
}
p{
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #009970;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #00c28e;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 20px;
}

#header .header-container {
  background: rgba(255, 255, 255, 0.14);
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  top: 0;
}

#header.header-scrolled .navbar a{
  color: #00487d;
}

#header .logo {
  overflow: hidden;
  padding: 16px 30px 12px 30px;
}

#header .logo h1 {
  font-size: 26px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 40px; */
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    background: #0c385c;
  }

  #header.header-scrolled,
  #header .header-container {
    background: #0c385c;
  }

  #header .logo {
    padding-left: 0;
  }

  #header .logo h1 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 35px 10px 30px;
  color: #ffffff;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffd00a;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #009970;
  padding: 10px 25px;
  margin-left: 30px;
  margin-right: 15px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #00b383;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  color: black;
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #009970;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
  .navbar a, .navbar a:focus{
    padding: 10px 35px 10px 22px !important;
    font-size: 12px !important;
  }
  #header .logo{
    padding: 3px !important;
  }

}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 28, 31, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #36343a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #009970;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #009970;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: #000;
}

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: left;
}

@media (max-width: 992px) {

  #hero,
  #hero .carousel-item {
    height: calc(100vh - 70px);
  }

  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #428bca;
}





#hero .carousel-inner .carousel-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(45deg, #003561b4, #b17a288a);
}









#hero .btn-get-started:hover {
  background: #1c5c93;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (max-height: 500px) {

  #hero,
  #hero .carousel-item {
    height: 120vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f6f7;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #009970;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}












/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  background: #fff;
}
.about{
  background: linear-gradient(128deg, #003661, #b17a28f2);
}

.about h3{
  font-family: 'Canela';
}

.about .count-box {
  width: 100%;
}

.about .count-box i {
  display: block;
  font-size: 48px;
  color: #1966a5;
  float: left;
  line-height: 0;
}

.about .count-box span {
  font-size: 28px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #646c55;
  margin-left: 60px;
}

.about .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #646c55;
}

.about .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #646c55;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.about .count-box a:hover {
  color: #8b9578;
}

.about .content {
  font-size: 15px;
  padding: 2px 57px 0px 19px;
}

.about .content h3 {
  word-spacing: 5px;
  font-weight: 700;
  font-size: 24px;
  color: #3c4133;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about .content ul i {
  font-size: 24px;
  color: #94c045;
  position: absolute;
  left: 0;
  top: -2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#db9225f2 50%, rgba(89, 77, 36, 0.726) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgb(213 180 126);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #1c415c;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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



.about button {
  width: 150px;
  height: 40px;
  transition: 0.25s;
  border-radius: 4px;
  margin: 10px;
  font-size: 16px;
  font-family: Roboto;
  cursor: pointer;
}
.overlap {
  display: inline-block;
  text-align: center;
  transition: 0.2s;
  position: relative;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 2px solid #186ea5;
  color: #186ea5;
  background: none;
}
.overlapText {
  transition: 0.3s;
  margin-block: 0px;
}
.overlapTwo {
  position: absolute;
    width: 100%;
    text-align: center;
    transition: 0.2s;
    cursor: pointer;
    background: #186ea5;
    left: -154px;
    transition: 0.3s;
    top: 0;
    height: 40px
}
.overlapTwoText {
  color: #fff;
  font-size: 16px;
  margin-block: 10px;
  font-weight: 600;
}
.overlap:hover .overlapTwo {
  left: 0px;
}
.overlap:hover .overlapText {
  margin-left: 55px;
}
.overlap:active {
  /*Clicked and held*/
  box-shadow: 0px 5px 6px rgba(255, 0, 0, 0.3);
}











/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #009970;
  border: 2px solid #009970;
}








/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f7;
  margin-top: 100px;
}

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f4c55;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: linear-gradient(rgb(17 60 91), rgb(0 0 0 / 61%)), url(../img/banner/3.jpg) fixed center center;
  background-size: cover;
  padding-bottom: 55px;
  }


  #footer .footer-top {
    /* background: #f6f6f6; */
    padding: 60px 0 0 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info p strong{
    margin-right: 7px;
  }
  
  #footer .footer-top .footer-info p span{
    margin-right: 7px;
  }
  
  
  #footer .footer-top .footer-info h3 {
    color: #ffd17b;
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  
  #footer .footer-top .footer-info p {
    color: white;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
  }
  
  #footer .footer-top .social-links a {
    font-size: 24px;
    display: inline-block;
    /* background: #3fbbc0; */
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    /* background: #65c9cd; */
    color: #ffd380;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    color: #ffd276;
    font-size: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #f7b548;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    font-size: 15px;
    color: #ffffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #3fbbc0;
  }
  
  #footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
  }
  
  #footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
  }
  
  #footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #3fbbc0;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
  }
  
  #footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #65c9cd;
  }
  
  #footer .copyright {
    font-size: 12px;
      color: white;
      text-align: center;
      padding-top: 0px;
  }
  
  #footer .credits {
    color: white;
    padding-top: 3px;
    text-align: center;
    font-size: 12px;
  }
  
  #footer .credits a{
    color: #f7b449;
  }
  
  @media only screen and (min-width:1300px) and (max-width:1400px){
    #footer .footer-top .footer-links ul a{
      font-size: 13px !important;
    }
  }

/*--------------------------------------------------------------
# End Footer
--------------------------------------------------------------*/



.noti-announce .sections-title h2 {
  font-family: 'Canela';
  color: #005a9c;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  word-spacing: 4px;
}

.noti-announce .sections-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ab7d40;
  bottom: -5px;
  left: calc(50% - 25px);
}




.noti-announce{
  background-color: #f6f6f7;
}
.noti-announce .noti{
  font-size: 40px;
    font-weight: 600;
    color: #023861;
    font-family: 'Canela';
}

/* .noti-announce .noti::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ab7d40;
  bottom: 0px;
  left: 30%;
} */




/* .noti-announce .noti-slider{
  background-color: #1a4160;
} */

.noti-announce  .noti-sliding{
  padding: 20px;
  box-shadow: 0 22px 35px rgb(255 236 236 / 9%);
  /* background-color: #1a4160; */
}

.noti-announce .noti-sliding .notification:hover{
  color: rgb(171 117 0);
}

.noti-announce .noti-sliding .notification{
  color: #000000;
}

.noti-announce .noti-sliding .announce-slider{
  padding-top: 6px;
  padding-left: 20px;
  border-bottom: 1px solid #5c5c5c1f;
  box-shadow: 0 22px 35px rgb(183 183 183 / 28%);
}

.noti-announce .noti-sliding .announce-slider:hover{
  background-color: rgb(242 231 206);
}

.noti-announce .noti-sliding .noti-slider:hover{
  background-color: rgb(242 231 206);
}
.noti-announce .noti-sliding .noti-slider:hover .notification{
  color: rgb(219, 0, 0) !important;
}
.noti-announce .noti-sliding .noti-slider:hover .active-news{
  color: rgb(2, 15, 201) !important;
}



.noti-announce .noti-sliding .announce-slider:hover .notification{
  color: rgb(219, 0, 0) !important;
}
.noti-announce .noti-sliding .announce-slider:hover .active-news{
  color: rgb(2, 15, 201) !important;
}


.noti-announce .noti-sliding .notification .gif{
  display: inherit;
}

.noti-announce .noti-sliding .noti-slider{
  padding-top: 6px;
  padding-left: 20px;
  border-bottom: 1px solid #5c5c5c1f;
  box-shadow: 0 22px 35px rgb(183 183 183 / 28%);
}

.noti-announce .noti-sliding .notification .active-news{
  color: #ff0303 !important;
}

.noti-announce .noti-sliding .announce-slider .test_title,
.noti-announce .noti-sliding .noti-slider .test_title{
  font-size: 15px;
  font-weight: 400;
  color: #0056ad;
  margin-top: 0px;
}

.noti-announce .noti-sliding .announce-slider .test_title .fa-calendar-alt,
.noti-announce .noti-sliding .noti-slider .test_title .fa-calendar-alt{
  padding-right: 7px;
}

@media (max-width: 1366px) {
  .noti-announce .noti{
    font-size: 30px !important;
  }
}











.notifications{
  margin: 0;
    margin-left: -12px;
    /* margin-right: 92px; */
    /* padding: 29px;*/
}

.scrolling-bar {
  width: 100%;
    padding: 9px;
    position: fixed;
    bottom: 0px;
    height: auto;
    overflow: hidden;
    -webkit-border-radius: 10;
    -moz-border-radius: 10;
    z-index: 1;
    background: #1b415e;
}

.scrolling-bar .head h2{
  float: right;
  color: #bd0000;
  font-size: 22px !important;
  font-weight: 100 !important;  
  font-family: Arial, Helvetica, sans-serif;
}

.news-scroll .marquee a {
  /* font-family: "Cera Pro";  */
  font-weight: 500;
  position: relative;
  font-size: 18px;
  color: rgb(255 255 255);
  padding: 0 100px;
}
.news-scroll .marquee a:after {
  content: "";
  width: 2px;
  background-color: #d48e45;
  height: 17px;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.1;}
}
.blink{
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-direction: alternate;
}












/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #194f76;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  text-align: center;
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #247cba;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  text-align: center;
  font-weight: 700;
  color: black;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  color: black;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}













/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.facilities {
  background-color: #f6f6f7;
}
.facilities .img {
  border-radius: 8px;
  overflow: hidden;
}

.facilities .img img {
  transition: 0.6s;
}

.facilities .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: white;
  position: relative;
  background: white;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px #959393;
}

.facilities .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: #005492;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid white;
}

.facilities .details h3 {
  color: #0f68a9;
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.facilities .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.facilities .service-item:hover .details h3 {
  color: #9d7743;
}

.facilities .service-item:hover .details .icon {
  background: white;
  border: 2px solid #9d7743;
}

.facilities .service-item:hover .details .icon i {
  color: #9d7743;
}

.facilities .service-item:hover .img img {
  transform: scale(1.2);
}













/* ------------Notification footer---------- */

.purecounter{
  display: flex !important;
}
.purecounter::after {
  content: "+";
  display: block;
  position: relative;
  font-weight: 600;
}

.noti-icon-foot{
  color: #eec303;
    font-size: 27px;
    float: right;
}

.blink {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
      opacity: 0;
  }
}

/* ------------End Notification footer---------- */




/* ----------------Prev and Next-------------- */

.prev {
  border: 1px solid #ffba00;
  padding: 10px;
  margin-top: 230px;
  margin-left: -35px;
  position: absolute;
  width: 35px;
}

.next {
  border: 1px solid #ffba00;
  margin-left: 100%;
  position: absolute;
  bottom: 226px;
  padding: 10px;
  width: 35px;
}
/* ----------------End Prev and Next-------------- */

















/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.news .post-item .post-img img {
  transition: 0.5s;
}



.news .post-item .post-content {
  padding: 17px;
}

.news .post-item .post-title {
  font-size: 19px;
    color: #02285d;
    font-weight: 500;
    transition: 0.3s;
  /* margin-bottom: 15px; */
}

.news .post-item .meta i {
  font-size: 16px;
  color: red;
}

.news .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.news .post-item hr {
  color: #888;
  margin: 20px 0;
}

.news .post-item .readmore {
  /* display: flex; */
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #fa9a0d;
}

.news .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.news .post-item:hover .post-title
 {
  color: #f9ae40;
}

.news .post-item:hover .post-img img {
  transform: scale(1.1);
}


.news .post-item:hover .readmore1,
.news .post-item:hover .readmore3{
  text-align: center;
    padding: 10px 0;
    color: #fff;
    background-color: #004f88;
    border-radius: 30px
}

.news .post-item:hover .readmore2{
  text-align: center;
    padding: 10px 0;
    color: #fff;
    background-color: #fff;
    background-image: linear-gradient(140deg, #1c415c, #1c415cbf 50%, #ce8848);
    border-radius: 30px;
}
.post-date p {
  margin-bottom: 15px;
}

/* ------------End News section-------------- */











/* -----------------Section title---------------- */

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-family: 'Canela';
  color: #005a9c;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  word-spacing: 4px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ab7d40;
  bottom: 12px;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 20px;
}

/* -----------------End Section title---------------- */

















/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials{
  background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.testimonials .section-title{
  padding-bottom: 0px !important;
}


.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}

/* -------------End Testimonials-------------- */







/* ===============Side nav================== */


/* .side-nav {
  float: left;
    position: absolute;
    top: 25%;
    left: -34px;
    background: transparent;
    z-index: 1;
}

.side-nav ul {
	text-align: center;
}

.side-nav ul li {
  border-bottom: 2px solid white;
  list-style: none;
	position: relative;
  width: 70px;
  cursor: pointer;
	background: linear-gradient(100deg, #0062b0, #ff9b06f2);
	text-transform: uppercase;
	transition:all .4s ease-out;
}

.side-nav ul li:after {
	position: absolute;
	background: white;
	color: crimson;
	top:0;
	left: 70px;
	width: 98px; 
  height: 100%;
  opacity:.5;
  transform: perspective(400px) rotateY(90deg);
	transform-origin: 0 100%;
	transition:all .4s ease-out;
}

.side-nav ul li:nth-child(1):after { 
	content: "Apply";
	line-height: 88px;
}
.side-nav ul li:nth-child(2):after { 
	content: "Register";
	line-height: 88px;
}
.side-nav ul li:nth-child(3):after { 
	content: "Download";
	line-height: 85px;
}

.side-nav ul li:hover {
	transform: translateX(-70px);
}

.side-nav ul li:hover:after {
  opacity: 1;
	transform: perspective(400px) rotateY(0deg) scale(1) ;
}


.side-nav ul li > div {
	display: inline-block;
	padding: 25px 0;
	background: transparent;
}

.side-nav ul li div { position: relative; }


.side-icon{
  color: white;
    font-size: 27px;
} */
/* ===============End Side nav================== */



















.fixed-social1 {
  position: fixed;
  top: 281px;
  transition: 0.5s;
  left: -145px;
  height: auto;
  overflow: hidden;
  background: linear-gradient(148deg, #003661, #db8e1cf2);
  z-index: 99999;
}

.fixed-social1 a {
  font-weight: 500;
  color: #fff;
  display: block;
  padding: 8px 15px;
  position: relative;
  text-align: start;
  line-height: 24px;
  font-size: 23px;
  margin-bottom: 1px;
  z-index: 2;
}

.fixed-social1:hover {
  left: 0;
}



.fixed-social2 {
  position: fixed;
  top: 338px;
  left: -155px;
  transition: 0.5s;
  height: auto;
  overflow: hidden;
  background: linear-gradient(148deg, #003661, #db8e1cf2);
  z-index: 99999;
}

.fixed-social2 a {
  font-weight: 500;
  color: #fff;
  display: block;
  padding: 8px 15px;
  position: relative;
  text-align: start;
  line-height: 24px;
  font-size: 23px;
  margin-bottom: 1px;
  z-index: 2;
}

.fixed-social2:hover {
  left: 0;
}



/* .fixed-social3 {
  background: linear-gradient(148deg, #003661, #db8e1cf2);
  position: fixed;
  left: -155px;
  transition: 0.5s;
  top: 396px;
  height: auto;
  overflow: hidden;
  z-index: 99999;
}

.fixed-social3 a {
  font-weight: 500;
  color: #fff;
  display: block;
  padding: 8px 15px;
  position: relative;
  text-align: start;
  line-height: 24px;
  font-size: 23px;
  margin-bottom: 1px;
  z-index: 2;
}

.fixed-social3:hover {
  left: 0;
} */


.font-side {
  padding: 7px;
  text-align: center;
  font-weight: 200;
  margin-bottom: 0px;
}

.apply {
  font-size: 28px !important;
  position: relative;
  left: 13px;
  padding-left: 10px;
    padding-right: 10px;
}


@media only screen and (max-width: 768px) {

  .font-side {
    font-size: 12px;

  }
}













/*--------------------------------------------------------------
# Principal
--------------------------------------------------------------*/
.principal .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  background: #fff;
}
.principal{
  background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner/3.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
}

.principal h2{
  font-weight: 600;
  font-family: 'Canela';
}

.principal .count-box {
  width: 100%;
}

.principal .count-box i {
  display: block;
  font-size: 48px;
  color: #1966a5;
  float: left;
  line-height: 0;
}

.principal .count-box span {
  font-size: 28px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #646c55;
  margin-left: 60px;
}

.principal .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #646c55;
}

.principal .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #646c55;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.principal .count-box a:hover {
  color: #8b9578;
}

.principal .content {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  padding: 2px 57px 0px 19px;
}

.principal .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #3c4133;
}

.principal .content ul {
  list-style: none;
  padding: 0;
}

.principal .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.principal .content ul i {
  font-size: 24px;
  color: #94c045;
  position: absolute;
  left: 0;
  top: -2px;
}

.principal .content p:last-child {
  margin-bottom: 0;
}





.principal button {
  width: 150px;
  height: 40px;
  transition: 0.25s;
  border-radius: 4px;
  margin: 10px;
  font-size: 16px;
  font-family: Roboto;
  cursor: pointer;
}









