@charset "UTF-8";

/*---- 

====================
1. Base CSS
    # base  CSS
====================

----*/
/* Base CSS */
:root {
  --primary-color: #4F6BD6;
  --heading-color: #0E0C0A;
  --primary-black-color: #031B33;
  --black-dark-color: #0A0A0A;
  --gray-light-color: #F1FCF9;
  --white-color: #ffffff;
  --text-color: #2D4443;
  --border-color: #E5E5E5;
  --heading-font: "Albert Sans", sans-serif;
  --body-font: "Rubik", sans-serif;
}

html {
  font-size: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h1 {
  font-size: 85px;
  line-height: 100px;
}

h2 {
  font-size: 48px;
  line-height: 65px;
}

h3 {
  font-size: 32px;
  line-height: 40px;
}

h4 {
  font-size: 24px;
  line-height: 34px;
}

h5 {
  font-size: 20px;
  line-height: 1;
}

h6 {
  font-size: 18px;
  line-height: 1;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  margin: 0px;
}

input, textarea {
  display: inherit;
}

button {
  border: none;
}

label {
  margin-bottom: 0;
}

iframe {
  width: 100%;
  border: none;
  display: inherit;
}

img {
  max-width: 100%;
}

body {
  font-weight: normal;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 30px;
  overflow-x: hidden;
}
@media (max-width: 1650px) {
  body {
    font-size: 16px;
    line-height: 28px;
  }
}

main {
  width: 100%;
}

/*===== Scrollbar =====*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #abafb9;
}

::-webkit-scrollbar-thumb {
  background-color: #13172b;
}

/*---- 

====================
01. Base CSS
    # Common CSS
====================

----*/
#smooth-wrapper {
  overflow: hidden;
  z-index: 1;
}

@media (min-width: 1451px) {
  .container {
    max-width: 1314px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .container {
    max-width: 1200px;
  }
}
.p-r {
  position: relative;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}

.font-200 {
  font-weight: 200;
}

.form-group {
  position: relative;
}

label {
  margin-bottom: 0;
}

.form_control {
  width: 100%;
}

.text-white p,
.text-white h6,
.text-white h5,
.text-white h4,
.text-white h3,
.text-white h2, .text-white h1 {
  color: var(--white-color);
}
.text-white .sub-heading {
  background-color: var(--white-color);
  color: var(--heading-color);
  border-color: transparent;
}

.gray-light-color {
  background-color: var(--gray-light-color);
}

.sub-title {
  padding: 5px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  font-weight: 500;
  font-family: var(--heading-font);
  line-height: 24px;
  margin-bottom: 12px;
}
.sub-title:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--heading-color);
  margin-right: 10px;
}

@media (max-width: 1399.98px) {
  .section-title h2 {
    font-size: 38px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 1199.98px) {
  .section-title h2 {
    font-size: 36px;
    line-height: 1.3;
  }
}
@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 28px;
  }
}

.title-white h2 {
  color: var(--white-color);
}
.title-white p {
  color: var(--white-color);
}

.check-list.style-one li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.check-list.style-one li:not(:last-child) {
  margin-bottom: 13px;
}
.check-list.style-one li i {
  margin-right: 10px;
  color: #0B5FB8;
}
.check-list.style-two li {
  position: relative;
  padding-left: 15px;
}
.check-list.style-two li:not(:last-child) {
  margin-bottom: 10px;
}
.check-list.style-two li:before {
  position: absolute;
  top: 11px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

/* Nice Select */
.nice-select:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
}

/* Animated List Wrap */
.headline-wrap {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  font-family: var(--heading-font);
  text-transform: capitalize;
}
.headline-wrap .marquee-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.headline-wrap .marquee-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
}
.headline-wrap .marquee-item i {
  margin-right: 15px;
  line-height: 0;
}
.headline-wrap .marquee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headline-wrap .marquee-inner.left {
  -webkit-animation: marquee_left 35s linear infinite;
          animation: marquee_left 35s linear infinite;
}
.headline-wrap.style-one {
  padding: 15px 0;
  font-family: var(--heading-font);
  color: var(--heading-color);
  background-color: #0B5FB8;
}

/* Headline Animation */
.animate-float-bob-x {
  -webkit-animation-name: float-bob-x;
          animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.animate-float-bob-y {
  -webkit-animation-name: float-bob-y;
          animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.rotate360 {
  -webkit-animation: spin 7s linear infinite;
  animation: spin 7s linear infinite;
}

.zoomInOut {
  -webkit-animation: zoomInOut 6s linear infinite;
          animation: zoomInOut 6s linear infinite;
}

/* Pagination */
.medolia-pagination ul li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.medolia-pagination ul li a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--border-color);
  color: var(--heading-color);
}
.medolia-pagination ul li a:hover {
  background-color: #0B5FB8;
  color: var(--white-color);
}

