/* You can add global styles to this file, and also import other style files */

/* Job listing hover effects */
.job-listing {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.job-listing .d-flex {
  padding-left: 0.5rem;
}

.job-listing:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: #0cb8b6;
}

.job-listing:hover .job-title-text {
  color: #0cb8b6;
}

.job-listing:hover .job-title-icon {
  transform: scale(1.1);
}

.job-title-icon {
  transition: transform 0.3s ease;
}

.job-icons {
  padding-right: 1rem;
  display: flex;
  align-items: center;
}

.flex-grow-1 {
  padding-left: 0.25rem;
}

.job-apply-link {
  color: #0cb8b6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.job-apply-link:hover {
  color: #098e8c;
  text-decoration: none;
}

.job-apply-link .fa-arrow-right {
  transition: transform 0.3s ease;
}

.job-apply-link:hover .fa-arrow-right {
  transform: translateX(4px);
}

/* Responsive pagination: allow wrapping and reduce padding on small screens */
@media (max-width: 768px) {
  .pagination.flex-nowrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination .page-item {
    margin: 3px;
  }
  .pagination .page-link {
    padding: 0.35rem 0.5rem;
    font-size: 0.95rem;
    min-width: 36px;
    text-align: center;
  }
  /* make inline overflow visible so wrapped lines show cleanly */
  #jobs-pagination { overflow-x: visible !important; }
}

@media (max-width: 420px) {
  .pagination .page-link {
    padding: 0.3rem 0.45rem;
    font-size: 0.9rem;
    min-width: 32px;
  }
  .pagination .page-item { margin: 2px; }
}

/* On very small screens show only Previous / Next buttons */
@media (max-width: 360px) {
  .pagination .page-number { display: none !important; }
}

/* Chevron pagination navigation */
.page-nav {
  font-size: 24px;
  color: #0cb8b6;
  text-decoration: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid #0cb8b6;
}

.page-nav:hover:not(.disabled) {
  background: #0cb8b6;
  color: white;
  box-shadow: 0 2px 8px rgba(12, 184, 182, 0.2);
  transform: translateY(-2px);
}

.page-nav.disabled {
  color: #adb5bd;
  pointer-events: none;
  border-color: #e9ecef;
}

.page-display {
  font-size: 18px;
  color: #495057;
  font-weight: 500;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.current-page {
  color: #0cb8b6;
  font-size: 24px;
  font-weight: 600;
}

.page-separator {
  color: #6c757d;
}

.total-pages {
  font-weight: 500;
}

@media (max-width: 576px) {
  .page-nav {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
  
  .page-display {
    font-size: 16px;
  }
  
  .current-page {
    font-size: 20px;
  }
}
  .pagination .page-item { margin: 2px; }
  .pagination .page-prev, .pagination .page-next { display: inline-flex; }
}

/* Hide the full pagination on small screens and show compact select */
#jobs-page-select { display: none; }
@media (max-width: 420px) {
  .pagination { display: none !important; }
  #jobs-page-select { display: block !important; width: 180px; margin: .5rem auto; }
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title span.accent {
  color: #0cb8b6;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  width: 50%;
  margin: 0 auto;
  background-color: #0cb8b6;
}

section,
.section {
  padding: 6.5rem 0;
  position: relative;
}
.navbar {
  z-index: 999;
  position: relative;
}
@media (max-width: 991.98px) {
  .navbar .nav-link {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    border-left: none !important;
  }
}
.navbar #searchToggler {
  border-left: 1px solid #dee2e6;
}
#search {
  position: relative;
  z-index: 80;
  transition: all 0.3s;
  margin-top: -100px;
  opacity: 0;
}
#search.active {
  margin-top: 0;
  opacity: 1;
}

/* Service Items Styling */
.service-item {
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-color: #0cb8b6;
}

.service-link {
  color: inherit;
}

.service-link:hover {
  color: inherit;
  text-decoration: none;
}

.hover-shadow {
  transition: box-shadow 0.3s ease-in-out;
}

.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.footer {
  background: #1d2024;
  padding: 6.5rem 0 0;
}
.footer-link {
  color: #ccc;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s;
  font-size: 0.9rem;
  font-weight: 300;
}
.footer-link::before {
  content: "\f22d";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  color: #ccc;
  transition: all 0.3s;
}
.footer-link:hover,
.footer-link:focus {
  color: #0cb8b6;
  text-decoration: none;
}
.footer-link:hover::before,
.footer-link:focus::before {
  color: #0cb8b6;
}
.copyrights {
  margin-top: 6.5rem;
  background: #16181c;
}
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h2.text-uppercase {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

h2.lined {
  position: relative;
  padding-bottom: 1rem;
}

h2.lined:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #0cb8b6;
}

