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

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

a:hover {
  color: #e82d2d;
  text-decoration: none;
}

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: #cc1616;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background: rgb(56 64 89);
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: #999;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes linemove {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}



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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: linear-gradient(45deg, rgb(0, 107, 84), rgb(150, 213, 83));
  font-size: 15px;
  height: 40px;
  padding: 0;
  color: rgb(255, 255, 255);
}

#topbar .contact-info a {
  line-height: 0;
  color: rgb(255, 255, 255);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #86d162;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: rgb(255, 255, 255);
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

#topbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  text-transform: uppercase;
}

#topbar ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 15px 0px 15px;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
}

#topbar ul a:hover {
  color: yellow;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
}

#header.fixed-top {
  background: #ffffff;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 65px;
}

.scrolled-offset {
  margin-top: 70px;
}

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

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  margin-left: 5px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 15px 24px 15px;
  font-size: 14px;
  color: #3a3a3a;
  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 {
  /* background: #27be01; */
  color: #27be01;
  font-weight: 400;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  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 li:hover {
  background-color: rgb(0 122 116 / 28%);
}

.navbar .dropdown ul a {
  padding: 7px 20px;
  color: #191919;
  border-bottom: 1px solid #e0e0e0;
}

.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: #027b58;
}

.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: 1370px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
  
  .navbar a, .navbar a:focus{
      padding: 25px 8px 24px 8px;
      font-size: 13px;
  }
  #topbar ul a{
      padding: 1px 8px 0px 8px;
  }
}

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

.mobile-nav-toggle.bi-x {
  color: #ede800;
}

@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(0, 0, 0, 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: #262626;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 19px 20px;
  font-size: 18px;
  color: #ffffff;
  border-bottom: 1px solid #6a6a6a47;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #48ff46;
  background: none;
}

.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: #cc1616;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(34, 39, 43, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(12, 13, 14, 0.8);
}

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

#hero .container {
  text-align: center;
}

#hero h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  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-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #428bca;
}

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

#hero .btn-get-started:hover {
  background: #5697d0;
}

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

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

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

.section-title {
  text-align: center;
  padding: 35px 0 0px 0px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #191919;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #e3e3e3;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 27px;
  }
}








/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/


.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #333333;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(rgb(0 72 75), rgb(0 129 134 / 37%)), url(../img/footer.jpg) fixed center center;
  background-size: cover;
  padding-bottom: 55px;
}


#footer .footer-top {
  /* background: #f6f6f6; */
  padding: 60px 0 30px 0;
}

#footer .footer-logo {
  width: 220px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info p {
  text-align: justify;
}


#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: 16px;
  line-height: 24px;
  margin-bottom: 0;
  /* font-family: "Roboto", sans-serif; */
}

#footer .footer-top .social-links a {
  font-size: 24px;
  display: inline-block;
  background: #00ba4d;
  color: #fff;
  line-height: 1;
  padding: 4px 0;
  margin-right: 4px;
  border-radius: 24px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i {
  font-size: 15px;
}


#footer .footer-top .social-links a:hover {
  background: #65c9cd;
  text-decoration: none;
}

#footer .footer-top h4 {
  color: #ffd276;
  font-size: 21px;
  font-weight: 800;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
}

#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: 7px;
  color: #f7b548;
  font-size: 10px;
  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: 16px;
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #000000;
}

#footer .footer-top .footer-contact p {
  color: white;
  line-height: 30px;
}

#footer .footer-top .footer-contact p strong {
  padding-right: 10px;
}

.footer-address {
  margin: 0;
  margin-bottom: -25px;
}

#footer .copyright {
  font-size: 15px;
  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;
  }
}

.footer-map:hover {
  opacity: 0.4;
}