/* Form Check & Radio */
.form-check {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.form-check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
}

.form-input-radio {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  margin-right: 10px;
}
.form-input-radio:checked {
  border-color: var(--secondary-color);
}
.form-input-radio:checked:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-black-color);
}

/*===  Back To top  ====*/
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0B5FB8;
  font-size: 16px;
  z-index: 2;
  cursor: pointer;
  color: var(--white-color);
}
.back-to-top:hover {
  color: var(--primary-black-color);
  color: var(--white-color);
}

/* Preloader CSS */
.preloader {
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--white-color);
}
.preloader .loader {
  position: relative;
  overflow: hidden;
}

.loader {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: var(--primary-black-color) var(--primary-black-color) transparent transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #0B5FB8 #0B5FB8;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-animation: rotationBack 0.5s linear infinite;
          animation: rotationBack 0.5s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.loader::before {
  width: 50px;
  height: 50px;
  border-color: var(--secondary-color) var(--primary-black-color) transparent transparent;
  -webkit-animation: rotation 1.5s linear infinite;
          animation: rotation 1.5s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/* Offcanvas Overlay */
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

.sidebar-btn {
  margin-left: 15px;
  cursor: pointer;
  text-align: right;
}

.sidebar-btn span {
  width: 30px;
  display: block;
  height: 2px;
  background-color: var(--heading-color);
}
.sidebar-btn span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
  width: 25px;
  margin-left: auto;
}

@-webkit-keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

@keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@-webkit-keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 44px;
  line-height: 20px;
  font-family: var(--heading-font);
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.theme-btn.style-one {
  background-color: #0B5FB8;
  color: var(--white-color);
}
.theme-btn.style-one i {
  margin-left: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.theme-btn.style-one:hover {
  background-color: var(--primary-black-color);
  color: var(--white-color);
}
.theme-btn.style-two {
  padding: 17px 22px;
  border: 1px solid #0B5FB8;
  color: #0B5FB8;
}
.theme-btn.style-two:hover {
  background-color: #0B5FB8;
  border-color: transparent;
  color: var(--white-color);
}

.read-more.style-one {
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
}
.read-more.style-one i {
  margin-left: 20px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.read-more.style-one:hover i {
  margin-left: 10px;
}

.header-area {
  position: relative;
  z-index: 999;
}

.transparent-header {
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Header Navigation */
@media screen and (max-width: 991.98px) {
  .header-navigation {
    padding: 5px 0;
  }
  .top_header{
      display: none;
  }
}
.header-navigation .primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-navigation .site-branding {
  max-width: 200px;
}
.header-navigation .main-menu ul > li {
  display: inline-block;
  position: relative;
  margin-left: 17px;
  margin-right: 17px;
}
@media screen and (max-width: 1199.98px) {
  .header-navigation .main-menu ul > li {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.header-navigation .main-menu ul > li > a {
  position: relative;
  display: block;
  font: 500 18px var(--heading-font);
  text-transform: capitalize;
  line-height: 1;
  color: var(--heading-color);
  padding: 36px 0;
}
@media screen and (max-width: 1199.98px) {
  .header-navigation .main-menu ul > li > a {
    font-size: 16px;
  }
}
.header-navigation .main-menu ul > li > a:after {
  position: absolute;
  bottom: 35%;
  right: 0;
  content: "";
  width: 0%;
  height: 1px;
  background-color: #0B5FB8;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.header-navigation .main-menu ul > li > a span.dd-trigger {
  margin-left: 5px;
}
.header-navigation .main-menu ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 99;
  padding: 10px 0;
  background-color: var(--white-color);
  height: auto;
  text-align: left;
  -webkit-box-shadow: 0px 30px 80px 15px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 30px 80px 15px rgba(0, 0, 0, 0.09);
  border-radius: 7px;
}
.header-navigation .main-menu ul > li .sub-menu li {
  display: block;
  margin: 0;
}
.header-navigation .main-menu ul > li .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  position: relative;
  line-height: 2.5;
  margin: 0;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.header-navigation .main-menu ul > li .sub-menu li a span.dd-trigger {
  margin-left: auto;
}
.header-navigation .main-menu ul > li .sub-menu li a::after {
  display: none;
}
.header-navigation .main-menu ul > li .sub-menu li a:hover {
  color: #0B5FB8;
}
.header-navigation .main-menu ul > li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}
.header-navigation .main-menu ul > li .sub-menu li:hover .sub-menu {
  top: 0%;
}
.header-navigation .main-menu ul > li .sub-menu li:hover > a {
  margin-left: 5px;
  color: #0B5FB8;
}
.header-navigation .main-menu ul > li:hover > a {
  color: #0B5FB8;
}
.header-navigation .main-menu ul > li:hover > a:after {
  left: 0;
  right: auto;
  width: 100%;
}
.header-navigation .main-menu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-navigation .navbar-toggler {
  padding: 7px 5px;
  border: 1px solid #004c98;
  background-color: transparent;
  cursor: pointer;
  display: none;
  border-radius: 5px;
  margin-left: 20px;
}
.header-navigation .navbar-toggler span {
  position: relative;
  border-radius: 3px;
  display: block;
  height: 2px;
  padding: 0;
  width: 30px;
  cursor: pointer;
  display: block;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: #004c98;
}
.header-navigation .navbar-toggler span:not(:first-child) {
  margin-top: 5px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
  top: 7px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
  top: -7px;
}
@media screen and (max-width: 991.98px) {
  .header-navigation .theme-nav-menu {
    text-align: left;
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
    padding: 20px 20px 30px;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 9999;
    background-color: var(--white-color);
  }
  .header-navigation .theme-nav-menu.menu-on {
    left: 0;
  }
  .header-navigation .theme-nav-menu .main-menu {
    margin-top: 30px;
  }
  .header-navigation .theme-nav-menu .main-menu ul li {
    display: block;
    margin: 0;
  }
  .header-navigation .theme-nav-menu .main-menu ul li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }
  .header-navigation .theme-nav-menu .main-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
  }
  .header-navigation .theme-nav-menu .main-menu ul li a:after {
    display: none;
  }
  .header-navigation .theme-nav-menu .main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
  .header-navigation .theme-nav-menu .main-menu ul li .sub-menu > li > a {
    padding: 5px 20px;
  }
  .header-navigation .theme-nav-menu .main-menu ul li .sub-menu > li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
    margin-left: 30px;
  }
  .header-navigation .theme-nav-menu .main-menu ul li .dd-trigger {
    position: absolute;
    right: 0;
    top: 10px;
    height: 25px;
    width: 25px;
    border-radius: 3px;
    z-index: 2;
    cursor: pointer;
    font-size: 16px;
  }
  .header-navigation .navbar-close {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid var(--border-color);
    font-size: 16px;
  }
  .header-navigation .navbar-toggler {
    display: block;
  }
  .header-navigation .theme-nav-button .theme-btn.style-one {
    padding: 17px 24px;
  }
  .header-navigation .theme-menu-bottom h5 {
    margin-bottom: 25px;
  }
  .header-navigation .theme-menu-bottom .social-link li {
    display: inline-block;
    margin-right: 10px;
  }
  .header-navigation .theme-menu-bottom .social-link li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-navigation .theme-menu-bottom .social-link li a:hover {
    background-color: #0B5FB8;
    color: var(--white-color);
  }
}

.nav-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-right-item .nav-button .theme-btn.style-one {
  padding: 13px 21px;
}

.header-one {
  background-color: var(--white-color);
}

.header-three .container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}
@media screen and (max-width: 1199.98px) {
  .header-three .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Header Sticky */
.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-color: transparent;
  background-color: var(--white-color);
  -webkit-animation: sticky 1.2s;
          animation: sticky 1.2s;
  -webkit-box-shadow: 7px 4px 20px rgba(197, 197, 197, 0.25);
          box-shadow: 7px 4px 20px rgba(197, 197, 197, 0.25);
}
.header-area.sticky.header-one {
  background-color: var(--white-color);
}

