/********** Template CSS **********/
:root {
  --primary: #00a9a5;
  --secondary: #fff0e6;
  --light: #f8f8f9;
  --dark: #001d23;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  color: var(--primary);
  background: transparent;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.fixed-top {
  transition: 0.5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 12px;
  padding: 5px 0;
  color: #ffffff;
  font-weight: 500;
  outline: none;
  text-align: center;
  font-size: 12px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: var(--dark);
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background: rgba(0, 29, 35, .8); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background: linear-gradient(rgba(0, 29, 35, 0.8), rgba(0, 29, 35, 0.8)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Causes ***/
.causes-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}

.causes-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}

.causes-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--primary);
  color: #ffffff;
}

.causes-item .causes-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.causes-item:hover .causes-overlay {
  height: 100%;
  opacity: 1;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

/*** Donate ***/
.donate {
  background: rgba(0, 29, 35, 0.8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked + label {
  color: var(--primary);
  border-color: var(--primary);
}

/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: 0.5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 100px;
  transition: 0.5s;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text .team-social {
  opacity: 1;
}

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
}

.team-item .team-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary);
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

/*** Footer ***/

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: var(--primary);
}

/* Custom */
section#mt_team {
  padding: 43px 0 42px;
}

#mt_team .owl-dots {
  text-align: center;
  margin-top: 10px;
}

#mt_team .owl-dots .owl-dot.active {
  background: #00a9a5 none repeat scroll 0 0;
  border-radius: 5px;
  height: 5px;
  transition: all 0.5s ease 0s;
  width: 20px;
}

#mt_team .owl-dots .owl-dot {
  border: 1px solid #00a9a5;
  border-radius: 5px;
  display: inline-block;
  height: 5px;
  margin-right: 12px;
  width: 20px;
}

#mt_team .team_member {
  position: relative;
  text-align: center;
  padding-top: 0px;
  border: 1px solid #f1f1f1;
  background: #fff;
  margin-left: 15px;
  margin-right: 15px;
}

#mt_team .team_member img {
  width: 100%;
}

#mt_team .team_member figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  text-align: center;
  background: #fff;
}

#mt_team .team_member figure img {
  position: relative;
  display: block;
  max-width: 100%;
  opacity: 1;
  margin: 0 auto;
  border: 3px solid #d3d3d3;
  padding: 8px;
}

#mt_team .team_member figure figcaption {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

#mt_team .team_member figure figcaption:before,
#mt_team .team_member figure figcaption:before,
#mt_team .team_member figure figcaption:after,
#mt_team .team_member figure figcaption:after {
  pointer-events: none;
}

#mt_team .team_member figure figcaption,
#mt_team .team_member figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#mt_team .team_member figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

#mt_team .team_member figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}

#mt_team .team_member figure h2 span {
  font-weight: 800;
}

#mt_team .team_member .member_name {
  background: #ffffff;
  padding: 15px;
}

#mt_team .team_member .member_name h3 {
  margin: 0;
}

#mt_team .team_member .member_name span {
  display: block;
  font-size: 14px;
  color: #00a9a5;
  padding: 5px 0;
  font-weight: 300;
  font-style: italic;
}

@media only screen and (max-width: 640px) {
  #mt_team .team_member .member_name h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 449px) {
  #mt_team .item {
    margin: 0 auto;
    width: 100%;
  }

  #mt_team .item {
  }
}

/*team inner page*/

#mt_team.team-main .item {
  margin-bottom: 30px;
}

#mt_team.team-main .team_member {
  padding-top: 0px;
}

#mt_team.team-main .team_member figure {
  padding-top: 15px;
}

#mt_team.team-main .team_member .member_name p {
  margin-bottom: 0;
}

/* Overlay */

.black-overlay {
  background: linear-gradient(
    to left,
    rgba(247, 148, 30, 0.7),
    rgba(0, 0, 0, 0.6)
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
}

.black-overlay {
  background: rgba(0, 0, 0, 0.5);
}

#mt_banner .banner_caption_text {
  left: 110px;
  position: absolute;
  top: 30.5%;
  width: 57%;
  z-index: 2;
}