h2.lined + p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.25rem;
}
.text-shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.text-shadow-primary {
  text-shadow: 2px 2px 2px rgba(12, 184, 182, 0.1);
}
.text-decoration-underline {
  text-decoration: underline;
}
.text-inherit {
  color: inherit;
}
.rounded-lg {
  border-radius: 0rem;
}
.rounded-sm {
  border-radius: 0rem;
}
.rounded-xl {
  border-radius: 10rem;
}
.opacity-1 {
  opacity: 0.1;
}
.opacity-2 {
  opacity: 0.2;
}
.opacity-3 {
  opacity: 0.3;
}
.opacity-4 {
  opacity: 0.4;
}
.opacity-5 {
  opacity: 0.5;
}
.opacity-6 {
  opacity: 0.6;
}
.opacity-7 {
  opacity: 0.7;
}
.opacity-8 {
  opacity: 0.8;
}
.opacity-9 {
  opacity: 0.9;
}
.opacity-10 {
  opacity: 1;
}
.z-index-10 {
  z-index: 10;
}
.z-index-20 {
  z-index: 20;
}
.z-index-30 {
  z-index: 30;
}
.z-index-40 {
  z-index: 40;
}
.z-index-50 {
  z-index: 50;
}

/* Contact page styles (ported from original component CSS) */
#section-wrapper {
  width: 100%;
  padding: 10px;
}
.box-wrapper {
  position: relative;
  display: table;
  width: 1100px;
  margin: auto;
  margin-top: 35px;
  border-radius: 30px;
}
.info-wrap {
  width: 35%;
  height: 560px;
  padding: 40px;
  float: left;
  display: block;
  border-radius: 30px 0px 0px 30px;
  background: #0cb8b6;
  color: #fff;
}
.info-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.5px;
}
.info-sub-title {
  font-size: 15px;
  font-weight: 500;
  margin-top: 17px;
  letter-spacing: 0.5px;
  line-height: 26px;
}
.info-details {
  list-style: none;
  margin: 60px 0px;
}
.info-details li {
  margin-top: 25px;
  font-size: 18px;
  color: #fff;
}
.info-details li i {
  background: #03a998;
  padding: 12px;
  border-radius: 50%;
  margin-right: 5px;
}
.info-details li a {
  color: #fff;
  text-decoration: none;
}

.social-icons {
  list-style: none;
  text-align: center;
  margin: 20px 0px;
}
.social-icons li {
  display: inline-block;
}
.social-icons li i {
  background: #03a998;
  color: #fff;
  padding: 15px;
  font-size: 20px;
  border-radius: 22%;
  margin: 0px 8px;
  margin-right: 30px;
  cursor: pointer;
  transition: all 0.5s;
}
.social-icons li i:hover {
  background: #fff;
  color: #000000;
}

/* floating right-side contact bar (phone / whatsapp / email) */
.icon-bar {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
}

/* Override: ensure hero gradient is contained and doesn't visually overlap
   other page sections. Make hero a stacking context and keep the gradient
   behind the hero content only. This avoids stray teal bands above/below
   the hero when sections are rearranged or when multiple hero-like
   elements are present. */
.hero-home {
  position: relative; /* create stacking context for ::before */
  z-index: 0;
  overflow: hidden; /* prevent pseudo-element from visually escaping */
}