@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
.footer-widget .widget-title {
  color: var(--white-color);
  margin-bottom: 28px;
}
.footer-widget .widget-content .social-box a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white-color);
}
.footer-widget .widget-content .social-box a:not(:last-child) {
  margin-right: 5px;
}
.footer-widget .widget-content .social-box a:hover {
  border-color: transparent;
  background-color: #0B5FB8;
}
.footer-widget .widget-content .widget-nav li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget .widget-content .widget-nav li a {
  font-size: 18px;
  color: var(--white-color);
}
.footer-widget .widget-content .widget-nav li a:hover {
  color: #0B5FB8;
}
.footer-widget.footer-schedule-widget .widget-content span {
  color: var(--white-color);
}
.footer-widget.footer-contact-info-widget .medolia-info-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-widget.footer-contact-info-widget .medolia-info-box .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white-color);
  font-size: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}
.footer-widget.footer-contact-info-widget .medolia-info-box .content p {
  color: var(--white-color);
  font-size: 18px;
  line-height: 30px;
}

.footer-schedule-widget .widget-content span:not(:last-child) {
  margin-bottom: 20px;
}

.default-footer .footer-widget-area .footer-widget.footer-about-widget p {
  color: #CDD1D6;
  margin-bottom: 20px;
}
.default-footer .footer-widget-area .footer-widget.footer-contact-info-widget {
  padding-left: 70px;
}
@media screen and (max-width: 1199.98px) {
  .default-footer .footer-widget-area .footer-widget.footer-contact-info-widget {
    padding-left: 0;
  }
}
.default-footer .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1199.98px) {
  .default-footer .footer-top {
    text-align: center;
  }
}
.default-footer .footer-top h2 {
  color: var(--white-color);
}
@media (max-width: 767.98px) {
  .default-footer .footer-top h2 {
    font-size: 28px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1199.98px) {
  .default-footer .footer-top .footer-top-right {
    text-align: center;
  }
}
.default-footer .footer-top .footer-top-right p {
  line-height: 30px;
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 25px;
}
.default-footer .footer-top .footer-top-right form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1199.98px) {
  .default-footer .footer-top .footer-top-right form .form-group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .default-footer .footer-top .footer-top-right form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.default-footer .footer-top .footer-top-right form .form_control {
  border-radius: 10px;
  padding: 9px 20px;
  max-width: 320px;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--primary-black-color);
  color: var(--white-color);
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .default-footer .footer-top .footer-top-right form .form_control {
    max-width: 270px;
  }
}
.default-footer .footer-top .footer-top-right form .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.default-footer .footer-top .footer-top-right form .form_control::-moz-placeholder {
  color: var(--white-color);
}
.default-footer .footer-top .footer-top-right form .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.default-footer .footer-top .footer-top-right form .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.default-footer .footer-top .footer-top-right form .form_control::placeholder {
  color: var(--white-color);
}
@media (max-width: 767.98px) {
  .default-footer .footer-top .footer-top-right form .theme-btn {
    margin-top: 20px;
  }
}
.default-footer .footer-top .footer-top-right form .theme-btn.style-one:hover {
  background-color: var(--white-color);
  color: #0B5FB8;
}
.default-footer .copyright-area {
  padding: 20px 0;
  background-color: #10263D;
}
.default-footer .copyright-area .copyright-text p {
  color: var(--white-color);
}

