@charset "utf-8";

/* Table of Contents
   ++1++ Main Styles
   ++2++ Responsive Styles
*/
:root {
  --primary: #062272;
  --secondary: #427ed3;
  --thirdary: #0043a1;
  --accent: #EDF2F2;
  --footer: #ababab;
}

@font-face {
  font-family: 'Garamond';
  src:
    url('../fonts/garamond.woff2') format('woff2'),
    url('../fonts/garamond.woff') format('woff');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garamond';
  src:
    url('../fonts/garamond-italic.woff2') format('woff2'),
    url('../fonts/garamond-italic.woff') format('woff');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src:
    url('../fonts/montserrat.woff2') format('woff2'),
    url('../onts/montserrat.woff') format('woff');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src:
    url('../fonts/montserrat-italic.woff2') format('woff2'),
    url('../fonts/montserrat-italic.woff') format('woff');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}


/*---- ++1++ Main Styles ----*/
@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: smooth
  }
}

/* Helpers */
*,
::after,
::before {
  box-sizing: border-box
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

html {
  direction: ltr;
  overflow-x: hidden;
  box-shadow: none !important;
  -webkit-font-smoothing: antialiased;
}

html.safari:not(.no-safari-overflow-x-fix) .body {
  overflow-x: hidden;
}

body {
  background-color: #FFF;
  color: #444;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body[data-plugin-page-transition] {
  transition: ease opacity 300ms;
}

body.page-transition-active {
  opacity: 0 !important;
}

section.section {
  background: #fff;
  padding: 60px 0;
}

.section.bg-grey,
.bg-grey {
  background: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--primary);
  font-family: "Garamond", serif;
  font-weight: 700;
  margin: 0 0 20px;
}

h1,
.h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  text-transform: capitalize;
  text-align: center;
}

h2,
.h2 {
  font-size: 3rem;
  line-height: 1;
  text-transform: capitalize;
  text-align: center;
}

h3,
.h3 {
  font-size: 2.5rem;
  line-height: 1;
  text-transform: capitalize;
}

h4,
.h4 {
  font-size: 2rem;
  line-height: 1.1;
  text-transform: capitalize;
}

h5,
.h5 {
  font-size: 1.75rem;
  line-height: 1;
  text-transform: none;
}

h6,
.h6 {
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
}

p,
.p {
  color: #444;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0 0 20px;
}

a {
  text-decoration: none;
}

a {
  color: #062272;
}

a:hover {
  color: #78a4e7;
}

a:focus {
  color: #78a4e7;
}

/* List */
ol,
ul {
  padding-left: 2rem
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0
}

.list li {
  margin-bottom: 13px;
}

.list.pull-left li {
  text-align: left;
}

.list.list-icons {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}

.list.list-icons li {
  position: relative;
  padding-left: 25px;
}

.list.list-icons li>[class*="fa-"]:first-child,
.list.list-icons li>.icons:first-child,
.list.list-icons li a:first-child>[class*="fa-"]:first-child,
.list.list-icons li a:first-child>.icons:first-child {
  color: var(--thirdary);
}

.list.list-unstyled {
  padding-left: 0;
  padding-right: 0;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}

li {
  line-height: 24px;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

dl dd {
  margin-bottom: 15px;
}

img {
  vertical-align: middle
}

.img-fluid {
  max-width: 100%;
  height: auto
}

label {
  display: inline-block
}

button {
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  appearance: button;
}

button:focus:not(:focus-visible) {
  outline: 0
}

button:not(:disabled) {
  cursor: pointer
}

iframe {
  border: 0
}

.float-left {
  padding: 0 20px 10px 0;
  width: 43%;
}

.doc-img.float-left {
  padding: 0 20px 10px 0;
  width: 33.333333%;
}

.center-block {
  margin: 40px auto 0;
  text-align: center;
}

/* Header */
#header {
  position: relative;
  z-index: 1030;
}

body[data-plugin-section-scroll] #header .header-body {
  background: transparent;
}

#header .header-body {
  display: flex;
  flex-direction: column;
  transition: min-height 0.3s ease;
  width: 100%;
  z-index: 1001;
}

#header .container {
  position: relative;
}

#header .header-container {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  transition: ease height 300ms;
}

#header .header-row {
  display: flex;
  flex-grow: 1;
  align-items: center;
  align-self: stretch;
  max-height: 100%;
}

#header .header-column {
  display: flex;
  align-self: stretch;
  align-items: center;
  flex-grow: 1;
  flex-direction: column;
}

#header .header-column+.header-column {
  justify-content: flex-end;
}

#header .header-column .header-row {
  justify-content: inherit;
}

#header .header-logo {
  margin: 1rem 0;
  position: relative;
  z-index: 1;
}

#header .header-logo img {
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  z-index: 1;
}

#header .header-column .header-extra-info {
  display: flex;
  align-items: center;
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

#header .header-column .header-extra-info li {
  display: inline-flex;
  margin-left: 25px;
}

#header .header-column .header-extra-info li+li {
  display: inline-flex;
}