.hero-wrap {
  width: 100%;
  height: 78vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

.hero-wrap::before {
  content: "";
  background: rgb(6 47 74 / 78%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.video-overlay {
  position: absolute;
  background-image: linear-gradient(180deg, #3838388f, #55b15e59);
  top: 0;
  left: 0;
  bottom: 0px;
  width: 100%;
}

.banner-slider {
  padding-left: 0;
  padding-right: 0;
}



.hero-wrap h1 {
  /* margin: 0 0 10px 0; */
  font-size: 48px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
  color: #fff;
}

.hero-wrap h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

.hero-wrap .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

.hero-wrap .btn-get-started:hover {
  background-color: #00c033 !important;
  border: none;
}

.hero-wrap .hero-content {
  margin-top: 15%;
  visibility: hidden;
}

.mu-single-slide-content-visible {
  visibility: visible;
}


.about {
  padding: 40px 0px;
  background: #fafafa;
}

.about .about-item h3 {
  color: #076e72;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
}

.about .about-item .btn-get-started {
  border: 2px solid #95d651;
  color: #006a4d;
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.about .about-item .btn-get-started:hover {
  background-color: #006a4d;
  color: white;
}

.about .about-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.about .about-item .image-stack .stack-front {
  transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}

.about .about-item .image-stack .stack-front:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: grabbing;
}


.about .about-item .image-stack .stack-back {
  transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.about .about-item .image-stack .stack-back:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: grabbing;
}


.about .about-item img {
  border: 6px solid white;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}



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

.scrolling-bar {
  width: 100%;
  padding: 4px;
  position: absolute;
  top: 110px;
  height: auto;
  overflow: hidden;
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  z-index: 1;
  background: #007a74;
}

.scrolling-bar .head h2 {
  margin: 2px 0px 0px 0px;
  float: right;
  color: #ffd380;
  font-size: 20px !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: 16px;
  color: rgb(255, 255, 255);
  padding: 0 8px;
}

.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;
}

















.waves-image {
  position: relative;
  min-height: 260px;
  margin: -179px 444px 10px -75px;
  -webkit-animation: 3s blink ease infinite;
  -moz-animation: 3s blink ease infinite;
  -ms-animation: 3s blink ease infinite;
  -o-animation: 3s blink ease infinite;
  animation: 3s blink ease infinite;
}

@keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-moz-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-ms-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-o-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}





.waves-image.aos-animate .yellow-shape.ys-small {
  right: 70px;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.waves-image.aos-animate .yellow-shape {
  right: 120px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 1;
}

.yellow-shape.ys-small {
  -webkit-transform: scale(0.35);
  transform: scale(0.35);
  right: 20px;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  bottom: calc(50% - 15px);
}

.yellow-shape {
  position: absolute;
  right: 70px;
  bottom: calc(50% - 70px);
  z-index: 1;
  display: block;
  width: 0;
  height: 0;
  border-left: 175px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 172px solid #78c86157;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.waves-image.aos-animate .red-shape {
  /* right: 295px; */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}

.red-shape {
  display: block;
  width: 0;
  height: 0;
  border-left: 130px solid transparent;
  border-right: 0 solid transparent;
  border-top: 130px solid #0071716b;
  position: absolute;
  top: 130px;
  right: 245px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.waves-image.aos-animate img {
  opacity: 1;
}

.waves-image img {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
}

img.lazy {
  min-height: 1px;
}












.news-calendar-sec {
  padding: 0 0 80px;
  position: relative;
}

.news-calendar-sec .news-calendar-title {
  position: relative;
  padding: 150px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #b10f56;
}

.news-calendar-sec .news-calendar-title:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(2.8%, rgba(177, 15, 86, 0.81)), color-stop(96.83%, rgba(208, 8, 70, 0.81)));
  background: linear-gradient(90deg, rgb(0 122 116) 2.8%, rgb(126 203 98) 96.83%);
  opacity: 0.81;
}

.news-calendar-sec .news-calendar-title .block-title-wrap {
  padding-left: 50px;
  margin-left: 35%;
  position: relative;
  z-index: 2;
}

.news-calendar-sec .news-calendar-title .block-title-wrap h3 {
  color: #fff;
  background: transparent;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  font-size: 30px;
  line-height: 37px;
  text-align: left;
}

.news-calendar-sec .news-calendar-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.news-calendar-sec .news-calendar-wrap {
  position: relative;
  z-index: 1;
}

.news-calendar-sec .news-calendar-left {
  width: 35%;
  margin-top: -320px;
}

.news-calendar-sec .news-calendar-left .calendar-video-box {
  padding: 25px 32px;
  background: #FDF7F9;
}

.news-calendar-sec .news-calendar-left .calendar-video-box h4 {
  background: -webkit-gradient(linear, left top, right top, color-stop(2.8%, #B10F56), color-stop(96.83%, #D00846));
  background: linear-gradient(90deg, #22656e 2.8%, #22656f 96.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  margin: 0 0 0px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.news-calendar-sec .news-calendar-left .calendar-video-box h4:after {
  display: block;
  content: "";
  position: absolute;
  left: 168px;
  right: 0;
  /* margin: 0 auto; */
  /* top: -15px; */
  /* bottom: -12px; */
  width: 113px;
  height: 3px;
  background: #80a669;
  border-radius: 4px;
  text-align: center;
}

.news-calendar-sec .news-calendar-left .calendar-video-box .cal-video {
  margin: 25px 0 0;
}

.news-calendar-sec .news-calendar-left .calendar-video-box .cal-video img {
  display: block;
  width: 100%;
}

.news-calendar-sec .news-calendar-left .calendar-video-box .cal-follow-link {
  margin: 25px 0 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.news-calendar-sec .news-calendar-right {
  width: 65%;
  padding-left: 50px;
  margin-top: -6.1%;
}

.news-calendar-sec .calendar-slide-wrap {
  margin-top: 40px;
}

.news-calendar-sec .hp-item {
  margin: 10px 0;
  padding: 0px 57px;
  background: #e6e6e6;
}

.news-calendar-sec .hp-item-text {
  margin: 14px 0 14px;
}

.news-calendar-sec .hp-item-text .hp-date {
  margin: 0;
  width: 45px;
  float: left;
  color: #545454;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  border-right: 1px solid #2c2c2c26;
  /* padding-right: 46px; */
}

.news-calendar-sec .hp-item-text .hp-date i {
  display: block;
  font-size: 34px;
  font-weight: 600;
  color: #AF0C3E;
  line-height: 1;
  margin: 0 0 2px;
  font-style: normal;
}

.news-calendar-sec .hp-item-text .hp-desc {
  color: #2a2a2a;
  font-weight: 500;
  font-size: 14px;
  line-height: 48px;
  padding-left: 55px;
}

.news-calendar-sec .hp-item-text:after {
  content: "";
  display: block;
  clear: both;
}

.news-calendar-sec .news-calendar-title .block-title-wrap h3:before {
  display: block;
  content: "";
  position: absolute;
  left: 52px;
  right: 0;
  /* margin: 0 auto; */
  top: -15px;
  /* bottom: -12px; */
  width: 63px;
  height: 5px;
  background: #FFD92A;
  border-radius: 4px;
}




.upcoming button {
  margin: 20px;
}

.upcoming .custom-btn {
  font-size: 20px;
  width: 243px;
  height: 59px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  outline: none;
}

.upcoming .custom-btn i {
  margin-left: 10px;
}

.upcoming .btn-9 {
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.upcoming .btn-9:after {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #22646e;
  background-image: linear-gradient(315deg, #226a6e 0%, #22666e 74%);
  transition: all 0.3s ease;
}

.upcoming .btn-9:hover {
  background: transparent;
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .5),
    -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, .5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  color: #fff;
}

.upcoming .btn-9:hover:after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .5),
    -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, .5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}














#events {
  background-color: #e4e4e44a;
  padding: 50px 0;
  /* display: inline; */
  width: 100%;
}

.prev {
  border: 1px solid rgb(56, 33, 33);
  padding: 10px;
  margin-top: 127px;
  margin-left: -23px;
  position: absolute;
  width: 27px;
}

.next {
  border: 1px solid rgb(56, 33, 33);
  margin-left: 100%;
  position: absolute;
  bottom: 308px;
  padding: 10px;
  width: 27px;
}

.events-area {
  display: inline;
  float: left;
  width: 100%;
}

.events-content {
  display: inline;
  float: left;
  margin-top: 10px;
  width: 100%;
}

.img-act {
  position: relative;
  overflow: hidden;
}

.events-content .events-item img {
  transition: .3s;
}

.events-content .events-item:hover img {
  transform: scale(1.05);
}

.events-content .events-item:hover .mu-blg-readmore-btn {
  color: red;
}

.events-item {
  /* box-shadow: 0px 0px 14px #ededed; */
  display: inline;
  float: left;
  width: 100%;
  padding: 10px;
}

.events-item-content {
  display: inline;
  float: left;
  padding: 11px 11px;
  width: 100%;
  background: #fff;
}

.events-meta {
  margin-bottom: 2px;
  text-align: center;
}

.events-meta li {
  color: #064e49 !important;
}

.events-meta li {
  color: #8f9090;
  font-size: 12px;
  list-style: none;
  display: inline-block;
  position: relative;
  padding-right: 20px;
  margin-right: 10px;
  font-weight: 700;
}

.events-meta li i {
  margin-right: 3px;
}

.events-meta li:after {
  content: '/';
  position: absolute;
  right: 0;
  top: 0;
}

.events-meta li:last-child:after {
  display: none;
}

.events-item-title,
.events-item-title a {
  color: #323232;
  font-size: 15px;
  line-height: 1.5;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  /* text-align: center; */
}

.events-item-title a:hover,
.events-item-title a:focus {
  color: #af0000;
}

#events .events-item:hover .events-item-content {
  background-color: wheat;
}

.events-item-content p {
  color: #323232;
  font-size: 12px;
}



.mu-blg-readmore-btn {
  text-align: center;
  color: #7e0000;
  font-size: 14px;
  text-decoration: underline;
}





.events-left {
  display: inline;
  float: left;
  width: 100%;
}

#events .events-item {
  box-shadow: none;
  /* border-bottom: 1px solid #e5e5e5; */
  margin-bottom: 50px;
  /* padding-bottom: 20px; */
}

#events .events-item-content {
  padding: 9px 17px;
}

.events-pagination {
  display: inline;
  float: left;
  width: 100%;
}

.events-pagination {
  display: inline;
  float: left;
  width: 100%;
}

.events-pagination .pagination {
  float: right;
}

.events-pagination .pagination li {
  list-style: none;
  margin: 0 5px;
}

.events-pagination .pagination li:last-child {
  margin-right: 0;
}

.events-pagination .pagination .page-link {
  background-color: #064e49;
  border: none;
  color: #fff;
  padding: 0;
  margin-left: 0;
  font-size: 18px;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 43px;
  font-weight: bold;
}

.events-pagination .pagination .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  line-height: 45px;
}