.footer-two .footer-widget .widget-content .social-box a:hover {
  background-color: #0B5FB8;
  color: var(--heading-color);
}
.footer-two .copyright-area {
  background-color: #1B1724;
}

.footer-three {
  position: relative;
  z-index: 1;
  background-color: #01121C;
}
.footer-three .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.footer-three .footer-top-content {
  padding: 50px 0;
  text-align: center;
}
.footer-three .footer-top-content h3 {
  color: var(--white-color);
  margin-bottom: 20px;
}
.footer-three .footer-top-content .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767.98px) {
  .footer-three .footer-top-content .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-three .footer-top-content .form-group .form_control {
  max-width: 330px;
  margin-right: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background-color: transparent;
  padding: 10px 20px;
  font-weight: 500;
  color: var(--white-color);
}
.footer-three .footer-top-content .form-group .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.footer-three .footer-top-content .form-group .form_control::-moz-placeholder {
  color: var(--white-color);
}
.footer-three .footer-top-content .form-group .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.footer-three .footer-top-content .form-group .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.footer-three .footer-top-content .form-group .form_control::placeholder {
  color: var(--white-color);
}
@media (max-width: 767.98px) {
  .footer-three .footer-top-content .form-group .form_control {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.footer-three .footer-top-content .form-group .theme-btn.style-one:hover {
  background-color: var(--white-color);
  color: #0B5FB8;
}
.footer-three .copyright-area {
  background-color: #0E1E27;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.service-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
    min-height:180px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.service-card img{
    width:50px;
    margin-bottom: 15px;
}

.service-card h3{
    color:#173d88;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.4;
}

.service-card p{
    color:#666;
    font-size:15px;
    line-height:1.6;
}

/* Tablet */

@media(max-width:992px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

.heading h2{
font-size:32px;
}

}

/* Mobile */

@media(max-width:576px){

.services-grid{
grid-template-columns:1fr;
}

.service-card{
padding:25px;
}

.heading h2{
font-size:28px;
}

.divider span{
width:60px;
}

}

.care-section{
    max-width:1150px;
    margin:60px auto;
    padding:0 15px;
}

.care-section .section-title{
    text-align:center;
  
}

.care-section.section-title h2{
  
}

.title-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:8px;
}

.title-divider span:not(.heart){
    width:110px;
    height:2px;
    background:#17479E;
}

.heart{
    color:#17479E;
    font-size:18px;
}

.gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:12px;

}

.gallery-item{

    border-radius:8px;

    overflow:hidden;

}

.gallery-item img{
    width:100%;
    height:250px;
    display:block;
    object-fit:cover;
    transition:.35s;
}

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

}

/* Tablet */

@media(max-width:768px){

.gallery{

grid-template-columns:repeat(2,1fr);

}

.gallery-item img{

height:auto;

}

}

/* Mobile */

@media(max-width:576px){

.gallery{

grid-template-columns:1fr;

}

.gallery-item img{

height:230px;

}

.section-title h2{

font-size:32px;

}

.title-divider span:not(.heart){

width:70px;

}

}

.why-choose{
    max-width:1200px;
    margin:60px auto;
    padding:0 15px;
}





/*==========================
    MAIN LAYOUT
===========================*/

.choose-wrapper{

    display:grid;

    grid-template-columns:1fr 330px 1fr;

    align-items:center;

    gap:30px;

}

/*==========================
    FEATURE COLUMN
===========================*/

.features{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.feature-card{

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:8px;

    display:flex;

    align-items:center;
    box-shadow: 0 4px 13px 0 rgba(0, 0, 0, 0.3);
    gap:18px;

    padding:18px;

    min-height:92px;

    transition:.3s;

}

.feature-card:hover{

    box-shadow:0 8px 18px rgba(0,0,0,.08);

    transform:translateY(-2px);

}

.choose-wrapper .icon{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.choose-wrapper .icon i{

    color:#17479E;

    font-size:30px;

}

.text h4{

    font-size:18px;

    color:#17479E;

    margin-bottom:4px;

    line-height:1.3;

}

.text p{

    color:#555;

    font-size:15px;

    line-height:1.4;

}

/*==========================
    CENTER IMAGE
===========================*/

.center-image{

    display:flex;

    justify-content:center;

}

.circle{

    position:relative;

    width:280px;

    height:280px;

    border-radius:50%;

    padding:8px;

    border:2px dashed #2F62C8;

}

.circle img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:50%;

    border:8px solid #fff;

}

/* Decorative Dots */

.dot{

    width:10px;

    height:10px;

    background:#17479E;

    border-radius:50%;

    position:absolute;

}

.dot1{

    top:8px;

    left:50%;

    transform:translateX(-50%);

}

.dot2{

    right:8px;

    top:50%;

    transform:translateY(-50%);

}

.dot3{

    bottom:8px;

    left:50%;

    transform:translateX(-50%);

}

.dot4{

    left:8px;

    top:50%;

    transform:translateY(-50%);

}

/*==========================
    CTA SECTION
===========================*/

.cta-box{

    margin-top:60px;

    background:#17479E;

    border-radius:12px;

    padding:40px;

    color:#fff;

    text-align:center;

}

.cta-box h3{
    color: #fff;
    font-size:32px;
    font-weight:700;
}
.divider{
    display: flex;
    align-items: center;
    justify-content: center;
}
.divider.white span{
    height: 2px;
    background:#ffffff70;
    width: 30%;
}
.divider.blue span{
    height: 2px;
    background:#0b5fb8;
    width: 10%;
}

.divider.white i{

    color:#fff;

}

/*==========================
    SERVICE LIST
===========================*/

.service-list{
    margin-top:30px;
}

.service-list li{
    float: left;
    color:#fff;
    margin-bottom: 20px;
    font-size:15px;
    padding-left: 30px;
    position: relative;
    width: 30%;
    text-align: left;
}
.service-list li br{
    display: none;
}
.service-list i{
    position: absolute;
    left: 0;
    color:#fff;
    top: 7px;
}

/*==========================
    RESPONSIVE
===========================*/

@media(max-width:992px){

.choose-wrapper{

grid-template-columns:1fr;

}

.center-image{

order:-1;

margin-bottom:25px;

}

.service-list{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.section-title h2{

font-size:30px;

}

.circle{

width:220px;

height:220px;

}

.feature-card{

padding:15px;

}

.service-list{

grid-template-columns:1fr;

}

.cta-box{

padding:25px;

}

.cta-box h3{

font-size:24px;

}

}

.top_header{
    background: #0B5FB8;
}
.top_header ul{
    display: flex;
    align-items: center;
    justify-content: end;
}
.top_header ul li{
    margin-left: 15px;
}
.top_header ul li:fisrt-child{
    margin-left: 0;
}
.top_header ul li a{
    color: #fff;
    display: block;
    padding: 5px 0;
}

.medolia-choose-sec .feature-card i{
    font-size:30px;
    color: #0b5fb8;
}

.page-header h1 {
    font-size: 39px;
    line-height: 50px;
    color: #fff;
}
 .page-header li a{
     color: #fff;
 }
.page-header {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.breadcrumb-item.active

 {
    color: rgb(186 220 255 / 75%);
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:#000;
    opacity: 0.5;
    z-index: 0;
}
.page-header .breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}

.page-header > * {
    position: relative;
    z-index: 1;
}


.whatsapp_btn{
    position: fixed;
    left: 20px;
    bottom: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
   
    display: flex;
    align-items: center;
    justify-content: center;
   
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: all .3s ease;
}

.whatsapp_btn img{
    width: 45px;
}

.whatsapp_btn:hover{
    transform: scale(1.1);
}

/* =========================================================
   MEDOLIA CONTACT PAGE - PROFESSIONAL STYLING
   ========================================================= */

/* ---------- Contact Info Section ---------- */

.medolia-contact-info-sec {
    padding: 100px 0 60px;
    background: #f7fafd;
}

.medolia-contact-info-sec .row {
    margin-left: -15px;
    margin-right: -15px;
}

.medolia-cn-info {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 194px;
    padding: 28px 25px;
    margin: 0 15px 30px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eef3;
    box-shadow: 0 12px 35px rgba(29, 63, 89, 0.07);
    transition: all 0.35s ease;
}

.medolia-cn-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #2ca6a4;
    transition: all 0.35s ease;
}

.medolia-cn-info:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(29, 63, 89, 0.12);
}

.medolia-cn-info:hover::before {
    width: 6px;
}

/* Icon */

.medolia-cn-info .icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    border-radius: 50%;
    background: #e9f8f7;
    color: #269b99;
    font-size: 24px;
    transition: all 0.35s ease;
}

