@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300&family=Rubik:wght@400;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
/*============================== Variables =========================*/
:root {
  --brand: #2077BA;
  --success: #3BA68F;
  --yellow: #F2C744;
  --lime: #485797;
  --red: #EA3E3E;
  --dark: #000000;
  --dark-light: #141414;
  --grey: #707070;
  --body-text-color: #575757;
  --white: #ffffff;
  --allura: "Allura", cursive;
  --rubik: "Rubik", sans-serif;
  --oswald: "Oswald", sans-serif;
  --body-font: "Poppins", sans-serif;
  --transition: all .3s ease-in-out;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  font-size: 16px;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

.h1 {
  font-size: 3.125rem;
  font-weight: 700;
}

h2, .h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--brand);
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand);
}

h4, .h4 {
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: 1px;
}

h5, .h5 {
  font-size: 1.25rem;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-italic {
  font-style: italic;
}

.top__heading {
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.z--1 {
  z-index: -1;
}

.figure {
  margin: 0;
}

.ptb {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.text-gray {
  color: var(--grey) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-gradient {
  background-color: #EFF9FF !important;
}

.text-primary {
  color: var(--brand) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-black {
  color: #2F2F2F !important;
}

.text-warning {
  color: var(--red) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.round {
  border-radius: 0.625rem;
}

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

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600;
}

.col--5 {
  max-width: 20%;
  flex: 0 0 20%;
}

.z-index {
  z-index: 99;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--body-text-color);
}
a:hover {
  color: var(--brand);
}

.read__more {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
}
.read__more svg {
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.3s ease-in-out;
  margin-top: -0.12rem;
  position: relative;
}
.read__more:hover {
  color: var(--success);
}
.read__more:hover svg {
  transform: translateX(1rem);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul > li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn-primary, .btn-white, .btn-outline-primary, .btn-outline-white {
  border-color: transparent;
  background: var(--brand);
  border-radius: 0.625rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0 1.5rem;
  min-height: 3.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn-primary svg, .btn-white svg, .btn-outline-primary svg, .btn-outline-white svg {
  width: 1.45rem;
  height: 1.45rem;
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover, .btn-white:hover, .btn-outline-primary:hover, .btn-outline-white:hover {
  border-color: transparent;
  background: var(--brand);
  filter: brightness(115%);
}
.btn-primary:focus, .btn-white:focus, .btn-outline-primary:focus, .btn-outline-white:focus {
  background-color: var(--dark);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.75rem;
  color: var(--brand);
}
.btn-white:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg {
  color: var(--white);
}
.btn-white:focus {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-white:focus svg {
  color: var(--white);
}

.btn-outline-primary {
  border: 1px solid var(--brand);
  background-color: var(--white);
  color: var(--brand);
}
.btn-outline-primary img {
  transition: all 0.3s ease-in-out;
}
.btn-outline-primary:hover {
  background-color: var(--brand);
}
.btn-outline-primary:hover img {
  filter: contrast(0) brightness(10);
  transform: translateX(0.6rem);
  transform: translateX(0.5rem);
}

.btn-outline-white {
  border-color: var(--white);
  background-color: transparent;
  color: var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--brand);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  font-size: 0.925;
  padding-left: 0;
}
.btn-call .icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  padding: 0.2rem;
}
.btn-call .caption {
  width: calc(100% - 2.25rem);
  padding-left: 0.5rem;
  text-align: left;
  color: var(--grey);
  line-height: 1.2;
}

.owl-carousel .owl-item {
  padding: 0.12rem;
}
.owl-carousel .owl-item img {
  width: auto !important;
}
.owl-carousel .owl-item img.w-100 {
  width: 100% !important;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  width: 7rem;
  margin: 2rem auto 0 auto;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
  width: 2.93rem !important;
  height: 2.93rem !important;
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand) !important;
  position: relative;
  background-repeat: no-repeat !important;
  background-size: 1.5rem 1.5rem !important;
  background-position: center center !important;
}
.owl-nav .owl-prev span, .owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWFycm93LWxlZnQiPjxsaW5lIHgxPSIxOSIgeTE9IjEyIiB4Mj0iNSIgeTI9IjEyIj48L2xpbmU+PHBvbHlsaW5lIHBvaW50cz0iMTIgMTkgNSAxMiAxMiA1Ij48L3BvbHlsaW5lPjwvc3ZnPg==") !important;
}
.owl-nav .owl-next {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWFycm93LXJpZ2h0Ij48bGluZSB4MT0iNSIgeTE9IjEyIiB4Mj0iMTkiIHkyPSIxMiI+PC9saW5lPjxwb2x5bGluZSBwb2ludHM9IjEyIDUgMTkgMTIgMTIgMTkiPjwvcG9seWxpbmU+PC9zdmc+") !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.owl-dots .owl-dot {
  width: 3.5rem;
  height: 0.5rem;
  border-radius: 1rem;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: #EFEFEF !important;
  display: flex;
}
.owl-dots .owl-dot.active {
  background-color: var(--lime) !important;
}

.modal-open {
  padding-right: 0 !important;
}

.modal .modal-dialog {
  max-width: 500px;
}
.modal .modal-dialog.max-400 {
  max-width: 400px;
}
.modal .modal-body {
  padding: 1.5rem 1.75rem;
}
.modal .modal-body .form-control {
  height: 3.5rem;
  border-color: #746F71;
  color: var(--dark);
  padding-left: 1.125rem;
}
.modal .modal-body textarea.form-control {
  height: auto;
}
.modal .modal-body .btn-primary {
  border-radius: 0.25rem;
  min-height: 3rem;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.card {
  box-shadow: 0px 10px 17px rgba(136, 136, 136, 0.1607843137);
  border: 1px solid #D5D5D5;
  border-radius: 0;
}
.card .h4 {
  min-height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollText {
  max-height: 230px;
  overflow-y: auto;
}

/*------- Star List ----------*/
.star__list li {
  position: relative;
  padding-left: 2rem;
}
.star__list li::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/icons/star.png") no-repeat center center/1.2rem;
  position: absolute;
  top: 0.12rem;
  left: 0%;
}
.star__list li:not(:last-child) {
  margin-bottom: 0.75rem;
}
.star__list.small li {
  font-size: 1rem;
  padding-left: 1.5rem;
}
.star__list.small li::before {
  background-size: 1rem !important;
}
.star__list.small li:not(:last-child) {
  margin-bottom: 0.45rem;
}
.star__list.scroll {
  max-height: 270px;
  overflow-y: auto;
}

.card-body * {
  scrollbar-width: thin;
  scrollbar-color: #aaa #f2f2f2;
}
.card-body *::-webkit-scrollbar {
  width: 12px;
}
.card-body *::-webkit-scrollbar-track {
  background: #f2f2f2;
}
.card-body *::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 20px;
  border: 3px solid #f2f2f2;
}

.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
  color: var(--white) !important;
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
}

.disc__list {
  padding-left: 1.125rem;
}
.disc__list li {
  list-style-type: disc !important;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.before::before {
  display: block;
  content: " ";
  margin-top: -4rem;
  height: 4rem;
  visibility: hidden;
  pointer-events: none;
}

.mobile__actions {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  pointer-events: none;
}
.mobile__actions .action-btn {
  box-shadow: 0 0 0 #0568A8;
  animation: pulse 1.5s infinite;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  padding: 0;
  pointer-events: fill;
}
.mobile__actions .action-btn img {
  width: 2.75rem;
  height: 2.75rem;
}
.mobile__actions .action-btn.call {
  animation: pulse 1.75s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #0568A8;
  }
  70% {
    box-shadow: 0 0 0 1rem rgba(5, 103, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}

#preloader {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 1050;
  background-color: #fff;
}

[class*=loader-] {
  display: inline-block;
  width: 7rem;
  height: 7rem;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
}

.loader-16 {
  transform: rotateZ(45deg) translate(-50%, -50%);
  perspective: 1000px;
  border-radius: 50%;
}
.loader-16:before, .loader-16:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  animation: 1s spin linear infinite;
}
.loader-16:before {
  transform: rotateX(70deg);
}
.loader-16:after {
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin {
  0%, 100% {
    box-shadow: 0.3em 0px 0 0px var(--success);
  }
  12% {
    box-shadow: 0.3em 0.3em 0 0 var(--success);
  }
  35% {
    box-shadow: 0 0.3em 0 0px var(--success);
  }
  37% {
    box-shadow: -0.3em 0.3em 0 0 var(--success);
  }
  50% {
    box-shadow: -0.3em 0 0 0 var(--success);
  }
  63% {
    box-shadow: -0.3em -0.3em 0 0 var(--success);
  }
  75% {
    box-shadow: 0px -0.3em 0 0 var(--success);
  }
  87% {
    box-shadow: 0.3em -0.3em 0 0 var(--success);
  }
}
@media (max-width: 576px) {
  [class*=loader-] {
    width: 4rem;
    height: 4rem;
  }
}
/*====================== Navigation Styles ===================*/
.navbar {
  padding: 0.75rem 0;
  background-color: transparent;
}
.navbar .container {
  position: relative;
}
.navbar .navbar-brand {
  display: block;
  padding: 0;
  position: relative;
  z-index: 11;
}
.navbar .navbar-brand img {
  max-height: 4.5rem;
}
.navbar .nav-link {
  font-size: 1rem;
  color: var(--dark);
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--body-font);
  display: inline-flex;
  align-items: center;
}
.navbar .nav-link:hover {
  color: var(--brand);
}
.navbar .dropBtn {
  margin-left: -0.75rem;
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .nav-item {
  margin-left: 0.25rem;
}
.navbar .btn-primary {
  font-size: 1rem;
  padding: 0 1rem;
  min-height: 3rem;
  margin-left: 0.75rem;
  position: relative;
}
.navbar .btn-primary i {
  margin-right: 0.5rem;
}
.navbar .dropdown-menu {
  min-width: 42rem;
  left: -5rem;
  border: 0;
  padding: 0%;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: all 0.3s ease-in-out;
}
.navbar .dropdown-menu li a {
  font-size: 1.06rem;
  text-transform: capitalize;
  padding: 0.65rem 0.5rem 0.65rem 1rem;
  color: var(--body-text-color);
  transition: all 0.3s ease-in-out;
  display: block;
}
.navbar .dropdown-menu li a:hover {
  background-color: #eee;
  color: var(--brand);
}
.navbar .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .navbar-toggler {
  border: 1px solid transparent;
  width: 28px;
  height: 22px;
  position: relative;
  background-color: transparent;
  padding: 0%;
  border-radius: 0;
  color: var(--dark);
}
.navbar .navbar-toggler svg rect {
  color: var(--dark);
  fill: var(--dark);
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar .closeBtn {
  margin-right: -2.35rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  background-color: #fff;
  padding: 0.5rem;
  float: right;
}
.navbar .closeBtn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--dark);
}
.navbar.fixed-top {
  background-color: var(--white);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
  padding: 0.5rem 0;
}
.navbar.fixed-top .navbar-brand img {
  max-height: 4rem;
}

@keyframes mymove {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}
@media (min-width: 992px) {
  .dropdown:hover .nav-link {
    color: var(--brand);
  }
  .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1400px) {
  .navbar .navbar-brand img {
    max-height: 4rem;
  }
  .navbar .nav-link {
    font-size: 1rem;
    padding: 1rem 0.75rem !important;
  }
  .navbar .btn-primary {
    font-size: 1rem;
    min-height: 2.75rem;
    padding: 0 0.75rem;
  }
}
@media (max-width: 1200px) {
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
  .navbar .nav-item {
    margin-left: 0rem !important;
  }
  .navbar .nav-link {
    font-size: 1rem;
    padding: 1rem 0.5rem !important;
  }
  .navbar .btn-primary img {
    width: 1.25rem;
  }
}
@media (max-width: 992px) {
  .navbar .dropdown .dropdown-menu .content {
    padding-left: 0% !important;
  }
  .navbar {
    padding: 1rem 0;
    height: auto;
  }
  .navbar .navbar-brand img {
    max-height: 4.5rem;
  }
  .navbar .navbar-collapse {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    background-color: #fafafa;
    padding: 1rem 1rem 1rem 1rem;
    height: 100vh;
    max-width: 320px;
    z-index: 9999;
    box-shadow: -1px -1px 5px rgba(0, 0, 0, 0.3803921569);
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: block;
  }
  .navbar .navbar-collapse.show {
    transform: translateX(0);
    opacity: 1;
  }
  .navbar .navbar-collapse .navbar-nav {
    min-height: calc(100vh - 3rem);
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 2rem;
    width: 100%;
  }
  .navbar .navbar-collapse .dropdown-menu {
    position: unset;
    left: 0%;
    box-shadow: none;
    transform: scaleY(0);
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .navbar .navbar-collapse .dropdown-menu.show {
    display: block;
    transform: scaleY(1);
  }
  .navbar .nav-item {
    margin-left: 0;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1098039216);
  }
  .navbar .nav-item .dropBtn {
    margin-left: 0;
    position: absolute;
    right: 0.5rem;
    top: 0;
    width: 3rem;
    height: 4rem;
  }
  .navbar .nav-item .dropdown-toggle::after {
    border-top: 0.65rem solid;
    border-width: 0.65rem;
  }
  .navbar .nav-item .show.dropdown-toggle::after {
    border-bottom: 0.65rem solid;
    border-top: 0;
  }
  .navbar .nav-item.call {
    border-bottom: 0;
    padding-top: 1.5rem;
    text-align: center;
  }
  .navbar .nav-link {
    width: 100%;
    padding: 1rem 0rem;
    font-size: 1.125rem;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 4rem;
  }
  .navbar .navbar-collapse {
    padding: 1rem 1.5rem;
  }
  .navbar .closeBtn {
    margin-right: 0;
  }
}
footer {
  background-color: #007FCD;
  padding: 5rem 0 0 0;
}
footer .header__wrapp {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1843137255);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}
footer a {
  font-size: 14px;
  color: var(--dark);
}
footer a img {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
}
footer a:hover {
  text-decoration: underline;
  color: var(--dark);
}
footer .logo {
  opacity: 1;
}
footer .logo img {
  max-width: 19rem;
  opacity: 1;
  width: 100%;
  height: auto;
}
footer ul li {
  margin-bottom: 0.35rem;
}
footer ul.social__links li {
  margin-bottom: 0;
}
footer ul.social__links li a {
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: var(--brand);
  color: var(--white);
  font-size: 1.35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  transition: all 0.3s ease-in-out;
}
footer ul.social__links li a:hover {
  text-decoration: none;
  background-color: var(--dark);
  transform: translateY(-0.25rem);
}
footer ul.social__links li:not(:first-child) {
  margin-left: 0.875rem;
}
footer ul.address__box li {
  display: flex;
}
footer ul.address__box li .icon {
  width: 1.5rem;
  font-size: 1rem;
  color: var(--brand);
}
footer ul.address__box li .icon .fa-map-marker {
  font-size: 1.125rem;
}
footer ul.address__box li address, footer ul.address__box li a {
  width: calc(100% - 1.5rem);
}
footer .copyright {
  border-top: 1px solid rgba(112, 112, 112, 0.1843137255);
  padding: 1rem 0;
}
footer .copyright .links {
  padding: 0;
}
footer .copyright .links li {
  position: relative;
  line-height: 1;
}
footer .copyright .links li a {
  line-height: 1;
}
footer .copyright .links li:not(:last-child) {
  border-right: 1px solid #3d3d3d;
  margin-right: 0.5rem;
  padding-right: 0.5rem;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 4.5rem;
  right: 0rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #EA3E3E;
  z-index: 99;
  display: none;
  padding: 0;
  text-transform: uppercase;
  color: #EFF9FF;
  padding-top: 0.25rem;
  text-align: center;
}
.backTop .icon {
  border: 0.55rem solid #EFF9FF;
  border-top: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  line-height: 1;
  width: 1px;
  height: 1px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.backTop:hover {
  background-color: var(--dark);
  color: #fff;
}
.backTop.show {
  display: block;
}

/*====================================================== Home Page Styles =========================================================================================*/
/*======================= Header Wrapper Styles ========================*/
.header__wrapper {
  background-color: rgba(32, 119, 186, 0.22);
  padding: 12rem 0 0 0;
  margin-top: -6rem;
}
.header__wrapper .h1 {
  font-size: 3rem;
  padding-top: 6rem;
  line-height: 1.1;
  font-weight: 400;
  max-width: 43rem;
}
.header__wrapper .h1 span {
  font-weight: 700;
  font-size: 4rem;
}
.header__wrapper .card {
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.header__wrapper .card .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--brand);
  padding: 0.5rem;
}
.header__wrapper .card .caption {
  width: calc(100% - 2.5rem);
  padding-left: 0.75rem;
  line-height: 1.25;
}
.header__wrapper.page__header {
  margin-top: 0;
  padding: 7rem 0 1rem 0;
  text-align: center;
}
.header__wrapper.page__header .h1 {
  padding-top: 0;
  max-width: 100%;
  font-weight: 600;
}
.header__wrapper.page__header .breadcrumb__box {
  margin-top: 6rem;
}
.header__wrapper.page__header .breadcrumb {
  margin-bottom: 0;
}
.header__wrapper.page__header .breadcrumb .breadcrumb-item, .header__wrapper.page__header .breadcrumb a {
  color: var(--white);
}
.header__wrapper.page__header .breadcrumb .breadcrumb-item::before, .header__wrapper.page__header .breadcrumb a::before {
  color: var(--white);
}
.header__wrapper.page__header .breadcrumb a {
  line-height: 1;
}
.header__wrapper.page__header .breadcrumb a img {
  width: 1rem;
  height: 1rem;
  margin-top: -0.2rem;
}

/*---- Search Wrapper Styles ---------*/
.search__wrapper .form-select {
  border-color: #707070;
  cursor: pointer;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAyMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjE2OTIgMTEuOTk5TDAuNjE0ODA4IDAuNTYyMkwyMS4zOTc0IDAuMjY5NjA4TDExLjE2OTIgMTEuOTk5WiIgZmlsbD0iI0YyQzc0NCIvPgo8L3N2Zz4K") !important;
}
.search__wrapper .form-control {
  border-color: #707070;
  height: 4rem;
  font-size: 1.25rem;
  border-radius: 0.2rem;
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.search__wrapper .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.1607843137);
}
.search__wrapper .form-control::placeholder {
  color: rgba(0, 0, 0, 0.1607843137);
}
.search__wrapper .form-control.calendar {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNhbGVuZGFyIj48cmVjdCB4PSIzIiB5PSI0IiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHJ4PSIyIiByeT0iMiI+PC9yZWN0PjxsaW5lIHgxPSIxNiIgeTE9IjIiIHgyPSIxNiIgeTI9IjYiPjwvbGluZT48bGluZSB4MT0iOCIgeTE9IjIiIHgyPSI4IiB5Mj0iNiI+PC9saW5lPjxsaW5lIHgxPSIzIiB5MT0iMTAiIHgyPSIyMSIgeTI9IjEwIj48L2xpbmU+PC9zdmc+");
}
.search__wrapper .form-control:hover {
  border-color: var(--brand);
}
.search__wrapper .form-control:focus {
  border-color: var(--brand);
}
.search__wrapper .form-control {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.1333333333);
  border-radius: 0.625rem;
  color: var(--white);
}
.search__wrapper .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.39) !important;
}
.search__wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.39) !important;
}
.search__wrapper .btn-white {
  min-height: 4rem;
  font-size: 1.25rem;
  padding: 0% 1.3rem;
  border-radius: 0.625rem;
  margin-top: 1.75rem;
}
.search__wrapper .btn-white:hover {
  border-color: transparent;
  background-color: var(--dark);
}
.search__wrapper .btn-white:focus {
  border-color: var(--dark);
  background-color: var(--dark);
}
.search__wrapper .text-danger {
  color: #FDCA00 !important;
}

