/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font {
Font-family: "fontname";
Src:url("sourcelink.eot");
Src:("sourcelink.woff") format("woff");
Url:("sourcelink.otf")  format("opentype");
Url:("sourcelink.svg#filename") format("svg"):
}


body {
  font-family: "Barlow", sans-serif;
  color: #eeeeee;
  background-color: #333333;
}

button, input, optgroup, select, textarea {
  /* font-family: "Lato", sans-serif; */
  font-family: Manrope,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
  font-weight: 300;
  font-size: 18px;
}

p {
  line-height: 1.5;
  /* line-height: 24px; */
  /* line-height: normal; */
  letter-spacing: normal;
  font-size: 18px;
  /* font-family: "Lato", sans-serif; */
  font-family: Manrope,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
  font-weight: 300;
}

.accordion-item {
  background-color: #333333 !important;
  border: 1px solid #eeeeee;
}
.accordion-button {
  background-color: #333333 !important;
  line-height: 1.5 !important;
  letter-spacing: normal !important;
  font-size: 18px !important;
  /* font-family: "Lato", sans-serif; */
  font-family: Manrope,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
}
.accordion-body {
  line-height: 1.5 !important;
  letter-spacing: normal !important;
  font-size: 18px !important;
  /* font-family: "Lato", sans-serif; */
  font-family: Manrope,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
  padding: 1rem 1.25rem 0;
}

.accordion-collapse ul {
  padding: 1rem 1.25rem 1rem 2rem;
}

.accordion-collapse ul li{
  line-height: 1.5;
  letter-spacing: normal;
  font-size: 18px;
  /* font-family: "Lato", sans-serif; */
  font-family: Manrope,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
  margin-bottom: 10px;
}

.accordion-button:focus {
  border-color: #97ccc3 !important;
  box-shadow: 0 0 0 0.25rem rgb(106 172 161 / 25%);
}

.accordion-button,
a{
  color: #eeeeee !important;
  text-decoration: none;
}
.accordion-button:not(.collapsed),
a {
  color: #32bcad !important;
  text-decoration: none;
}

a:hover {
  color: #32bcad !important;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  /* line-height: normal; */
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  font-size: 34px;
  font-weight: 400;
}

h2 {
  font-size: 34px;
  font-weight: 400;
  color: #32bcad;
  /* margin-bottom: 30px; */
}

h3, h4 {
  font-size: 34px;
  font-weight: 400;
  text-transform:capitalize;
  /* margin-bottom: 30px; */
}

h5, h6 {
  font-size: 20px;
  font-weight: 600;
  /* letter-spacing: 1px; */
  margin-bottom: 0;
  text-transform: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 74px;
  z-index: 996;
  background: #32bcad !important;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #32bcad;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #32bcad;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #333333;
  z-index: 997;
  padding: 15px 0;
}
#header.header-scrolled {
  border-color: #fff;
  /* box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08); */
  box-shadow: 0 0 10px rgb(32 201 151 / 15%);
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: normal;
}
#header .logo a {
  color: #32bcad;
}
#header .logo img {
  max-height: 80px !important;
}


/*--------------------------------------------------------------
# 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 0 10px 30px;
  font-size: 18px;
  color: #32bcad;
  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: #32bcad;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  background: #32bcad;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #333;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #333;
  background: #eeeeee;
}
.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: #eeeeee;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.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: #32bcad;
}
.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;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /* height: 82.84182305630027vh; */
  /* height: 618px; */
  height: 76.841823vh;
  background-color: #333333;
}

#hero h1 {
  margin: 0;
  /* font-size: 56px;
  font-weight: 700;
  line-height: 1.4; */
  color: #32bcad;
}
#hero h2 {
  color: #5e5e5e;
  /* margin: 10px 0 0 0; */
  /* font-size: 22px; */
  text-transform:none;
  /* line-height: 1; */
}
#hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: normal;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #32bcad;
}
#hero .icon-boxes {
  margin-top: 100px;
}
#hero .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
#hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
#hero .icon-box .title a {
  color: #32bcad;
  transition: 0.3s;
}
#hero .icon-box .description {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}
#hero .icon-box .icon {
  margin-bottom: 40px;
  padding-top: 20px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #32bcad;
}
#hero .icon-box:hover {
  transform: scale(1.08);
}
#hero .icon-box:hover .title a {
  color: #32bcad;
}


/* Breadcrumbs */

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.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: #1a5e90;
  content: "/";
}

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

section#hero {
  padding-bottom: 0;
}

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

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

.section-title {
  text-align: center;
}
.section-title h2 {
  /* font-size: 34px;
  font-weight: 700; */
  color: #32bcad;
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


/* .about .content h3 {
  font-weight: 600;
  font-size: 34px;
} */

.about .content, .accordion-flush {
  background-color: #333333;
  padding: 40px 0 0;
}

.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
  font-size: 18px;
  /* font-family: "Lato", sans-serif; */
  font-family: Manrope,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
  font-weight: 300;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #32bcad;
  line-height: 1.5;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: normal;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1.5;
  color: #32bcad;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #32bcad;
}
.about .content .btn-learn-more:hover {
  background: #32bcad;
  color: #fff;
  text-decoration: none;
}