.medolia-cn-info:hover .icon {
    background: #269b99;
    color: #fff;
    transform: scale(1.05);
}

/* Different icon backgrounds */

.medolia-cn-info.bg_one::before {
    background: #269b99;
}

.medolia-cn-info.bg_two::before {
    background: #4f7cff;
}

.medolia-cn-info.bg_three::before {
    background: #f2a93b;
}

.medolia-cn-info.bg_two .icon {
    background: #eef2ff;
    color: #4f7cff;
}

.medolia-cn-info.bg_two:hover .icon {
    background: #4f7cff;
    color: #fff;
}

.medolia-cn-info.bg_three .icon {
    background: #fff5e6;
    color: #e99a28;
}

.medolia-cn-info.bg_three:hover .icon {
    background: #e99a28;
    color: #fff;
}

/* Content */

.medolia-cn-info .content {
    min-width: 0;
}

.medolia-cn-info .content span {
    display: block;
    margin-bottom: 7px;
    color: #7b8994;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.medolia-cn-info .content h3 {
    margin: 0;
    color: #19354d;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    word-break: break-word;
}

.medolia-cn-info .content h3 a {
    color: #19354d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.medolia-cn-info .content h3 a:hover {
    color: #269b99;
}


/* =========================================================
   APPOINTMENT SECTION
   ========================================================= */

