/**
* Updated: Aug 30 2023 with Bootstrap v5.3.1
*/

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

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  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: #2487ce;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.2s;
}

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

.back-to-top:hover {
  background: #3e9bdd;
  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 #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}


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


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.3s;
  background: #fff;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

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

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}


/*--------------------------------------------------------------
# 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 18px;
  font-size: 14px;
  color: #16507b;
  white-space: nowrap;
  transition: 0.3s;
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #2487ce;
  padding: 8px 20px;
  margin-left: 20px;
  border-radius: 8px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3194db;
}

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

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

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

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

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

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #124265;
  font-size: 42px;
  cursor: pointer;
  display: none;
  line-height: 0;
  margin-left: 10px;
  transition: 0.3s;
}

.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);
  transition: 0.3s;
  z-index: 999;
}

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

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

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

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

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

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


/*--------------------------------------------------------------
# HERO Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
}

#hero .hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

#hero .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero .hero-video-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8); /* adjust overlay opacity */
  z-index: 1;
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #124265;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  margin: 0 0 30px 0;
  font-size: 33px;
  font-weight: 400;
  color: #494949;
  font-family: "Poppins", sans-serif;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 44px;
  border-radius: 8px;
  transition: 0.2s;
  color: #fff;
  background: #2487ce;
  text-decoration: none;
}

#hero .btn-get-started:hover {
  background: #3194db;
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 34px;
    line-height: 38px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 12px 40px;
  }
}


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

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

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

.section-title h1 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}


/*--------------------------------------------------------------
# ABOUT
--------------------------------------------------------------*/
.about {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.about .content .subheader h2 {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 16px;
  line-height: 1.5;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .partner-name h3 {
  font-weight: 600;
  font-size: 22px;
  color:#2487ce;
  margin-bottom: 36px;
  text-align: center;
}

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

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

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2487ce;
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 8px;
  transition: 0.2s;
  line-height: 1;
  color: #2487ce;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #2487ce;
}

.about .content .btn-learn-more:hover {
  background: #2487ce;
  color: #fff;
  text-decoration: none;
}


/*--------------------------------------------------------------
# COUNTS
--------------------------------------------------------------*/
.counts {
  padding: 30px 0;
  position: relative;
  z-index: 1;
  background-color: #ffffff;  
}

.counts .count-box {
  width: 100%;
  text-align: center;
}

.counts .count-box span {
  font-size: 38px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: #124265;
  margin-left: 80px;
  margin: auto;
}

.counts .count-box p {
  padding: 8px 0 0 0;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1e6ca6;
}


/*--------------------------------------------------------------
# ADVANTAGES Section
--------------------------------------------------------------*/
#advantages {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../img/index/advantages_bg.webp") top center;
  background-size: cover;
  position: relative;
}

#advantages:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#advantages .container {
  /* padding-top: 0px; */
  padding-bottom: 90px;
}

#advantages h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #124265;
}

#advantages .icon-boxes {
  margin-top: 30px;
}

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

#advantages .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #14496f;
  font-size: 18px;
}

#advantages .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#advantages .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 40px;
  line-height: 1;
  color: #2487ce;
}

@media (min-width: 1024px) {
  #advantages {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #advantages {
    height: auto;
  }
}

@media (max-width: 992px) {
  #advantages {
    height: auto;
  }

  #advantages h2 {
    font-size: 18px;
    line-height: 24px;
  }
}


/*--------------------------------------------------------------
# SERVICES Section
--------------------------------------------------------------*/
.services {
  position: relative;
  z-index: 1;
  background-color: #ffffff;  
}

.services .services-item {
  margin-bottom: 30px;
}

.services a {
  color: white;
  position: relative;
  display: block;
  overflow: hidden;
}

.services .services-wrap {
  transition: 0.2s;
  position: relative;
  z-index: 2;
}

.services .services-link::before {
  content: "";
  background: rgba(36, 135, 206, 0.8);
  position: absolute;
  border-radius: 8px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all ease-in-out 0.2s;
  z-index: 3;
  opacity: 0;
}

.services .services-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 4;
  transition: all ease-in-out 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services .services-info h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.services .services-info h4 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.services .services-link:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.services .services-wrap:hover .services-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# ABOUT US GENERAL Section
--------------------------------------------------------------*/
.about_us .about_us-item {
  margin-bottom: 30px;
}

.about_us a {
  color: white;
  position: relative;
  display: block;
  overflow: hidden;
}

.about_us .about_us-wrap {
  transition: 0.2s;
  position: relative;
  z-index: 1;
}