#header .header-column .header-extra-info li .header-extra-info-icon {
  color: var(--secondary);
  font-size: 36px;
  margin-right: 10px;
}

#header .header-column .header-extra-info li .header-extra-info-text a {
  color: #fff;
}

#header .header-column .header-extra-info li .header-extra-info-text label {
  display: block;
  margin: 0;
  color: var(--secondary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

#header .header-column .header-extra-info li .header-extra-info-text strong a {
  display: block;
  margin: 0;
  color: var(--secondary);
  font-size: 20px;
  line-height: 1.3;
}

#header .header-nav-bar {
  z-index: 1;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

#header .header-nav-bar .header-nav {
  min-height: 30px;
}

#header .header-nav-bar .header-container {
  min-height: 0;
  height: auto !important;
}

#header .header-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  align-self: stretch;
  justify-content: center;
  padding: 8px 0;
}

#header .header-nav-main nav>ul>li>a {
  display: inline-flex;
  align-items: center;
  white-space: normal;
  color: var(--primary);
  border-radius: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  text-decoration: none;
}

#header .header-nav-main nav>ul>li>a:active {
  background-color: transparent;
  text-decoration: none;
  color: #fff;
}

#header .header-nav-main nav>ul>li.open>a,
#header .header-nav-main nav>ul>li:hover>a {
  background: #7aa6e9;
}

#header .header-nav-main nav>ul>li.dropdown.open>a:before,
#header .header-nav-main nav>ul>li.dropdown:hover>a:before {
  border-bottom-color: var(--thirdary);
}

#header .header-nav-main nav>ul:not(:hover)>li>a.active {
  background-color: #fff;
}

#header .header-btn-collapse-nav {
  background: var(--thirdary);
  color: #FFF;
  display: none;
  float: left;
  margin: 0 0 0 2rem;
}

#header .header-btn-collapse-nav.call-btn {
  background: var(--secondary);
}

#header .header-btn-collapse-nav.book-btn {
  background: var(--primary);
}

html.sticky-header-active #header .header-body {
  position: fixed;
  border-bottom-color: rgba(234, 234, 234, 0.5);
  box-shadow: 0 0 3px rgba(234, 234, 234, 0.5);
}

html.sticky-header-active #header .header-body.header-body-bottom-border {
  border-bottom: 1px solid rgba(234, 234, 234, 0.5) !important;
}

html.sticky-header-active #header.header-effect-shrink .header-body {
  position: relative;
}

html.sticky-header-active .d-sticky-header-active-none {
  display: none !important;
}

html.sticky-header-reveal.sticky-header-active #header .header-body {
  position: fixed;
  border-bottom: none;
  width: 100%;
  max-width: 100%;
}

#header .header-nav.header-nav-sub-title .header-nav-main nav>ul>li>a>span {
  font-size: 0.9em;
  text-transform: none;
  font-weight: normal;
  margin-top: -0.5rem;
}

/* Nav */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav>li>a {
  text-decoration: none;
}

.nav>li>a:hover,
.nav>li>a:focus {
  background: transparent;
  text-decoration: none;
}

ul.nav-pills>li>a.active,
ul.nav-pills>li>a.active:hover,
ul.nav-pills>li>a.active:focus {
  color: #FFF;
}

.dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #262626;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.175);
  border-radius: 0.375rem;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-item {
  display: block;
  padding: 0.25rem 1rem;
  font-weight: 400;
  color: #262626;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--accent);
}

.dropdown-item:active {
  background-color: #0d6efd;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu {
  top: -10000px;
  display: block;
  opacity: 0;
  left: auto;
  border-radius: 0 4px 4px;
  border: 0;
  border-top: 3px solid #7aa6e9;
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.07);
  margin: 0;
  min-width: 200px;
  padding: 5px 0;
  text-align: left;
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a {
  font-size: 16px;
  font-weight: 400;
  padding: 6px 18px 6px 18px;
  position: relative;
  text-transform: none;
  text-decoration: none;
  letter-spacing: -0.5px;
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a:hover,
#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a:focus,
#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a.active,
#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a:active {
  background-color: transparent;
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:hover>a,
#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:focus>a,
#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.active>a,
#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:active>a,
#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.open>a {
  background-color: var(--accent);
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu {
  position: relative;
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>.dropdown-menu {
  left: 100%;
  display: block;
  margin-top: -8px;
  margin-left: -1px;
  border-radius: 4px;
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu.open>a:after,
#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu:hover>a:after {
  opacity: 1;
  right: 15px;
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu:hover>.dropdown-menu {
  top: 0;
  opacity: 1;
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:last-child a {
  border-bottom: 0;
}

#header .header-nav-main nav>ul>li.dropdown.open>a,
#header .header-nav-main nav>ul>li.dropdown:hover>a {
  border-radius: 4px 4px 0 0;
  position: relative;
}

#header .header-nav-main nav>ul>li.dropdown.open>a:before,
#header .header-nav-main nav>ul>li.dropdown:hover>a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
}

#header .header-nav-main nav>ul>li.dropdown.open>.dropdown-menu,
#header .header-nav-main nav>ul>li.dropdown:hover>.dropdown-menu {
  top: auto;
  display: block;
  opacity: 1;
}

#header .header-nav-main nav>ul>li.dropdown-mega {
  position: static;
}