/* Inner page hero banners */
.hero-banner {
  height: 320px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Location image styling */
.location-img {
  width: 150px;
  border-radius: 50%;
  margin-left: 45px;
  padding: 6px;
  background-color: #77cecc;
}

/* Product page headings */
.product-heading {
  color: #0cb8b6;
}

/* Full-width buttons */
.btn-full {
  border-radius: 8px;
  width: 100%;
}
.hero-home::before {
  z-index: 0; /* keep gradient behind content */
}
.hero-home > .container,
.hero-home .index-forward {
  position: relative;
  z-index: 2; /* ensure hero text and CTAs appear above the gradient */
}

/* Hero background helper: move background image and padding here instead of inline styles */
.hero-bg {
  background: url('../assets/images/home_bg.png') center/cover no-repeat;
  padding: 80px 0;
}

/* Hero illustration sizing */
.hero-illustration {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* Machine Learning / AI images */
.mlai-img {
  max-width: 220px;
  width: auto;
  margin: 0 10px;
  display: inline-block;
}

/* Client logo styling */
.client-logo {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  display: inline-block;
}

/* Image and card layout fixes to prevent overlaps and ensure consistent sizing */
.hero-home img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Standardize product card image area so cards align vertically */
.card {
  overflow: hidden;
  border: none;
  background: #fff;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card .card-img-top {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
}

.card .card-body {
  padding: 25px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.card .card-title {
  color: #333;
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.card .card-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card .btn-outline-primary {
  padding: 8px 20px;
  font-weight: 500;
  border-width: 2px;
  align-self: start;
}

.card .btn-outline-primary:hover {
  background: #0cb8b6;
  border-color: #0cb8b6;
}

/* Clients grid: keep logos uniform and centered */
.clients-grid img,
.our-clients img,
.row img[alt="client"] {
  max-height: 60px;
  width: auto;
  display: inline-block;
  margin: 0 auto;
}

/* Ensure inline image margins in ML/AI section don't collapse into neighbouring content */
.py-5.text-center img {
  vertical-align: middle;
}

/* Product card styling */
.product-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-card .card-header {
  background: #0cb8b6 !important;
  border: none;
  padding: 1rem;
}

.product-card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Work step styling */
.work-step {
  padding: 2rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  margin-bottom: 1rem;
}

.step-number ul li {
  width: 8px;
  height: 8px;
  background: #0cb8b6;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  display: block;
}

.step-label {
  font-size: 0.9rem;
  color: #0cb8b6;
  font-weight: 600;
  margin-top: auto;
}

/* Global presence styling */
.location-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Enhanced service item styling */
.service-item {
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-color: #0cb8b6;
}

.service-item p {
  flex-grow: 1;
}

/* Tab styling */
.nav-pills .nav-link {
  border-radius: 25px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  margin: 0 0.25rem;
}

.nav-pills .nav-link.active {
  background-color: #0cb8b6;
  color: white;
}

.nav-pills .nav-link:not(.active) {
  background-color: #f8f9fa;
  color: #6c757d;
}

.nav-pills .nav-link:not(.active):hover {
  background-color: #e9ecef;
  color: #495057;
}

/* Tab content styling */
.tab-content {
  margin-top: 2rem;
}

.tab-pane {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Remove gaps for stats row section */
.py-5.bg-primary {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  border-radius: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.stats-row {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Ensure proper spacing and alignment */
.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-md-3, .col-md-4, .col-md-6 {
  padding-left: 15px;
  padding-right: 15px;
}

/* Fix Bootstrap card alignment */
.card {
  margin-bottom: 1rem;
}

/* Ensure equal height cards */
.h-100 {
  height: 100% !important;
}

/* Flex utilities for better alignment */
.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.mt-auto {
  margin-top: auto !important;
}

.text-center {
  text-align: center !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* Theme accents */
:root {
  --accent: #0cb8b6;
}

/* Buttons - primary accent with subtle motion */
.btn {
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0aa09f;
  border-color: #0aa09f;
  box-shadow: 0 6px 14px rgba(12, 184, 182, 0.35);
  transform: translateY(-1px);
}

/* Elevation utilities */
.shadow-soft {
  box-shadow: 0 6px 18px rgba(22, 28, 45, 0.08);
}

.hover-shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-shadow:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(22, 28, 45, 0.12);
}

.card-elevated {
  border: 0;
  box-shadow: 0 6px 18px rgba(22, 28, 45, 0.08);
}

/* Section title accent underline (use container ::after defined at top) */

/* Reveal on scroll animations */
.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.in-view,
.reveal-up.in-view {
  opacity: 1;
  transform: none;
}

/* Product and service cards default elevation */
.product-card,
.service-item {
  background: #fff;
}

/* Client logos subtle hover */
.client-logo {
  max-width: 100%;
  filter: grayscale(35%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  filter: grayscale(0%);
}

/* Clients marquee helpers: ensure the area is visible and logos are centered */
.clients-marquee-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.clients-marquee-inner {
  display: flex;
  align-items: center;
  animation: marquee 10s linear infinite;
}

.client-logo-card {
  flex: 0 0 auto;
  padding: 0 20px;
}

.client-logo {
  height: 60px;
  width: 150px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(50%);
}

/* Infinite scroll animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Small screens: reduce hero padding and card image height to avoid cramped layouts */
@media (max-width: 767px) {
  .hero-home { padding: 40px 0 !important; }
  .card .card-img-top { height: 160px; }
  .card .card-body { min-height: 160px; }
  .work-step { padding: 1rem 0.5rem; }
  .location-img { width: 60px; height: 60px; }
}

/* Safety: ensure body background is white so gaps don't show teal */
body {
  background: #ffffff;
}
.icon-bar a {
  display: block;
  text-align: center;
  padding: 12px 10px;
  transition: all 0.25s ease;
  color: white;
  font-size: 18px;
}
.icon-bar a:hover { transform: scale(1.05); }
.icon-bar .phone { background: #0a2140; color: #fff; }
.icon-bar .email { background: #0a2140; color: #fff; }
.icon-bar .whatsapp { background: #0a2140; color: #25d366; }

@media (max-width: 767px) {
  .icon-bar { display: none; }
}
/* Contact panel layout (left info + right form) */
#section-wrapper .box-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}
.info-wrap {
  width: 36%;
  background: #0cb8b6; /* teal */
  color: #ffffff;
  padding: 48px 36px;
  text-align: left;
}
.info-wrap .info-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  text-align: center;
}
.info-wrap .info-sub-title {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  text-align: center;
  margin-bottom: 24px;
}
.form-wrap {
  width: 64%;
  padding: 40px 50px;
  background: #ecf0f3;
}
.form-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}
.form-fields {
  display: block;
  width: 100%;
}
.form-fields .form-group {
  width: 46%;
  float: left;
  padding: 0 18px 18px 0;
  box-sizing: border-box;
}
.form-fields .form-group:last-child {
  width: 100%;
  padding-right: 0;
}
.form-fields input,
.form-fields textarea {
  width: 100%;
  background: #eef2f3;
  border-radius: 8px;
  padding: 18px 16px;
  font-size: 16px;
  color: #666;
  border: none;
  box-shadow: inset 6px 6px 12px rgba(0,0,0,0.12), inset -6px -6px 12px rgba(255,255,255,0.7);
  resize: none;
}
.form-fields textarea { height: 140px; }
.form-wrap .btn-primary {
  background: #45cfc6;
  border: none;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 8px;
  width: 100%;
}
.form-wrap .btn-primary:hover { background: #36bfb3; }

@media only screen and (max-width: 767px) {
  #section-wrapper .box-wrapper { flex-direction: column; margin: 20px; }
  .info-wrap, .form-wrap { width: 100%; padding: 24px; }
  .form-fields .form-group { width: 100%; float: none; padding: 0 0 16px 0; }
}

@media only screen and (max-width: 767px) {
  .box-wrapper {
    width: 100%;
  }
  .info-wrap,
  .form-wrap {
    width: 100%;
    height: inherit;
    float: none;
  }
  .info-wrap {
    border-radius: 30px 30px 0px 0px;
  }
  .form-wrap {
    border-radius: 0px 0px 30px 30px;
  }
  .form-group {
    width: 100%;
    float: none;
    margin: 25px 0px;
  }
  .form-fields .form-group:last-child,
  .submit-button {
    width: 100%;
  }
  .submit-button {
    margin: 10px 0px;
  }
}

/* Remove default valid/invalid borders so inputs stay borderless like the reference site */
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

@media only screen and (max-width: 600px) {
  .card {
    margin: 12px;
  }
}

.ef:hover {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.letter-spacing-0 {
  letter-spacing: 0 !important;
}
.letter-spacing-1 {
  letter-spacing: 0.1em;
}
.letter-spacing-2 {
  letter-spacing: 0.2em;
}
.letter-spacing-3 {
  letter-spacing: 0.3em;
}
.letter-spacing-4 {
  letter-spacing: 0.4em;
}
.letter-spacing-5 {
  letter-spacing: 0.5em;
}
.text-hover-primary {
  transition: all 0.2s ease-in-out;
}
.text-hover-primary:focus,
.text-hover-primary:hover {
  color: #0cb8b6 !important;
}
a.text-hover-primary {
  transition: all 0.2s ease-in-out;
}
a.text-hover-primary:focus,
a.text-hover-primary:hover {
  color: #0cb8b6 !important;
}
.bg-primary-light {
  background-color: #e2f6f6;
}
.border-primary {
  border-color: #0cb8b6 !important;
}
.text-hover-secondary {
  transition: all 0.2s ease-in-out;
}
.text-hover-secondary:focus,
.text-hover-secondary:hover {
  color: #6c757d !important;
}
a.text-hover-secondary {
  transition: all 0.2s ease-in-out;
}
a.text-hover-secondary:focus,
a.text-hover-secondary:hover {
  color: #6c757d !important;
}
.bg-secondary-light {
  background-color: #edeeef;
}
.border-secondary {
  border-color: #6c757d !important;
}
.text-hover-success {
  transition: all 0.2s ease-in-out;
}
.text-hover-success:focus,
.text-hover-success:hover {
  color: #28a745 !important;
}
a.text-hover-success {
  transition: all 0.2s ease-in-out;
}
a.text-hover-success:focus,
a.text-hover-success:hover {
  color: #28a745 !important;
}
.bg-success-light {
  background-color: #e5f4e9;
}
.border-success {
  border-color: #28a745 !important;
}
.text-hover-info {
  transition: all 0.2s ease-in-out;
}
.text-hover-info:focus,
.text-hover-info:hover {
  color: #17a2b8 !important;
}
a.text-hover-info {
  transition: all 0.2s ease-in-out;
}
a.text-hover-info:focus,
a.text-hover-info:hover {
  color: #17a2b8 !important;
}
.bg-info-light {
  background-color: #e3f4f6;
}
.border-info {
  border-color: #17a2b8 !important;
}
.text-hover-warning {
  transition: all 0.2s ease-in-out;
}
.text-hover-warning:focus,
.text-hover-warning:hover {
  color: #ffc107 !important;
}
a.text-hover-warning {
  transition: all 0.2s ease-in-out;
}
a.text-hover-warning:focus,
a.text-hover-warning:hover {
  color: #ffc107 !important;
}
.bg-warning-light {
  background-color: #fff8e1;
}
.border-warning {
  border-color: #ffc107 !important;
}
.text-hover-danger {
  transition: all 0.2s ease-in-out;
}
.text-hover-danger:focus,
.text-hover-danger:hover {
  color: #dc3545 !important;
}
a.text-hover-danger {
  transition: all 0.2s ease-in-out;
}
a.text-hover-danger:focus,
a.text-hover-danger:hover {
  color: #dc3545 !important;
}
.bg-danger-light {
  background-color: #fbe7e9;
}
.border-danger {
  border-color: #dc3545 !important;
}
.text-hover-light {
  transition: all 0.2s ease-in-out;
}
.text-hover-light:focus,
.text-hover-light:hover {
  color: #f8f9fa !important;
}
a.text-hover-light {
  transition: all 0.2s ease-in-out;
}
a.text-hover-light:focus,
a.text-hover-light:hover {
  color: #f8f9fa !important;
}
.bg-light-light {
  background-color: #fefefe;
}
.border-light {
  border-color: #f8f9fa !important;
}
.text-hover-dark {
  transition: all 0.2s ease-in-out;
}
.text-hover-dark:focus,
.text-hover-dark:hover {
  color: #343a40 !important;
}
a.text-hover-dark {
  transition: all 0.2s ease-in-out;
}
a.text-hover-dark:focus,
a.text-hover-dark:hover {
  color: #343a40 !important;
}
.bg-dark-light {
  background-color: #e7e7e8;
}
.border-dark {
  border-color: #343a40 !important;
}
.bg-gray-100 {
  background: #f8f9fa !important;
}
.text-gray-100 {
  color: #f8f9fa;
}
.bg-gray-200 {
  background: #e9ecef !important;
}
.text-gray-200 {
  color: #e9ecef;
}
.bg-gray-300 {
  background: #dee2e6 !important;
}
.text-gray-300 {
  color: #dee2e6;
}
.bg-gray-400 {
  background: #ced4da !important;
}
.text-gray-400 {
  color: #ced4da;
}
.bg-gray-500 {
  background: #adb5bd !important;
}
.text-gray-500 {
  color: #adb5bd;
}
.bg-gray-600 {
  background: #6c757d !important;
}
.text-gray-600 {
  color: #6c757d;
}
.bg-gray-700 {
  background: #495057 !important;
}
.text-gray-700 {
  color: #495057;
}
.bg-gray-800 {
  background: #343a40 !important;
}
.text-gray-800 {
  color: #343a40;
}
.bg-gray-900 {
  background: #212529 !important;
}
.text-gray-900 {
  color: #212529;
}
.badge-primary-light {
  color: #0cb8b6;
  background-color: #e2f6f6;
}
.badge-secondary-light {
  color: #6c757d;
  background-color: #edeeef;
}
.badge-success-light {
  color: #28a745;
  background-color: #e5f4e9;
}
.badge-info-light {
  color: #17a2b8;
  background-color: #e3f4f6;
}
.badge-warning-light {
  color: #ffc107;
  background-color: #fff8e1;
}
.badge-danger-light {
  color: #dc3545;
  background-color: #fbe7e9;
}
.badge-light-light {
  color: #f8f9fa;
  background-color: #fefefe;
}
.badge-dark-light {
  color: #343a40;
  background-color: #e7e7e8;
}
.overlay-content {
  position: relative;
  z-index: 20;
}
@media (min-width: 576px) {
  .light-overlay-sm,
  .overlay-hover-light-sm {
    position: relative;
  }
  .light-overlay-sm::after,
  .overlay-hover-light-sm::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    background: #fff;
  }
}
@media (min-width: 576px) {
  .overlay-hover-light-sm::after {
    transition: opacity 0.15s linear;
    opacity: 0;
  }
}
@media (min-width: 576px) {
  .light-overlay-sm::after,
  .overlay-hover-light-sm:hover::after {
    opacity: 0.4;
  }
}
@media (min-width: 576px) {
  .light-overlay-sm-0::after,
  .overlay-hover-light-sm-0:hover::after {
    display: none;
  }
}
.dark-overlay-sm {
  position: relative;
}
@media (min-width: 576px) {
  .dark-overlay-sm::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    opacity: 0.4;
    background: #000;
  }
}
@media (min-width: 576px) {
  .dark-overlay-sm-0::after {
    display: none;
  }
}
@media (min-width: 768px) {
  .light-overlay-md,
  .overlay-hover-light-md {
    position: relative;
  }
  .light-overlay-md::after,
  .overlay-hover-light-md::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    background: #fff;
  }
}
@media (min-width: 768px) {
  .overlay-hover-light-md::after {
    transition: opacity 0.15s linear;
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .light-overlay-md::after,
  .overlay-hover-light-md:hover::after {
    opacity: 0.4;
  }
}
@media (min-width: 768px) {
  .light-overlay-md-0::after,
  .overlay-hover-light-md-0:hover::after {
    display: none;
  }
}
.dark-overlay-md {
  position: relative;
}
@media (min-width: 768px) {
  .dark-overlay-md::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    opacity: 0.4;
    background: #000;
  }
}
@media (min-width: 768px) {
  .dark-overlay-md-0::after {
    display: none;
  }
}
@media (min-width: 992px) {
  .light-overlay-lg,
  .overlay-hover-light-lg {
    position: relative;
  }
  .light-overlay-lg::after,
  .overlay-hover-light-lg::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    background: #fff;
  }
}
@media (min-width: 992px) {
  .overlay-hover-light-lg::after {
    transition: opacity 0.15s linear;
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .light-overlay-lg::after,
  .overlay-hover-light-lg:hover::after {
    opacity: 0.4;
  }
}
@media (min-width: 992px) {
  .light-overlay-lg-0::after,
  .overlay-hover-light-lg-0:hover::after {
    display: none;
  }
}
.dark-overlay-lg {
  position: relative;
}
@media (min-width: 992px) {
  .dark-overlay-lg::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    opacity: 0.4;
    background: #000;
  }
}
@media (min-width: 992px) {
  .dark-overlay-lg-0::after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .light-overlay-xl,
  .overlay-hover-light-xl {
    position: relative;
  }
  .light-overlay-xl::after,
  .overlay-hover-light-xl::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    background: #fff;
  }
}
@media (min-width: 1200px) {
  .overlay-hover-light-xl::after {
    transition: opacity 0.15s linear;
    opacity: 0;
  }
}
@media (min-width: 1200px) {
  .light-overlay-xl::after,
  .overlay-hover-light-xl:hover::after {
    opacity: 0.4;
  }
}
@media (min-width: 1200px) {
  .light-overlay-xl-0::after,
  .overlay-hover-light-xl-0:hover::after {
    display: none;
  }
}
.dark-overlay-xl {
  position: relative;
}
@media (min-width: 1200px) {
  .dark-overlay-xl::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    opacity: 0.4;
    background: #000;
  }
}
@media (min-width: 1200px) {
  .dark-overlay-xl-0::after {
    display: none;
  }
}
.light-overlay,
.overlay-hover-light {
  position: relative;
}
.light-overlay::after,
.overlay-hover-light::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  background: #fff;
}
.overlay-hover-light::after {
  transition: opacity 0.15s linear;
  opacity: 0;
}
.light-overlay::after,
.overlay-hover-light:hover::after {
  opacity: 0.4;
}
.light-overlay-0::after,
.overlay-hover-light-0:hover::after {
  display: none;
}
.dark-overlay {
  position: relative;
}
.dark-overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  opacity: 0.4;
  background: #000;
}
.dark-overlay-0::after {
  display: none;
}
.overflow-visible {
  overflow: visible !important;
}
.shadow-0 {
  box-shadow: none !important;
}
.text-small {
  font-size: 0.85rem !important;
}
.text-lg {
  font-size: 3.5rem !important;
}
.text-gray {
  color: #b4b4b4 !important;
}
.text-muted {
  color: #939ba2 !important;
}
.border-gray {
  border-color: #eee !important;
}
.index-forward {
  z-index: 99;
  position: relative;
}
.bg-cover {
  background-size: cover !important;
}
.bg-center {
  background-position: center center !important;
}
.bg-top {
  background-position: top center !important;
}
.bg-bottom {
  background-position: bottom center !important;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.line-height-sm {
  line-height: 1.3 !important;
}
.dotted-separator {
  border-top: 2px dotted rgba(0, 0, 0, 0.2);
}
.accordion .card {
  border: none;
}
.accordion .card-header {
  background: #fff;
  border: none;
}
.accordion .card .btn-link {
  width: 100%;
  text-decoration: none;
  color: #333;
  text-align: left;
}
.accordion .card .btn-link:focus {
  box-shadow: none;
}
.border-md {
  border-width: 2px !important;
}
.border-lg {
  border-width: 4px !important;
}
.lined {
  display: inline-block;
  position: relative;
  padding-bottom: 0.7rem;
}
.lined::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: #0cb8b6;
}
.lined::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 3.3rem;
  width: 0.7rem;
  height: 2px;
  background: #0cb8b6;
}
.lined-center::before {
  left: calc(50% - 1.65rem);
}
.lined-center::after {
  left: calc(50% + 1.65rem);
}

/* Ensure banner headings with the lined / lined-center classes are centered
   even when parent row has left margin utilities (ml-*) from Bootstrap. */
.info .container .row > h2.lined,
.info .container .row > h2.lined.lined-center {
  display: block; /* make it a block so margin:auto centers it */
  text-align: center;
  margin: 0 auto;
}
input.text-white::-webkit-input-placeholder {
  color: #fff;
}
input.text-white::-moz-placeholder {
  color: #fff;
}
input.text-white:-ms-input-placeholder {
  color: #fff;
}
input.text-white::-ms-input-placeholder {
  color: #fff;
}
input.text-white::placeholder {
  color: #fff;
}
.bg-none {
  background: none !important;
}
.text-shadow {
  text-transform: 1px 1px 0 rgba(0, 0, 0, 0.3);
}
#style-switch-button {
  position: fixed;
  top: 89px;
  left: 0px;
  border-radius: 0;
  z-index: 9999;
}
#style-switch {
  width: 300px;
  padding: 20px;
  position: fixed;
  top: 137px;
  left: 0;
  background: #fff;
  border: solid 1px #ced4da;
  z-index: 2000;
}
#style-switch h4 {
  color: #495057;
}
.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  background: linear-gradient(to top, #0cb8b6, rgba(12, 184, 182, 0.25));
  z-index: 1;
}
.info .container {
  -webkit-transform: translateY(-5rem);
  transform: translateY(-5rem);
  z-index: 9999;
  position: relative;
}
@media (min-width: 992px) {
  .info .container {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.services-item-text {
  color: #adb5bd;
  transition: all 0.5s;
}
.services-item:hover {
  background: #0cb8b6;
  color: #fff;
}
.services-item:hover .services-item-text {
  color: #fff;
}
.services-item:hover .services-icon {
  background: #fff;
  color: #0cb8b6;
}
.services-item:hover .services-icon::before {
  border-color: #fff;
}
.services-item {
  transition: all 0.5s;
}
.services-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0cb8b6;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 90px;
  position: relative;
  transition: all 0.5s;
}
.services-icon::before {
  content: "";
  width: 96px;
  height: 96px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: -8px;
  display: block;
  border: 2px solid rgba(12, 184, 182, 0.5);
  transition: all 0.5s;
}
.doctor:hover .doctor-overlay {
  opacity: 1;
}
.doctor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(12, 184, 182, 0.65);
  transition: all 0.5s;
  opacity: 0;
}
.doctor-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #0cb8b6;
  background: rgba(255, 255, 255, 0.88);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #0cb8b6;
  transition: all 0.3s;
}
.doctor-social-link:hover,
.doctor-social-link:focus {
  text-decoration: none;
}
.contact-icon {
  width: 50px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 1.4rem;
}
.navbar {
  padding: 0.5rem 1rem;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 0rem;
}
.navbar-light .navbar-brand {
  color: #0cb8b6;
  font-size: 30px;
  font-weight: bold;
}
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: #0cb8b6;
}
.navbar-light .navbar-nav .nav-link {
  color: #343a40;
  padding: 1.2rem 0.5rem;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #0cb8b6;
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #0cb8b6;
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.btn {
  font-weight: 700;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:focus,
.btn.focus {
  box-shadow: 0 0 0 0.2rem rgba(12, 184, 182, 0.25);
}
.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
  background-image: none;
}
.btn-link {
  font-weight: 400;
  color: #0cb8b6;
}
.btn-link:hover {
  color: #07706f;
  text-decoration: underline;
}
.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
}
.btn-primary {
  color: #fff;
  background-color: #0cb8b6;
  border-color: #0cb8b6;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0a9492;
  border-color: #098887;
}
.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(12, 184, 182, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #0cb8b6;
  border-color: #0cb8b6;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #098887;
  border-color: #087c7b;
}
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(12, 184, 182, 0.5);
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus,
.btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus,
.btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus,
.btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-primary {
  color: #0cb8b6;
  background-color: transparent;
  background-image: none;
  border-color: #0cb8b6;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0cb8b6;
  border-color: #0cb8b6;
}
.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(12, 184, 182, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #0cb8b6;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #0cb8b6;
  border-color: #0cb8b6;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(12, 184, 182, 0.5);
}
.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #fff;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0rem;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  overflow-x: hidden !important;
}
a {
  color: #0cb8b6;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #07706f;
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: inherit;
}
h1,
.h1 {
  font-size: 2.5rem;
}
h2,
.h2 {
  font-size: 1.8rem;
}
h3,
.h3 {
  font-size: 1.75rem;
}
h4,
.h4 {
  font-size: 1.5rem;
}
h5,
.h5 {
  font-size: 1.25rem;
}
h6,
.h6 {
  font-size: 1rem;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.breadcrumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0;
}
.breadcrumb-item {
  font-size: 0.9rem;
}
.breadcrumb-item a {
  transition: all 0.3s;
}
.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #fff;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "|";
  color: #999;
}
small,
.small {
  font-size: 80%;
  font-weight: 400;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  border-left:  5px solid #0cb8b6;
}
.blockquote-footer {
  color: #6c757d;
}
.blockquote-footer::before {
  content: "\2014 \00A0";
}
.text-primary {
  color: #0cb8b6 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #098887 !important;
}
.page-item:first-child .page-link {
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 0rem;
}
.page-item.active .page-link {
  color: #fff;
  background-color: #0cb8b6;
  border-color: #0cb8b6;
}
.page-item.disabled .page-link {
  color: #6c757d;
  background-color: #fff;
  border-color: #dee2e6;
}
.page-link {
  padding: 0.5rem 0.75rem;
  line-height: 1.25;
  color: #0cb8b6;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #07706f;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(12, 184, 182, 0.25);
}
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 0rem;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 0rem;
}
.bg-primary {
  background-color: #0cb8b6 !important;
}
a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #098887 !important;
}
.bg-secondary {
  background-color: #6c757d !important;
}
a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}
.bg-success {
  background-color: #28a745 !important;
}
a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}
.bg-info {
  background-color: #17a2b8 !important;
}
a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}
.bg-dark {
  background-color: #343a40 !important;
}
a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}
.border-primary {
  border-color: #0cb8b6 !important;
}
.border-secondary {
  border-color: #6c757d !important;
}
.border-success {
  border-color: #28a745 !important;
}
.border-info {
  border-color: #17a2b8 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #343a40 !important;
}
.text-primary {
  color: #0cb8b6 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #098887 !important;
}
.text-secondary {
  color: #6c757d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #545b62 !important;
}
.text-success {
  color: #28a745 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1e7e34 !important;
}
.text-info {
  color: #17a2b8 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #117a8b !important;
}
.text-warning {
  color: #ffc107 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #d39e00 !important;
}
.text-danger {
  color: #dc3545 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bd2130 !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:hover,
a.text-light:focus {
  color: #dae0e5 !important;
}
.text-dark {
  color: #343a40 !important;
}
a.text-dark:hover,
a.text-dark:focus {
  color: #1d2124 !important;
}
.badge-primary {
  color: #fff;
  background-color: #0cb8b6;
}
.badge-primary[href]:hover,
.badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #098887;
}
.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
.badge-secondary[href]:hover,
.badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}
.badge-success {
  color: #fff;
  background-color: #28a745;
}
.badge-success[href]:hover,
.badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
.badge-info[href]:hover,
.badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}
.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
.badge-warning[href]:hover,
.badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
.badge-danger[href]:hover,
.badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}
.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
.badge-light[href]:hover,
.badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}
.badge-dark {
  color: #fff;
  background-color: #343a40;
}
.badge-dark[href]:hover,
.badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.form-control {
  padding: 1.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #50f4f2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(12, 184, 182, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #939ba2;
  font-weight: 300;
}
.form-control::-moz-placeholder {
  color: #939ba2;
  font-weight: 300;
}
.form-control:-ms-input-placeholder {
  color: #939ba2;
  font-weight: 300;
}
.form-control::-ms-input-placeholder {
  color: #939ba2;
  font-weight: 300;
}
.form-control::placeholder {
  color: #939ba2;
  font-weight: 300;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
}
select.form-control:not([size]):not([multiple]) {
  height: calc(4.5rem * 0.65 + 2px);
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.form-control-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0rem;
}
select.form-control-sm:not([size]):not([multiple]) {
  height: calc(2.3125rem + 2px);
}
.form-control-lg {
  padding: 1rem 2rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0rem;
}
select.form-control-lg:not([size]):not([multiple]) {
  height: calc(3.875rem + 2px);
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
  border-radius: 0.2rem;
}
.was-validated .form-control:valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated
  .custom-control-input:valid:checked
  ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}