.events-pagination .pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  line-height: 45px;
}

.events-sidebar {
  display: inline;
  float: left;
  width: 100%;
}

.mu-sidebar-widget {
  display: inline;
  float: left;
  margin-bottom: 40px;
  width: 100%;
}

.mu-search-form {
  position: relative;
}

.mu-search-form input {
  border: 1px solid #e1e1e1;
  color: #323232;
  font-size: 14px;
  height: 60px;
  width: 100%;
  border-top-color: #064e49;
  border-top-width: 2px;
  padding: 0 50px 0 20px;
}

.mu-search-form .mu-search-submit-btn {
  background-color: transparent;
  border: none;
  color: #064e49;
  font-size: 18px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  bottom: 0;
  width: 50px;
}

.mu-sidebar-widget-title {
  background-color: #f6f6f6;
  border-top: 2px solid #064e49;
  color: #323232;
  font-size: 24px;
  padding: 16px 20px;
}

.mu-sidebar-social-widget .mu-social-media {
  border-top: none;
  margin-top: 10px;
  text-align: center;
}

.mu-sidebar-social-widget .mu-social-media a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}

.mu-sidebar-widget ul,
.mu-sidebar-widget ul>ul {
  padding-left: 15px;
}

.mu-sidebar-widget ul li {
  list-style: none;
  font-size: 16px;
}