/* Activity  */

/* #activity>.justify-content-start {
  margin-bottom: 80px;
} */

/* .about-video .row {
  margin-bottom: 30px;
} */

.about-video .row .content {
  margin: auto 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  margin: 0px auto 0 !important;
  display: block;
  /* width: 100% !important; */
  width: 85% !important;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
}
.counts .count-box {
  width: 100%;
  text-align: center;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 1.5;
  display: block;
  font-weight: 700;
  color: #32bcad;
  margin-left: 80px;
  margin: auto;
}
.counts .count-box p {
  padding: 8px 0 0 0;
  font-weight: 600;
  font-size: 14px;
  color: #1e6ca6;
}

/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
  font-size: 15px;
}

.about-video-2 .row-2-mob-img{
  display: none;
}

.about-video .content h3 {
  /* font-weight: 500;
  font-size: 34px; */
  color: #32bcad;
}
.about-video .content ul {
  list-style: none;
  padding: 0;
}
.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.about-video .content ul i {
  font-size: 24px;
  color: #32bcad;
  position: absolute;
  left: 0;
  top: -2px;
}
.about-video .content p:last-child {
  margin-bottom: 0;
  letter-spacing: normal;
}
.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#32bcad 50%, rgba(36, 135, 206, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about-video .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-video .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 rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about-video .play-btn:hover::after {
  border-left: 15px solid #32bcad;
  transform: scale(20);
}
.about-video .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;
  }
}

.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .icon-box h4 a {
  color: #32bcad;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: #fff;
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: #fff;
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: #fff;
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: #fff;
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.services .iconbox-red:hover .icon i {
  color: #fff;
}
.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}
.services .iconbox-teal i {
  color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
  color: #fff;
}
.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #32bcad;
  background-size: cover;
  padding: 60px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: normal;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #32bcad;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #eeeeee;
  opacity: 1;
  border: 1px solid #32bcad;
}
.swiper-pagination-bullet-active {
  background: #32bcad !important;
  width: 12px;
  height: 12px;
  opacity: 1;
  border: 1px solid #32bcad;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -30px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #32bcad;
  margin: 0 10px;
  display: inline-block;
}
.team .member .social a:hover {
  color: #32bcad;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
  line-height: 0;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #32bcad;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}
.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #32bcad;
}
.pricing .box h4 {
  font-size: 42px;
  color: #32bcad;
  font-weight: 500;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #32bcad;
  text-align: center;
  line-height: 1.5;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  color: #32bcad;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #32bcad;
}
.pricing .box .btn-buy:hover {
  background: #32bcad;
  color: #fff;
}
.pricing .featured {
  background: #32bcad;
}
.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
  color: #fff;
}
.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .featured .btn-buy {
  color: #fff;
  border: 2px solid #fff;
}
.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #32bcad;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #32bcad;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #32bcad;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #32bcad;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #32bcad;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #f8fbfe;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #32bcad;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
  background: #32bcad;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #3194db;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8fbfe;
  min-height: 40px;
  /* margin-top: 72px; */
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #333333;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1.5;
  font-weight: 300;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #32bcad;
  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: #32bcad;
  font-size: 18px;
  line-height: 1.5;
}
#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 {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1.5;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #32bcad;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}
#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #32bcad;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
  background: #3194db;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #32bcad;
  color: #fff;
  line-height: 1.5;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #3194db;
  color: #fff;
  text-decoration: none;
}

#copyright .copyright {
  text-align: center;
  padding: 10px 0px 10px 0px;
  color: #012970;
}

.test ul li {
  color: white;
}

.inner-page {
  margin-top: 7rem;
}


/* Other Resources */

.mb-lg-2 {
  margin-bottom: 15px !important
}

.other-resources-box {
  border: 1px solid #72cfc8;
  height: 30rem;
}

#other-resources .row .box h5 { 
  display: flex;
  align-items: flex-start;
  text-transform: none;
  margin-bottom: 10px;
  font-size: 22px;
}

#other-resources .row .box {
  margin-top: 15px;
}

#other-resources .row div:nth-child(1) .box {
  margin-top: 0px;
}

#other-resources .row .box p {
  margin-left: 20px;
  margin-bottom: 0px;
}

#other-resources .row .box p a .bi {
  font-size: 30px;
  margin: 10px;
} 

#other-resources .row .box .flex-container {
  display: flex;
  align-items: center;
}

/* .mt-4 {
  margin-bottom: 20px;
  margin-top: 50px !important;
} */


.pt-4 {
  padding-top: 0px !important;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: #333333;
}

.about .content-left {
  padding: 0 40px 40px 0;
}

.vision {
  padding-top: 40px;
}

.about .content-right {
  padding: 0 0 40px 40px;
}