.medolia-contact-sec {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}

/* Appointment Wrapper */

.medolia-contact-sec .contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e8eef3;
    box-shadow: 0 20px 60px rgba(28, 62, 87, 0.09);
}

.medolia-contact-sec .contact-wrapper h3 {
    position: relative;
    margin: 0 0 35px;
    padding-bottom: 18px;
    color: #19354d;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.medolia-contact-sec .contact-wrapper h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    border-radius: 5px;
    background: #269b99;
}

/* Form group */

.contact-form .form-group {
    margin-bottom: 22px;
}

/* Inputs / Select */

.contact-form .form_control,
.contact-form select {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: 1px solid #dce5eb;
    border-radius: 9px;
    outline: none;
    background: #f9fbfc;
    color: #19354d;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .form_control::placeholder {
    color: #9aa8b3;
}

.contact-form .form_control:hover,
.contact-form select:hover {
    border-color: #b9d9d8;
    background: #ffffff;
}

.contact-form .form_control:focus,
.contact-form select:focus {
    border-color: #269b99;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(38, 155, 153, 0.10);
}

/* Date field */

.contact-form input[type="date"] {
    color: #647582;
    cursor: pointer;
}

.contact-form input[type="date"]:focus {
    color: #19354d;
}

/* Select */

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 45px;
    background-image: linear-gradient(45deg, transparent 50%, #71818d 50%),
                      linear-gradient(135deg, #71818d 50%, transparent 50%);
    background-position: calc(100% - 20px) 25px,
                         calc(100% - 14px) 25px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

/* If Nice Select is being used */

.contact-form .nice-select {
    width: 100%;
    height: 58px;
    line-height: 58px;
    padding: 0 18px;
    border: 1px solid #dce5eb;
    border-radius: 9px;
    background: #f9fbfc;
    color: #19354d;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .nice-select:hover {
    border-color: #b9d9d8;
    background: #fff;
}

.contact-form .nice-select.open,
.contact-form .nice-select:focus {
    border-color: #269b99;
    box-shadow: 0 0 0 4px rgba(38, 155, 153, 0.10);
}

.contact-form .nice-select .list {
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    border-radius: 9px;
    border: 1px solid #e3eaee;
    box-shadow: 0 15px 35px rgba(25, 53, 77, 0.12);
}

.contact-form .nice-select .option {
    min-height: 42px;
    line-height: 42px;
    padding-left: 18px;
}

.contact-form .nice-select .option:hover,
.contact-form .nice-select .option.focus,
.contact-form .nice-select .option.selected.focus {
    background: #eaf8f7;
    color: #0b5fb8;
}

/* Appointment Button */

.contact-form .theme-btn.style-one {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 56px;
    padding: 0 30px;
    border: 0;
    border-radius: 8px;
    background: #0b5fb8;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(38, 155, 153, 0.20);
    transition: all 0.35s ease;
}

.contact-form .theme-btn.style-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.contact-form .theme-btn.style-one:hover {
    background: #1e8583;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(38, 155, 153, 0.28);
}

.contact-form .theme-btn.style-one:hover::before {
    left: 100%;
}

.contact-form .theme-btn.style-one:active {
    transform: translateY(-1px);
}


/* =========================================================
   MAP SECTION
   ========================================================= */

.medolia-map-sec {
    position: relative;
    padding: 0 0 100px;
    background: #ffffff;
}

.medolia-map-sec .map-box {
    width: 100%;
    max-width: 1200px;
    height: 450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #e4ebef;
    background: #f5f8fa;
    box-shadow: 0 15px 45px rgba(28, 62, 87, 0.10);
}

.medolia-map-sec .map-box iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .medolia-contact-info-sec {
        padding: 80px 0 40px;
    }

    .medolia-contact-sec {
        padding: 80px 0;
    }

    .medolia-contact-sec .contact-wrapper {
        padding: 40px 30px;
    }

    .medolia-map-sec {
        padding-bottom: 80px;
    }

    .medolia-map-sec .map-box {
        height: 400px;
        margin: 0 15px;
    }
}


@media (max-width: 767px) {

    .medolia-contact-info-sec {
        padding: 60px 0 30px;
    }

    .medolia-cn-info {
        margin: 0 0 25px;
        min-height: 125px;
        padding: 22px 20px;
    }

    .medolia-cn-info .icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-right: 14px;
    }

    .medolia-cn-info .content h3 {
        font-size: 15px;
    }

    .medolia-contact-sec {
        padding: 60px 15px;
    }

    .medolia-contact-sec .contact-wrapper {
        padding: 30px 20px;
        border-radius: 14px;
    }

    .medolia-contact-sec .contact-wrapper h3 {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .contact-form .form_control,
    .contact-form select,
    .contact-form .nice-select {
        height: 54px;
    }

    .contact-form .nice-select {
        line-height: 54px;
    }

    .contact-form .nice-select .option {
        min-height: 40px;
        line-height: 40px;
    }

    .contact-form .theme-btn.style-one {
        width: 100%;
    }

    .medolia-map-sec {
        padding: 0 15px 60px;
    }

    .medolia-map-sec .map-box {
        height: 320px;
        margin: 0;
        border-radius: 14px;
    }
}


@media (max-width: 480px) {

    .medolia-cn-info {
        align-items: flex-start;
    }

    .medolia-cn-info .icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
    }

    .medolia-cn-info .content span {
        font-size: 11px;
    }

    .medolia-cn-info .content h3 {
        font-size: 14px;
    }

    .medolia-contact-sec .contact-wrapper {
        padding: 25px 16px;
    }

    .medolia-contact-sec .contact-wrapper h3 {
        font-size: 23px;
    }

    .medolia-map-sec .map-box {
        height: 280px;
    }
}