.mu-sidebar-widget ul li a {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.mu-sidebar-widget-nav {
  margin-top: 20px;
}

.mu-sidebar-widget-nav li {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.mu-sidebar-widget-nav li a i {
  margin-right: 5px;
}

.mu-sidebar-widget-nav li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mu-sidebar-widget-nav ul li:first-child {
  border-top: 1px solid #e5e5e5;
  margin-top: 5px;
  padding-top: 5px;
}

.mu-tags {
  display: inline;
  float: left;
  margin-top: 20px;
  width: 100%;
}

.mu-tags a {
  border: 1px solid #e1e1e1;
  border-top-color: #064e49;
  display: inline-block;
  font-size: 14px;
  padding: 12px 15px;
  margin: 0 10px 15px 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.mu-sidebar-subscribe-widget .mu-subscribe-form {
  margin-top: 25px;
}

.mu-sidebar-subscribe-widget .mu-subscribe-form input {
  border: 1px solid #064e49;
}

.mu-popular-content-widget {
  display: inline;
  float: left;
  margin-top: 20px;
  width: 100%;
}

.mu-popular-content-widget .media {
  margin-bottom: 30px;
}

.mu-popular-content-widget .media:last-child {
  margin-bottom: 0;
}

.mu-popular-content-widget .media>.mu-popular-post-img {
  width: 120px;
  margin-right: 10px;
}

.mu-popular-content-widget .media .events-meta {
  margin-bottom: 5px;
  padding-left: 0;
}

.mu-popular-content-widget .media .events-meta li {
  font-size: 12px;
  padding-right: 15px;
  margin-right: 4px;
}

.mu-popular-content-widget .media .media-body h3 {
  color: #323232;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}










.float-whatsapp {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 200px;
  right: 18px;
  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: 150px;
  right: 16px;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 50;
}

.my-float-call {
  margin-top: 8px;
}


.float-call:hover {
  -webkit-animation-name: shake;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-transform-origin: 50% 100%;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(2px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-2deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(3deg);
  }

  30% {
    -webkit-transform: translate(0px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(2px, 1px) rotate(-2deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(4deg);
  }

  90% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
  }
}

@media only screen and (max-width: 767px) {
  .float-whatsapp {
    bottom: 123px;
    right: 20px;
    z-index: 50;
  }

  .float-call {
    bottom: 189px;
    right: 20px;
  }
}














/*-------------------------------- Course ----------------------*/
#courses {
  background: white;
  background-size: cover;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

#courses #course-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

#courses #course-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
}

#courses #course-flters li:hover,
#courses #course-flters li.filter-active {
  color: #cda45e;
}

#courses #course-flters li:last-child {
  margin-right: 0;
}

#courses .course-item {
  margin-top: 22px;
}

#courses .course-item:hover i {
  color: #01a131;
}