.was-validated
  .custom-control-input:valid:focus
  ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid ~ .custom-file-label::before,
.custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip,
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: 0.2rem;
}
.was-validated .form-control:invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated
  .custom-control-input:invalid:checked
  ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}
.was-validated
  .custom-control-input:invalid:focus
  ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .custom-file-label::before,
.custom-file-input.is-invalid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #0cb8b6;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(12, 184, 182, 0.25);
}
.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #80f7f5;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #0cb8b6;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox
  .custom-control-input:indeterminate
  ~ .custom-control-label::before {
  background-color: #0cb8b6;
}
.custom-checkbox
  .custom-control-input:indeterminate
  ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox
  .custom-control-input:disabled:checked
  ~ .custom-control-label::before {
  background-color: rgba(12, 184, 182, 0.5);
}
.custom-checkbox
  .custom-control-input:disabled:indeterminate
  ~ .custom-control-label::before {
  background-color: rgba(12, 184, 182, 0.5);
}
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #0cb8b6;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio
  .custom-control-input:disabled:checked
  ~ .custom-control-label::before {
  background-color: rgba(12, 184, 182, 0.5);
}
code {
  font-size: 87.5%;
  color: #e83e8c;
}
.nav-link {
  padding: 0.5rem 1rem;
}
.nav-link.disabled {
  color: #6c757d;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
}
.nav-pills .nav-link {
  border-radius: 0rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #333;
  background: #f5f5f5;
  padding: 1rem 1rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0cb8b6;
}
.nav-pills .nav-item:not(:first-of-type) .nav-link {
  border-left: 1px solid #ddd;
}
.card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
}
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
}
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}
.card-body {
  padding: 1.25rem;
}
.card-title {
  margin-bottom: 0.75rem;
}
.card-subtitle {
  margin-top: -0.375rem;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}