/* =========================================================
   MEDOLIA HOME SERVICES
   All styles are scoped to .medolia-home-services
========================================================= */

.medolia-home-services {
    width: 100%;
    padding: 30px 15px;
    background: #fff;
}

.medolia-home-services__container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.medolia-home-services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.medolia-home-services__item {
    min-height: 175px;
    padding: 10px 7px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background: #fff;
    border: 1px solid #e5eaee;
    border-radius: 15px;

    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.03);

    transition: all .3s ease;
}

.medolia-home-services__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 60, 120, .10);
}

.medolia-home-services__icon {
    width: 78px;
    height: 78px;
    flex-shrink: 0;

    margin-bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e1e7eb;
    border-radius: 50%;

    background: #fff;

    color: #0755a8;
    font-size: 32px;
}

.medolia-home-services__item:nth-child(1)
.medolia-home-services__icon {
    color: #d95353;
}

.medolia-home-services__item:nth-child(2)
.medolia-home-services__icon {
    color: #df6060;
}

.medolia-home-services__item:nth-child(3)
.medolia-home-services__icon {
    color: #222;
}

.medolia-home-services__item:nth-child(4)
.medolia-home-services__icon {
    color: #1558a5;
}

.medolia-home-services__item:nth-child(5)
.medolia-home-services__icon {
    color: #333;
}