#courses .course-item:hover p {
  color: #01a131;
}

#courses .course-item i {
  font-size: 43px;
  color: #9a9a9a;
}

#courses .section-title .program {
  color: #01a131;
}

#courses .course-img {
  width: 70px;
  border-radius: 50%;
  /* float: left; */
  border: 5px solid rgba(255, 255, 255, 0.2);
}

#courses .course-content {
  bottom: 35px;
  margin-left: 85px;
  /* padding-bottom: 5px; */
  overflow: hidden;
  line-height: 21px;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px dashed #7086a3;
  color: #505050;
}

#courses .cs:hover .course-content {
  color: white;
}



#courses .course-content a:hover {
  color: #cda45e;
}

#courses .course-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
  color: #cda45e;
}

#courses .course-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}


.sub-title h2 {
  font-size: 25px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(203 0 0);
  font-family: "Poppins", sans-serif;
}

.sub-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgb(203 0 0);
  margin: 4px 10px;
}




.principal {
  background: linear-gradient(rgb(0 72 75), rgb(0 129 134 / 37%)), url(../img/footer.jpg) fixed center center;
  background-size: cover;
  padding: 50px;
}

.vs {
  /* background: lightgrey; */
  padding: 30px;
}

.vs .box {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  padding: 57px;
  background-color: #ffffffa3;
}

.management {
  /* background: linear-gradient(rgb(0 0 0 / 11%), rgb(0 0 0 / 14%)), url(../images/demo.png) fixed center center; */
  /* padding: 65px 65px; */
  position: relative;
  width: 100%;
}

.management .section-heading h2 {
  margin-top: 1px;
  color: rgb(105, 0, 0);
  text-transform: uppercase;
}

.management .section-title {
  padding: 0px;
}

.management p {
  color: rgb(104 104 104);
  font-size: 15px;
  text-align: justify;
}

.management .quali {
  text-align: center;
  margin: 0;
  margin-top: 0px;
  color: rgb(255, 255, 255);
}

.management .p-name {
  text-align: center;
  margin: 0;
  margin-top: 10px;
  color: wheat;
}

.management .princiii .img {
  width: 150px;
  height: 282px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 12%;
  margin: 5px auto;
}

.management .about-content {
  color: white;
  font-size: 16px;
  text-align: justify;
  line-height: 25px;
  margin-top: 16px;
}

.management .principal .btn-get-started {
  border: 2px solid #cacaca;
  color: #f9fd8e;
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}


.management .principal .btn-get-started:hover {
  background-color: #006a4d;
  color: white;
}


.HomeImg {
  width: 145px;
  box-shadow: 1px 0px 7px 2px #474747;
  /* left: 16px; */
  /* top: 33px; */
  position: relative;
}

.HomeDesc {
  height: auto;
  padding: 24px 25px 16px 25px;
}

.HomeDesc p {
  margin-top: 12px;
  font-size: 15px;
  text-align: justify;
}

.card-text small {
  margin: 0 !important;
  padding: 0 !important;
}

.Bg-red {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
}

.Bg-blue {
  background-color: #00226b;
}

.HomeDesc a {
  color: rgb(185 0 0);
  text-decoration: underline;
}

.HomeDesc a:hover {
  color: #90c3ff;
}



/* ...................................INNER PAGE HERO ...............................*/

.hero-wrap-2 {
  height: 263px;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.hero-wrap-2 .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  opacity: .2;
}

.hero-wrap-2 .overlay .bread .breadcrumbs {
  background: #0036408f !important;
}

.text-bread {
  height: 650px;
}

.text-bread .text .bread {
  font-weight: 800;
  font-size: 38px;
  color: rgb(255 248 248);
}

.text-bread .text .breadcrumbs {
  font-weight: 500;
}

.text-bread .text .breadcrumbs span {
  font-weight: bold;
  color: #e9c900;
}

.text-bread .text .breadcrumbs span a {
  font-weight: bold;
  color: #e9c900;
}

.text-bread .text .breadcrumbs span a:hover {
  color: wheat;
}

.text.text-lg {
  position: absolute;
  bottom: 0px;
}




/* ------------------------Contact-------------------------- */