#mt_banner .banner_caption_text h1 {
  color: #fff;
  margin: 0;
  position: relative;
  font-size: 48px;
}

#mt_banner .banner_caption_text p {
  font-size: 16px;
  color: #fff;
  padding: 0;
  margin: 22px 0 25px;
}

#mt_banner .banner_caption_text h3 {
  font-size: 36px;
  font-weight: 300;
}

#mt_banner .header_angle_03 {
  height: auto !important;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}

#mt_banner .header_angle {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 80px;
  z-index: 99;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  z-index: 1;
}

#mt_about {
  position: relative;
  overflow: hidden;
}

#mt_about .section_title span:after {
  left: 0;
  right: inherit;
}

#mt_about .mt_heading {
  margin-bottom: 0;
}

#mt_about .heading_txt {
  width: 100%;
}

.about_services i {
  font-size: 36px;
  font-style: italic;
  background: linear-gradient(-29deg, #c10f41 0, #233b88 100%);
  margin-bottom: 30px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

#mt_about .about_services .col-sm-4:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #cccccc75;
  right: 0;
}

#mt_about .about_services .col-sm-4:last-child:before {
  background: transparent;
}

#mt_about .about_services p {
  margin: 20px 0 0;
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {
  #mt_about .about_sec_img {
    position: static;
  }

  #mt_about .about_sec_img .mt_about_img {
    bottom: 0;
    position: absolute;
    width: 47%;
  }
}

@media only screen and (max-width: 1100px) {
  #mt_about .about_services p {
    margin: 0;
  }
}

@media only screen and (max-width: 991px) {
  #mt_about .about_services h2 {
    font-size: 21px;
  }
}

@media only screen and (max-width: 767px) {
  #mt_about .about_services .col-sm-4 {
    margin-bottom: 30px;
  }

  section#mission_main.mission-area {
    padding-top: 30px;
  }

  .about_services {
    margin-bottom: 25px;
  }

  #mt_about .about_services .col-sm-6.mg-1 {
    margin-bottom: 40px;
  }

  #mt_about .about_services .col-sm-6 {
    padding-left: 15px;
  }

  #mt_about .about_services .col-sm-4:before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #mt_about .col-sm-7,
  #mt_about .col-sm-5 {
    width: 100%;
  }

  #mt_about .image-rev {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 640px) {
  #mt_about {
    padding-bottom: 50px;
  }

  #mt_about .about_services h5 {
    display: block;
  }

  #mt_about .about_services h2 {
    font-size: 18px;
  }

  #mt_about .about_services .col-sm-6 {
    padding: 0;
  }
}

#mt_about {
  position: relative;
  padding-bottom: 0;
  background: none;
}

#mt_about .section_title span:after {
  left: 0;
  right: inherit;
}

#mt_about .mt_heading {
  margin-bottom: 0;
}

#mt_about .heading_txt {
  width: 100%;
}

.about_services {
  text-align: left;
}

#mt_about .about_services .col-sm-6 {
  padding-left: 0;
  margin-bottom: 40px;
}

#mt_about .about_services .col-sm-6.mg-1 {
  margin-bottom: 0px;
}

#mt_about .about_services h2 span {
  padding-right: 100px;
}

#mt_about .about_services i {
  font-size: 26px;
  color: #00a9a5;
  margin-bottom: 0px;
}

#mt_about .about_services h3 {
  margin-bottom: 0px;
  margin-top: 0;
  display: inline-block;
  vertical-align: middle;
  padding-left: 8px;
}

#mt_about .about_services p {
  margin: 20px 0 0;
}

#mt_about .about_services .mt_btn_blue {
  background: none;
  border: 1px solid #00a9a5;
  color: #00a9a5;
  margin-top: 25px;
}

#mt_about .about_services .mt_btn_blue:hover {
  background: #00a9a5;
  color: #ffffff;
}

/*about us page*/