.outline-text {
  -webkit-text-stroke: 1px rgba(32, 119, 186, 0.2);
  -webkit-text-fill-color: white;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}

/*---- Service Wrapper Styles ---------*/
.service__card {
  background: #FFFFFF;
  box-shadow: 0px 10px 12px rgba(185, 185, 185, 0.1607843137);
  border: 1px solid #BFBFBF;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  transition: all 0.4s ease-in-out;
  border-radius: 0.9rem;
}
.service__card .icon {
  margin-bottom: 1.75rem;
}
.service__card .icon img {
  width: auto;
  height: 3.5rem;
  margin-left: auto;
  margin-right: auto;
}
.service__card .desc {
  min-height: 6rem;
}
.service__card .btn-outline-primary img {
  margin-left: 0.75rem;
  transition: all 0.3s ease-in-out;
}
.service__card .btn-outline-primary:hover img {
  filter: contrast(0) brightness(10);
  transform: translateX(0.6rem);
}
.service__card .small {
  min-height: 6rem;
}
.service__card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.16);
}
.service__card.lg {
  padding: 0%;
}
.service__card.lg .content {
  padding: 1.5rem;
}
.service__card.lg .content .desc {
  min-height: auto;
}
.service__card.treatment {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #B7B7B7;
  border-radius: 0%;
  padding: 0%;
}
.service__card.treatment .content {
  padding: 1.5rem;
}
.service__card.treatment .content .desc {
  min-height: auto;
  color: #909090;
}