.card-header {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0rem - 1px) calc(0rem - 1px) 0 0;
}
.card-header-transparent {
  background-color: rgba(0, 0, 0, 0.3);
  border-bottom: none;
}
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0rem - 1px) calc(0rem - 1px);
}
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.card-img-overlay {
  padding: 1.25rem;
}
.card-img-overlay-opacity {
  background: rgba(0, 0, 0, 0.2);
}
.card-img {
  border-radius: calc(0rem - 1px);
}
.card-img-top {
  border-top-left-radius: calc(0rem - 1px);
  border-top-right-radius: calc(0rem - 1px);
}
.card-img-bottom {
  border-bottom-right-radius: calc(0rem - 1px);
  border-bottom-left-radius: calc(0rem - 1px);
}
.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.dropdown-menu {
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0rem;
}
.dropdown-item {
  padding: 0.25rem 1.5rem;
  font-weight: 400;
  color: #212529;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  background-color: #f8f9fa;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  background-color: #0cb8b6;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
}

html, body {
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden!
}
section.info, .container.bg-white {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  box-sizing: border-box;
}
.pagination { margin-bottom: 2.5rem; }

.job-listings {
  margin: 0 auto;
  max-width: 900px;
  padding-bottom: 2rem;
}
.job-listing {
  border-bottom: 1px solid #e9ecef;
  padding: 1.2rem 0 1.6rem 0;
  background: #fff;
  min-height: 130px;
}
.job-title-icon { color: #0cb8b6; min-width: 35px; }
.job-title-text { color: #212529; font-size: 1.13rem; }
.job-listing .job-apply-link { color: #0cb8b6; font-weight: 700; text-decoration: none; }
.job-listing .job-apply-link:hover { color: #098887; text-decoration: underline; }
.row { margin-left: 0; margin-right: 0; }
.col-md-6 { padding-left: 24px; padding-right: 24px; }
@media (max-width: 991.98px) {
  .job-listings { max-width: 98vw; padding-left: 5px; padding-right: 5px; }
  .job-title-text { font-size: 1rem; }
  .col-md-6 { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 767px) {
  .col-md-6 { width: 100%; display: block; box-sizing: border-box; padding-left: 3px; padding-right: 3px; }
}
.pagination { margin-bottom: 2.5rem; justify-content: center; flex-wrap: wrap; max-width: 100vw; overflow-x: auto; white-space: nowrap; }

/* Careers page reset for container floating */
.info .container,
.careers-main,
.container.bg-white {
  transform: none !important;
  -webkit-transform: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.job-listings {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Key stats row layout fix */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}
.stat-item {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 24px 0;
}
.stat-item h2 {
  margin-bottom: 0.5rem;
}
.stat-item .text-left {
  text-align: center !important;
}
@media (max-width: 991px) {
  .stat-item {
    max-width: 50%;
    min-width: 160px;
    padding: 18px 0;
  }
}
@media (max-width: 600px) {
  .stats-row {
    flex-direction: column;
    align-items: stretch;
  }
  .stat-item {
    max-width: 100%;
    min-width: 120px;
    padding: 12px 0;
  }
}