.contact-section .contact-info .con {
  background: #fafafa;
  /* background-image: linear-gradient(to right, #2f8276 , #857210); */
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.contact-section .contact-info p a {
  color: #1a1a1a;
}


.block-9 .contact-bg {
  background: #fafafa;
}

.contact-section .contact-info p span {
  font-weight: 500;
  color: #000000;
}

.block-9 .form-control {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 15px;
}

.block-9 .form-group .btn-primary {
  background-color: #045b5e;
  border: #045b5e;
}

.block-9 .form-group .btn-primary:hover {
  background-color: #b8ac0d;
  border: #b8ac0d;
  color: black;
}

.block-9 .iframe-col {
  height: 365px;
  /* border: 3px solid #0d4f5e; */
  /* background-image: linear-gradient(to right, #7e7317 , #318274); */
}

.form-group {
  padding: 4px;
}

.contact-section .contact-info .con li i {
  color: #007a74;
  font-size: 30px;
}

.call-icon {
  padding-top: 25px;
}

.email-icon {
  padding-top: 35px;
}



/* ---------------------------Gallery------------------- */
.gallery-section .gallery-image {
  padding: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-section .gallery-image img {
  height: 250px;
  width: 350px;
  transform: scale(1.0);
  transition: transform 0.4s ease;
}

.gallery-section .img-box {
  box-sizing: content-box;
  margin: 10px;
  height: 250px;
  width: 350px;
  overflow: hidden;
  display: inline-block;
  color: white;
  position: relative;
  background-color: white;

}

.gallery-section .caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 1.0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-section .caption p {
  font-size: 20px;
}

.gallery-section .transparent-box {
  height: 250px;
  width: 350px;
  background-color: rgb(0 0 0 / 70%);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.gallery-section .img-box:hover img {
  transform: scale(1.1);
}

.gallery-section .img-box:hover .transparent-box {
  background-color: rgba(0, 0, 0, 0.021);
}

.gallery-section .img-box:hover .caption {
  transform: translateY(-20px);
  opacity: 0.0;
}

.gallery-section .img-box:hover {
  cursor: pointer;
}


/* -----------------------Department------------------------- */
.dept {
  padding: 20px;
}

.single-accordion.panel {
  /* background-color: #ffffff; */
  border: 0 solid transparent;
  border-radius: 4px;
  box-shadow: 0 0 0 transparent;
  margin-bottom: 1px;
}

.single-accordion:last-of-type {
  margin-bottom: 0;
}

.single-accordion h6 {
  margin-bottom: 0;
}

.single-accordion h6 a {
  font-family: 'Poppins' !important;
  background-color: #060035;
  border-radius: 5px;
  color: #ffffff;
  display: block;
  margin: 0;
  padding: 12px 70px 12px 20px;
  position: relative;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 100;
}

.single-accordion h6 a span {
  background: transparent;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  font-size: 10px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 58px;
  height: 100%;
  color: #ffffff;
  line-height: 58px;
}

.single-accordion h6 a span.accor-open {
  opacity: 0;
}

.single-accordion h6 a.collapsed:hover {
  background-color: #d5aa00;
}

.single-accordion h6 a.collapsed {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  background: linear-gradient(45deg, rgb(0, 107, 84), rgb(92 175 4));
  color: #ffffff;
}

.single-accordion .accordion-content {
  border-top: 0 solid transparent;
  box-shadow: none;
}

.single-accordion .accordion-content p {
  padding: 15px 15px 0;
  margin-bottom: 0;
}


/* ---------------------------Faculties-------------------- */
.ftco-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hod {
  cursor: pointer;
  background-color: #007a74;
}

.staffs {
  cursor: pointer;
  background-color: #ebe9e4;
}

.staff {
  margin-bottom: 20px;
  padding: 17px;
}

@media(width:1366px) {
  .staff {
    padding: 3px !important;
  }

  .staff .img img {
    width: 170px !important;
    height: 170px !important;
  }
}

.staff .img {
  /* width: 200px;
    height: 200px; */
  margin: auto;
  border-radius: 50%;
}

.staff .img img {
  transition: transform .6s;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.staff .text {
  padding: 0 10px;
}

.staff .text h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.staff .text .position {
  color: #03252b;
  display: block;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  font-size: 15px;
  font-weight: 500;
}

.staff:hover .text h3 {
  color: #121543;
}

.staff:hover .text .position {
  color: red;
}

.staff:hover .img img {
  transform: scale(1.1);
}



/* -------------------Management--------------------- */

.management-section .cards {
  display: flex;
  padding: 25px 0;
  list-style: none;
  text-align: center;
  /* overflow-x: scroll; */
  /* scroll-snap-type: x mandatory; */
}

.management-section .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 100%;
  padding: 20px;
  margin-top: 20px;
  background: #efefef;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.2),
    -6px -6px 12px 0 rgba(255, 255, 255, 0.5);
  scroll-snap-align: start;
  transition: all 0.2s;
}

.management-section .card:not(last-child) {
  margin-right: 10px;
}

.management-section .card:hover {
  scale: 1.05;
}

.management-section .card .card-title {
  font-size: 1.5rem;
  margin: 0;
}

.management-section .card .round {
  border: 2px solid #00811f;
  border-radius: 50%;
  padding: .35rem;
}

.management-section .card .card-content {
  margin: 0px 0;
}

.management-section .card-content p {
  font-size: 0.88rem
}



/* Media Query */

@media (min-width: 500px) {
  .management-section .card {
    flex-basis: calc(50% - 10px);
  }

}

@media (min-width: 700px) {
  .management-section .card {
    flex-basis: calc(calc(100% / 3) - 20px);
  }

  .management-section .card:not(:last-child) {
    margin-right: 30px;
  }
}

@media (min-width: 1100px) {
  .management-section .card {
    flex-basis: calc(25% - 30px);
  }

}




/* ==================1366 resolution==================== */

@media only screen and (min-width:1300px) and (max-width:1400px) {
  .waves-image {
    margin: -178px 170px 10px -67px !important;
  }

  .news-calendar-sec .news-calendar-right {
    margin-top: -7.1% !important;
  }

  .news-calendar-sec .hp-item {
    margin: 3px 0 !important;
  }

  .news-calendar-sec .news-calendar-left .calendar-video-box {
    padding: 38px 32px !important;
  }

  .HomeDesc p {
    margin-left: 27px !important;
  }

  .principal {
    padding: 33px !important;
  }

  .vs {
    padding: 10px !important;
  }

  .management .about-content {
    line-height: 22px;
    margin-top: 7px
  }
}



/* ------------------Phone Resolution------------------ */
@media(max-width:1000px) {
  .scrolling-bar {
    position: fixed;
    bottom: 0px;
    top: inherit;
  }

  .scrolling-bar .head h2 {
    float: left;
  }

  .hero-wrap h1,
  .hero-wrap h2,
  .hero-wrap .btn-get-started {
    display: none;
  }

  .hero-wrap {
    height: 19vh;
  }

  #topbar .contact-info {
    display: none !important;
  }

  .management .princiii .img {
    height: 171px;
  }

  .principal {
    padding: 25px;
  }

  .vs .box {
    padding: 20px;
  }

  #footer {
    padding-bottom: 72px;
  }

  .news-calendar-sec .news-calendar-right {
    width: 100%;
    padding: 10px !important;
  }

  .news-calendar-sec .hp-item-text .hp-desc {
    font-size: 15px;
    line-height: 21px;
    padding-left: 57px;
  }

  .news-calendar-sec {
    padding: 0 0 28px !important;
  }

  .news-calendar-sec .news-calendar-left {
    width: 100%;
    margin-top: -145px;
  }

  .news-calendar-sec .news-calendar-title .block-title-wrap {
    margin-left: 0px !important;
  }

  .news-calendar-sec .news-calendar-left .calendar-video-box h4:after {
    left: 114px;
  }

  .waves-image {
    display: none;
  }

  .about .about-item h3 {
    font-size: 30px;
  }

  .news-calendar-sec .hp-item {
    padding: 0px 16px;
  }

  #courses .course-item {
    margin-top: 0px;
  }

  .sub-title h2 {
    margin: 20px 0 30px 0;
  }

  #courses {
    padding: 37px 0;
  }
}