.about_us .about_us-link::before {
  content: "";
  background: rgba(36, 135, 206, 0.8);
  position: absolute;
  border-radius: 8px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all ease-in-out 0.2s;
  z-index: 2;
  opacity: 0;
}

.about_us .about_us-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about_us .about_us-info h2 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.about_us .about_us-info h4 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.about_us .about_us-link:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.about_us .about_us-wrap:hover .about_us-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  background: #2487ce;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 8px;
  transition: 0.2s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta-link:hover {
  text-decoration: underline;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #2487ce;
}


/*--------------------------------------------------------------
# PRODUTS Section
--------------------------------------------------------------*/
.products {
  position: relative;
  z-index: 1;
  background-color: #ffffff;  
}

.products .products-item {
  margin-bottom: 30px;
}

.products a {
  color: white;
  position: relative;
  display: block;
  overflow: hidden;
}

.products .products-wrap {
  transition: 0.2s;
  position: relative;
  z-index: 2;
}

.products .products-link::before {
  content: "";
  background: rgba(36, 135, 206, 0.8);
  position: absolute;
  border-radius: 8px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all ease-in-out 0.2s;
  z-index: 3;
  opacity: 0;
}

.products .products-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 4;
  transition: all ease-in-out 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.products .products-info h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.products .products-info h4 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.products .products-link:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.products .products-wrap:hover .products-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# PARTNERS WORLD (logos)
--------------------------------------------------------------*/
.partners-world {
  position: relative;
  z-index: 1;
  background-color: rgb(249, 251, 254);
}

.partners-world {
  padding: 30px 0;
  text-align: center;
}

.partners-world img {
  max-width: 58%;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.partners-world img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .partners-world img {
    max-width: 40%;
  }
}


/*--------------------------------------------------------------
# PATIENTS Section
--------------------------------------------------------------*/
.patients {
  position: relative;
  z-index: 1;
  background-color: #ffffff;  
}

.patients .patients-item {
  margin-bottom: 30px;
}

.patients .patients-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.patients .patients-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  transition: all ease-in-out 0.3s;
  z-index: 3;
  opacity: 0;
}

.patients .patients-wrap .patients-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 4;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.patients .patients-wrap .patients-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-radius: 3px;
  transition: all 0.3s ease 0s;
  z-index: 9994;
}

.patients .patients-wrap .patients-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  border-radius: 3px;
  transition: all 0.3s ease 0s;
  z-index: 9994;
}

.patients .patients-wrap .patients-info h3 {
  font-size: 20px;
  color:#095890;
  font-weight: 700;
}

.patients .patients-wrap .patients-info p {
  color: #2487ce;
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.patients .patients-wrap .patients-links {
  text-align: center;
  z-index: 5;
}

.patients .patients-wrap .patients-links a {
  color: #095890;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.patients .patients-wrap .patients-links a:hover {
  color: #2487ce;
}

.patients .patients-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.patients .patients-wrap:hover .patients-info {
  opacity: 1;
}

.patients .patients-wrap:hover .patients-info::before {
  top: 15px;
  left: 15px;
}

.patients .patients-wrap:hover .patients-info::after {
  bottom: 15px;
  right: 15px;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  z-index: 1;
  background-color: #ffffff;  
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

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

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

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

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

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

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: rotate(180deg);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #f3f9fd;
  position: relative;
  margin-bottom: 35px;
  border-radius: 8px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2487ce;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2487ce;
}


/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  position: relative;
  z-index: 1;
  background-color: rgb(249, 251, 254);  
}

.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: rgb(249, 251, 254);
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 16px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 18px;
  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: #2487ce;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

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


/*--------------------------------------------------------------
# CONTACT Section
--------------------------------------------------------------*/
.contact {
  position: relative;
  z-index: 1;
  background-color: #ffffff;  
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #2487ce;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.contact .info h2 {
  padding: 0 0 0 60px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #124265;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info a {
  font-size: 14px;
  color: rgb(50, 50, 50);
}

.contact .info a:hover {
  font-size: 14px;
  color: rgb(50, 50, 50);
  text-decoration: underline;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .form-for-messages {
  width: 100%;
  background: #fff;
}

.contact .form-for-messages .form-group {
  padding-bottom: 8px;
}

.contact .form-for-messages .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .form-for-messages .error-message br+br {
  margin-top: 25px;
}

.contact .form-for-messages .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .form-for-messages .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .form-for-messages .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;
  animation: animate-loading 1s linear infinite;
}

.contact .form-for-messages input,
.contact .form-for-messages textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 6px;
}

.contact .form-for-messages input:focus,
.contact .form-for-messages textarea:focus {
  border-color: #2487ce;
}