.medolia-home-services__item:nth-child(6)
.medolia-home-services__icon {
    color: #555;
}

.medolia-home-services__item:nth-child(7)
.medolia-home-services__icon {
    color: #315ca0;
}

.medolia-home-services__item:nth-child(8)
.medolia-home-services__icon {
    color: #d45b78;
}

.medolia-home-services__item:nth-child(9)
.medolia-home-services__icon {
    color: #222;
}

.medolia-home-services__item:nth-child(10)
.medolia-home-services__icon {
    color: #ed704c;
}

.medolia-home-services__title {
    color: #064a91;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}


/* =========================================================
   BOTTOM BLUE INFORMATION BAR
========================================================= */

.medolia-home-services__bottom {
    min-height: 62px;
    margin-top: 13px;
    padding: 7px 20px;

    display: flex;
    align-items: center;

    background: #0755a8;
    border-radius: 12px;

    color: #fff;
    box-shadow: 0 4px 12px rgba(7, 85, 168, .15);
}

.medolia-home-services__bottom-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;

    margin-right: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 30px;
}

.medolia-home-services__bottom-content {
    flex: 1;
    text-align: center;
}

.medolia-home-services__features {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 7px;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.medolia-home-services__features b {
    font-weight: 400;
    opacity: .8;
}

.medolia-home-services__description {
    margin-top: 2px;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .medolia-home-services__grid {
        gap: 7px;
    }

    .medolia-home-services__item {
        min-height: 155px;
    }

    .medolia-home-services__icon {
        width: 65px;
        height: 65px;
        font-size: 27px;
    }

    .medolia-home-services__title {
        font-size: 10px;
    }

    .medolia-home-services__features {
        font-size: 10px;
    }

    .medolia-home-services__description {
        font-size: 9px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .header-navigation .site-branding {
    max-width: 70px;
}
.pb-120 {
    padding-bottom: 40px;
}

.pt-130 {
    padding-top: 40px;
}
    .medolia-home-services {
        padding: 25px 10px;
    }

    .medolia-home-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .medolia-home-services__item {
        min-height: 160px;
        padding: 11px 6px;
    }

    .medolia-home-services__icon {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .medolia-home-services__title {
        font-size: 11px;
    }

    .medolia-home-services__bottom {
        padding: 10px;
    }

    .medolia-home-services__bottom-icon {
        width: 38px;
        min-width: 38px;
        height: 38px;
        margin-right: 7px;
        font-size: 24px;
    }

    .medolia-home-services__features {
        gap: 4px;
        font-size: 9px;
    }

    .medolia-home-services__description {
        font-size: 9px;
    }
    .medolia-about-sec .medolia-image-box{
        margin-bottom: 30px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .medolia-home-services__grid {
        gap: 7px;
    }

    .medolia-home-services__item {
        min-height: 145px;
    }

    .medolia-home-services__icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .medolia-home-services__title {
        font-size: 10px;
    }

    .medolia-home-services__bottom {
        align-items: flex-start;
    }

    .medolia-home-services__features {
        line-height: 1.4;
    }
}