/* ------------------Quick Lins------------------ */

.ftco-section {
  padding: 70px 0;
  position: relative;
  background: linear-gradient(rgb(0 72 75), rgb(0 129 134 / 37%)), url(../img/footer.jpg) fixed center center;
}

.ftco-section .section-title span {
  position: absolute;
  top: 0px;
  color: #e3e3e3;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 0;
}

.hvr-grow {
  transition: 0.5s;
}

.services-wrap {
  display: block;
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 40px;
  padding-bottom: 25px;
}

.circle {
  width: 100px;
  height: 100px;
  margin: auto;
  position: relative;
}

.circle .border {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-radius: 50%;
  border: 2px dashed rgb(52, 194, 0) !important;
  -webkit-animation-name: Rotate;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: Rotate;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: Rotate;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}

@keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes Rotate {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@-ms-keyframes Rotate {
  from {
    -ms-transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
  }
}

.services-wrap .icon a i {
  font-size: 35px;
  display: block;
}

.play {
  padding: 10px 7px;
  font-size: 56px;
}

.services-wrap .icon {
  line-height: 1.3;
  position: relative;
  width: 80px;
  height: 80px;
  background: #a2a2a2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services-wrap .media-body h3 a {
  color: rgb(245, 245, 245);
}

.services-wrap .media-body h3 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;

}