#header .header-nav-main nav>ul>li.dropdown-mega>.dropdown-menu {
  border-radius: 4px;
  left: 12px;
  right: 12px;
  width: auto;
}

#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-content {
  padding: 1.6rem;
}

#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-title {
  color: #222;
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: none;
  letter-spacing: -0.5px;
}

#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-title:first-child {
  margin-top: 0;
}

#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav>li>a {
  border: 0 none;
  border-radius: 4px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin: 0 0 3px -8px;
  padding: 3px 8px;
  text-shadow: none;
  text-transform: none;
  text-decoration: none;
}

#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav>li:hover>a,
#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav>li:active>a,
#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav>li:focus>a {
  background: var(--accent);
}

#footer {
  background: #202020;
  font-size: 16px;
  padding: 50px 0 0;
  position: relative;
  clear: both;
}

#footer img {
  margin-bottom: 20px;
}

#footer h5 {
  color: #7aa6e9;
  font-weight: 700;
}

#footer h6 {
  color: #fff;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}

#footer p {
  color: #d6d6d6;
}

#footer a:not(.btn):not(.no-footer-css) {
  color: #fff;
}

#footer .footer-copyright {
  background: #202020;
  border-top: 1px solid #fff;
  padding: 10px 0;
}

#footer .footer-copyright p {
  display: inline;
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 11px;
}

#footer .footer-copyright ul {
  display: inline;
  float: right;
  color: #444;
  margin: 0;
  padding: 0;
  font-size: 11px;
}

#footer .footer-copyright ul li {
  display: inline-block;
  padding-right: 3px;
  align-items: flex-end;
}

.social-icons {
  margin: 0;
  padding: 0;
  width: auto;
}

.social-icons li {
  display: inline-block;
  margin: -1px 1px 0 0;
  padding: 0;
  border-radius: 100%;
  overflow: visible;
}

.social-icons li a {
  transition: all 0.2s ease;
  border-radius: 100%;
  background-color: #fff;
  display: block;
  height: 28px;
  line-height: 28px;
  width: 28px;
  text-align: center;
  color: #333 !important;
  text-decoration: none;
  font-size: 12px;
}

.social-icons li:hover a {
  color: #FFF !important;
}

.social-icons li:hover.social-icons-twitter a {
  background: #1aa9e1 !important;
}

.social-icons li:hover.social-icons-facebook a {
  background: #3b5a9a !important;
}

.social-icons li:hover.social-icons-yelp a {
  background: #dd4b39 !important;
}

.social-icons li:hover.social-icons-google a {
  background: #cc2127 !important;
}

.social-icons li:hover.social-icons-youtube a {
  background: #c3191e !important;
}

.social-icons li:hover.social-icons-instagram a {
  background: #7c4a3a !important;
}

.social-icons li:hover.social-icons-google a {
  background: #1a7576 !important;
}

.page-header {
  background-color: var(--secondary);
  margin: 0;
  padding: 10px 0;
  position: relative;
  text-align: left;
}

.page-header .row div,
.page-header .row div+div {
  align-self: center;
}

.page-header h1 {
  color: #fff;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-weight: 400;
  position: relative;
  top: 1px;
}

.breadcrumb {
  display: block;
  flex-wrap: wrap;
  list-style: none;
  background: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  text-align: right;
}

.breadcrumb>li {
  display: inline-block;
  font-size: 0.8em;
  text-shadow: none;
}

.breadcrumb>li+li:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: "\f105";
  padding: 0 7px 0 5px;
}

.breadcrumb li a,
.breadcrumb>li+li:before {
  color: #fff;
}

/* Scroll to Top */
html .scroll-to-top {
  transition: opacity 0.3s;
  background: #404040;
  border-radius: 4px 4px 0 0;
  bottom: 0;
  color: #FFF;
  display: block;
  height: 9px;
  opacity: 0;
  padding: 10px 10px 35px;
  position: fixed;
  right: 10px;
  text-align: center;
  text-decoration: none;
  min-width: 50px;
  z-index: 1040;
  font-size: 0.8em;
}

html .scroll-to-top:hover {
  opacity: 1;
}

html .scroll-to-top.visible {
  opacity: 0.75;
}

html .scroll-to-top span {
  display: inline-block;
  padding: 0 5px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.533rem 0.933rem;
  cursor: pointer;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: transparent;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
  .btn {
    transition: none
  }
}

html body .btn.focus,
html body .btn:focus,
html body .btn.active,
html body .btn:active,
html body.body .btn.focus,
html body.body .btn:focus,
html body.body .btn.active,
html body.body .btn:active {
  box-shadow: none !important;
}

.btn.btn-lg {
  background-color: var(--secondary);
  padding: 8px 16px;
}