/*------ Counter Card -----------------*/
.count__card .icon img {
  height: 3.5rem;
  width: auto;
}

/*------ Team Card Styles -------------*/
.team__card figure {
  box-shadow: 0px 9px 6px rgba(173, 173, 173, 0.2117647059);
  border: 1px solid #E5E5E5;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 99;
  margin-bottom: 1.5rem;
}
.team__card .caption {
  padding: 1.5rem;
  background: #FDFDFD;
  box-shadow: 0px 10px 12px rgba(185, 185, 185, 0.1607843137);
  border-radius: 0.925rem;
  margin-top: -2rem;
}
.team__card .caption .btn-outline-primary {
  margin-bottom: -4rem;
}

/*---- Testimonial Wrapper Styles ---------*/
.testi__wrapper {
  background-color: rgba(32, 119, 186, 0.877);
}
.testi__wrapper .btn-outline-white {
  min-height: 3rem;
}

.testi__card {
  text-align: center;
  background-color: #fff;
  padding: 2.5rem 1.5rem 1rem 1.5rem;
}
.testi__card .thumbnail {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}
.testi__card .thumbnail img {
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  position: relative;
  z-index: 11;
  margin: 0 auto;
  outline: 2px solid var(--brand);
  outline-offset: 0.25rem;
}
.testi__card .lead-sm {
  font-family: var(--oswald);
}
.testi__card .desc {
  color: #3D3D3D;
  line-height: 1.6;
  overflow-y: auto;
  height: 11rem;
}
.testi__card * {
  scrollbar-width: thin;
  scrollbar-color: #eee #ddd;
}
.testi__card *::-webkit-scrollbar {
  width: 12px;
}
.testi__card *::-webkit-scrollbar-track {
  background: #ddd;
}
.testi__card *::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 20px;
  border: 3px solid #ddd;
}