.mu-single-slide-content-visible {
  visibility: visible;
  animation-duration: 3s;
  animation-delay: 1s;
  animation-name: zoomIn;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

/* -------------------Faculty-------------------- */
.faculty-details {
  padding: 70px;
}

.faculty-details .f-box .social-links a {
  padding: 10px;
  color: #066d51;
}

.faculty-details .f-box .social-links {
  margin-left: 65px;
}

.faculty-details .f-box {
  background-color: #efefef;
  width: 306px;
  float: right;
}

.faculty-details .f-box .staff-img {
  text-align: center;
}

.faculty-details .f-box .social-links a:hover {
  color: blue;
}

.faculty-details .f-decs h2 {
  margin: 0;
}

.faculty-details .f-desc h6 {
  color: #001dd5;
}

.f-details .card-header {
  border-bottom: none;
  padding: 6px 15px;
  background-color: #007a74;
  color: white;
}

.f-details .card {
  border: none;
  border-radius: 0;
  margin: 0;
}

.f-details .card-header h3 {
  font-size: 25px;
  margin: auto;
}

.f-details .card-body ul li {
  margin-bottom: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

@media(max-width: 1000px) {
  .faculty-details {
    padding: 10px;
  }
  .f-details .card-header h3{
    font-size: 18px;
  }
}



/* --------------------Principal inner-------------------- */
.princi {
  padding: 60px;
}

.princi-image {
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 12%;
  margin: 5px auto;
}

.card-principal {
  margin-bottom: 0px;
  padding: 42px;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 3%);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 3%);
  background: #e7e7e794;
  /* height: 542px !important;*/
}

.card-principal h6 {
  color: #f0067e;
  font-size: 14px;
}

.card-principal h4 {
  margin: 0;
}

.card-principal p {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  word-spacing: 3px;
}

@media(max-width:991px) {
  .card-principal {
    width: 100% !important;
    padding: 14px;
  }

  .princi {
    padding: 10px;
  }

  .card-principal .princi-image img {
    width: 100%;
  }
}
.table-container {
    overflow-x: auto;
}

/* Optional: You can also style the tables further */
.table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container th, .table-container td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}
a.orange.collapsed.orange.active {
    background: black;
}


.bsc-act {
    background: #258634;
    text-align: center;
    padding: 12px;
    width: 323px;
    transition: 0.3s;
}

.ragging-cell {
    text-align: center;
    padding: 10px;
    background: #f3efea;
    border-radius: 13px;
    margin: 18px;
}


.bsc-act:hover{
    background: black;
}

.bsc-act i {
    color: #bb4141;
    margin-right: 4px;
    font-size: 22px;
}


.bsc-act a{
    color: white;
}


.council-table {
    text-align: -webkit-center;
}

.council-table th {
    background: #399353;
    text-align: center;
    color: white;
}

.council-table td {
    text-align: center;
}


.staff-img {
    
    max-width: 233px;
    padding: 18px;
    text-align: center;
    height: 321px;
    margin: 10px ;
    box-shadow: rgba(50, 50, 93, 0.25) 4px 9px 20px 3px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    
}


.staff-title {
    color:black;
    padding: 7px;
}

.staff-title h4{
    font-size: 18px;
}

.staff-title p {
    font-size: 12px;
    margin: 4px;
}


#tile01 {
  margin-top: 20% !important;
  margin: auto;
  width: 200px;
  height: 100px;
}

#mask {
  position: relative;
  /* top: 50%; */
  margin: auto;
   width: 256px; 
  /* height: 100px; */

  font-size: 60px;
  font-weight: 700;
  font-family: 'Lobster Two', cursive;
  text-align: center;
  line-height: 90px;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2), 0px 2px 0px rgba(255, 255, 255, 0.3);

  background-image: -webkit-radial-gradient(center 10px, 80px 100px, #111111 50%, #0099ff 51%);

  background-size: 40px 110px;
  animation-name: wave-animation;
  background-clip: text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: wave-animation;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes wave-animation

  {
  0% {
    background-position: 200px 10px;
  }

  50% {
    background-position: 100px -20px;
  }

  100% {
    background-position: 0px -40px;
  }
}

@keyframes wave-animation

  {
  0% {
    background-position: 200px 10px;
  }

  50% {
    background-position: 100px -20px;
  }

  100% {
    background-position: 0px -40px;
  }
}

#box {
  margin: 100px auto;
  width: 200px;
  height: 100px;
  /* border-radius: 20px; */
  /* border: 5px solid #111111; */
  background-image: -webkit-linear-gradient(45deg, 0%, 100%);
  /* opacity: 0.95; */
  box-shadow: 0px 2px 0px red;
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  margin: 0 auto;
}