.btn.btn-xl {
  background-color: var(--primary);
  padding: 12px 32px;
}

/* Read More */
a.read-more {
  display: block;
  color: #000000;
  font-size: 14px;
  text-decoration: underline;
  text-align: center;
  white-space: nowrap;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
}

.btn-close:hover {
  opacity: 0.75;
}

.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}

.btn-close:disabled,
.btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.sidebar {
  background: #fff;
  border: 1px solid var(--secondary);
  border-radius: 4px;
  padding: 10px;
  text-transform: uppercase;
  text-align: center;
}

.sidebar h6 {
  text-transform: uppercase;
}

/* Cards */
.card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  background-color: #fff;
  position: relative;
  box-shadow: 0 3px 6px #BBB;
  margin-bottom: 25px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.card-header:first-child {
  border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
  min-height: 260px;
}
.card-body2 {
  flex: 1 1 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
  min-height: 120px;
}

.card.card-feature-icon .card-body {
  min-height: 320px;
}

.card-default .card-body {
  min-height: auto;
  padding: 10px 20px;
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.375rem - 1px);
  border-top-right-radius: calc(0.375rem - 1px);
  border-radius: 0;
}

.card-title {
  margin-bottom: 0.5rem;
}

h4.card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
	color: #0a58ca;
}

p.card-text {
  text-align: center;
}

.card-text:last-child {
  margin-bottom: 0;
}

/* Feature Box */
.feature-box {
  display: flex;
}

.feature-box .feature-box-info {
  flex: 1 1 100%;
  padding-left: 15px;
}

.feature-box.align-items-center .feature-box-icon {
  top: 0;
}

.feature-box-primary .feature-box-icon {
  background-color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  position: relative;
  top: 0;
  padding: 0.8em;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  color: #FFF;
  font-size: 32px;
  text-align: center;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-thirdary {
  background-color: var(--thirdary) !important;
}

.feature-box-primary .feature-box-info h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.feature-box-primary .feature-box-info ul {
  padding-left: 1.25rem;
}

.feature-box-primary .feature-box-info ul li a {
  color: #444;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 8px;
}

/* Process */
.process {
  text-align: center;
}

h3.process-title {
  text-align: center;
  margin: 50px 0 30px;
}

.process-vertical {
  text-align: left;
}

.process .process-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.process .process-step:before {
  content: '';
  height: 2px;
  display: block;
  background-color: var(--accent);
  position: absolute;
  width: 50%;
  top: 45px;
  left: 75%;
}

.process .process-step:last-child:before {
  display: none;
}

.process-vertical .process-step {
  width: 100%;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  position: relative;
  padding-bottom: 60px;
}

.process-vertical .process-step:before {
  display: none;
}

.process-vertical .process-step:after {
  width: 2px;
  display: block;
  background-color: var(--accent);
  position: absolute;
  content: '';
  height: calc(100% - 80px);
  top: 70px;
  left: 30px;
}

.process-vertical .process-step:last-child:after {
  display: none;
}

.process .process-step-circle {
  display: flex;
  justify-content: center;
  height: 90px;
  text-align: center;
  width: 90px;
  border: 2px solid #427ed3;
  border-radius: 50%;
  align-items: center;
  position: relative;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}

.process-vertical .process-step-circle {
  height: 60px;
  width: 60px;
  margin: 0 15px 0 0;
  min-height: 60px;
  min-width: 60px;
}

.process .process-step-circle-content {
  font-weight: bold;
  color: #212529;
  font-size: 1.6em;
  letter-spacing: -1px;
  transition: all 0.2s ease-in-out;
}

.process .process-step-content {
  padding-top: 20px;
}

.process-vertical .process-step-content {
  padding-top: 0;
}

.process-step-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.process .process-step:hover .process-step-circle {
  background-color: #062272;
}

.process .process-step:hover .process-step-circle .process-step-circle-content,
.process .process-step:hover .process-step-circle .process-step-circle-content .icons {
  color: #FFF !important;
}

/* Owl Carousel */
.owl-carousel {
  width: 100%;
  z-index: 1;
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  position: relative;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
  min-height: 1px;
  float: left;
  backface-visibility: hidden;
  -webkit-touch-callout: none
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none
}

.no-js .owl-carousel {
  display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block
}

.owl-carousel.owl-hidden {
  opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab
}

.owl-carousel.owl-rtl {
  direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
  float: right
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
  z-index: 0
}

.owl-carousel .owl-animated-out {
  z-index: 1
}

.owl-carousel .fadeOut {
  animation-name: fadeOut
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

.owl-height {
  transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
  margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791
}

.owl-carousel.owl-loaded {
  display: block;
  opacity: 1;
}

.owl-carousel:not(.owl-loaded):not(.owl-carousel-light)>div,
.owl-carousel:not(.owl-loaded):not(.owl-carousel-light) span {
  display: none;
}

.owl-carousel:not(.owl-loaded):not(.owl-carousel-light)>div:first-child,
.owl-carousel:not(.owl-loaded):not(.owl-carousel-light) span:first-child {
  display: block;
}

.owl-carousel .owl-item img {
  transform-style: unset;
  display: block;
  width: 100%
}

.owl-carousel .owl-item img[data-icon] {
  display: inline;
}

.owl-carousel .thumbnail {
  margin-right: 1px;
}

.owl-carousel .owl-nav {
  top: 50%;
  position: absolute;
  width: 100%;
  margin-top: 0;
  transform: translate3d(0, -50%, 0);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  outline: 0;
  margin: 0;
  transform: translate3d(0, -50%, 0);
}

.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.owl-carousel .owl-nav button.owl-prev:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 8px;
  font-size: 0.5rem;
  content: "\f053";
  position: relative;
  left: -1px;
  top: -1px;
}

.owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.owl-carousel .owl-nav button.owl-next:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 8px;
  font-size: 0.5rem;
  content: "\f054";
  position: relative;
  left: 1px;
  top: -1px;
}