.address__wrapper .form__wrapp {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 9px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #CCCCCC;
  margin-left: -4rem;
  position: relative;
  z-index: 99;
  padding: 2rem;
}
.address__wrapper .form__wrapp label {
  color: var(--body-text-color);
}
.address__wrapper .form__wrapp .form-control {
  height: 3rem;
}
.address__wrapper .form__wrapp textarea.form-control {
  height: auto;
}
.address__wrapper .btn-primary {
  min-height: 2.875rem;
  border-radius: 0%;
}

.map {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 37rem;
}
.map.small {
  height: 30rem;
}

.map::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0px;
}

.fluid__container {
  margin-left: auto;
  width: calc(100vw - var(--vw));
}

.fluid__container.start {
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 576px) {
  .fluid__container {
    width: 540px;
    margin-left: auto !important;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .fluid__container {
    max-width: 720px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .fluid__container {
    max-width: calc(100vw - var(--vwlg));
    margin-left: auto;
    margin-right: 0;
  }
  .fluid__container.start {
    margin-left: 0 !important;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .fluid__container {
    margin-left: auto;
    margin-right: 0;
    max-width: calc(100vw - var(--vwxl));
  }
}
@media (min-width: 1400px) {
  .fluid__container {
    margin-left: auto;
    margin-right: 0;
    max-width: calc(100vw - var(--vwxxl));
  }
}
@media (max-width: 576px) {
  .fluid__container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 15px;
  }
  .service__card .desc {
    min-height: 7rem;
  }
}
@media (max-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 1.45rem;
  }
  h4, .h4 {
    font-size: 1.25rem;
  }
  .lead-lg {
    font-size: 1.125rem;
  }
  .h1 {
    font-size: 2.75rem;
  }
  .btn-primary, .btn-white, .btn-outline-primary, .btn-outline-white {
    min-height: 3rem;
    padding: 0% 1.25rem;
  }
  .header__wrapper {
    padding: 8rem 0 0 0;
  }
  .service__card .small {
    min-height: 4rem;
  }
  .col--5 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .team__card figure {
    width: 16rem;
    height: 16rem;
  }
  .navbar.fixed-top .navbar-brand img {
    max-height: 3.4rem;
  }
}
@media (max-width: 992px) {
  html, body {
    font-size: 14px;
  }
  .col--5 {
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
  }
  .ptb {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .map {
    height: 24rem;
  }
  .header__wrapper {
    padding: 5.5rem 0 0 0;
    margin-top: -7rem;
    text-align: center;
  }
  .header__wrapper .h1 {
    font-size: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .header__wrapper .h1 span {
    font-size: 3rem;
  }
  .header__wrapper .card {
    padding: 0.5rem 0.75rem;
    border-radius: 0.45rem;
    align-items: center;
    text-align: left;
  }
  .header__wrapper .card .icon {
    width: 2.25rem;
    height: 2.25rem;
  }
  .header__wrapper .card .caption {
    width: calc(100% - 2.25rem);
  }
  .header__wrapper .thumbnail_wrapp img {
    max-height: 32rem;
    width: auto;
  }
  .search__wrapper .btn-white {
    min-height: 3.75rem;
    border-radius: 0.45rem;
    margin-top: 1.75rem;
  }
  .service__card .desc {
    min-height: 8rem;
  }
  .address__wrapper .form__wrapp {
    margin-left: 0;
  }
  footer a {
    font-size: 13px;
  }
  .team__card figure {
    width: 14rem;
    height: 14rem;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 13px;
  }
  .count__card .icon img {
    height: 3rem;
  }
  .team__card img {
    max-height: 14rem;
    width: auto;
  }
  .col--5 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .testi__card .desc {
    max-height: 5rem;
    min-height: 5rem;
  }
}
@media (max-width: 576px) {
  .h1 {
    font-size: 1.75rem;
  }
  h2, .h2 {
    font-size: 1.65rem;
  }
  h3, .h3 {
    font-size: 1.45rem;
  }
  .lead-lg {
    font-size: 1.1rem;
  }
  .top__heading {
    font-size: 1rem;
    margin-bottom: 0.45rem;
  }
  .btn-primary, .btn-white, .btn-outline-primary {
    border-radius: 0.35rem;
    padding: 0 1rem;
    min-height: 2.75rem;
  }
  .header__wrapper .h1 {
    font-size: 2rem;
  }
  .header__wrapper .card {
    padding: 0.25rem 0.5rem;
    border-radius: 0.35rem;
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 11px;
  }
  .header__wrapper .card .icon {
    width: 2rem;
    height: 2rem;
  }
  .header__wrapper .card .caption {
    width: calc(100% - 2rem);
    padding-left: 0.5rem;
  }
  .count__card .icon img {
    height: 2.5rem;
  }
  .address__wrapper .form__wrapp {
    padding: 1rem;
  }
  .team__card {
    margin-top: 2rem;
  }
  .team__card .small.mb-2 {
    margin-bottom: 0 !important;
  }
  .team__card img {
    max-height: 11rem;
    width: auto;
  }
  .team__card .caption .btn-outline-primary {
    margin-bottom: -3rem;
  }
  .backTop {
    width: 3rem;
    height: 3rem;
    background-size: 1.5rem;
    bottom: 4rem;
  }
  .backTop .icon {
    margin-bottom: 0.25rem;
  }
  .service__card .desc {
    min-height: auto;
  }
  footer a {
    font-size: 12px;
  }
  .outline-text {
    font-size: 3rem;
  }
  .col--5 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}/*# sourceMappingURL=style.css.map */