section#mt_about.about-main,
section#mission_main.mission-area,
section#mt_team.team-section,
section#mt_fun.fun-section {
  padding: 60px 0 0;
}

section#mt_fun.fun-section .container {
  border-bottom: none;
}

section#mt_fun.fun-section .container {
  padding-top: 60px;
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {
  #mt_about .about_sec_img {
    position: static;
  }

  #mt_about .about_sec_img .mt_about_img {
    bottom: 0;
    position: absolute;
    width: 47%;
  }
}

@media only screen and (max-width: 1100px) {
  #mt_about .about_services p {
    margin: 0;
  }
}

@media only screen and (max-width: 991px) {
  #mt_about {
    padding-top: 44px;
  }
}

@media only screen and (max-width: 767px) {
  #mt_about .about_services .col-sm-6.mg-1 {
    margin-bottom: 40px;
  }

  #mt_about .about_services .col-sm-6 {
    padding-left: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #mt_about .col-sm-7,
  #mt_about .col-sm-5 {
    width: 100%;
  }

  #mt_about .image-rev {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 991px) {
  #mt_about .about_services h2 {
    font-size: 21px;
  }
}

@media only screen and (max-width: 767px) {
  #mt_about .about_services .col-sm-4 {
    margin-bottom: 0px;
  }

  section#mission_main.mission-area {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 640px) {
  #mt_about .about_services h5 {
    display: block;
  }

  #mt_about .about_services h2 {
    font-size: 18px;
  }

  #mt_about .about_services .col-sm-6 {
    padding: 0;
  }
}

.section_title {
  margin-bottom: 13px;
}

.tblleft {
  background: #008580;
  color: #ffffff;
  font-weight: bold;
  border-bottom: solid 1px #ffffff;
  padding: 10px 0px 10px 10px;
}
.tblright {
  background: #efefef;
  font-weight: normal;
  border-bottom: solid 1px #ffffff;
  padding: 10px 0px 10px 10px;
}
.footerlinks {
  color: #ffffff !important;
  text-decoration: none !important;
}
.footerlinks:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}
.liclassnew {
  list-style-type: decimal-leading-zero;
}
.liclassnew li {
  margin-left: 30px !important;
  padding-left: 0px !important;
  margin-bottom: 5px !important;
}

.about_services {
  text-align: left;
}

section {
  padding: 75px 0 80px;
  position: relative;
}

#mt_about {
  position: relative;
  padding-bottom: 0;
  background: none;
}

#mt_about .section_title span:after {
  left: 0;
  right: inherit;
}

#mt_about .mt_heading {
  margin-bottom: 0;
}

#mt_about .heading_txt {
  width: 100%;
}

#mt_get_started {
  background-image: url(../images/started-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 60px 0 60px;
}

#mt_get_started .container {
  position: relative;
  z-index: 1;
}

#mt_get_started .watch_content {
  position: relative;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

#mt_get_started .watch_content h1 {
  text-align: center;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 15px;
}

#mt_get_started .watch_content h1 {
  color: orange;
  font-size: 60px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 0.8;
}

#mt_get_started .watch_content h2 {
  color: #fff;
}

#mt_get_started .watch_content p {
  color: #ffffff;
  display: block;
  margin: 0 auto 30px;
  width: 80%;
}

#mt_get_started .watch_content p {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  #mt_get_started .watch_content {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  #mt_get_started .watch_content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #mt_get_started .watch_content h2 {
    font-size: 24px;
  }
}

.mg-2 {
  margin: 32px 0 0;
}

.mt_btn_blue,
input[type="submit"] {
  padding: 8px 20px;
  background: transparent;
  font-size: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: inline-block;
  color: #00a9a5;
  text-decoration: none;
  border: 2px solid #00a9a5;
  transition: all 0.5s ease;
}

.mt_btn_blue:hover,
.mt_btn_blue:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: #fff;
  background-color: #00a9a5;
  transition: all 0.5s ease;
  text-shadow: initial;
  text-decoration: none;
}
/* 
img {
  pointer-events: none;
} */