.contact .form-for-messages input {
  height: 44px;
}

.contact .form-for-messages textarea {
  padding: 10px 12px;
}

.contact .form-for-messages button[type=submit] {
  background: #2487ce;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.2s;
  border-radius: 8px;
}

.contact .form-for-messages button[type=submit]:hover {
  background: #3194db;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# ABOUT VIDEO (OFFICES and some other pages)
--------------------------------------------------------------*/
.about-video .content {
  font-size: 15px;
}

.about-video .content h2 {
  font-weight: 700;
  font-size: 24px;
  color: #124265;
}

.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: #2487ce;
  position: absolute;
  left: 0;
  top: -2px;
}

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


/*--------------------------------------------------------------
# TEAM
--------------------------------------------------------------*/
.team .main-member-info {
  padding: 25px 15px;
}

.team .main-member-info h3 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 24px;
  color: #124265;
}

.team .main-member-info span {
  display: block;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: #707070;
}

.team .main-member-info p {
  font-size: 15px;
  line-height: 26px;
  
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h3 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 22px;
  color: #124265;
}

.team .member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: #707070;
}

.team .member .member-info p {
  font-size: 14px;
  line-height: 26px;
}


/*--------------------------------------------------------------
# PORTFOLIO DETAILS (ALL PRODUCTS PAGES)
--------------------------------------------------------------*/
.portfolio-divide-line {
  border-bottom: 1px solid #eee;
}

.portfolio-details {
  padding-top: 80px;
}

.portfolio-details .subheader h2 {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 16px;
  line-height: 1.5;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2487ce;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2487ce;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(18, 66, 101, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery .gallery-item .inner-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery .gallery-item:hover img {
  transform: scale(1.03);
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0;
  margin-bottom: 60px;
  background: transparent;
}

.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: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

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


/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  position: relative;
  z-index: 1;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 30px 0 0px 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;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #124265;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 10px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #2487ce;
  font-size: 12px;
  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 {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2487ce;
}

#footer .footer-social-block {
  font-size: 15px;
}

#footer .footer-social-block h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .credits {
  padding-top: 5px;
  font-size: 14px;
  color: #444444;
}

#footer .credits a {
  padding-top: 5px;
  font-size: 14px;
  color: #444444;
}

#footer .credits a:hover {
  color: #2487ce;
  text-decoration: underline
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2487ce;
  color: #fff;
  line-height: 1;
  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;
}

#footer .footer-contact a {
  font-size: 14px;
  color: rgb(50, 50, 50);
}

#footer .footer-contact a:hover {
  font-size: 14px;
  color: rgb(50, 50, 50);
  text-decoration: underline;
}

#footer .footer-policy a {
  font-size: 14px;
  color: rgb(50, 50, 50);
}

#footer .footer-policy a:hover {
  font-size: 14px;
  color: rgb(50, 50, 50);
  text-decoration: underline;
}


/*--------------------------------------------------------------
# Articles Section
--------------------------------------------------------------*/
.articles {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.articles article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 8px;
}

.articles .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.articles .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}

.articles .title a {
  color: #124265;
  transition: 0.2s;
}

.articles .title a:hover {
  color: #2371a9;
}

.articles .read-more a {
  margin-top: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 26px;
  border-radius: 8px;
  transition: 0.1s;
  color: #2487ce;
  background: transparent;
  border: 2px solid #2487ce;
}

.articles .read-more a:hover {
  color: #fff;
  background: #2487ce;
}

.articles .read-more-news a {
  margin-top: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  transition: 0.1s;
  color: #2487ce;
}

.articles .read-more-news a:hover {
  text-decoration: underline;
}

.articles .date p {

  color: #898989;
}


/*--------------------------------------------------------------
# Article Details Section
--------------------------------------------------------------*/
.article-details .text-container h2 {
  margin: 20px 0 20px 0;
  font-size: 24px;
  font-weight: 600;
}

.article-details .text-container h3 {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 16px;
  line-height: 1.5;
}

.article-details .text-container ul {
  list-style: none;
  padding: 0;
}

.article-details .text-container ul li {
  padding-left: 28px;
  position: relative;
}

.article-details .text-container ul li+li {
  margin-top: 10px;
}

.article-details .text-container ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2487ce;
  line-height: 1;
}

.article-details .read-more a {
  margin-top: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 26px;
  border-radius: 8px;
  transition: 0.1s;
  color: #2487ce;
  background: transparent;
  border: 2px solid #2487ce;
}

.article-details .read-more a:hover {
  color: #fff;
  background: #2487ce;
}