.about h3 {
  /* font-size: 14px;
  font-weight: 700; */
  color: #32bcad;
}
.about h2 {
  /* font-size: 34px;
  font-weight: 700; */
  color: #32bcad;
}
.about p {
  margin: 15px 0 0;
  letter-spacing: normal;
}
.about .btn-read-more {
  line-height: 1.5;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #32bcad;
  box-shadow: 0px 5px 25px #32bcad;
}
.about .btn-read-more span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: normal;
}
.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.about .btn-read-more:hover i {
  transform: translateX(5px);
}
.text-teal {
  color: #32bcad;
}
/* .margint5 {
  margin-top: 5rem;
} */

.text br{
  display: none;
}

.swiper-wrapper {
  height: 53.61930294906166vh;
  /* height: 400px; */
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #eee;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  position: relative
}

/* Additional CSS - Hero section background image */

.slide-1 {
  display: block;
  position: absolute;
  left: 30px;
  bottom: auto;
  top: auto;
  z-index: 1;
  color: #fff !important;
  font-size: 55px !important;
  font-weight: 400;
  text-align: left;
  line-height: 1 !important;
  text-shadow: 0px 0px 12px rgb(0 0 0 / 20%);
}


/* Additional CSS - Hero section background image */

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordion-button::after {
  font-weight: bold !important;
}

.accordion-button::after {
  background-image: url(../img/down-arrow.svg) !important;
}



/* Media Queries */


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

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px !important;
  }
  #header .logo {
    font-size: 28px;
  }
  .about .content, .accordion-flush {
    padding: 0;
  }
  .breadcrumbs {
    margin-top: 58px;
  }
  #hero {
    height: 70vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  .swiper-wrapper {
    height: 48vh;
  }
  .slide-1 {
    font-size: 44px !important;
  }
  #header .logo img {
    max-height: 75px !important;
  }
  #main #about {
    padding-top: 0;
  }

  #activity>.justify-content-start {
    margin-bottom: 0px;
  }
  .about-video .row .content {
    margin: 0;
  }
  .about-video .content p {
    margin-bottom: 15px !important;
  }
  .about .content-left, .about .content-right, .vision {
    padding: 40px 0 0;
  }
  .pt-3 {
    padding-top: 0 !important;
  }
  .back-to-top {
    bottom: 63px;
  }
}
@media (max-width: 990px) {
  #header {
    box-shadow: 0 0 10px rgb(32 201 151 / 15%);
  }
  section {
    padding: 40px 0;
  }
  section.about-video-1, section.about-video-2, section.about-video-3 {
    padding: 0 0 40px 0;
  }
  #hero {
    height: 60vh;
  }
  .swiper-wrapper {
    height: 40vh;
  }
  #hero {
    padding-bottom: 0;
  }
  #about {
    padding-top: 0;
  }
  .about .content-left {
    padding-top: 0
  }
  .about-video-2 .row-2-mob-img {
    display: block;
  }
  .about-video-2 .row-2-desk-img {
    display: none;
  }
  .img-fluid {
    max-width: 100%;
    height: auto;
    margin: 20px auto 0 !important;
    display: block;
    width: 70% !important;
  }
  .about-video .row {
    margin-bottom: 0px !important;
  }
  .mt-4 {
    margin-top: 10px !important;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 54vh;
    padding: 0;
  }
  .container, .container-md, .container-sm {
    max-width: 100%;
  }
  .swiper-wrapper {
    height: 30vh;
  }
  .slide-1 {
    font-size: 32px !important;
  }
  p, #other-resources .row .box h5, .about .content ul li, .accordion-collapse ul li, .accordion-button, .accordion-body {
    font-size: 18px !important;
  }
  h2 {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 25px;
  }
  h3 {
    font-size: 28px !important;
    margin-bottom: 15px;
  }
  #header .logo img {
    max-height: 75px !important;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 20px;
  }
  .mt-4 {
    margin-top: 25px !important;
  }
}

@media (max-width: 580px) {
  .slide-1 {
    font-size: 28px !important;
  }
  h2 {
    font-size: 24px !important; 
  }
  h3 {
    font-size: 24px !important;
  }
  .img-fluid {
    width: 100% !important;
  }

  #other-resources .row>div:nth-child(3) .text br {
      display: block;
  }
}

@media (max-width: 450px) {
  .slide-1 {
    margin: 0 !important;
    left: 10px;
    right: auto;
  } 
  #other-resources .row .box .text br{
    display: block;
  }
}



/* @media (max-height: 800px) {
  #hero {
    height: auto;
  }
} */


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


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #32bcad;
  font-size: 44px;
  cursor: pointer;
  display: none;
  line-height: 1.5;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(10, 38, 58, 0.9); */
  background: rgb(51 51 51 / 60%);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 29px;
  right: 14px;
  font-size: 50px;
  color:#32bcad;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 80px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px;
  background-color: #333333;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 15px 20px;
  font-size: 22px;
  color: #32bcad;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #32bcad;
}
.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: #333333;
  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: #32bcad;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