.owl-carousel.nav-inside .owl-nav button.owl-prev {
  left: 15px;
}

.owl-carousel.nav-inside .owl-nav button.owl-next {
  right: 15px;
  left: auto;
}

.owl-carousel.nav-style-4 .owl-nav .owl-prev {
  left: 75px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-next {
  right: 75px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-prev,
.owl-carousel.nav-style-4 .owl-nav .owl-next {
  background: #FFF;
  font-size: 11.2px;
  font-size: 0.7rem;
  width: 40px;
  height: 40px;
  color: #000;
  border-radius: 100%;
  box-shadow: 0px 0px 40px -10px rgba(0, 0, 0, 0.3);
}

.owl-carousel.nav-style-4 .owl-nav .owl-prev:hover,
.owl-carousel.nav-style-4 .owl-nav .owl-next:hover {
  color: #FFF;
}

.owl-carousel [class*="opacity-"]:not([class*="opacity-hover"]) {
  transition: ease opacity 300ms;
}

.owl-carousel [class*="opacity-"]:not([class*="opacity-hover"]):hover {
  opacity: 1 !important;
}

.owl-carousel.carousel-center-active-item-2 .owl-stage-outer {
  overflow: visible;
}

.owl-carousel.carousel-center-active-item-2 .owl-item>div {
  width: 66.6666%;
  margin-left: auto;
  padding: 48px;
  padding: 3rem;
  background: var(--thirdary);
  box-shadow: 0 3px 6px #BBB;
}

.owl-carousel.carousel-center-active-item-2 .owl-item.active>div {
  margin-right: auto;
  background: var(--secondary);
}

.owl-carousel.carousel-center-active-item-2 .owl-item.active>div * {
  color: #FFF !important;
}

.owl-carousel.carousel-center-active-item-2 .owl-item.active+.owl-item>div {
  margin-right: auto;
  margin-left: 0;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"] {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFF;
}

.owl-carousel.testimonials img {
  display: inline-block;
  height: 70px;
  width: 70px;
}

.testimonial {
  text-align: center;
}

.testimonial h4 {
  margin-bottom: 5px;
}

.testimonial .testimonial-author {
  display: flex;
  margin: 0;
  align-items: center;
}

.testimonial .testimonial-author .testimonial-author-thumbnail {
  width: auto;
  text-align: center;
  margin: 0 auto 20px;
}

.testimonial .testimonial-author .testimonial-author-thumbnail p {
  color: var(--thirdary);
}

.testimonial strong {
  color: var(--secondary);
  display: block;
  margin-bottom: 2px;
}

.testimonial span {
  color: #444;
  display: block;
  font-size: 12.8px;
  font-weight: 600;
}

.testimonial .testimonial-author p {
  color: #444;
  line-height: 1.2;
  margin-bottom: 0;
}

.testimonial-item {
  overflow-y: scroll;
  height: 300px;
  scrollbar-color: grey;
  scrollbar-width: thin;
}

.testimonial-item::-webkit-scrollbar {
  width: 5px;
}

.testimonial-item::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.testimonial-item::-webkit-scrollbar_thumbnail {
  background: grey;
  opacity: 0.5;
  border-radius: 10px;
}

.testimonial-item::-webkit-scrollbar_thumbnail:hover {
  background: #b00;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Pagination */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.pagination>li>a,
.pagination>li>span,
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
  color: #CCC;
  box-shadow: none !important;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  background-color: #CCC;
  border-color: #CCC;
  box-shadow: none !important;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color .15s ease-in-out, background-color .15s ease-in-out,
    border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}

.page-link:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.page-link.active,
.active>.page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.page-link.disabled,
.disabled>.page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

/* Parallax */
.parallax {
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: repeat;
  background-attachment: fixed;
  position: relative;
  clear: both;
}

.parallax.parallax-mouse {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.parallax.parallax-mouse .parallax-mouse-object {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.parallax:not(.page-header):not(.match-height):not([class*="section-height-"]) {
  margin: 0;
  padding: 40px 0;
}

.parallax-background {
  background-color: rgba(255, 255, 255, 0.45);
}

.parallax-disabled .parallax-background {
  background-attachment: scroll !important;
  background-position: 50% 50% !important;
}

.parallax-background+.container {
  position: relative;
}

.scrollable-parallax-wrapper {
  position: relative;
  z-index: 1;
}

section.section.section-parallax {
  background-color: transparent;
  background-position: top center;
  background-repeat: repeat;
  background-attachment: fixed;
  border: 0;
}

section.section.section-parallax.parallax-disabled {
  background-attachment: scroll !important;
  background-position: 50% 50% !important;
}

/* Call to Action */
.call-to-action {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 32px 55px;
  clear: both;
}

.call-to-action::after {
  clear: both;
  content: "";
  display: block;
}

.call-to-action>[class*="col-"] {
  display: flex;
  align-items: center;
}

.call-to-action>[class*="col-"]:nth-child(2) {
  justify-content: flex-end;
  text-align: center;
}

.call-to-action .container>.row,
.call-to-action .container-fluid>.row {
  display: flex;
  flex-wrap: wrap;
}

.call-to-action .container>.row>[class*="col-"],
.call-to-action .container-fluid>.row>[class*="col-"] {
  display: block;
}

.call-to-action .container>.row>[class*="col-"]:nth-child(2),
.call-to-action .container-fluid>.row>[class*="col-"]:nth-child(2) {
  justify-content: flex-end;
  text-align: center;
}

.call-to-action .call-to-action-content {
  text-align: center;
}

.container .call-to-action {
  border-radius: 8px;
}

.call-to-action h3 {
  color: var(--primary);
  font-size: 3.5rem;
  text-transform: uppercase;
  padding: 0;
  margin: 0 0 9px;
}

.call-to-action p {
  color: #111;
  font-size: 1.3em;
}

.call-to-action-btn .btn.btn-xl {
  background-color: var(--thirdary);
  color: #edf2f2;
  font-weight: 600;
}

/* Accordion */
.accordion .card {
  margin-top: 5px;
}

.accordion .card:first-child {
  margin-top: 0;
}

.accordion .card:first-of-type,
.accordion .card:not(:first-of-type):not(:last-of-type),
.accordion .card:last-of-type {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: .25rem;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: .25rem;
}

.accordion h4.card-title {
  text-align: left;
}

.accordion .card-header {
  padding: 0;
  border-radius: .25rem;
  border-bottom: 0;
  margin: -1px;
}

.accordion .card-header a {
  cursor: pointer;
  display: block;
  padding: 10px 20px;
}

.accordion .card-header a:hover,
.accordion .card-header a:focus {
  text-decoration: none;
}

.accordion .card-header a [class^="icon-"] {
  margin-right: 4px;
  position: relative;
  top: 1px;
}

.accordion .card-header a [class*="fa-"],
.accordion .card-header a .icons {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: -1px;
}

.accordion .card-header a .icons {
  top: 1px;
}

.accordion.accordion-modern .card:first-of-type,
.accordion.accordion-modern .card:not(:first-of-type):not(:last-of-type),
.accordion.accordion-modern .card:last-of-type {
  border: 4px solid #F7F7F7;
}

.accordion.accordion-modern .card .card-header {
  background-color: #fff;
  border-radius: 0;
}

.accordion.accordion-modern-status>.card {
  border: 1px solid transparent !important;
  transition: ease border-color 300ms;
}

.accordion.accordion-modern-status>.card .card-header a {
  position: relative;
  padding: 23px 30px;
  background-color: #fff;
  transition: ease background-color 300ms, ease color 300ms;
}

.accordion.accordion-modern-status.faqs-page>.card .card-header a {
  background-color: var(--accent);
}

.accordion.accordion-modern-status>.card .card-header a:after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 25px;
  font-size: inherit;
  font-weight: inherit;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  transform-origin: 50% 50%;
  transition: ease transform 300ms;
}

.accordion.accordion-modern-status>.card .card-header a.collapsed:after {
  transform: translate3d(0, -50%, 0) rotate(0deg);
}

.accordion.accordion-modern-status>.card .card-header+.collapse.show,
.accordion.accordion-modern-status>.card .card-header+.collapsing {
  border: 0;
}

.accordion.accordion-modern-status>.card+.card {
  margin-top: 17px;
}

.fade {
  transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
  .fade {
    transition: none
  }
}

.fade:not(.show) {
  opacity: 0
}

.collapse:not(.show) {
  display: none
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
  .collapsing {
    transition: none
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width .35s ease
}

@media (prefers-reduced-motion:reduce) {
  .collapsing.collapse-horizontal {
    transition: none
  }
}

/* Video */
[data-plugin-video] {
  position: relative;
}

[data-plugin-video]>img {
  position: relative;
  z-index: 1;
}

[data-plugin-video]>video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

[data-plugin-video]>video.active {
  z-index: 1;
}

section.video {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

section.video .container {
  position: relative;
  z-index: 3;
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  padding-top: 100%;
}

.ratio-16x9 {
  padding-top: 56.25%;
}

/* Team List */
.about-page h2 {
  text-align: left;
}

ul.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.team-list .team-item {
  margin-bottom: 35px;
}

ul.team-list .team-item .thumb-info-social-icons {
  margin: 0 10px;
}

.google-map {
  height: 300px;
  margin: 0;
  width: 100%;
}

.first-visit-page ul.list-unstyled li {
  font-size: 18px;
  line-height: 2;
}

.first-visit-page ul.list-unstyled li i {
  color: var(--secondary);
}

.inner-hero {
  margin: 24px 0;
}

.inner-hero h2 {
  color: var(--primary);
  font-size: 3.75rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
}

.inner-hero p {
  background-color: var(--thirdary);
  margin: 25px 0 40px;
  padding: 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
}

.inner-hero li {
  color: #111;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 30px;
}

.inner-hero li i {
  color: #FF0000;
  font-size: 26px;
}

.responsive-columns {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 25px;
}

.responsive-columns i {
  color: var(--secondary);
}

ul.inner-list li {
  line-height: 2.5;
}

/*---- ++2++ Responsive Styles ----*/
@media (min-width: 1200px) {
  .testimonial-header {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  html.sticky-header-enabled.sticky-header-active.sticky-header-scroll-direction #header .header-body {
    transition: all 0.3s ease;
    transform: translate3d(0, 0, 0);
  }

  html.sticky-header-enabled.sticky-header-active.sticky-header-scroll-direction.sticky-header-scroll-down #header .header-body {
    transform: translate3d(0, -100%, 0);
  }

  #header .header-nav-main {
    display: flex !important;
    height: auto !important;
  }

  #header .header-nav-main nav {
    display: flex !important;
  }

  #header .header-nav-main nav>ul>li {
    height: 100%;
    align-self: stretch;
  }

  #header .header-nav-main nav>ul>li>a:after {
    display: none;
  }

  #header .header-nav-main nav>ul>li>a.dropdown-toggle .fa-chevron-down {
    display: none;
  }

  #header .header-nav-main nav>ul>li>a.active {
    background-color: transparent;
  }

  #header .header-nav.header-nav-sub-title .header-nav-main nav>ul>li>a,
  #header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li>a {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
    margin-left: 0.7rem;
    margin-right: 0.7rem;
  }

  #header .header-body:not(.h-100) {
    height: auto !important;
  }
}

