/*
	Author::   salientscapes
	Projects:: Start
	Version::  1.0.0

	========== Table Of Content ==========

	1. General Styles
		1.1. Reset
		1.2. Typography

	2. Layout
		2.1. Containers
		2.2. Grids

	3. Components
		3.1. Header
		3.2. Footer
		3.3. Buttons
		3.4. Forms

	4. Utilities
		4.1. Spacing
		4.2. Visibility
		4.3. Colors

	5. Custom Components
		5.1. Cards
		5.2. Modals
		5.3. Alerts

	========== ========== ==========
*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Manrope:wght@200..800&display=swap');

:root {
  --custom-shadow: 0 2px 4px 0 rgba(225, 229, 237, 0.2);
}

body[data-bs-theme=dark] {
  --bs-light: #292a2c;
  --bs-light-rgb: 41, 42, 44;
  --bs-heading-color: #ffffff;
  --bs-body-color: #a9a9a9;
  --custom-shadow: 0 2px 4px 0 rgb(56, 56, 56, 0.2);
  --bs-black: #ffffff;
}

::selection {
  background-color: #46ECFF;
  color: #013F47;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  background-color: #fff;
  color: #5a564d;
}

code {
  background-color: #fff2f8;
  border-radius: 4px;
  padding: 2px;
}

a:not(.alert-link):not(.btn-link):not([class*=link-underline]) {
  text-decoration: none;
}

button,
a {
  outline: none !important;
}

img {
  max-width: 100%;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "IBM Plex Serif", serif;
  font-weight: 500;
  line-height: 1.25;
  color: inherit;
  margin-top: 0;
}

h1 {
  font-size: 52px;
  line-height: 1.1;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-1 * 1.875rem / 2);
  margin-left: calc(-1 * 1.875rem / 2);
}

.col {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 1 0 0%;
}

.col-1 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  padding-right: calc(1.875rem / 2);
  padding-left: calc(1.875rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-sm-1 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-md-1 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-lg-1 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-xl-1 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-xxl-1 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    padding-right: calc(1.875rem / 2);
    padding-left: calc(1.875rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

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

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

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

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

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

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

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

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

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

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

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

.ms-1 {
  margin-left: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

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

.mt-3 {
  margin-top: 1rem !important;
}

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

.ms-3 {
  margin-left: 1rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

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

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

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

.mt-4 {
  margin-top: 1.5rem !important;
}

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

.ms-4 {
  margin-left: 1.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

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

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

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

.ms-5 {
  margin-left: 3rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 0.625rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  user-select: none;
  background: transparent;
  color: #013F47;
  gap: 10px;
  overflow: hidden;
}
.btn:focus {
  outline: 0;
}
.btn:disabled, .btn.disabled {
  opacity: 0.65;
  pointer-events: none;
}

.btn-primary {
  background-color: #46ECFF;
  border-color: #46ECFF;
  color: #013F47;
}
.btn-primary:hover {
  background-color: rgb(34.3, 232.3335135135, 255);
  border-color: rgb(19, 230.7621621622, 255);
}
.btn-primary:active {
  background-color: rgb(19, 230.7621621622, 255);
  border-color: rgb(8.8, 229.7145945946, 255);
}

.btn-outline-primary {
  background: transparent;
  color: #013F47;
  border-color: #D2DFE0;
}
.btn-outline-primary:hover {
  background-color: #46ECFF;
  color: #013F47;
}

.btn-secondary {
  background-color: #FFEB67;
  border-color: #FFEB67;
  color: #013F47;
}
.btn-secondary:hover {
  background-color: rgb(255, 230.3026315789, 67.3);
  border-color: rgb(255, 228.2894736842, 52);
}
.btn-secondary:active {
  background-color: rgb(255, 228.2894736842, 52);
  border-color: rgb(255, 226.9473684211, 41.8);
}

.btn-outline-secondary {
  background: transparent;
  color: #013F47;
  border-color: #D2DFE0;
}
.btn-outline-secondary:hover {
  background-color: #FFEB67;
  color: #013F47;
}

.btn-success {
  background-color: #198754;
  border-color: #198754;
  color: #fff;
}
.btn-success:hover {
  background-color: rgb(19.421875, 104.878125, 65.2575);
  border-color: rgb(17.03125, 91.96875, 57.225);
}
.btn-success:active {
  background-color: rgb(17.03125, 91.96875, 57.225);
  border-color: rgb(15.4375, 83.3625, 51.87);
}

.btn-outline-success {
  background: transparent;
  color: #013F47;
  border-color: #D2DFE0;
}
.btn-outline-success:hover {
  background-color: #198754;
  color: #fff;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}
.btn-danger:hover {
  background-color: rgb(202.2556962025, 35.0443037975, 51.064556962);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn-danger:active {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(180.5215189873, 31.2784810127, 45.5772151899);
}

.btn-outline-danger {
  background: transparent;
  color: #013F47;
  border-color: #D2DFE0;
}
.btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #fff;
}
.btn-warning:hover {
  background-color: rgb(226.3, 169.725, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:active {
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(200.8, 150.6, 0);
}

.btn-outline-warning {
  background: transparent;
  color: #013F47;
  border-color: #D2DFE0;
}
.btn-outline-warning:hover {
  background-color: #ffc107;
  color: #fff;
}

.btn-info {
  background-color: #0dcaf0;
  border-color: #0dcaf0;
  color: #fff;
}
.btn-info:hover {
  background-color: rgb(11.1656126482, 173.4964426877, 206.1343873518);
  border-color: rgb(10.3794466403, 161.2806324111, 191.6205533597);
}
.btn-info:active {
  background-color: rgb(10.3794466403, 161.2806324111, 191.6205533597);
  border-color: rgb(9.8553359684, 153.1367588933, 181.9446640316);
}

.btn-outline-info {
  background: transparent;
  color: #013F47;
  border-color: #D2DFE0;
}
.btn-outline-info:hover {
  background-color: #0dcaf0;
  color: #fff;
}

.btn-light {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #013F47;
}
.btn-light:hover {
  background-color: rgb(227.175, 231.15, 235.125);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:active {
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(212.3, 218.4, 224.5);
}

.btn-outline-light {
  background: transparent;
  color: #013F47;
  border-color: #D2DFE0;
}
.btn-outline-light:hover {
  background-color: #f8f9fa;
  color: #013F47;
}

.btn-dark {
  background-color: #212529;
  border-color: #212529;
  color: #fff;
}
.btn-dark:hover {
  background-color: rgb(17.0797297297, 19.15, 21.2202702703);
  border-color: rgb(10.2567567568, 11.5, 12.7432432432);
}
.btn-dark:active {
  background-color: rgb(10.2567567568, 11.5, 12.7432432432);
  border-color: rgb(5.7081081081, 6.4, 7.0918918919);
}

.btn-outline-dark {
  background: transparent;
  color: #013F47;
  border-color: #D2DFE0;
}
.btn-outline-dark:hover {
  background-color: #212529;
  color: #fff;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.btn-lg {
  padding: 1.1875rem 1.75rem;
  font-size: 1rem;
  border-radius: 0.625rem;
}

.btn-link {
  padding: 0;
  color: #0090A2;
}

.header .container {
  width: 100%;
  padding: 0 40px;
  max-width: 100%;
}

.header-area {
  display: flex;
  align-items: center;
}

.extra-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: end;
}
.header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.header-nav ul li a {
  padding: 23px 20px;
  color: #384648;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.footer {
  background: #013F47;
}
.footer .footer-top {
  padding: 50px 0;
}
.footer .footer-top p {
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}
.footer .footer-top p a {
  color: rgb(255, 255, 255);
}
.footer .footer-top p a:hover {
  color: #46ECFF;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  font-size: 14px;
}
.footer .footer-bottom .copyright-text {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.footer .footer-bottom .footer-nav {
  padding: 0;
  margin: 0;
}
.footer .footer-bottom .footer-nav li {
  display: inline-block;
  padding-right: 20px;
  font-weight: 400;
}
.footer .footer-bottom .footer-nav li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer-bottom .footer-nav li a:hover {
  color: #46ECFF;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.hero-banner .hero-banner-img {
  width: 100%;
}
.hero-banner .banner-inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-banner h1 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 15px;
}
.hero-banner p {
  font-size: 24px;
  color: #fff;
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 30px;
}
.hero-banner .banner-mobile-view {
  position: absolute;
  z-index: 1;
  width: 15.25%;
  bottom: 0;
  left: 75%;
}
.hero-banner .banner-mobile-view .banner-mobile-view-card {
  width: 100%;
  position: absolute;
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.25));
  border-radius: 15px;
  top: 45%;
  left: -10%;
  z-index: 1;
  animation: wobble 4s infinite;
}
.hero-banner .banner-mobile-view .banner-mobile-view-mobile {
  width: 100%;
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.25));
}

@keyframes wobble {
  0% {
    -webkit-transform: rotate(-1deg) translate(-5px, -5px);
    transform: rotate(-1deg) translate(-5px, -5px);
  }
  50% {
    -webkit-transform: rotate(1deg) translate(5px, 5px);
    transform: rotate(1deg) translate(5px, 5px);
  }
  100% {
    -webkit-transform: rotate(-1deg) translate(-5px, -5px);
    transform: rotate(-1deg) translate(-5px, -5px);
  }
}
.locum-connect-logos {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url(../images/bg.png), linear-gradient(270deg, #D1F9F9 0%, #F6F8D2 100%);
  background-position: center;
  background-size: auto;
}

.locum-connect-text {
  position: absolute;
  font-family: "IBM Plex Serif", serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: #164a4f;
  text-align: center;
  z-index: 3;
  transform: scale(0.6);
}

.partner-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.partner-logo {
  width: 184px;
  height: 184px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-weight: 600;
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.03);
  border: 1px solid #EDEDED;
  opacity: 0;
}
.partner-logo img {
  width: 75%;
  max-width: 75%;
}

.locum-connect-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #0090A2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  scale: 0;
  z-index: 5;
}
.locum-connect-circle span {
  color: white;
  font-weight: 600;
  opacity: 0;
}

.tooltip {
  position: fixed;
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  transform: translate(10px, 10px);
  z-index: 1000;
}
.tooltip p {
  margin: 0;
  color: #5b6b66;
  font-size: 14px;
  line-height: 1.3;
}
.tooltip h4 {
  margin: 0 0 8px;
  color: #12372a;
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.tooltip .tooltip-head {
  display: flex;
  align-items: start;
  gap: 10px;
}
.tooltip .tooltip-head img {
  width: auto;
  max-height: 35px;
  max-width: 75px;
}

.about-us-box {
  padding: 120px 0;
}

.about-us-box-inner {
  background: linear-gradient(270deg, #D1F9F9 0%, #F6F8D2 100%);
  padding: 100px 60px;
  margin: 0 -60px;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}
.about-us-box-inner:after {
  content: "";
  background-image: url(../images/about-bg.png);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  animation: bgImageSize 6s infinite;
}
.about-us-box-inner .about-us-box-media {
  width: 85%;
  position: relative;
}
.about-us-box-inner .about-us-box-media img {
  width: 100%;
}
.about-us-box-inner .about-us-box-media .about-us-text-1,
.about-us-box-inner .about-us-box-media .about-us-text-2 {
  padding: 12px 15px 12px 25px;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 18px 50px rgba(0, 0, 0, 0.1);
  font-size: 17px;
  color: #03363C;
  font-weight: 600;
  z-index: 1;
}
.about-us-box-inner .about-us-box-media .about-us-text-1:after,
.about-us-box-inner .about-us-box-media .about-us-text-2:after {
  content: "";
  position: absolute;
  background: #fff;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  top: 1px;
  border-radius: inherit;
  z-index: -1;
}
.about-us-box-inner .about-us-box-media .about-us-text-1 {
  padding: 12px 15px 12px 25px;
  border-radius: 15px 15px 0px 15px;
  background: linear-gradient(180deg, #FFFFFF 0%, #A2E82A 100%);
  bottom: 20%;
  left: -10%;
  animation: wobble 5s infinite;
}
.about-us-box-inner .about-us-box-media .about-us-text-2 {
  padding: 12px 25px 12px 15px;
  border-radius: 15px 15px 15px 0px;
  background: linear-gradient(180deg, #FFFFFF 0%, #46ECFF 100%);
  top: 20%;
  right: -10%;
  animation: wobble 6s infinite;
}
.about-us-box-inner .about-content p {
  font-size: 24px;
  color: #384648;
  line-height: 1.35;
  margin-bottom: 12px;
  margin-top: 0;
}
.about-us-box-inner .about-content .quote {
  border-left: 3px solid #00D2EC;
  padding: 5px 10px 5px 20px;
  margin-right: -20px;
}
.about-us-box-inner .about-content .quote p {
  font-size: 20px;
  line-height: 1.4;
  color: #013F47;
}

@keyframes bgImageSize {
  0% {
    background-size: 95%;
  }
  50% {
    background-size: 100%;
  }
  100% {
    background-size: 95%;
  }
}
.title {
  color: #0090A2;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.locum-facility-area {
  margin-top: -70px;
  position: relative;
  z-index: 1;
}

.locum-facility-panel {
  display: none;
  color: #384648;
  padding-top: 90px;
  padding-bottom: 90px;
}
.locum-facility-panel.active {
  display: block;
}
.locum-facility-panel .tabs-heading {
  padding-bottom: 5px;
  border-bottom: 1px solid #B7D5D9;
}
.locum-facility-panel .tabs-heading .title {
  line-height: 1.2;
}
.locum-facility-panel .tabs-heading p {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}
.locum-facility-panel .tabs-sub-heading {
  padding-top: 50px;
}
.locum-facility-panel .tabs-sub-heading .title {
  font-size: 28px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}
.locum-facility-panel .tabs-sub-heading p {
  font-size: 20px;
  line-height: 1.35;
}

.locum-content-area {
  background-color: #F9FFED;
}

.facility-content-area {
  background-color: #E8FEFF;
}

.locum-facility-tab-content {
  display: flex;
  align-items: end;
  height: 70px;
}
.locum-facility-tab-content .lf-tab-btn {
  background: #D2E6C7;
  padding: 13px 25px;
  border: 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(1, 63, 71, 0.5);
  font-family: inherit;
  line-height: 24px;
  min-width: 260px;
  text-align: left;
  transition: 0.1s ease;
}
.locum-facility-tab-content .lf-tab-btn:first-child {
  background: #D2E6C7;
  border-radius: 20px 0px 0px 0px;
  box-shadow: inset -40px 0px 20px -30px rgba(0, 0, 0, 0.2);
}
.locum-facility-tab-content .lf-tab-btn:first-child.active {
  border-radius: 20px 20px 0px 0px;
  box-shadow: inset 0 0px 20px -30px rgba(0, 0, 0, 0.2);
}
.locum-facility-tab-content .lf-tab-btn:last-child {
  background: #B7FCFF;
  border-radius: 0px 20px 0px 0px;
  box-shadow: inset 40px 0px 20px -30px rgba(0, 0, 0, 0.2);
}
.locum-facility-tab-content .lf-tab-btn:last-child.active {
  border-radius: 20px 20px 0px 0px;
  box-shadow: inset 0 0px 20px -30px rgba(0, 0, 0, 0.2);
}
.locum-facility-tab-content .lf-tab-btn.active {
  color: #013F47;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 25px;
  line-height: 1.5;
}

.core-features-card {
  height: 100%;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(180deg, #B3EEF3 0%, #D2E6C7 100%) border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  transition: 0.2s ease;
}
.core-features-card::after {
  content: "";
  position: absolute;
  width: 277px;
  height: 277px;
  right: -100px;
  bottom: -100px;
  background: linear-gradient(270deg, #A6FFFD 0%, #FBFFB4 100%);
  filter: blur(50px);
  z-index: -1;
  border-radius: 50%;
  transition: all 0.5s;
  opacity: 0;
}
.core-features-card h5 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #03363C;
  margin: 0;
}
.core-features-card p {
  font-weight: 600;
  font-size: 18px;
  color: #03363C;
  line-height: 1.3;
  margin: 0;
}
.core-features-card h6 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0090A2;
  margin: 12px 0 20px;
}
.core-features-card .core-features-list {
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}
.core-features-card .core-features-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
}
.core-features-card .core-features-list li img {
  margin-top: 4px;
}
.core-features-card .core-features-list li p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #384648;
}
.core-features-card .btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.core-features-card .btn-light {
  background: #F7F7F7;
  border-color: #F7F7F7;
}
.core-features-card .btn-light:hover {
  color: #013F47;
  background: #46ECFF;
  border-color: #46ECFF;
}
.core-features-card:hover {
  transform: translateY(-5px);
}
.core-features-card:hover::after {
  opacity: 0.8;
}
.core-features-card:hover .btn-light {
  color: #013F47;
  background: #46ECFF;
  border-color: #46ECFF;
}
.core-features-card.style2::after {
  display: none;
}
.core-features-card.style2 h6 {
  margin-top: 5px;
}
.core-features-card.style2 p {
  font-size: 18px;
  font-weight: 400;
  color: #384648;
}
.core-features-card.style2 strong {
  font-weight: 600;
}
.core-features-card.style2 ul {
  padding-left: 25px;
  line-height: 1.3;
  margin-top: 5px;
  margin-bottom: 0;
}
.core-features-card.style2 ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 5px;
}
.core-features-card.style2 ul li::marker {
  font-size: 12px;
}

.partner-logo img {
  transition: opacity 0.25s ease;
}

.benefits-section {
  padding-top: 110px;
}
.benefits-section .benefits-section-media img {
  border-radius: 20px;
}
.benefits-section .benefits-heading-content p {
  font-size: 20px;
  margin-top: 0;
  color: #384648;
  line-height: 24px;
}
.benefits-section .benefits-section-list {
  padding: 0;
  list-style: none;
  margin-top: 30px;
  margin-bottom: 0;
}
.benefits-section .benefits-section-list li {
  background: #EBFCC9;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border: 2px solid transparent;
  transition: all 0.5s;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  color: #013F47;
  transition: 0.2s ease;
}
.benefits-section .benefits-section-list li:last-child {
  margin-bottom: 0;
}
.benefits-section .benefits-section-list li:hover {
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(180deg, #B3EEF3 0%, #D2E6C7 100%) border-box;
  transition: 0.2s ease;
}
.benefits-section.style2 .benefits-section-list li {
  background: #C1F8FB;
}
.benefits-section.style2 .benefits-section-list li:hover {
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(180deg, #B3EEF3 0%, #D2E6C7 100%) border-box;
}

.process-area {
  padding-top: 110px;
}
.process-area .process-heading-content {
  margin-bottom: 40px;
}
.process-area .process-heading-content.text-center {
  max-width: 805px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.process-area .process-card {
  border-radius: 20px;
  text-align: center;
  padding: 40px 30px 30px;
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(180deg, #B3EEF3 0%, #D2E6C7 100%) border-box;
  transition: 0.3s ease;
}
.process-area .process-card .content {
  margin-bottom: 20px;
  transition: 0.3s ease;
}
.process-area .process-card .content .number {
  background: #F7F7F7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: 13F47;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  margin: 0 auto 20px;
  transition: 0.3s ease;
}
.process-area .process-card .content h5 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.process-area .process-card .content p {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 0;
}
.process-area .process-card:hover {
  transform: translateY(-5px);
}
.process-area .process-card:hover .number {
  background: #46ECFF;
}

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

.text-end {
  text-align: end;
}

.heading-content.text-center {
  max-width: 890px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.heading-content .title {
  margin-bottom: 10px;
}
.heading-content p {
  font-size: 20px;
  margin-top: 0;
  color: #384648;
  line-height: 1.3;
  font-weight: 500;
}

.specialities-area {
  padding: 120px 100px;
}
.specialities-area .heading-content {
  margin-bottom: 30px;
}
.specialities-area .row {
  margin-right: -8px;
  margin-left: -8px;
}
.specialities-area .col {
  width: 16.5%;
  flex: 0 0 16.5%;
  padding-right: 0px;
  padding-left: 0px;
}
.specialities-area .specialities-card {
  box-sizing: border-box;
  text-align: center;
  padding: 0px;
  background: #FFFFFF;
  /* border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(90deg, #B3EEF3 0%, #D2E6C7 100%) border-box; */
  margin-bottom: 30px;
  margin-top: 30px;
}
.specialities-area .specialities-card .specialities-media {
/*   border-radius: 8px; */
  margin-bottom: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.specialities-area .specialities-card .specialities-media img {
  transition: 0.3s ease;
  display: block;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  transform: scale(0.95);
}
.specialities-area .specialities-card .title {
  color: #013F47;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
}
.specialities-area .specialities-card .title:hover a {
  color: #0090A2;
}
.specialities-area .specialities-card:hover .specialities-media img {
  transform: scale(1);
}
.specialities-area .specialities-box-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.case-study-area {
  padding: 110px 110px;
  background: linear-gradient(270deg, #D1F9F9 0%, #F6F8D2 100%);
}
.case-study-area .heading-content {
  margin-bottom: 60px;
}
.case-study-area .case-study-card {
  border-radius: 20px;
  padding: 40px;
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(180deg, #B3EEF3 0%, #D2E6C7 100%) border-box;
}
.case-study-area .case-study-card p {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #03363C;
}
.case-study-area .case-study-card .case-study-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #B7D5D9;
  padding-bottom: 24px;
  margin-bottom: 12px;
}
.case-study-area .case-study-card .case-study-profile img {
  width: 82px;
  height: 82px;
  max-width: 82px;
  border-radius: 50px;
}
.case-study-area .case-study-card .case-study-profile h6 {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  color: #03363C;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.4;
  padding: 0;
}
.case-study-area .case-study-card .case-study-profile p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #384648;
  line-height: 1.4;
}

.opportunities-area {
  padding-top: 110px;
  padding-bottom: 80px;
}
.opportunities-area .heading-content {
  margin-bottom: 35px;
}
.opportunities-area .opportunities-media img {
  border-radius: 15px;
}
.opportunities-area .opportunities-card {
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(90deg, #B3EEF3 0%, #D2E6C7 100%) border-box;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  margin-bottom: 26px;
}
.opportunities-area .opportunities-card .feature-content h6 {
  font-size: 20px;
  font-family: "Manrope";
  color: #03363C;
  font-weight: 700;
  margin: 0 0 6px 0;
  padding: 0;
}
.opportunities-area .opportunities-card .feature-content p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #384648;
  line-height: 1.3;
}

.community-inner-box {
  padding-top: 75px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 120px;
/*   background: linear-gradient(270deg, #D1F9F9 0%, #F6F8D2 100%); */
	background: url(/wp-content/uploads/2026/01/locum-family-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	aspect-ratio: 1 / 0.5;
}
.community-inner-box .title {
  font-size: 42px;
	color: #FFFFFF;
}
.community-inner-box img {
  display: block;
}

.toggle-btn .icon {
  transform: rotate(180deg);
  transition: 0.3s ease;
}

.toggle-box {
  overflow: hidden;
  max-height: 500px; /* large enough */
  transition: max-height 0.4s ease;
  margin-top: 10px;
}
.toggle-box.collapsed {
  max-height: 0;
}
.toggle-box.collapsed + div .toggle-btn .icon {
  transform: rotate(0deg);
}

.btn i {
  display: inline-block;
}

.btn:hover img {
  animation: toLeftFromRight 0.5s forwards;
}

.btn.icon-up:hover img {
  animation: toTopFromBottom 0.5s;
}

@keyframes toLeftFromRight {
  49% {
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
.opportunities-card:hover img {
  animation: toBottomFromTop 1s infinite;
}

.benefits-section-list li:hover img {
  animation: toBottomFromTop 0.8s infinite;
}

@keyframes toBottomFromTop {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.8);
  }
}
/* .community-media{
	transform: scale(0.6);
	transform-origin: center bottom;
} */