@media only screen and (max-device-width: 1366px) {
  .parallax-element {
    background-attachment: scroll;
  }
}

@media (max-width: 1199px) {
  #header .header-nav-main nav>ul>li>a {
    padding: 0.5rem;
  }

  #footer .footer-copyright p,
  #footer .footer-copyright ul {
    display: block;
    text-align: center;
    float: none;
  }

  .feature-box-primary .feature-box-info h4 {
    font-size: 1.2rem;
  }

  .card-body {
    min-height: 200px;
  }

  .card.card-feature-icon .card-body {
    min-height: 310px;
  }

  .testimonial-header {
    display: block;
    margin-bottom: 10px;
  }

  .author h4 {
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .float-left {
    float: none !important;
    width: 100%;
    padding: 0 0 10px;
  }

  .doc-img.float-left {
    float: left !important;
    width: 45%;
  }

  #header .header-column .header-extra-info {
    display: none;
  }

  #header .header-row {
    display: block;
  }

  #header .header-logo {
    margin: 1rem auto;
  }

  #header .header-container:not(.container):not(.container-fluid) .header-nav-main {
    padding: 0 0.75rem;
  }

  html.mobile-menu-opened #header .header-body[class*="border-color-"] {
    border-bottom: 1px solid rgba(234, 234, 234, 0.5) !important;
  }

  #header .header-nav-main {
    position: absolute;
    background: transparent;
    width: 100%;
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }

  #header .header-nav-main:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background: #FFF;
    z-index: -1;
    transform: translateX(-50%);
  }

  #header .header-nav-main nav {
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 15px;
    transition: ease all 500ms;
  }

  #header .header-nav-main nav.collapsing {
    overflow-y: hidden;
  }

  #header .header-nav-main nav::-webkit-scrollbar {
    width: 5px;
  }

  #header .header-nav-main nav::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: rgba(204, 204, 204, 0.5);
  }

  #header .header-nav-main nav>ul {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-direction: column;
  }

  #header .header-nav-main nav>ul li {
    border-bottom: 1px solid #e8e8e8;
    clear: both;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    position: relative;
  }

  #header .header-nav-main nav>ul li a {
    font-size: 13px;
    font-style: normal;
    line-height: 20px;
    padding: 7px 8px;
    margin: 1px 0;
    border-radius: 4px;
    text-align: left;
  }

  #header .header-nav-main nav>ul li a .fa-caret-down {
    line-height: 35px;
    min-height: 38px;
    min-width: 30px;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 0;
  }

  #header .header-nav-main nav>ul li a.dropdown-toggle {
    position: relative;
  }

  #header .header-nav-main nav>ul li a.dropdown-toggle:after {
    content: none;
  }

  #header .header-nav-main nav>ul li a.dropdown-toggle .fa-chevron-down {
    display: block;
    font-size: 0.6rem;
    float: right;
    padding-left: 5px;
  }

  #header .header-nav-main nav>ul li a:active {
    color: var(--primary);
  }

  #header .header-nav-main nav>ul li.dropdown>a.active {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  #header .header-nav-main nav>ul li.dropdown .dropdown-menu {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 13px;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    clear: both;
    display: none;
    float: none;
    position: static;
  }

  #header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu>a {
    position: relative;
  }

  #header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu>a:after {
    content: none;
  }

  #header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu>a .fa-chevron-down {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
  }

  #header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu.open>.dropdown-menu {
    display: block;
    margin-left: 20px;
  }

  #header .header-nav-main nav>ul li.dropdown.open>.dropdown-menu {
    display: block;
    margin-left: 20px;
  }

  #header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-title {
    margin-top: 10px;
    display: block;
    text-align: left;
  }

  #header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-nav {
    margin: 0 0 0 20px;
    padding: 0;
    list-style: none;
  }

  #header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-nav>li>a {
    display: block;
    text-decoration: none;
  }

  #header .header-nav-main nav>ul li:last-child {
    border-bottom: 0;
  }

  #header .header-nav-main nav>ul>li>a {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  #header .header-nav-main nav>ul>li>a.active,
  #header .header-nav-main nav>ul>li>a.active:focus,
  #header .header-nav-main nav>ul>li>a.active:hover {
    color: #FFF;
    background: #CCC;
  }

  #header .header-nav-main nav .not-included {
    margin: 0;
  }

  #header .header-nav-bar .header-nav {
    min-height: 60px !important;
    padding: 0;
  }

  #header .header-btn-collapse-nav {
    outline: 0;
    display: block;
    position: relative;
    z-index: 1;
  }

  #header .header-nav.header-nav-sub-title .header-nav-main nav>ul>li>a {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
    margin-left: 0.7rem;
    margin-right: 0.7rem;
  }

  #header .header-nav.header-nav-sub-title .header-nav-main nav>ul>li>a>span {
    display: block;
  }

  #header .header-nav {
    justify-content: center;
  }

  html.safari #header .header-body {
    overflow: visible !important;
  }

  html .scroll-to-top.hidden-mobile {
    display: none !important;
  }

  .footer-logo {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  #footer,
  #footer h6 {
    text-align: center;
  }

  .footer-btn {
    margin: 0 auto 40px;
    text-align: center;
  }

  .page-header,
  .breadcrumb {
    text-align: center;
  }

  .card-body {
    min-height: 210px;
  }

  .card.card-feature-icon .card-body {
    min-height: 425px;
    margin: 0 auto;
  }

  .feature-box {
    display: block;
  }

  .feature-box-primary .feature-box-icon {
    display: flex;
    margin: 0 auto 10px;
  }

  .feature-box-primary .feature-box-info h4 {
    text-align: center;
  }

  .process .process-step:before {
    display: none;
  }

  .owl-carousel.nav-style-4 .owl-nav .owl-prev {
    left: 40px;
  }

  .owl-carousel.nav-style-4 .owl-nav .owl-next {
    right: 40px;
  }

  ul.team-list .team-item {
    margin: 0 auto 35px;
    max-width: 270px;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 767px) {
  #header .container {
    width: 100%;
  }

  #header .header-column .header-extra-info {
    display: none;
  }

  .footer-social-icons {
    margin-bottom: 30px;
  }

  .card-body,
  .card.card-feature-icon .card-body {
    min-height: auto;
  }

  .call-to-action {
    padding: 10px 10px;
  }

  .call-to-action>[class*="col-"]:nth-child(2),
  .call-to-action .container>.row>[class*="col-"]:nth-child(2),
  .call-to-action .container-fluid>.row>[class*="col-"]:nth-child(2) {
    justify-content: center;
  }

  .call-to-action>[class*="col-"]:not([class*="col-xs"]),
  .call-to-action .container>.row [class*="col-"]:not([class*="col-xs"]) {
    width: 100%;
  }

  .call-to-action .call-to-action-content,
  .call-to-action .call-to-action-btn {
    margin: 0;
    padding: 20px;
    position: static;
    width: auto;
  }

  .owl-carousel.nav-style-4 .owl-nav .owl-prev {
    left: 13px;
  }

  .owl-carousel.nav-style-4 .owl-nav .owl-next {
    right: 13px;
  }

  .contact-page {
    text-align: center;
  }

  .contact-page h3 {
    margin-top: 0 !important;
    text-align: center;
  }

  .about-page h2,
  .first-visit-page {
    text-align: center;
  }

  .first-visit-page p {
    text-align: left;
  }

  .about-page-btn {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .doc-img.float-left {
    float: none !important;
    width: 100%;
    padding: 0 0 10px;
  }

  .doctor-info h3,
  .doctor-info h5 {
    text-align: center;
  }
}
