@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --font-osward: "Oswald", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --transparent: transparent;
  --transition: all 0.2s ease-in-out;
  --radius-5: 5px;
  --radius-10: 10px;
  --radius-15: 15px;
  --radius-20: 20px;
  --radius-full: 30px;
  --white: #ffffff;
  --black: #000000;
  --text: #000000;
  /* Core Color */
  --blue: #4F5E72;
  --green: #6d8375;
  --orange: #ff914c;
  --pearlblue: #4f5e72;
  --greyishblue: #526c7c;
  --lightblue: #ced3da;
  --greengray: #b4bfb7;
  --bluedusty: #768b98;
  --darkergray: #212121;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 1em;
  font-family: var(--font-montserrat);
  font-weight: 500;
  line-height: 1.6;
  color: #4f5e72;
  background-color: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html {
  font-size: 100%;
  overflow-x: hidden;
  background-color: var(--white);
  scroll-behavior: smooth;
  height: 100%;
}

p {
  font-size: 1em;
  font-family: var(--font-montserrat);
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 1.44em;
}

a {
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: var(--orange);
  text-decoration: underline;
  transition: var(--transition);
}

a strong {
  font-weight: 700;
}

a:hover {
  color: var(--black);
  text-decoration: underline;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-15);
}

video {
  height: auto;
  max-width: 100%;
}

.radius-5 {
  border-radius: var(--radius-5);
}

.radius-10 {
  border-radius: var(--radius-10);
}

.radius-15 {
  border-radius: var(--radius-15);
}

.radius-20 {
  border-radius: var(--radius-20);
}

.radius-full {
  border-radius: var(--radius-30);
}

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

.bg_blue {
  background-color: var(--blue);
}

.bg_green {
  background-color: var(--green);
}

.bg_orange {
  background-color: var(--orange);
}

.bg_pearlblue {
  background-color: var(--pearlblue);
}

.bg_greyishblue {
  background-color: var(--greyishblue);
}

.bg_lightblue {
  background-color: var(--lightblue);
}

.bg_lightblue.opacity35 {
  background-color: rgba(0, 0, 0, 0.35);
}

.bg_greengray {
  background-color: var(--greengray);
}

.bg_greengray.opacity35 {
  background-color: rgba(206, 211, 218, 0.35);
}

.bg_bluedusty {
  background-color: var(--bluedusty);
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font-family: var(--font-montserrat);
  font-weight: 500;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button,
.button {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 20px;
  background-color: var(--green);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  padding: 9px 30px;
  transition: var(--transition);
  letter-spacing: -0.2px;
  border: 1px solid var(--green);
  text-decoration: none;
  text-align: center;
}

button:hover,
.button:hover {
  background-color: var(--blue);
  color: var(--white);
  transition: var(--transition);
  border-color: var(--blue);
  text-decoration: none;
}

button.border,
.button.border {
  background-color: var(--white);
  color: var(--green);
  border: 1px solid var(--green);
  text-decoration: none;
}

button.border:hover,
.button.border:hover {
  background-color: var(--blue);
  color: var(--white);
  transition: var(--transition);
  border-color: var(--blue);
  text-decoration: none;
}

button.fillwhite,
.button.fillwhite {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  text-decoration: none;
}

button.fillwhite:hover,
.button.fillwhite:hover {
  background-color: var(--orange);
  color: var(--white);
  transition: var(--transition);
  border-color: var(--orange);
  text-decoration: none;
}

button.borderwhite,
.button.borderwhite {
  background-color: var(--transparent);
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
}

button.borderwhite:hover,
.button.borderwhite:hover {
  background-color: var(--orange);
  color: var(--white);
  transition: var(--transition);
  border-color: var(--orange);
  text-decoration: none;
}

select {
  font-family: var(--font-montserrat);
  font-weight: 500;
  appearance: none;
  border: 0;
  height: 40px;
  border-radius: 10px;
  width: auto;
  display: flex;
  font-size: 16px;
  padding: 0.5em 1.6em;
  background: var(--white) url(../images/select-arrow.svg) center right 20px no-repeat;
  background-size: 7px 4px;
  border: 1px solid #ccc;
}

/* Heading Setup start */
h1 {
  font-size: 3.5em;
  font-weight: 500;
  margin: 0 0 0.3em;
  line-height: 1.15em;
  font-family: var(--font-poppins);
  letter-spacing: -0.2px;
}

h2 {
  font-size: 3.5em;
  font-weight: 700;
  margin: 0 0 0.3em;
  line-height: 1.1em;
  font-family: var(--font-poppins);
  letter-spacing: -1px;
  color: #526c7c;
}

h3 {
  font-size: 2em;
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.3;
  font-family: var(--font-montserrat);
  letter-spacing: -0.6px;
  color: #4f5e72;
}

h4 {
  font-size: 1.375em;
  font-weight: 700;
  /* 22px (30px * 0.73) */
  margin: 0 0 0.6em;
  line-height: 1.4;
  font-family: var(--font-montserrat);
  letter-spacing: -0.2px;
}

h5 {
  font-size: 1.125em;
  font-weight: 500;
  /* 18px */
  margin: 0 0 0.7em;
  line-height: 1.5;
  font-family: var(--font-montserrat);
}

h6 {
  font-size: 1em;
  font-weight: 500;
  /* 16px (matches body) */
  margin: 0 0 1em;
  line-height: 1.6;
  font-family: var(--font-montserrat);
}

h2 b,
h3 b,
h4 b,
h5 b,
h6 b {
  font-weight: 500;
}

@media (max-width: 700px) {
  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.6em;
  }
}

/* Heading Setup end */
/* Column Setting start */
.col-1 {
  width: 8.333333%;
}

.col-2 {
  width: 16.666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333333%;
}

.col-5 {
  width: 41.666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333333%;
}

.col-8 {
  width: 66.666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333333%;
}

.col-11 {
  width: 91.666667%;
}

.col-12 {
  width: 100%;
}

.mb-1 {
  margin-bottom: 1em;
}

.mt-1 {
  margin-top: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mb-4 {
  margin-bottom: 4em;
}

.mb-5 {
  margin-bottom: 5em;
}

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

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

.flex_start {
  display: flex;
  column-gap: 30px;
  align-items: flex-start;
  flex-wrap: nowrap;
  row-gap: 15px;
}

.flex_center {
  display: flex;
  column-gap: 0;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 15px;
}

.align_center {
  display: flex;
  justify-content: center;
}

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

.d-flex {
  display: flex;
}

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

.text-white {
  color: var(--white);
}

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

img.no-radius {
  border-radius: 0;
}

main [class*="col-"] ul,
main [class*="col-"] ol {
  padding-left: 40px;
  margin-bottom: 1em;
}

main [class*="col-"] ul li,
main [class*="col-"] ol li {
  margin-bottom: 0.6em;
}

main [class*="col-"] ul ul,
main [class*="col-"] ol ol {
  margin-bottom: 0.3em;
}

@media (min-width: 768px) {
  .flex_center {
    align-items: flex-start;
    column-gap: 30px;
    flex-wrap: nowrap;
  }
}

@media (min-width: 991px) {
  .flex_center {
    align-items: center;
  }
}

@media (max-width: 767px) {
  [class*="col-"] {
    width: 100%;
  }

  main [class*="col-"] ul,
  main [class*="col-"] ol {
    padding-left: 20px;
  }

  .flex_start {
    display: flex;
    column-gap: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 15px;
  }
}

/* Column Setting end */
/* Table start */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  margin-bottom: 1em;
}

th,
td {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 0.95em;
}

th {
  background: #f2f2f2;
}

tr:nth-child(even) {
  background: #f9f9f9;
}

table h4 {
  margin: 0;
}

/* Table end */

/* Global Text setup start */

.text-large p {
  font-size: 1.3333em;
  line-height: 1.3;
}

/* Global Text setup  */

/* Basic Container Setup start */
.container {
  width: 100%;
  max-width: 1540px;
  padding: 0 24px;
  margin: 0 auto;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 1520px) {
  .section_hero .container {
    max-width: 1490px;
  }

  header .container {
    max-width: 1490px;
  }

  .section_hero {
    padding-top: 90px;
    padding-bottom: 85px;
  }

  header .container {
    max-width: 1490px;
  }
}

@media (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 1080px;
  }
}

@media (max-width: 1099px) {
  .container {
    max-width: 980px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 850px;
  }

  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 880px) {
  .container {
    max-width: 750px;
  }

  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

/* Basic Container Setup end */
/* Flex Setup start */
/* Generic flex container */
.flex {
  display: flex;
}

/* Common direction helpers */
.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

/* Wrap options */
.flex-wrap {
  flex-wrap: wrap;
}

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

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

.gap-36 {
  gap: 2em;
}

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

/* Alignment */
.justify-start {
  justify-content: flex-start;
}

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

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

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

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

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

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

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

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

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

/* Flex Setup end */

.pt-20 {
  padding-top: 20px;
}

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

/* Navigation */
header {
  /* position: relative;
    */
  z-index: 99;
}

.menu-open .menu-toggle::before {
  content: "X";
  position: absolute;
  left: 0;
  right: 2px;
  top: 15px;
  font-family: var(--font-montserrat);
  bottom: 0;
  font-size: 20px;
  color: var(--white);
  font-weight: bold;
}

.menu-open .menu-toggle {
  font-size: 0px;
  background: red;
}

.menu-toggle {
  display: none;
  background: var(--blue);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  line-height: 1.1;
  top: 22px;
  right: 15px;
  z-index: 1001;
  padding: 0;
  width: 50px;
  height: 50px;
  font-size: 0;
  background: var(--blue) url(../images/hamburger-menus.svg) center center no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.menu-toggle:active,
.menu-toggle:focus {
  color: var(--white);
}

nav {
  position: relative;
}

.topmobile-menu {
  display: none;
}

#mainMenu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

#mainMenu>li {
  position: relative;
  margin: 0 15px;
}

#mainMenu>li>a {
  color: var(--black);
  font-family: var(--font-montserrat);
  font-size: 1em;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  transition: var(--transition);
  position: relative;
}

#mainMenu>li.current-menu-item>a {
  color: var(--orange);
}

#mainMenu>li.current-menu-parent .sub-menu>li.current-menu-item>a {
  color: var(--orange);
  background: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

#mainMenu>li.current_page_ancestor>a {
  color: var(--orange);
}

#mainMenu>li.current-menu-ancestor .sub-menu .sub-menu>li.current-menu-item>a {
  color: var(--orange);
  background: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

#mainMenu>li.menu-item-has-children>a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  display: flex;
  border-top: 5px solid #cecece;
  position: absolute;
  right: -15px;
  top: 13px;
}

#mainMenu>li.menu-item-has-children li.menu-item-has-children>a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  display: flex;
  border-top: 5px solid #bfbfbf;
  position: absolute;
  right: 16px;
  top: 19px;
}

#mainMenu a:hover {
  transition: var(--transition);
  color: var(--orange);
}

.hd-col-main {
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hd-col.logo a {
  display: flex;
  background: var(--white);
  z-index: 9;
  position: relative;
  border-radius: 100%;
  padding: 14px;
  max-width: 130px;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.05);
}

.hd-col.logo {
  margin-top: 40px;
}

.headline {
  display: flex;
}

.headline span {
  display: inline-flex;
  width: 33.33%;
  height: 5px;
}

.softblue {
  background-color: var(--green);
}

.orange {
  background-color: var(--orange);
}

.hd-col.links {
  border-radius: var(--radius-10);
  padding-left: 10px;
  padding-right: 10px;
}

.hd-col.links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.hd-col.links ul li a {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey);
  padding: 14px 19px;
  display: flex;
}

.emergencyline .container {
  display: flex;
  justify-content: flex-end;
}

.emergencyline p {
  text-align: right;
  font-size: 0.9em;
  width: auto;
  display: inline-flex;
  justify-content: flex-end;
  background: var(--grey);
  margin: 0;
  color: var(--white);
  padding: 4px 20px;
  border-radius: 0 0 10px 10px;
  column-gap: 7px;
  position: absolute;
}

.emergencyline a {
  color: var(--orange);
}

/* Dropdown Styles - Desktop */
.dropdown-menu,
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bluedusty);
  width: 250px;
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  padding-left: 0 !important;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
}
/* @media (max-width: 1680px) {
  .dropdown-menu,
  .sub-menu:last-child{
    right: -40px;
    left: auto;
  }
} */
.dropdown-menu li,
.sub-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  list-style-type: none;
}

.dropdown-menu li:last-child,
.sub-menu li:last-child {
  border: 0px;
}

.dropdown-menu li a,
.sub-menu li a {
  font-family: var(--font-montserrat);
  padding: 0.5em 1rem;
  transition: background 0.2s;
  display: flex;
  color: var(--white);
  font-size: 0.9em;
  text-decoration: none;
  font-weight: 400;
}

.dropdown-menu li a:hover,
.sub-menu li a:hover {
  background: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  user-select: none;
  margin-left: 1rem;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

span.mobile-sub-toggle {
  display: none;
}

/** Top Bar start */
.top-col-main {
  background: #113256;
}

.tp-col {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.top-col-main .container {
  display: flex;
  justify-content: space-between;
}

.tpex-ph img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.tpex-search img {
  width: 23px;
  height: 22px;
  padding: 0 1px;
}

.tpex-social img {
  width: 24px;
  height: 24px;
}

.tp-col.tp-link ul {
  padding-left: 0;
  display: flex;
  list-style-type: none;
}

.tpex-ph {
  display: flex;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-montserrat);
}

.tpex-ph a {
  display: flex;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-family: var(--font-montserrat);
  align-items: center;
  font-weight: 700;
  margin-left: 5px;
  opacity: 0.8;
  transition: var(--transition);
}

.tpex-ph a:hover {
  opacity: 1;
  transition: var(--transition);
}

.tp-col.tp-link ul li {
  list-style-type: none;
}

.tp-col.tp-link ul li::marker {
  display: none;
  list-style-type: none;
}

.tp-link a {
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 5px;
  display: flex;
  text-decoration: none;
  margin: 0 5px;
  opacity: 0.8;
  transition: var(--transition);
}

.tpex-bookappt a {
  display: flex;
  font-family: var(--font-montserrat);
  font-weight: 500;
  background: var(--orange);
  padding: 8px 25px;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
}

.tpex-bookappt a:hover {
  background: var(--green);
}

.tp-link a:hover {
  opacity: 1;
  text-decoration: none;
  transition: var(--transition);
}

.menu-item-has-children {
  position: relative;
}

@media (min-width: 1200px) {
  .hd-col.menu {
    position: relative;
  }

  #mainMenu>li:hover .dropdown-menu,
  #mainMenu>li:hover .sub-menu {
    /* max-height: max-content !important;
        */
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.2s ease;
    visibility: visible;
  }

  nav ul.sub-menu .menu-item-has-children ul.sub-menu {
    max-height: max-content !important;
    position: absolute;
    top: 0;
    left: -100%;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(0px) translateX(10px) !important;
  }

  nav ul.sub-menu .menu-item-has-children:hover ul.sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0px) translateX(0px) !important;
  }
}

@media (max-width: 1440px) {
  header .container {
    max-width: 100%;
  }
}

@media (max-width: 1399px) {
  header .container {
    max-width: 100%;
  }

  .hd-col.links ul li a {
    padding: 14px 5px;
  }
}

/* Mobile Styles */
@media (max-width: 1199px) {

  #mainMenu>li.menu-item-has-children>a::after,
  #mainMenu>li.menu-item-has-children li.menu-item-has-children>a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  span.mobile-sub-toggle {
    display: flex;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .menu-open .menu-toggle {
    top: 20px;
    right: 20px;
  }

  .menu-open #mainMenu {
    box-shadow: -10px 0px 40px 0px rgba(0, 0, 0, 0.6);
  }

  #mainMenu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--blue);
    flex-direction: column;
    padding: 7em 1rem 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    align-items: flex-start;
    justify-content: flex-start;
  }

  #mainMenu.show {
    right: 0;
  }

  #mainMenu>li {
    margin: 0;
    position: relative;
    width: 100%;
  }

  #mainMenu>li>a {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #34495e;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 0.9em;
  }

  #mainMenu .texthightlight a {
    font-weight: bold !important;
    color: var(--orange) !important;
  }

  .mobile-sub-toggle {
    position: absolute;
    right: 0;
    width: 30px;
    height: 30px;
    justify-content: center;
    display: flex;
    font-size: 1.2em;
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu,
  .sub-menu {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    transition: all 0.2s ease;
    display: none;
  }

  .dropdown-menu.showsub,
  .sub-menu.showsub {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: unset !important;
  }

  .dropdown-menu li a,
  .sub-menu li a {
    padding-left: 1rem !important;
  }

  .hd-col.links {
    margin-right: 80px;
  }

  .topmobile-menu {
    display: block;
  }

  .top-col-main {
    display: none;
  }

  nav ul.sub-menu .menu-item-has-children ul.sub-menu li a {
    padding-left: 25px !important;
    font-size: 0.7em;
  }

  nav ul.sub-menu .menu-item-has-children ul.sub-menu li:first-child {
    border-top: 1px solid #2a3b4a;
  }
}

@media (max-width: 991px) {
  .hd-col.logo a {
    max-width: 115px;
    margin-top: 0;
    padding: 11px;
  }
}

@media (max-width: 650px) {
  .hd-col.links {
    display: none;
  }

  .hd-col-main {
    height: auto;
  }

  .hd-col.logo {
    margin-top: 0px;
  }

  .hd-col.logo a {
    max-width: 100px;
    margin-top: 10px;
    padding: 11px;
    margin-bottom: 10px;
  }

  .emergencyline p {
    display: inline-block;
  }

  .emergencyline .container {
    justify-content: center;
  }

  .menu-toggle {
    top: 2rem;
  }
}

@media (max-width: 380px) {
  #mainMenu {
    width: 300px;
  }
}

/* Hero start */
.section_hero {
  position: relative;
  overflow: hidden;
  background: #fef5df;
  min-height: 735px;
  display: flex;
  align-items: center;
}

.hero_image {
  position: absolute;
  right: 0;
  width: 42%;
  top: 0;
  height: 100%;
}

.hero_image::before {
  content: "";
  display: flex;
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 300px;
  background: url(../images/shape-curve-light-yellow.svg) left center no-repeat;
}

.hero_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.hero_content {
  max-width: 640px;
}

.hero_content h1 {
  font-size: 4.45em;
  letter-spacing: -2px;
  margin-bottom: 18px;
  line-height: 1.2em;
}

.hero_content p {
  font-size: 1.3333em;
  line-height: 1.3;
}

.hero_content .button {
  width: 100%;
}

.hc_col h2 {
  font-size: 30px;
}

.hero_content .hc_col p {
  font-size: 18px;
  line-height: 1.1em;
}

.hero_detail {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid #dee5f5;
  padding: 30px 40px;
  margin-top: 50px;
  display: flex;
  max-width: 317px;
}

.hc_col_main .hc_col {
  padding: 0 8px;
  text-align: center;
}

.hc_col button {
  width: 100%;
}

.hc_col_main .hc_col {
  width: 235px;
}

.hc_col h2 {
  font-size: 30px;
  line-height: 1em;
  margin-bottom: 15px;
}

.hc_col_main {
  column-gap: 20px;
}

.hc_col .button.border {
  margin-top: 9px;
}

@media (max-width: 1199px) {
  .hero_content h1 {
    font-size: 4em;
  }

  .hero_content p {
    font-size: 18px;
  }

  .hero_detail {
    padding: 25px 30px;
    margin-top: 30px;
    max-width: 90%;
  }

  .hc_col_main {
    column-gap: 10px;
  }

  .hero_content {
    max-width: 55%;
  }
}

@media (max-width: 1099px) {
  .hero_image {
    width: 45%;
  }
}

@media (max-width: 991px) {
  .hero_content h1 {
    font-size: 3.5em;
  }

  .hc_col_main {
    column-gap: 0;
    flex-direction: column;
    row-gap: 25px;
  }

  .hc_col_main .hc_col:nth-child(1),
  .hc_col_main .hc_col:nth-child(2) {
    width: 100%;
  }

  .hero_image::before {
    left: -1px;
  }
}

@media (max-width: 880px) {
  .hero_content h1 {
    font-size: 3.2em;
  }

  .hc_col h2 {
    font-size: 26px;
    line-height: 1em;
    margin-bottom: 6px;
  }

  .hero_content {
    max-width: 54%;
  }

  .hero_image {
    width: 46%;
  }
}

@media (max-width: 768px) {
  .hero_content h1 {
    font-size: 2.9em;
    line-height: 1.2em;
  }
}

@media (max-width: 700px) {
  .hero_content {
    margin-bottom: 30px;
    max-width: 100%;
  }

  .hero_content h1 {
    font-size: 2.34em;
    line-height: 1em;
    margin-bottom: 20px;
  }

  .hero_detail {
    padding: 25px 30px;
    margin-top: 0px;
    max-width: 100%;
  }

  .hero_image {
    width: 100%;
    position: relative;
    display: flex;
    height: 660px;
    overflow: hidden;
    right: auto;
    top: 70px;
    margin-top: -70px;
  }

  .section_hero .container {
    position: relative;
    padding-top: 60px;
  }

  .section_hero {
    padding-bottom: 0;
    flex-direction: column-reverse;
    display: flex;
  }

  .hero_image img {
    object-fit: cover;
  }

  .hero_image::before {
    content: "";
    display: flex;
    position: absolute;
    left: 0;
    top: 0px;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(../images/shape-curve-yellow-mobile.svg) top center no-repeat;
  }

  .hero_content p {
    font-size: 16px;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .hero_detail {
    border-radius: 16px;
    padding: 24px;
    align-items: center;
    justify-content: center;
  }

  .hc_col_main .hc_col:nth-child(1),
  .hc_col_main .hc_col:nth-child(2) {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 0;
  }

  .hc_col_main {
    column-gap: 0;
    flex-direction: column;
    row-gap: 32px;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hc_col h2 {
    font-size: 1.67em;
    line-height: 1.1em;
    margin-bottom: 5px;
    letter-spacing: -0.1px;
  }

  .hero_content .hc_col p {
    font-size: 18px;
    line-height: 1.1em;
    padding-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
  .hero_image {
    height: 480px;
  }
}

/* Hero end */
/* Banner start */
.banner-mobile {
  display: none;
}

.banner-desktop {
  display: block;
}

.section_banner_inner {
  text-align: center;
  max-width: 1050px;
  margin: 79px auto 0 auto;
  z-index: 9;
  position: relative;
}

.section_banner_inner h1 {
  color: var(--white);
  font-size: 90px;
  font-weight: bold;
  letter-spacing: -1.4px;
  line-height: 1.2em;
  margin-bottom: 19px;
}

.section_banner .banner_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.1;
}

.section_banner {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 610px;
  border-bottom: 5px solid var(--orange);
  position: relative;
  background-position: top center !important;
}

.section_banner_inner p {
  color: var(--white);
  font-size: 1.3em;
  display: flex;
  line-height: 1.2;
  padding: 0 50px;
}

.banner_detail {
  max-width: 720px;
  margin: 75px auto 0 auto;
  background: var(--white);
  border-radius: var(--radius-15);
  padding: 30px 20px 29px 20px;
  position: relative;
	z-index:99;
}

.hc_col h2 {
  font-size: 30px;
  line-height: 1.05em;
  margin-bottom: 10px;
}

.hc_col a.button {
  width: 100%;
  max-width: 310px;
}

.hc_col a.button.fillsky {
  margin-bottom: 9px;
}

.hc_col_main .hc_col {
  padding: 0 16px;
  text-align: center;
  width: 100%;
}

.hc_col_main {
  column-gap: 20px;
}
@media (max-width: 1280px) {
	.section_banner_inner{	margin: 0px auto 0 auto;}
}
@media (max-width: 1099px) {
  .section_banner_inner {
    text-align: center;
    max-width: 100%;
    margin: 25px auto 0 auto;
    z-index: 8;
    position: relative;
  }

  .section_banner_inner h1 {
    font-size: 72px;
  }

  .section_banner {
    background-size: auto 100% !important;
    background-repeat: no-repeat !important;
    height: auto;
    border-bottom: 5px solid var(--orange);
    position: relative;
    background-position: top center !important;
  }

  .banner_detail {
    margin: 50px auto 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 991px) {

  .hc_col_main .hc_col:nth-child(1),
  .hc_col_main .hc_col:nth-child(2) {
    width: 100%;
  }

  .banner_detail {
    margin: 50px auto 0 auto;
  }

  .section_banner .banner_overlay {
    opacity: 0.2;
  }

  .section_banner_inner p {
    font-size: 1em;
    line-height: 1.3;
  }
}

@media (max-width: 880px) {
  .hc_col h2 {
    font-size: 26px;
    line-height: 1em;
    margin-bottom: 6px;
  }

  .section_banner {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
  }
}

@media (max-width: 700px) {
  .hc_col h2 {
    font-size: 1.67em;
    line-height: 1.1em;
    margin-bottom: 5px;
    letter-spacing: -0.1px;
  }

  .hc_col_main .hc_col:nth-child(1),
  .hc_col_main .hc_col:nth-child(2) {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 0;
  }

  .section_banner {
    height: auto;
  }

  .section_banner_inner h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .section_banner {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
    background-position: top center !important;
  }
}

@media (max-width: 480px) {
  .banner-desktop {
    display: none !important;
  }

  .banner-mobile {
    display: block !important;
  }

  .section_banner {
    height: auto;
    padding-top: 20px;
  }

  .section_banner_inner h1 {
    font-size: 40px;
    text-align: center;
    letter-spacing: -0.9px;
  }

  .section_banner_inner p {
    font-size: 1.2em;
    display: flex;
    line-height: 1.2;
    padding: 0;
    text-align: left;
  }

  .banner_detail {
    margin: 100px auto 0 auto;
  }

  .hc_col_main {
    column-gap: 0;
    flex-direction: column;
    row-gap: 32px;
  }

  .hc_col h2 {
    font-size: 1.9em;
    line-height: 1em;
    margin-bottom: 10px;
    letter-spacing: 0;
  }

  .hc_col_main .hc_col p {
    font-size: 18px !important;
    letter-spacing: 0;
  }

  .hc_col a.button {
    width: 100%;
    max-width: 217px;
  }

  .banner_detail {
    margin: 100px auto 0 auto;
    padding: 24px 20px 23px 20px;
  }

  .section_banner {
    height: auto;
    padding-top: 20px;
    padding-bottom: 45px;
  }

  .section_banner {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
    background-position: top center !important;
  }

  .section_banner .banner_overlay {
    opacity: 0.2;
  }
}

@media (max-width: 380px) {
  .section_banner_inner h1 {
    font-size: 36px;
    text-align: left;
    letter-spacing: -0.9px;
  }

  .banner_detail {
    margin: 50px auto 0 auto;
  }
}

/* Banner end */
/* Section Three Box start */
.threebox_main {
  column-gap: 30px;
  margin-top: 35px;
  align-items: stretch;
}

.threebox_col {
  width: 50%;
  background: var(--white);
  border-radius: var(--radius-15);
  text-align: center;
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;
  padding: 30px 30px 34px 30px;
}

.titlebox p {
  font-size: 1.4em;
  letter-spacing: -0.6px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.softbluebox h2,
.softbluebox .title_box p {
  color: var(--white);
}

.threebox_col .iconbox {
  width: auto;
  max-height: 70px;
  display: flex;
  min-height: 70px;
  margin-bottom: 22px;
  height: 70px;
}

.threebox_col img {
  border-radius: 0;
  width: 70px;
}

.threebox_col h3 {
  line-height: 1.1em;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.orangebox .threebox_col {
  text-align: left;
  align-items: flex-start;
  padding: 30px 20px 25px 30px;
}

.orangebox .threebox_col p {
  color: var(--white);
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 13px;
}

.orangebox .threebox_col .author {
  color: var(--white);
  font-size: 18px;
}

.softbluebox .titlebox p {
  color: var(--white);
}

.orangebox .threebox_col .iconbox {
  margin-bottom: 33px;
}

.space_top {
  padding-top: 160px;
}

.bg_green .titlebox h2,
.bg_green .titlebox p {
  color: var(--white);
}

section.testimonial_slider {
  padding-bottom: 140px;
}

.testimonial_slider .slick-slide>div {
  margin: 0 10px;
}

.testimonial_slider .slick-arrow {
  width: 32px;
  height: 32px;
  top: auto;
  left: calc(50% - 36px) !important;
  right: auto !important;
  bottom: -70px;
  opacity: 0.8;
  transition: var(--transition);
}

.testimonial_slider .slick-arrow:hover {
  opacity: 1;
  transition: var(--transition);
}

.testimonial_slider .slick-arrow::before {
  display: none;
}

.testimonial_slider .slick-prev {
  background: url(../images/arrow-prev.svg) center center no-repeat;
  background-size: 32px 32px;
}

.testimonial_slider .slick-next {
  background: url(../images/arrow-next.svg) center center no-repeat;
  background-size: 32px 32px;
  right: calc(50% - 48px) !important;
  left: auto !important;
}

@media (max-width: 1299px) {
  .testimonial_slider .slick-prev {
    left: calc(50% - 36px) !important;
  }

  .testimonial_slider .slick-next {
    right: calc(50% - 36px) !important;
  }
}

@media (max-width: 1199px) {
  .titlebox p {
    font-size: 26px;
    line-height: normal;
  }

  .threebox_main {
    column-gap: 25px;
    margin-top: 35px;
    align-items: stretch;
  }

  .orangebox .titlebox p,
  .softbluebox .titlebox p {
    margin-top: 0;
  }
}

@media (max-width: 1099px) {
  .space_top {
    padding-top: 80px;
  }
	.space_top.space_top_video {
	   padding-top: 160px;
	}

  .hc_col a.button {
    width: auto;
    min-width: 220px;
  }

  .hc_col br {
    display: none;
  }

  .hc_col .button.border {
    margin-top: auto;
  }
}

@media (max-width: 991px) {
  section.testimonial_slider {
    padding-bottom: 100px;
  }

  .space_top {
    padding-top: 48px;
  }

  .titlebox p {
    font-size: 1.2em;
    line-height: normal;
  }

  .threebox_main {
    column-gap: 0;
    margin-top: 35px;
    align-items: stretch;
    flex-direction: column;
    row-gap: 20px;
  }

  .threebox_col {
    width: 100%;
  }
}

@media (max-width: 880px) {
  .threebox_col {
    width: 100%;
    flex: auto;
    padding: 32px;
  }

  .testimonial_slider .slick-slide>div {
    margin: 0 5px;
  }

  .threebox_main {
    column-gap: 0;
    margin-top: 32px;
    align-items: center;
    flex-direction: column;
    row-gap: 24px;
  }

  .threebox_col h3,
  .threebox_col p {
    min-height: 10px;
  }

  .threebox_col h3 {
    margin: 0 auto 0.3em auto;
    line-height: 1.1em;
    min-height: 10px;
  }

  .testimonial_slider .threebox_main {
    display: block;
  }
}

@media (max-width: 700px) {
  .titlebox p {
    font-size: 18px;
    line-height: 1.2em;
  }

  .space_top {
    padding-top: 48px;
  }

  .hc_col a.button {
    width: auto;
    min-width: 100%;
  }

  .threebox_col .iconbox {
    width: auto;
    max-height: 60px;
    display: flex;
    min-height: 60px;
    margin-bottom: 22px;
    height: 60px;
  }

  .threebox_col h3 {
    margin: 0 auto 0.2em auto;
    padding: 0 24px;
  }

  .threebox_col .button {
    width: 100%;
  }

  .threebox_col p {
    margin-bottom: 1em;
  }

  .orangebox .threebox_col .iconbox {
    margin-bottom: 30px;
    max-height: 70px;
    height: 70px;
  }

  .orangebox .threebox_col {
    background: var(--orange);
    text-align: left;
    align-items: flex-start;
    padding: 32px 24px 32px 24px;
  }

  .orangebox .threebox_main {
    row-gap: 36px;
  }
}
@media (max-width: 427px) {
    .space_top.space_top_video {
        padding-top: 190px;
    }
}

/* Section Three Box end */
/* Section Map start */
.map_main {
  justify-content: space-between;
}

.maptext {
  max-width: 50%;
  padding-right: 60px;
}

.mapbox {
  width: 43.8%;
}

.maptext h2 {
  color: var(--white);
  margin-bottom: 0.6em;
}

.maptext p {
  color: var(--white);
  font-size: 30px;
  margin-bottom: 1em;
  line-height: 1.4em;
  letter-spacing: -0.6px;
}

.location_btn {
  display: flex;
  column-gap: 20px;
}

.map-area img {
  max-height: 550px;
}

.mapbox iframe {
  display: flex;
}

.location_btn select {
  appearance: none;
  border: 0;
  height: 45px;
  border-radius: 10px;
  width: auto;
  max-width: 100%;
  display: flex;
  font-size: 16px;
  font-family: var(--font-osward);
  font-weight: 500;
  padding: 0.5em 2em 0.5em 1.2em;
  background: var(--white) url(../images/select-arrow.svg) center right 13px no-repeat;
  background-size: 7px 4px;
}

.location_btn select option {
  width: auto;
}

@media (max-width: 991px) {
  .location_btn {
    display: flex;
    column-gap: 0;
    flex-direction: column;
    row-gap: 20px;
  }

  .location_btn select {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .maptext h2 {
    margin-bottom: 0.6em;
    font-size: 2em;
  }

  .maptext p {
    font-size: 1em;
    line-height: 1.2;
    letter-spacing: 0;
  }
}

/* Section Map end */
/* Section Subscribe start */
.section_sitstay {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* Section Subscribe end */

.section_twobox .twobox_main {
  max-width: 860px;
  margin: 56px auto 0;
  gap: 2em;
  flex-wrap: wrap;
}

.section_twobox a.button {
  border: 0;
}

.section_twobox .twobox_main .twoboxitem {
  width: calc(50% - 1em);
  padding: 32px 20px;
  background-color: var(--green);
  border-radius: var(--radius-15);
  text-align: center;
}

.section_twobox .twobox_main .twoboxitem:nth-child(2) {
  background-color: var(--bluedusty);
}

.section_twobox .twobox_main .twoboxitem h3 {
  margin-bottom: 32px;
  color: var(--white);
}

.multiple_row .twobox_main {
  margin-top: 0;
}

.section_twobox.multiple_row .twobox_main .twoboxitem h3 {
  margin-bottom: 0;
}

.section_twobox.multiple_row .twobox_main .twoboxitem p {
  color: var(--white);
}

.section_twobox.multiple_row .twobox_main .twoboxitem {
  background: var(--green);
}

.section_twobox.multiple_row .twobox_main .twoboxitem a {
  color: var(--pearlblue);
}

body button.transparent-btn {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

body button.transparent-btn:hover {
  background-color: var(--white);
  color: var(--green);
  border-color: var(--white);
}

button.centered {
  margin: 0 auto;
}

.fourbox_main {
  max-width: 950px;
  margin: 0 auto;
}

.fourbox_main .fourboxitem {
  width: calc(50% - 18px);
  text-align: center;
  border-radius: var(--radius-15);
  background-color: var(--white);
  padding: 1.77777em;
}

.fourbox_main .fourboxitem .icon-img {
  width: 76px;
  margin: 0 auto 1.77777em;
  height: 76px;
}

.fourbox_main .fourboxitem h3 {
  margin-bottom: 10px;
  line-height: 1;
}

.photoslide_main {
  margin: 4em calc(50% - 50vw) 0;
  overflow: hidden;
}

.section_photoslider {
  overflow: hidden;
}

.photoslide img {
  aspect-ratio: 300/300;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-20);
  overflow: hidden;
}

.photoslide {
  margin: 0 16px;
}

.photoslide_main .slick-list {
  margin: 0 -16px;
}

.sitstay_main .titlebox {
  width: 50%;
}

.sitstay_main .subformbox {
  width: 50%;
  padding-left: 40px;
  align-items: center;
  display: flex;
  justify-content: end;
}

.sitstay_main .titlebox * {
  color: var(--white);
}

.sitstay_main .gform-div .gform_footer input[type="submit"] {
  padding: 7px 30px !important;
}

.subformbox .gform-footer.gform_footer.top_label {
  margin: 0;
}

.subformbox .gform_wrapper {
  display: flex;
}

.photoslide_main .slick-slide>div {
  display: flex;
}

.section_photoslider .titlebox h2 {
  margin-bottom: 0.613em;
}

.section_photoslider.remove_margintop .photoslide_main {
  margin-top: 1em;
}

.subformbox form {
  display: flex;
  align-items: center;
}

.sitstay_main .subformbox .form-group {
  margin-right: 16px;
}

.sitstay_main .subformbox .form-group input::placeholder {
  color: var(--black);
}

.sitstay_main .subformbox .form-group input {
  width: 100%;
  border-radius: var(--radius-10);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400 !important;
  color: var(--black);
  line-height: 16px;
  height: 40px;
}

.subformbox form button {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.subformbox form button:hover {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}

@media (max-width: 1399px) {
  .sitstay_main .titlebox p {
    font-size: 24px;
  }

  .sitstay_main .titlebox {
    width: 50%;
  }

  .sitstay_main .subformbox {
    width: 50%;
    padding-left: 0px;
  }
}

@media (max-width: 1299px) {
  .sitstay_main {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
  }

  .sitstay_main .titlebox {
    width: 100%;
    margin-bottom: 0px;
  }

  .sitstay_main .subformbox,
  .sitstay_main .subformbox .form-group {
    width: 100%;
    justify-content: left;
  }

  .maptext {
    padding-right: 0px;
  }
}

@media (max-width: 991px) {
  .map_main {
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 30px;
  }

  .map_main>div {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }

  .mapbox p {
    margin: 0;
  }

  .map-area {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 880px) {
  .twobluebox .titlebox h2 {
    max-width: 400px;
  }

  .twobluebox .titlebox p {
    max-width: 530px;
  }

  .twobluebox {
    padding: 80px 0;
  }

  .photoslide {
    margin: 0 8px;
  }

  .photoslide_main .slick-list {
    margin: 0 -8px;
  }

  .photoslide_main {
    margin-top: 3.1111rem;
  }

  .maptext,
  .mapbox {
    max-width: 100%;
    width: 100%;
  }

  .map_main {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .twobluebox .twobox_main {
    flex-direction: column;
    gap: 1.3333em;
  }

  .fourbox_main .fourboxitem {
    width: 100%;
    padding: 1.77777em 1em;
  }

  .sitstay_main .titlebox p {
    font-size: 18px;
    line-height: normal;
  }

  .subformbox form {
    flex-wrap: wrap;
  }

  .sitstay_main .subformbox .form-group {
    margin-right: 16px;
    width: calc(50% - 8px);
  }

  .sitstay_main .subformbox .form-group:nth-child(2) {
    margin-right: 0;
  }

  .sitstay_main .subformbox .form-group:nth-child(3) {
    margin-right: 0;
    width: 100%;
    margin-top: 16px;
  }

  .subformbox form button {
    margin-top: 16px;
    width: 100%;
  }

  section.section_map .container {
    padding: 0;
  }

  .maptext {
    padding: 0 24px 32px;
  }

  .location_btn {
    flex-direction: column;
    row-gap: 20px;
  }

  .location_btn select {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .section_photoslider .titlebox h2 {
    margin-bottom: 0.613em;
    font-size: 2em;
  }

  .sitstay_main .titlebox h2 {
    font-size: 2em;
    letter-spacing: 0;
  }

  .section_fourbox {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .twobluebox .titlebox h2 {
    max-width: 400px;
    font-size: 2em;
  }

  .twobluebox .twobox_main .twoboxitem h3 {
    margin-bottom: 28px;
  }

  .map-area img {
    max-height: 380px;
  }

  .map-area {
    padding: 0 24px;
  }

  .section_twobox .twobox_main {
    max-width: 100%;
    gap: 1em;
  }

  .section_twobox .twobox_main .twoboxitem {
    width: calc(50% - 0.5em);
  }
}

@media (max-width: 575px) {
  .section_twobox .twobox_main .twoboxitem {
    width: 100%;
  }

  .section_twobox .twobox_main {
    max-width: 100%;
    gap: 0;
    row-gap: 1em;
  }
}

@media (max-width: 359px) {
  .sitstay_main .subformbox .form-group {
    width: 100%;
    margin: 0;
  }

  .sitstay_main .subformbox .form-group:nth-child(2) {
    margin-top: 16px;
  }
}

/* Page Banner start */
.pagebanner_content h1 {
  margin-bottom: 0;
  justify-content: center;
  display: flex;
  color: var(--white);
  text-align: center;
  font-size: 3em;
  max-width: 1400px;
  margin: auto;
}

.section_pagebanner {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Page Banner end */
/* CTA Four col start */
.section_cta_fourcol {
  background-color: var(--greengray);
}

.section_cta_fourcol h2 {
  text-align: center;
}

.section_cta_fourcol .titlebox {
  margin-bottom: 2em;
}

.cta_fourcol {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
  justify-content: center;
}

.cta_fourcol a {
  display: flex;
  width: calc(25% - 23px);
  background: var(--green);
  border-radius: var(--radius-full);
  line-height: normal;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 0.5em 2em;
  min-height: 100px;
  align-items: center;
  transition: var(--transition);
  font-size: 18px;
  text-decoration: none;
  font-family: var(--font-osward);
  font-weight: 500;
}

.cta_fourcol a:hover,
.cta_fourcol a:focus {
  background: var(--orange);
  text-decoration: none;
}

@media (max-width: 1099px) {
  .cta_fourcol a {
    width: calc(33.33% - 23px);
  }
}

@media (max-width: 767px) {
  .cta_fourcol a {
    width: calc(50% - 10px);
  }

  .cta_fourcol {
    column-gap: 20px;
    row-gap: 20px;
  }
}

@media (max-width: 600px) {
  .cta_fourcol a {
    width: 100%;
    border-radius: var(--radius-15);
  }

  .cta_fourcol {
    column-gap: 0;
    row-gap: 12px;
  }
}

/* CTA Four col end */
/* Cardiology Doctors CTA start */
.section_cardiodoc_cta ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 27px;
  row-gap: 25px;
  padding-left: 0 !important;
}

.section_cardiodoc_cta h2 {
  margin-bottom: 0.7em;
  text-align: center;
  color: var(--white);
}

.section_cardiodoc_cta li a {
  color: var(--black);
  display: flex;
  text-align: left;
  column-gap: 15px;
  align-items: center;
  text-decoration: none;
  padding: 1.77777em;
  background-color: var(--white);
  width: 100%;
  border-radius: var(--radius-15);
  transition: var(--transition);
  min-height: 130px;
}

.section_cardiodoc_cta li a:hover {
  transition: var(--transition);
  background-color: var(--orange);
  color: var(--white);
}

.section_cardiodoc_cta h4 {
  font-size: 1.2em;
  margin: 0;
}

.section_cardiodoc_cta li {
  width: calc(33.33% - 18px);
  text-align: center;
  display: flex;
}

.section_cardiodoc_cta .icon-img {
  width: 40px;
  min-width: 40px;
  display: flex;
}

.section_cardiodoc_cta .align_center {
  margin-top: 2em;
}

@media (max-width: 1440px) {
  .section_cardiodoc_cta li a {
    min-height: 195px;
  }
}

@media (max-width: 991px) {
  .section_cardiodoc_cta li {
    width: calc(50% - 18px);
  }

  .section_cardiodoc_cta li a {
    min-height: 160px;
  }
}

@media (max-width: 767px) {
  .section_cardiodoc_cta li {
    width: 100%;
  }

  .section_cardiodoc_cta li a {
    min-height: 10px;
    padding: 1em 1.5em;
  }

  .section_cardiodoc_cta h4 {
    font-size: 1em;
  }

  .section_cardiodoc_cta ul {
    column-gap: 0;
    row-gap: 12px;
  }
}

/* Cardiology Doctors CTA end */
/* Contact Page */
/* section_emergencies_cta */
.section_emergencies_cta h2 {
  margin: 0;
  font-size: 2.2em;
  color: var(--white);
}

.section_emergencies_cta.bg_pearlblue h2 {
  color: var(--white);
}

.number-part h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--orange);
}

.number-part h2 img {
  flex-shrink: 0;
  width: 42px;
}

.number-part a {
  text-decoration: none;
  transition: var(--transition);
}

.number-part a:hover {
  color: var(--white);
  transition: var(--transition);
}

@media (max-width: 1299px) {
  .section_emergencies_cta .emer_main {
    align-items: center;
    justify-content: space-between;
  }

  .section_emergencies_cta h2 {
    font-size: 1.6em;
  }
}

@media (max-width: 880px) {
  .section_emergencies_cta .emer_main {
    flex-wrap: wrap;
  }

  .section_emergencies_cta .emer_main {
    flex-wrap: wrap;
    row-gap: 20px;
    flex-direction: column;
  }

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

@media (max-width: 600px) {
  .section_emergencies_cta h2 {
    font-size: 1.5em;
    line-height: normal;
  }

  .map-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

/* Contact Info */
.contact_info-wrapper {
  display: flex;
  gap: 20px;
}

.contact_info-wrapper .col-6 {
  border-radius: var(--radius-15);
  color: var(--white);
  padding: 30px;
  background-color: var(--bluedusty);
}

.contact_info-wrapper .col-6:nth-child(1) {
  background-color: var(--green);
}

.contact_info-wrapper h3 {
  color: var(--white);
}

.info-list {
  list-style: none;
  padding: 0 !important;
}

.info-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.info-list li .icon {
  width: 20px;
  flex-shrink: 0;
  padding-top: 3px;
}

.info-list li .icon img {
  width: 100%;
}

.info-list li .text a {
  color: var(--white);
  transition: var(--transition);
}

.info-list li .text a:hover {
  color: var(--orange);
  transition: var(--transition);
}

.directions .directions-list {
  padding: 0 0 0 20px !important;
}

.directions .directions-list li {
  margin-bottom: 12px;
}

.map-img {
  width: 100%;
}

img[usemap] {
  max-width: 100%;
  height: auto;
}

.contact_info-wrapper ul.info-list {
  margin-bottom: 0;
}

.directions li {
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .contact_info-wrapper {
    gap: 35px;
  }
}

@media (max-width: 767px) {
  .contact_info-wrapper {
    flex-direction: column;
  }

  .contact_info-wrapper .col-6 {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .emergency-block {
    padding: 25px;
  }

  .contact_info-wrapper h3 {
    font-size: 1.2em;
    letter-spacing: 0;
  }

  .dermatology-block {
    padding: 25px;
  }

  .directions {
    padding: 0 !important;
  }
}

/* Team Page */
.team-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 27px;
  row-gap: 25px;
  justify-content: flex-start;
}

.single.single-teams .section_pagebanner {
  background-color: var(--pearlblue);
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-type-archive-teams .section_pagebanner {
  background-color: var(--pearlblue);
  padding-top: 20px;
  padding-bottom: 20px;
}

.tax-teams_categories .section_pagebanner {
  background-color: var(--pearlblue);
  padding-top: 20px;
  padding-bottom: 20px;
}

.team-item {
  width: calc(25% - 21px);
}

.team-block .heading-content {
  margin-bottom: 60px;
}

.team-block .heading-content h2 {
  color: var(--greyishblue);
}

.team-card {
  /* border-radius: var(--radius-15); */
  background: #fef5df;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 0 1px 1px var(--green-02);
}

.team-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  max-height: 330px;
  width: 100%;
  border-radius: 0px;
  border: 4px solid #fef5df;
  border-bottom: 0;
}

.team-card .team-card-body {
  padding: 20px;
  color: var(--white);
}

.team-card .team-card-body h4 {
  margin: 0 0 0.4em;
}

.team-card .team-card-body a {
  text-decoration: none;
  color: var(--blue);
  /* font-weight: 500; */
}

/* .team-card .team-card-body a:hover {
    color: var(--white);
} */

.team-card .team-card-body .team-credentials {
  line-height: 1.2;
  color: var(--bluedusty);
}

.team-card .team-card-body a.learnmore {
  margin-top: 10px;
  font-size: 16px;
  line-height: 30px;
  /* font-weight: 500; */
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  display: inline-flex;
}

.team-card .team-card-body a.learnmore:hover {
  color: var(--orange);
}

.team-wrapper .team-item .team-card.katharine-e-kiger img,
.team-wrapper .team-item .team-card.david-chevraux-dvm img,
.team-wrapper .team-item .team-card.julia-stone img {
  object-position: center;
}

.team-wrapper p.no-members {
  width: 100%;
  text-align: center;
}

@media (max-width: 1199px) {
  .team-item {
    width: calc(33.33% - 18px);
  }
}

@media (max-width: 880px) {
  .team-item {
    width: calc(50% - 14px);
  }
}

@media (max-width: 575px) {
  .team-item {
    width: 100%;
  }

  .team-card img {
    object-position: top;
  }
}

.learn-more-team {
  margin-top: 10px;
  display: inline-block;
  color: #4f5e72;
  text-decoration: underline !important;
  text-transform: capitalize;
  font-weight: 400;
}

.learn-more-team:hover {
  color: #ff914c !important;
}

/* team end */

/* News List start */
.news_row h2 a {
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
}

.news_row h2 a:hover {
  color: var(--orange);
  transition: var(--transition);
}

.section_news_list .container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 30px;
}

.news_row {
  width: calc(50% - 15px);
  background: rgba(206, 211, 218, 0.2);
  padding: 30px;
  align-items: center;
}

.section_news_list .news_row {
  align-items: flex-start;
}

.news_row h2 {
  font-size: 1.2em;
  line-height: 1.3;
  letter-spacing: 0;
  margin: 0 0 0.2em;
}

.news_row img {
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: auto;
}

.pagination {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin: 30px 0 0 0;
}

.pagination .page-numbers.current {
  color: var(--white);
  background: var(--green);
}

.pagination .page-numbers {
  display: flex;
  font-family: var(--font-osward);
  font-weight: 500;
  border: 1px solid var(--green);
  border-radius: var(--radius-10);
  padding: 5px 15px;
  text-decoration: none;
  line-height: normal;
  color: var(--black);
  margin: 0 3px;
  background: var(--white);
  transition: var(--transition);
  font-size: 0.9em;
}

.pagination a.page-numbers:hover {
  display: flex;
  background: var(--green);
  transition: var(--transition);
  color: var(--white);
}

@media (max-width: 1199px) {
  .news_row {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .news_row {
    padding: 20px;
  }

  .news_row img {
    width: 100%;
  }
}

/* News List end */
/* Search Filter start */
/* .section_news_list {
    padding-top: 25px;
}
*/
.search-filter form.search-form {
  align-items: center;
  display: flex;
  column-gap: 15px;
}

.search-filter {
  padding-top: 80px;
}

.search-filter .container {
  display: flex;
  justify-content: space-between;
}

.search-filter select#category-dropdown {
  min-width: 220px;
}

.search-filter input.search-field {
  width: auto;
  border-radius: var(--radius-10);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400 !important;
  color: var(--black);
  line-height: 16px;
  height: 40px;
}

@media (max-width: 767px) {
  .search-filter .container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 20px;
  }

  .search-filter .search-form label {
    width: 100%;
  }

  .search-filter .cat-dropdown select {
    width: 100%;
  }

  .search-filter input.search-field {
    width: 100%;
  }
}

/* Search Filter end */
/* Archive page css start */
/* .archive-temp .news_row {
    width: 100%;
    margin-bottom: 24px;
}
*/
.archive .pagination {
  padding-bottom: 80px;
}

/* .archive-right {
    width: 300px;
    background: #525151;
    border-radius:15px;
    padding: 30px;
    margin-top:24px;
    margin-left:24px;
    margin-bottom: 80px;
}
.archive .archive-left {
    width: calc(100% - 330px);
}
.archive-temp{
    display:flex;
}
.archive-right section {
    padding: 20px 0px;
}
.archive-right form.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}
.archive-right h2.widget-title {
    color: #ffffff;
    font-size: 28px;
}
.archive-right ul li a {
    text-decoration: none;
    color: #ffffff;
}
.archive-right ul li a:hover {
    color: #e47238;
}
.archive-right ul li {
    list-style: none;
}
*/
.search-form button img {
  width: 15px;
  max-width: 15px;
}

@media screen and (max-width: 1024px) {

  /* .archive-temp {
        display: block;
}
    .archive-left {
        width: 100%;
}
    .archive .archive-right {
        width: 100%;
        margin-left: 0;
}
    .archive .archive-left {
        width: 100%;
}
    */
  .archive .pagebanner_content h1 {
    display: block !important;
  }

  .pagination {
    flex-wrap: wrap;
    row-gap: 5px;
  }
}

@media screen and (max-width: 767px) {
  .search-filter input.search-field {
    padding: 12px 15px;
    font-size: 14px;
  }
}

/* Archive page css end */
/* Gravity form css start */
.default-form-design .ginput_container input,
.default-form-design .ginput_container textarea {
  padding: 6px 20px !important;
  font-family: var(--font-osward) !important;
  color: var(--black) !important;
  outline: 1px solid var(--white);
  border: 1px solid var(--black);
  border-radius: 10px !important;
  background-color: var(--white);
  font-size: 17px !important;
  font-weight: 400 !important;
  width: 100% !important;
}

.default-form-design .gform_legacy_markup_wrapper .top_label .gfield_error {
  margin-bottom: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  background: none !important;
}

.default-form-design .gform_legacy_markup_wrapper form {
  max-width: 650px;
  margin: 0 auto;
}

body .default-form-design .gform_legacy_markup_wrapper ul li.gfield {
  margin: 0 !important;
  padding: 0 !important;
}

.default-form-design .gform_legacy_markup_wrapper li.hidden_label input {
  margin-top: 0 !important;
  min-height: 10px !important;
  line-height: normal !important;
}

.default-form-design .gform_legacy_markup_wrapper {
  margin-bottom: 0 !important;
}

.gform_legacy_markup_wrapper .gform_validation_errors>h2 {
  line-height: normal;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  font-size: 0.8em !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gform_legacy_markup_wrapper div.validation_error {
  border-top-width: 1px !important;
  border-bottom-width: 1px !important;
  font-weight: 500 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.gform_legacy_markup_wrapper .gform_validation_errors>h2:before {
  margin-right: 0em !important;
}

.gform_legacy_markup_wrapper .gform_footer {
  padding: 0 !important;
}

.gform_legacy_markup_wrapper .field_description_below .gfield_description {
  padding-top: 5px !important;
  padding-right: 0 !important;
  font-weight: 500 !important;
  font-size: 0.7em !important;
}

.gform_footer input.button,
.gform_footer input[type="submit"] {
  margin-bottom: 0 !important;
  line-height: normal !important;
  font-family: var(--font-montserrat) !important;
  font-weight: 500 !important;
  font-size: 25px !important;
  background-color: var(--green) !important;
  color: var(--white) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: var(--radius-full) !important;
  padding: 9px 30px !important;
  transition: var(--transition) !important;
  letter-spacing: -0.2px !important;
  border: 1px solid var(--green) !important;
  text-decoration: none !important;
  text-align: center !important;
}

.gform-theme--framework .gform_validation_errors .gform_submission_error {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
}

.gform-theme--framework .gform_validation_errors ol {
  padding-left: 20px;
}

.gform_footer input.button:hover,
.gform_footer input[type="submit"]:hover {
  background-color: var(--blue) !important;
  color: var(--white) !important;
  transition: var(--transition) !important;
  border-color: var(--blue) !important;
  text-decoration: none !important;
}

.gform_footer input.button:focus,
.gform_footer input[type="submit"]:focus {
  outline-color: var(--greengray) !important;
}

.gform_validation_errors ol {
  text-align: left !important;
}

/**--- Referral Forms start ---**/
.referral-form ul.gform_fields li.gfield {
  padding-right: 0;
  margin-right: 0;
}

.referral-form form {
  max-width: 700px !important;
  margin: 0 auto !important;
  text-align: left !important;
}

body .gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

body .gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

body .gform_confirmation_message {
  background: var(--green) !important;
  color: var(--white) !important;
  text-align: center !important;
  font-size: 0.9em !important;
  line-height: normal !important;
  padding: 10px !important;
  border-radius: var(--radius-10) !important;
}

.top_label .gsection_description {
  padding: 0 !important;
  margin-top: 10px !important;
}

.referral-form label.gfield_label,
.referral-form legend.gfield_label {
  margin-bottom: 10px;
  font-size: 0.9em !important;
  font-weight: 600 !important;
  color: var(--black);
  letter-spacing: 0 !important;
  line-height: normal !important;
}

.gform_legacy_markup_wrapper table.gfield_list thead th {
  background: transparent;
}

.gform_wrapper p,
.gform_wrapper strong,
.gform_wrapper em {
  font-size: 0.8em;
  display: flex;
}

.referral-form .top_label input.medium,
.referral-form .top_label select.medium {
  width: 100%;
}

.referral-form .ginput_container input,
.referral-form .ginput_container textarea,
.referral-form .top_label select {
  padding: 6px 20px !important;
  font-family: var(--font-osward) !important;
  color: var(--black) !important;
  outline: 1px solid var(--white) !important;
  border: 1px solid var(--black) !important;
  border-radius: 10px !important;
  background-color: var(--white) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  width: 100% !important;
  text-align: left !important;
  line-height: normal !important;
}

.gform-legacy-datepicker.ui-datepicker .ui-datepicker-title select {
  font-family: var(--font-montserrat) !important;
  font-size: 11px !important;
  height: auto;
  padding-right: 4px;
  appearance: auto;
  background: var(--white);
  border: 1px solid var(--black);
}

.referral-form ul.gform_fields li.gfield:last-child label {
  font-size: 13px;
  text-transform: lowercase;
}

.referral-form .gform_validation_errors>h2.hide_summary {
  margin: 0;
  line-height: normal;
  display: flex;
  align-items: center;
  font-size: 15px !important;
  font-weight: 400 !important;
}

.default-form-design .gform_confirmation_message {
  background: var(--orange) !important;
  padding: 10px 20px !important;
  text-align: center !important;
}

body .referral-form .top_label div.ginput_container {
  margin-top: 0 !important;
}

.referral-form .gfield_description {
  width: 100%;
  padding: 0;
}

.referral-form ul.gfield_checkbox li,
.referral-form ul.gfield_radio li {
  padding: 0 !important;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.referral-form .gf_browser_chrome .gfield_checkbox li input,
.referral-form .gf_browser_chrome .gfield_checkbox li input[type="checkbox"],
.referral-form .gf_browser_chrome .gfield_radio li input[type="radio"] {
  margin-top: 0 !important;
  width: auto !important;
}

.referral-form .gchoice_select_all,
.referral-form ul.gfield_checkbox li input[type="checkbox"]:checked+label,
.referral-form ul.gfield_radio li input[type="radio"]:checked+label {
  font-weight: 500 !important;
}

.referral-form .gform_legacy_markup_wrapper h2.gsection_title {
  padding-bottom: 15px !important;
}

.referral-form .gform_legacy_markup_wrapper .gfield_description {
  padding-right: 0 !important;
}

.referral-form h2.gsection_title {
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  letter-spacing: normal !important;
  font-weight: 500 !important;
}

.referral-form .gform_legacy_markup_wrapper {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

body .gform_legacy_markup_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: calc(100% - 0px) !important;
}

.gform_legacy_markup_wrapper ul.gform_fields li.gfield {
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

body .gform_legacy_markup_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error {
  border: 0 !important;
  background: transparent;
  width: 100% !important;
}

/**--- Referral Forms end ---**/
/*---- Home: blue belt Horizontal image start ---*/
.gform-div .gform_wrapper .gfield {
  flex: 1 1 auto;
  margin-bottom: 10px !important;
}

.gform-div .gform_wrapper form .gform_body .gform_fields {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
}

.gform-div .gform_wrapper .gform-field-label {
  display: none !important;
}

.gform-div label.gform-field-label {
  display: none !important;
}

.gform-div h2.gform_title {
  display: none;
}

.gform-div form {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 10px;
}

.gform-div form input {
  border-radius: 10px !important;
}

.gform-div .gform_body,
.gform-div .gform_fields,
.gform-div .gform_footer {
  display: contents;
}

.gform-div .ginput_complex.ginput_container_name {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.gform-div .gfield {
  margin: 0 !important;
}

.gform-div input[type="text"],
.gform-div input[type="email"] {
  width: 100% !important;
  padding: 8px;
  min-width: 100px;
  height: 40px !important;
  font-family: var(--font-montserrat) !important;
  font-weight: 400 !important;
}

.gform-div .gform_footer input[type="submit"] {
  padding: 12px 30px !important;
  font-size: 16px !important;
  border-radius: 20px !important;
  white-space: nowrap;
  height: auto;
  margin: 0;
  background-color: var(--green) !important;
  font-family: var(--font-montserrat) !important;
  font-weight: 700 !important;
}

.subformbox .gform-div .ginput_complex.ginput_container_name {
  gap: 5px;
}

.gform-div .gform_footer input[type="submit"]:hover {
  background-color: var(--orange) !important;
}

.gform-div .gform-field-label,
.gform-div .screen-reader-text {
  display: none !important;
}

.gform-div .gform_wrapper ::placeholder {
  font-size: 16px;
  color: var(--black);
}

.gform-div .gform_wrapper input[type="text"]:focus,
.gform-div .gform_wrapper input[type="email"]:focus {
  outline: 1px solid var(--white);
  border: 1px solid var(--black);
  border-radius: 10px;
  background-color: var(--white);
}

.gform-div .gform_wrapper input[type="submit"]:focus {
  outline: none !important;
  box-shadow: none !important;
  border: unset !important;
  border-color: unset !important;
}

.gfield_validation_message {
  color: var(--orange) !important;
  text-align: left !important;
}

.gform-div .gform_validation_errors {
  display: none !important;
}

.gform_confirmation_message {
  font-size: 13px !important;
  background: var(--white) !important;
  line-height: normal !important;
  padding: 5px !important;
  color: var(--black) !important;
  margin-top: 15px !important;
  border-radius: 5px !important;
}

.gform-field-label.gform-field-label--type-sub {
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: var(--bluedusty) !important;
}

@media screen and (max-width: 1024px) {
  .gform_legacy_markup_wrapper .gfield_list td.gfield_list_cell input {
    width: calc(100% - 16px) !important;
  }

  .gform_legacy_markup_wrapper table.gfield_list tr {
    border-radius: var(--radius-10);
    border: 1px solid #bbb;
    overflow: hidden;
  }
}

@media screen and (max-width: 991px) {
  .referral-form .gform_validation_errors>h2.hide_summary {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .gform-div form {
    display: block;
    width: 100%;
  }

  .gform-div,
  .gform-div>div,
  .gform-div>div>div {
    width: 100%;
  }

  .subformbox .gform-footer.gform_footer.top_label {
    margin: 20px 0 0 0;
  }

  .gform-div .gform_wrapper input[type="submit"] {
    width: 100% !important;
  }

  .gform-div .gform_wrapper form .gform_body .gform_fields {
    display: block !important;
  }

  .gform-div .gform_wrapper input[type="email"] {
    margin-top: 15px;
  }

  .gform-div .ginput_complex.ginput_container_name {
    display: inline-flex !important;
    width: calc(100% - 0px);
    margin: 0 0px !important;
    gap: 10px !important;
  }

  .gform-div .gform-grid-col {
    display: block;
    width: 50%;
  }

  .gform-div .gform-theme--foundation .gform-grid-col {
    display: block !important;
    width: 50% !important;
    padding: 0;
  }

  .gform-div .gform_wrapper input[type="text"] {
    width: 100% !important;
  }

  .gform-theme--framework .gform_validation_errors .gform_submission_error {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left;
  }

  .gform-theme--framework .gform_validation_errors ol {
    padding-left: 20px !important;
  }
}

@media screen and (max-width: 639px) {
  .gform-div .ginput_complex.ginput_container_name {
    display: inline-flex !important;
    width: calc(100% - 10px);
    margin: 0 0px !important;
    gap: 10px !important;
  }
}

@media screen and (max-width: 360px) {
  .gform-div .ginput_complex.ginput_container_name {
    display: block !important;
    margin: 0;
  }

  .gform-div .gform_wrapper input[type="text"] {
    width: 100% !important;
  }

  .gform-div .gform-theme--foundation .gform-grid-col {
    width: 100% !important;
    padding-inline: 0;
  }

  .gform-div .ginput_container_name>span:first-child input[type="text"] {
    margin-bottom: 15px !important;
  }

  .gform-div .ginput_complex.ginput_container_name {
    display: inline-flex !important;
    width: calc(100%);
    margin: 0 0px !important;
    gap: 0px !important;
    flex-direction: column;
  }
}

/*---- Home: blue belt Horizontal image start ---*/
/* Gravity form css end */
/* Footer start */
/* FOOTER ------------------------------ */
footer {
  background-color: #113256;
  padding: 80px 0px 48px 0px;
}

body>footer>.wrap {
  overflow: visible;
}

body>footer .fatFooter {
  margin-bottom: 4.38em;
  display: flex;
  column-gap: 50px;
}

body>footer .fatFooter .title {
  display: block;
  margin-bottom: 1em;
  font-weight: 500;
  font-size: 1.25em;
  color: var(--white);
  font-family: var(--font-poppins);
}

body>footer .emergency .locations li {
  width: 100%;
}

body>footer .fatFooter a:hover {
  color: var(--greengray);
}

body>footer .fatFooter a {
  color: var(--orange);
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  text-decoration: none;
}

body>footer .fatFooter a:hover,
.fatFooter footer a:active,
body>footer .fatFooter a.on,
.fatFooter .on>a {
  color: var(--greengray);
}

body>footer .fatFooter a.social {
  display: inline-block;
  font-weight: 400;
  line-height: 42px;
  padding: 0 12px 0 55px;
  background: var(--white);
  position: relative;
  color: var(--black);
  font-size: 0.8em;
  height: 42px;
}

body>footer .fatFooter a.social:before {
  content: "";
  background-color: var(--green);
  transition: ease all 200ms;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: center;
}

body>footer .fatFooter a.social:hover:before {
  background-color: var(--orange);
}

body>footer .fatFooter a.social:after {
  content: "";
  transition: ease all 200ms;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 2px var(--orange);
}

body>footer .fatFooter a.social:hover:after {
  opacity: 1;
}

body>footer .fatFooter a.social.facebook:before {
  background-image: url(../images/facebook.svg);
}

.socialWrap {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
}

.instagram {
  margin-left: 0.5em;
}

.linkedin {
  margin-left: 0.5em;
}

.instagram {
  display: inline-block;
  width: 2.25em;
}

.linkedin {
  display: inline-block;
  width: 2.25em;
}

.instagram a:before {
  background-image: url(../images/instagram.svg);
  content: "";
  background-color: var(--green);
  transition: ease all 200ms;
  height: 2.25em;
  width: 2.25em;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.instagram a:hover:before {
  background-color: var(--orange);
}

.linkedin a:before {
  background-image: url(../images/linkedin.svg);
  content: "";
  background-color: var(--green);
  background-size: 24px auto;
  transition: ease all 200ms;
  height: 2.25em;
  width: 2.25em;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.linkedin a:hover:before {
  background-color: var(--orange);
}

body>footer .locations {
  display: flex;
  gap: 0.5em 1em;
  flex-wrap: wrap;
  list-style-type: none;
}

body>footer .locations li {
  padding: 0.5em 0em 0.5em 0em;
  color: #c6c6c6;
  line-height: normal;
  width: 100%;
  font-size: 1em;
}

body>footer .locations li.new-location {
  background: var(--white);
  border-radius: 0.5rem;
  color: var(--black);
  padding: 0.5em;
}

body>footer .locations li.new-location a {
  color: var(--black);
}

body>footer .locations li.new-location a:hover {
  color: var(--orange);
}

body>footer .locations li.new-location .new {
  display: block;
  font-weight: 600;
  font-style: italic;
  color: red;
  font-size: 0.875rem;
}

body>footer .locations li:not(.emergency) a:not(:last-child) {
  text-transform: uppercase;
}

body>footer .locations li a[href^="tel"] {
  font-weight: 400;
}

body>footer .locations li a[href^="tel"]:hover {
  color: var(--greengray);
}

body>footer ul:not(.locations) li {
  margin-bottom: 0.25em;
}

body>footer .wrap {
  font-size: 0.875em;
  display: flex;
  justify-content: left;
}

body>footer div#web-solutions-exposure {
  column-gap: 5px;
}

body>footer .wrap div {
  color: #c6c6c6;
  display: flex;
}

body>footer .wrap nav span:before {
  content: "|";
  margin: 0 0.5em;
  color: #575757;
}

body>footer .wrap a {
  text-decoration: none;
}

body>footer .wrap a.on,
body>footer .wrap a:hover {
  color: var(--greengray);
}

@media (max-width: 1440px) {
  body>footer .wrap {
    flex-direction: column-reverse;
  }
}

@media (max-width: 1099px) {
  body>footer .fatFooter a.social {
    min-width: 160px;
  }

  body>footer .fatFooter a.social {
    height: 36px;
    line-height: 36px;
  }

  body>footer .fatFooter a.social:before {
    content: "";
    display: block;
    position: absolute;
    width: 36px;
    height: 36px;
  }

  body>footer .fatFooter a.social:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 36px;
    height: 36px;
  }

  body>footer .wrap div {
    font-size: 0.9em;
    color: #c6c6c6;
    display: flex;
    flex-direction: column-reverse;
  }

  .dontPrint span:first-child {
    display: none;
  }

  .dontPrint {
    margin-bottom: 20px;
  }

  body>footer div#web-solutions-exposure {
    column-gap: 5px;
    flex-direction: row;
  }
}

@media (max-width: 991px) {
  body>footer .fatFooter {
    display: flex;
    column-gap: 0;
    flex-direction: column;
    row-gap: 30px;
  }

  body>footer .locations {
    display: flex;
    gap: 0;
    column-gap: 15px;
    flex-wrap: wrap;
    list-style-type: none;
  }

  body>footer .emergency .locations li {
    width: calc(25% - 15px);
  }

  body>footer .fatFooter {
    margin-bottom: 0em;
  }
}

@media (max-width: 767px) {
  body>footer .locations li {
    width: calc(50% - 15px);
  }

  body>footer .emergency .locations li {
    width: calc(50% - 15px);
  }

  body>footer .locations li.new-location {
    margin-bottom: 1em;
  }

  body>footer .wrap {
    font-size: 0.875em;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}

@media (max-width: 700px) {
  body>footer .fatFooter .title {
    font-size: 1.25em;
    line-height: 1.3;
  }
}

@media (max-width: 650px) {
  nav.dontPrint span {
    display: none;
  }

  body>footer .wrap div {
    color: #c6c6c6;
    display: flex;
  }

  nav.dontPrint {
    margin-top: 20px;
  }

  body>footer .wrap a {
    text-decoration: none;
    display: flex;
    margin-bottom: 10px;
    max-width: max-content;
  }

  body>footer div#web-solutions-exposure {
    column-gap: 5px;
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 80px 0px 80px 0px;
  }
}

@media (max-width: 390px) {
  body>footer .locations li {
    width: 100%;
  }

  body>footer .emergency .locations li {
    width: 100%;
  }
}

/* Footer end */
/* Review start */
.section_review {
  overflow: hidden;
}

.rev_col {
  text-align: left;
  padding: 30px 20px 30px 30px;
  border-radius: var(--radius-15);
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  height: 100%;
}

.revbox_main {
  max-width: 1390px;
  margin: 0 auto;
}

.rev_col .iconbox {
  width: auto;
  max-height: 70px;
  display: flex;
  min-height: 70px;
  margin-bottom: 30px;
  height: 70px;
}

.rev_col p {
  color: var(--white);
  font-size: 1.1em;
  margin-top: 0;
  margin-bottom: 33px;
  line-height: 1.4em;
}

/* Hide slides by default */
.revbox_main.slick-slider,
.revbox_main .slick-slide {
  opacity: 0;
  visibility: hidden;
}

/* Show once initialized */
.revbox_main.slick-slider.slick-initialized,
.revbox_main.slick-slider.slick-initialized .slick-slide {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.rev_col .author {
  color: var(--white);
  font-size: 18px;
}

.revbox_main .slick-slide>div {
  padding: 0 18px;
  height:100%;
}

.revbox_main .slick-track {
  display: flex !important;
  column-gap: 28px !important;
}

.revbox_main .slick-slide {
  height: auto;
  /* Allow content to define height */
  display: flex;
  align-items: stretch;
  /* Make slides stretch equally */
}

.revbox_main .slick-dots {
  bottom: -40px;
}

.revbox_main .slick-dots li button:before {
  font-size: 12px;
  line-height: 24px;
}

.revbox_main .slick-dots li.slick-active button:before {
  color: var(--orange);
  opacity: 1;
}

.revbox_main .slick-dots li button:before {
  color: var(--lightblue);
  opacity: 1;
}

.revbox_main .slick-next,
.revbox_main .slick-prev {
  display: none !important;
}

@media (max-width: 1099px) {
  .revbox_main .slick-track {
    column-gap: 0px !important;
  }
}

@media (max-width: 1099px) {
  .revbox_main .slick-slide>div {
    padding: 0;
  }
}

@media (max-width: 767px) {

  .revbox_main .slick-next,
  .revbox_main .slick-prev {
    display: flex !important;
  }

  .revbox_main .slick-dots {
    display: none !important;
  }

  .revbox_main .slick-next,
  .revbox_main .slick-prev {
    display: flex;
    bottom: -70px;
    top: auto;
    width: 36px;
    height: 36px;
  }

  .revbox_main.slick-slider {
    margin-bottom: 50px;
  }

  .revbox_main .slick-arrow.slick-disabled {
    opacity: 0.3;
  }

  .revbox_main .slick-arrow,
  .revbox_main .slick-arrow {
    opacity: 0.7;
  }

  .revbox_main .slick-arrow:hover,
  .revbox_main .slick-arrow:focus {
    opacity: 1;
  }

  .revbox_main .slick-next:before,
  .revbox_main .slick-prev:before {
    display: none;
  }

  .revbox_main .slick-prev {
    background: url(../images/arrow-left.svg) center center no-repeat!important;
    background-size: 36px 36px!important;
    left: calc(50% - 40px)!important;
  }

  .revbox_main .slick-next {
    background: url(../images/arrow-right.svg) center center no-repeat!important;
    background-size: 36px 36px!important;
    right: calc(50% - 40px)!important;
  }
}

@media (max-width: 700px) {
  .rev_col p {
    font-size: 1em;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.2em;
    min-height: 10px;
    letter-spacing: -0.2px;
  }
}

@media (max-width: 480px) {
  .rev_col {
    padding: 30px 15px 30px 23px;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    column-gap: 0;
    row-gap: 0;
  }
}

/* Review end */
/* Single Post start */
.single-post .card-image img {
  border-radius: var(--radius-10);
}

.single.single-post .section_pagebanner {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--pearlblue);
}

.single-post article ul,
.single-post article ol {
  padding-left: 30px;
  margin-bottom: 1em;
}

.single.single-post main .container {
  max-width: 960px;
}

.pag-right.single-pag {
  color: #bbb;
}

.single-post header h2 {
  color: var(--black);
  padding: 80px 0px 20px 0px;
}

.single.single-post .gform_wrapper {
  margin-bottom: 1.5em;
}

.single-post header h2 {
  color: var(--black);
  padding: 80px 0px 20px 0px;
}
.single-post header.media-content.has-text-centered h2 {
    color: #526c7c;
}
.single-post .card-image img {
  margin-bottom: 25px;
  max-height: 500px;
  margin-right: auto;
  margin-left: 0;
  width: auto;
/*   height: auto; */
}
@media (max-width: 525px) {
.single-post .card-image img {
  max-height: auto;
 height: auto;
	}
}
.single-post .category-news-events .content.entry-content {
  display: flex;
  flex-direction: column;
}

.single-post .entry-content .alignleft {
  display: inline-block;
  margin-right: 1em;
  float: left;
}

.single-post .entry-content .alignright {
  display: inline-block;
  margin-left: 1em;
  float: right;
}

.single-post .entry-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  float: none;
}

.arrow-right {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  text-align: right;
  border-left: 7px solid #e47238;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-size: 12px;
}

.arrow-left {
  margin-right: 8px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  text-align: right;
  border-right: 7px solid #e47238;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}

.pag-right.single-pag {
  display: inline;
  float: right;
}

.pag-left.single-pag {
  display: inline;
}

.bottom-section {
  padding: 15px 0px 80px 0px;
}

.bottom-section a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #000000;
}

.bottom-section a:hover {
  color: #e47238;
}

.single-post #comments textarea {
  width: 100%;
}

.single-post .comment-form-author,
.single-post .comment-form-email,
.single-post .comment-form-url {
  display: inline-grid;
  width: 33%;
}

.single-post .ginput_container input,
.single-post .ginput_container textarea,
.single-post .top_label select {
  padding: 6px 20px !important;
  font-family: var(--font-osward) !important;
  color: var(--black) !important;
  outline: 1px solid var(--white) !important;
  border: 1px solid var(--black) !important;
  border-radius: 10px !important;
  background-color: var(--white) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  width: 100% !important;
  text-align: left !important;
  line-height: normal !important;
}

@media (max-width: 991px) {
  .single.single-post .flex_center {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .bottom-section .is-narrow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
  }

  .pag-left.single-pag {
    display: inline-flex;
    align-items: center;
  }

  .pag-right.single-pag {
    display: inline-flex;
    float: none;
    align-items: center;
    column-gap: 5px;
  }

  .single-post .entry-content .alignleft,
  .single-post .entry-content .alignright,
  .single-post .entry-content .alignnone {
    display: block;
    margin-right: auto;
    margin-left: auto;
    float: none;
    margin-bottom: 1em;
  }
}

/* Single Post end */
#map {
  border-radius: var(--radius-15);
}

@media (max-width: 480px) {
  #map {
    border-radius: 0;
  }
}

#comments input#submit {
  background: #e47238;
  color: #ffffff;
  cursor: pointer;
  padding: 8px 25px;
}

#comments input#submit:hover {
  background: #6e8476;
}

div#comments {
  padding-bottom: 30px;
}

/* Content manipulation start */
.section_content .flex_start {
  flex-wrap: wrap;
  column-gap: 15px;
}

.section_content .col-6 {
  width: calc(50% - 15px);
}

.section_content img {
  display: inline-block;
}

.section_content.bg_greyishblue .col-12 {
  color: var(--white);
}

.section_content.bg_lightblue a {
  color: var(--black);
}

.section_content.bg_lightblue a:hover {
  color: var(--greyishblue);
}

.section_content.bg_greyishblue a {
  color: var(--white);
}

.section_content.bg_greyishblue a:hover {
  color: var(--orange);
}

.section_content .col-4 {
  width: calc(33.333333% - 20px);
}

.section_content.bg_lightblue ol li a,
.section_content.bg_lightblue ul li a {
  color: var(--black);
}

.section_content.bg_lightblue ol li a:hover,
.section_content.bg_lightblue ul li a:hover {
  color: var(--greyishblue);
}

.section_content.boxes_background .col-4,
.section_content.boxes_background .col-6 {
  background: var(--lightblue);
  background: rgba(206, 211, 218, 0.2);
  padding: 30px;
  border-radius: var(--radius-15);
}

.section_content.boxes_background .flex_start {
  align-items: stretch;
  justify-content: space-between;
  row-gap: 30px;
}

.section_content .titlebox p {
  margin-bottom: 1em;
}

.section_content_image.flex_start .content_image_block {
  align-items: flex-start;
}

@media (max-width: 1199px) {
  .section_content .col-4 {
    width: calc(50% - 15px);
    column-gap: 15px;
  }
}

@media (max-width: 991px) {

  .section_content .col-4,
  .section_content.boxes_background .col-6 {
    width: calc(100%);
    column-gap: 0px;
  }

  .section_content_image.flex_start .content_image_block {
    flex-direction: column;
    column-gap: 0;
  }

  .section_content_image.flex_start .content_image_block .col-6 {
    width: 100%;
  }

  .section_content_image.flex_start .content_image_block .col-6 img {
    margin-bottom: 1em;
  }
}

@media (max-width: 767px) {
  .section_content .col-6 {
    width: 100%;
  }

  .section_content .col-4 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section_content.boxes_background .col-4 {
    padding: 20px 20px 10px 20px;
  }
}

/* Content manipulation end */
/* Referral form start */
.referral_form .gform_legacy_markup_wrapper {
  margin: 0;
}

/* Referral form end */

.logo_box .flex_start {
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  column-gap: 35px;
}

.logo_box .col-4 {
  justify-content: center;
  display: flex;
}

@media (max-width: 600px) {
  .logo_box .flex_start img {
    max-width: 300px;
    margin: 0 auto;
  }

  .logo_box .flex_start {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 0;
  }
}

@media (max-width: 360px) {
  .logo_box .flex_start img {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Specialties Detail page start */

.single.single-specialties .section_pagebanner {
  background-color: var(--pearlblue);
}

.section_specialties_detail .container {
  display: flex;
  column-gap: 25px;
  align-items: flex-start;
}

.spec_right {
  width: 20%;
  padding: 0px 20px 20px 0px;
}

.spec_right a.meet-doctors-btn {
  padding-left: 20px;
  padding-right: 20px;
  border-radius: var(--radius-10);
}

.spec_center ul,
.spec_center ol {
  padding-left: 30px;
  margin-bottom: 0.8em;
}

.spec_center p,
.spec_center ul,
.spec_center li,
.spec_center li a {
  font-size: 0.95em;
}

.spec_center p,
.spec_center ul,
.spec_center li {
  font-weight: 400;
}

.spec_center {
  width: 60%;
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.spec_center.child-width {
  width: auto;
}

.spec_left {
  width: 20%;
  background: var(--green);
  border-radius: var(--radius-15);
  padding: 20px;
}

ul.specialties-list {
  list-style-type: none;
}

.spec_left .sidebar-item a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8em;
  line-height: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.spec_left .sidebar-item.active a {
  font-weight: 600;
  color: var(--lightblue);
}

.spec_left .sidebar-item a:hover {
  color: var(--lightblue);
}

.spec_left .sidebar-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.spec_right ul.specialties-children-list li a {
  font-size: 0.8em;
  line-height: normal;
  display: flex;
  padding: 10px 0;
  font-weight: 400;
  color: var(--black);
}

.spec_right ul.specialties-children-list li a:hover {
  color: var(--orange);
}

.spec_right ul.specialties-children-list {
  padding-left: 20px;
}

.spec_right .include-sidebar {
  margin-top: 25px;
}

.spec_center footer.entry-footer {
  background: none;
  padding: 0;
}

.spec_center table h5 {
  margin: 0;
}

.section_specialties_detail .team-sidebar-title {
  color: var(--white);
}

@media (max-width: 991px) {
  .section_specialties_detail .container {
    flex-direction: column;
    column-gap: 0;
    row-gap: 25px;
  }

  .spec_left {
    background: transparent;
    padding: 0;
  }

  .spec_left .sidebar-item.active a,
  .spec_left .sidebar-item a:hover {
    background-color: var(--blue);
    color: var(--white);
    transition: var(--transition);
    border: 0;
    text-decoration: none;
  }

  .section_specialties_detail .team-sidebar-title {
    color: var(--black);
  }

  .spec_left .sidebar-item a {
    font-family: var(--font-osward);
    font-weight: 500;
    font-size: 16px;
    background-color: var(--orange);
    color: var(--white);
    border: 0;
    cursor: pointer;
    border-radius: var(--radius-full);
  }

  .spec_left,
  .spec_center,
  .spec_right {
    width: 100%;
    padding: 0;
    border: 0;
  }

  ul.specialties-list {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
  }

  .spec_left .sidebar-item {
    border: 0;
  }

  .section_specialties_detail .sidebar-section {
    width: 100%;
  }

  .spec_right {
    border: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .spec_left .sidebar-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8em;
    line-height: normal;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    border: 0;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }
}

/* Specialties Detail page end */

/* Team list page start */
.section_team_list .container {
  display: flex;
  column-gap: 25px;
  align-items: flex-start;
}

.tax-teams_categories .pagination {
  border-top: 1px solid #bbb;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 0;
}

.team-sidebar {
  width: 20%;
  background: var(--green);
  border-radius: var(--radius-15);
  padding: 20px;
}

.team-categories-list li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8em;
  line-height: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

ul.team-categories-list {
  color: var(--white);
  list-style-type: none;
}

ul.team-categories-list li.active a {
  font-weight: 600;
  color: var(--lightblue);
}

.team-categories-list li {
  color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.team-categories-list li:last-child {
  border: 0 none;
}

.team-sidebar h3.team-sidebar-title {
  color: var(--white);
}

.team-list {
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
}

.team-categories-list li a:hover {
  color: var(--lightblue);
}

.pagination .nav-links {
  display: flex;
}

.archive .section_team_list .pagination {
  padding-bottom: 0;
}

@media (max-width: 1199px) {
  .team-list .news_row {
    width: calc(50% - 15px);
  }
}

@media (max-width: 1024px) {
  .team-sidebar {
    width: 35%;
  }

  .team-list {
    width: 65%;
  }

  .team-list .news_row {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .section_team_list .container {
    flex-wrap: wrap;
  }

  .team-sidebar {
    width: 100%;
    padding: 0;
    background: transparent;
  }

  .team-sidebar h3.team-sidebar-title {
    color: var(--black);
  }

  .team-categories-list li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8em;
    line-height: normal;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    padding-left: 20px;
    background-color: var(--orange);
    font-family: var(--font-osward);
    padding-right: 20px;
    text-align: center;
    border: 0;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }

  .team-categories-list li {
    border: 0;
  }

  .team-categories-list li a:hover,
  .team-categories-list li.active a {
    background-color: var(--blue);
    color: var(--white);
    transition: var(--transition);
    border: 0;
    text-decoration: none;
  }

  ul.team-categories-list {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
  }

  .team-list {
    width: 100%;
    justify-content: space-between;
    row-gap: 30px;
  }

  .section_team_list .container {
    display: flex;
    column-gap: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 25px;
  }

  .pagebanner_content h1 {
    font-size: 2.4em;
  }
}

@media (max-width: 575px) {
  .team-list .news_row {
    width: 100%;
  }

  .team-list {
    row-gap: 20px;
  }
}

/* Team list page end */

/* Section Speciality Care page start */
.post-type-archive-specialties .section_pagebanner {
  background-color: var(--pearlblue);
}

.section_speciality_carepage .container {
  display: flex;
  column-gap: 25px;
  align-items: flex-start;
}

.section_speciality_carepage .specp-left {
  width: 20%;
  background: var(--green);
  border-radius: var(--radius-15);
  padding: 20px;
}

.specp-left .sidebar-item a:hover {
  color: var(--greengray);
}

.specp-left .sidebar-item a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8em;
  line-height: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.specp-left .sidebar-item.active a {
  color: var(--greengray);
}

.specp-left .sidebar-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.specp-left .specialties-list .sidebar-item:last-child {
  border: 0;
}

.specp-right {
  width: 80%;
}

.section_speciality_carepage h3.team-sidebar-title {
  color: var(--white);
}

@media (max-width: 991px) {
  .section_speciality_carepage .container {
    flex-direction: column;
    column-gap: 0;
    row-gap: 25px;
  }

  .section_speciality_carepage .specp-left,
  .section_speciality_carepage .specp-right {
    width: 100%;
  }

  .section_speciality_carepage .specp-left {
    background: transparent;
    padding: 0;
  }

  .specp-left .sidebar-item a:hover {
    background-color: var(--blue);
    color: var(--white);
  }

  .section_speciality_carepage h3.team-sidebar-title {
    color: var(--black);
  }

  .specp-left .sidebar-item a {
    font-family: var(--font-osward);
    color: var(--white);
    background-color: var(--orange);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8em;
    line-height: normal;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    border: 0;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }

  .specp-left .sidebar-item {
    border: 0;
  }
}

/* Section Speciality Care page end */

/* Specialty child start */

.child-width .spec_right {
  width: 100%;
  border: 0;
  margin-bottom: 30px;
  padding: 0;
}

.child-width .spec_center {
  width: 100%;
  padding-right: 0;
  border: 0;
}

.child-width .container {
  flex-direction: column-reverse;
  row-gap: 0;
}

.child-width .spec_right a {
  display: inline-flex;
  border-radius: var(--radius-10);
  font-family: var(--font-osward);
  font-weight: 500;
  text-decoration: none;
  background: var(--orange);
  padding: 8px 25px;
  font-size: 16px;
  color: var(--white);
  transition: var(--transition);
}

.child-width .spec_right a:hover {
  transition: var(--transition);
  background: var(--blue);
  text-decoration: none;
}

/* Specialty child end */

/* team single start */

.single-team-div {
  display: flex;
  column-gap: 40px;
  flex-direction: row-reverse;
  align-items: flex-start;
}

.single-team-div .article-left {
  width: 30%;
  border: 1px solid var(--lightblue);
  padding: 20px;
  border-radius: var(--radius-15);
}

.single-team-div .article-right {
  width: 70%;
}

.single-team-div .post-thumbnail img {
  height: auto;
  width: 100%;
  border: 1px solid #dbdbdb;
}

.single-team-div .post-thumbnail {
  margin-bottom: 1em;
}

.single-team-div .credentials strong {
  margin-bottom: 0.5em;
  display: flex;
}

.single-team-div .credentials p {
  font-size: 0.8em;
  margin-bottom: 0.7em;
}

.single-team-page article {
  width: 100%;
}

@media (max-width: 1024px) {
  .single-teams .team-sidebar {
    width: 25%;
  }

  .single-teams .team-list {
    width: 75%;
  }
}

@media (max-width: 991px) {
  .single-teams .team-sidebar {
    width: 100%;
  }

  .single-teams .team-list {
    width: 100%;
  }

  .single-team-div {
    flex-direction: row;
    column-gap: 30px;
  }
}

@media (max-width: 767px) {
  .single-team-div .article-right {
    width: 60%;
  }

  .single-team-div .article-left {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .single-team-div {
    flex-direction: column;
    column-gap: 0;
    row-gap: 20px;
  }

  .single-team-div .article-left,
  .single-team-div .article-right {
    width: 100%;
  }
}

/* team single end */

/* Diabetes and Child start */

.diabetes-and-child .spec_center {
  width: 80%;
}

@media (max-width: 991px) {
  .diabetes-and-child .spec_center {
    width: 100%;
  }
}

/* Diabetes and Child end */

/* Contact Belt start */

.contact-belt h2,
.contact-belt p {
  color: var(--white);
  text-align: center;
}

.contact-belt p {
  margin-bottom: 0;
}

/* Contact Belt end */

/* Tab start **/

.tabs-card {
  width: 100%;
}

/* Tabs header */
.tabs-nav {
  display: flex;
  background: var(--lightblue);
  align-items: center;
  overflow-x: auto;
  /* horizontal scroll on small screens */
  padding-bottom: 42px;
  padding-top: 42px;
  -webkit-overflow-scrolling: touch;
}

.tabs-nav .container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.tabs-nav::-webkit-scrollbar {
  height: 8px;
}

.tabs-nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0px;
}

.tab-btn {
  flex: 0 0 auto;
  background: #fef5df;
  font-family: var(--font-montserrat);
  border: 0;
  color: var(--black);
  padding: 10px 16px;
  border-radius: 0;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.2, 0.9, 0.3, 1);
  min-width: 250px;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--white);
  background: var(--green);
}

/* content panels */
.tab-panels {
  min-height: 180px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.28s ease both;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* small decorative underline that follows active tab (pure CSS fallback) */
.nav-underline {
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
  width: 60px;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.3, 1), width 260ms;
  transform-origin: left center;
  margin-top: 6px;
}

/* responsive tweaks */
@media (max-width: 540px) {
  .tab-btn {
    padding: 10px 12px;
    font-size: 14px;
  }

  /* .tabs-card {
        padding: 14px
    } */
}

/* Tab end **/

/*Specialty Services start*/

.head-with-content {
  max-width: 1160px;
  margin: 0 auto;
}

.tabs-card .section_content_image p {
  font-size: 1.33em;
}

.tabs-card .section_content_image .content_image_block {
  column-gap: 90px;
}

.page.page-id-4578 .content_image_block p:last-child {
  margin-bottom: 0;
}

/*Specialty Services end*/

/*Emergency Care start*/

.emergency-hero-section .hero_image::before {
  background: url(../images/shape-curve-light-yellow-shadow-newww.webp) left center no-repeat;
  background-size: auto 100%;
}

.emergency-hero-section .hero_image img {
  object-position: bottom right;
}

.availability {
  color: #8f2128;
  margin-top: 40px;
  margin-bottom: 30px;
}

.emergency-hero-section .hero_content .button {
  width: auto;
  border-radius: 0;
}

.emergency-hero-section .hero_button {
  margin-bottom: 30px;
  margin-top: 30px;
}

.expect-section {
  background-color: rgba(180, 191, 183, 0.35);
}

.expect-list {
  max-width: 1165px;
  margin: 80px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.expect-bx {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  position: relative;
}

.expect-list-desc {
  background-color: #ffffff;
  height: 100%;
  padding: 25px 45px;
  position: relative;
}

.expect-bx:last-child .expect-list-desc:before {
  width: 0;
}

.expect-list-desc::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: #707070;
  right: 0;
  top: 30px;
  bottom: 30px;
}

.expect-list-desc li {
  list-style: none;
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
}

.expect-list-desc li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #4f5e72;
  border-radius: 50%;
  left: 0;
  top: 9px;
}

.expect-list-desc h5 {
  font-weight: 700;
  margin-bottom: 25px;
}

.expect-title {
  width: 100%;
  max-width: 325px;
  margin: 0 auto;
  background-color: #8f2128;
  padding: 20px;
  text-align: center;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 135px;

}

.expect-title h4 {
  margin: 0;
}

.expect-title h3 {
  color: #ffffff;
  /* text-transform: uppercase; */
  margin-bottom: 0;
}

.blue-list {
  background-color: #4f5e73;
}

.green-list {
  background-color: #6d8375;
}

.payment-info-section {
  background-color: #e5e9ec;
}

.payment-info-section .heading-content {
  margin-bottom: 40px;
}

.payment-info-section .flex_center {
  column-gap: 50px;
}

.payment-info-section .button {
  margin: 10px 25px;
}

.payment-info-section .flex_center {
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .expect-list-desc {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 980px) {
  .expect-bx {
    width: 100%;
    margin-bottom: 30px;
  }

  .expect-title {
    max-width: 100%;
    min-height: 1px;
  }

  .expect-bx:last-child {
    margin-bottom: 0;
  }

  [class*="col-"] {
    width: 100%;
  }

  .flex_center,
  .about_service-wrapper {
    flex-wrap: wrap;
  }

  .expect-list-desc::before {
    width: 0;
  }
}

@media (max-width: 700px) {
  .emergency-hero-section .hero_image::before {
    display: none;
  }

  .emergency-hero-section .hero_image {
    width: 100%;
    position: relative;
    display: flex;
    height: auto;
    overflow: visible;
    right: auto;
    top: auto;
    margin-top: auto;
  }
}

@media (max-width: 600px) {
  .payment-info-section .button {
    margin: 10px 0;
  }

  button,
  .button {
    font-size: 18px;
  }
}

/*Emergency Care end*/

/*Hiring start*/

.cv-col {
  padding-right: 70px;
}

.core-value-section .flex_start {
  align-items: center;
}

.head-desc-section .two-col-li {
  padding-top: 25px !important;
  padding-bottom: 15px !important;
  padding-left: 45px !important;
  flex-wrap: wrap;
  display: flex;
}

.head-desc-section .two-col-li li {
  width: 50%;
}

.head-desc-section .head-with-content ul li ul {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.benifits-flex {
  padding-top: 50px;
}

.benifits-list-flex {
  margin-top: 20px;
  background-color: #fdf5de;
  text-align: center;
  border-radius: 37px;
  padding: 35px;
}

.include-list>li {
  list-style: none;
  text-align: center;
  max-width: 11.5%;
  margin-bottom: 30px;
}

.include-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 1%;
  margin-top: 30px;
}

.include-list li>img {
  max-width: 100px;
  display: block;
  margin: 0 auto 25px auto;
}

.include-list li>p {
  margin: 0;
}

.employee-review-section {
  background-color: #e5e9ec;
}

.employee-review-section h2,
.externship-programs-section h2 {
  margin-bottom: 50px;
}

.rotate-include {
  margin-top: 30px;
  margin-bottom: 30px;
}

.rotate-include .head-with-content {
  width: 100%;
  max-width: 100%;
}

.rotate-include ul {
  max-width: 100% !important;
}

.four-col-li {
  flex-wrap: wrap;
  display: flex;
}

.four-col-li li {
  width: 25%;
}

.head-desc-section.rotate-include ul {
  max-width: 100% !important;
  padding-left: 60px !important;
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.externship-programs-section a {
  text-decoration: none;
  color: #4f5e72;
}
.externship-programs-section .button-wrap a {
  color: var(--white);
}
.externship-programs-section .button-wrap a:hover {
  background-color: var(--blue);
    color: var(--white);
    transition: var(--transition);
    border-color: var(--blue);
    text-decoration: none;
}

.externship-programs-section a.green-link {
  color: var(--green);
}

.externship-programs-section a:hover.green-link,
.externship-programs-section a:hover {
  color: var(--orange);
}

.program-light-box {
  align-items: stretch;
  margin-top: 50px;
}

.program-light-box .col-6 {
  background-color: #fdf5de;
  text-align: center;
  padding: 30px;
  border-radius: 50px;
}

.program-light-box .col-6 p {
  margin-bottom: 10px;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
}

.program-light-box .col-6 p:last-child {
  margin-bottom: 0;
}

.program-light-box .col-6 p a {
  text-decoration: underline;
}

.externships-desc {
  padding-top: 55px;
}

@media (max-width: 1200px) {
  .four-col-li li {
    width: 33%;
  }
}

@media (max-width: 1024px) {
  .cv-col {
    padding-right: 0;
  }

  .head-desc-section .two-col-li {
    padding-left: 35px !important;
  }

  .include-list>li {
    max-width: 25%;
  }

  .four-col-li li {
    width: 50%;
  }

  .head-desc-section.rotate-include ul {
    padding-top: 25px !important;
    padding-bottom: 15px !important;
    padding-left: 35px !important;
  }
}

@media (max-width: 980px) {
  .include-list>li {
    max-width: 33%;
  }

  .core-value-section .flex_start {
    flex-wrap: wrap;
  }

  .rotate-include {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .include-list>li {
    max-width: 100%;
  }

  .include-list {
    flex-direction: column;
  }

  .four-col-li li,
  .head-desc-section .two-col-li li {
    width: 100%;
  }
}

@media (max-width: 600px) {

  .include-list>li,
  .head-desc-section .two-col-li li {
    max-width: 100%;
  }
}

/*Hiring end*/

/***resourece page start***/

.event-list-main .slick-slide {
  padding: 0 30px;
  box-sizing: border-box;
}

.event-list-main .slick-list {
  margin: 0 -30px;
}

.event-bx {
  text-align: center;
  margin-bottom: 60px;
}

.event-bx>img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  margin-bottom: 35px;
}

.event-bx h4 {
  color: #6d8375;
}

.event-bx p {
  margin-bottom: 25px;
}

.search-box {
  display: flex;
  align-items: center;
  max-width: 575px;
  margin: 0 auto;
  position: relative;
}

.search-box input[type="text"] {
  flex: 1;
  padding: 32px 15px 32px 90px;
  border: none;
  outline: none;
  font-size: 16px;
  width: 100%;
  border-radius: 57px;
  background-color: #ffffff;
}

.search-box button {
  background-color: transparent;
  border: 0;
  padding: 0px;
  cursor: pointer;
  position: absolute;
  left: 22px;
  top: 18px;
}

.search-box button:hover {
  opacity: 0.7;
}

.news-section {
  background-color: #e4e9e5;
}

.search-bx-outer {
  margin-top: 35px;
  margin-bottom: 60px;
}

.blog-list .resources-wrapper {
  column-gap: 60px;
  row-gap: 70px;
}

.blog-list .resources-item {
  width: calc(25% - 60px);
}

.blog-list .resources-wrapper img {
  border-radius: 0px;
  margin-bottom: 30px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
}

.blog-list .resources-card-body {
  padding: 15px 0px 0px 0px;
}

.blog-list .resources-card h4 {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* show only 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-list .resources-card h4 a {
  color: #4f5e72;
  text-decoration: none;
}

.blog-list .resources-card h4 a:hover {
  color: #ff914c;
  text-decoration: none;
}

.blog-list .resource-desc p {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* show only 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-list .learnmore {
  color: #6d8375;
}

.blog-list .learnmore:hover {
  color: #ff914c;
}

.subscribe-section .hero_content {
  max-width: 840px;
}
.subscribe-section .hero_content p {
  font-size: 1.4em;
  color: #ffffff;
}
@media (max-width: 767px) {
  .subscribe-section .hero_content p {
      font-size: 18px;
      line-height: normal;
  }
}
@media (max-width: 700px) {
  .section_hero.subscribe-section .container {
      position: relative;
      padding-top: 80px;
      padding-bottom: 20px;
  }
}
.subscribe-section {
  background: #526c7c;
}

.subscribe-section h2 {
  color: #ffffff;
  margin-bottom: 18px;
}

.subscribe-section .hero_image::before {
  background: url(../images/shape-curve-blue.svg) left center no-repeat;
}

.subscribe-section .gform-theme--foundation .gfield .ginput_container_email input.medium {
  inline-size: calc(100% - 0px / 2) !important;
}

.subscribe-section .gform-theme--foundation {
  --gf-form-gap-x: 25px !important;
}

.subscribe-section .gfield--type-email {
  margin-top: 30px !important;
  margin-bottom: 50px !important;
}

.subscribe-section .gform_wrapper .gform_footer .gform_button {
  padding: 22px 60px !important;
  background-color: #fef5df !important;
  color: #4f5e72 !important;
}

.subscribe-section .gform_wrapper .gform_footer .gform_button:hover {
  background-color: #4f5e72 !important;
  color: #ffffff !important;
}

.event-list-section h2 {
  margin-bottom: 45px;
}

.gform-theme--framework .gform_validation_errors .gform_submission_error,
.gform-theme--framework .gform_validation_errors ol a,
.gform-theme--framework .gform_validation_errors .gform-icon {
  color: #ff914c !important;
}

.event-list-section {
  overflow-x: hidden;
}

.subscribe-section .gform-theme--framework .gform_validation_errors {
  background-color: #ffffff;
}

@media (max-width: 1500px) {
  .subscribe-section .hero_content {
    max-width: 620px;
  }
}

@media (max-width: 1400px) {
  .blog-list .resources-wrapper {
    column-gap: 30px;
    row-gap: 30px;
  }

  .blog-list .resources-item {
    width: calc(25% - 30px);
  }
}

@media (max-width: 1100px) {
  .blog-list .resources-item {
    width: calc(33.33% - 30px);
  }

  .subscribe-section .hero_content {
    max-width: 500px;
  }
}

@media (max-width: 980px) {
  .blog-list .resources-item {
    width: calc(50% - 30px);
  }

  .subscribe-section .hero_content {
    max-width: 390px;
  }
}

@media (max-width: 600px) {
  .blog-list .resources-item {
    width: calc(100% - 0px);
  }

  .blog-list .resources-wrapper {
    column-gap: 0px;
  }

  .subscribe-section .gfield--type-email {
    margin-top: 0px !important;
    margin-bottom: 10px !important;
  }
}

/***resourece page end***/

/***Veterinarian Partners page start***/
.continuing-section {
  background-color: #fdf5de;
}

.continuing-section h2 {
  margin-bottom: 45px;
}

.continuing-section h4 {
  font-weight: 400;
}

.continuing-section img {
  border-radius: 0;
}

.continuing-section .flex_center {
  column-gap: 45px;
}

.emergency-cate-bx {
  background-color: #fefaef;
  padding: 45px 115px 40px 45px;
  margin-top: 35px;
  position: relative;
}

.emergency-cate-bx a {
  color: #4f5e72;
  text-decoration: none;
}

.emergency-cate-bx a:hover {
  color: #ff914c;
  text-decoration: none;
}

.emergency-cate-bx p {
  margin-bottom: 35px;
}

.view-default-desc p {
  margin-bottom: 10px;
}

.view-toggle-link {
  margin-top: 35px;
  margin-bottom: 0 !important;
}

.view-toggle-box p:last-child {
  margin-bottom: 0;
}

.view-toggle-box {
  display: none;
  margin-top: 35px;
}

.view-less-link {
  display: inline-flex;
  flex-direction: row;
  color: #6d8375 !important;
  gap: 5px;
}

.emergency-cate-bx h3 {
  color: #526c7c;
}

.view-less-link img {
  max-width: 30px;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}

.view-less-link.active img {
  transform: rotate(0deg);
}

.view-less-link.active {
  gap: 15px;
}

.speciality-cate-bx {
  background-color: #f1f2f4;
  padding: 45px 115px 40px 45px;
  margin-top: 35px;
  min-height: 250px;
}

.referral-form-link {
  max-width: 325px;
  text-align: center;
  position: absolute;
  right: 95px;
  top: 50px;
  background-color: #6d8375;
  color: #ffffff !important;
  border-radius: 45px;
  text-transform: capitalize;
  padding: 33px 50px;
  font-size: 24px;
  line-height: 1.1em;
}

.referral-form-link:hover {
  background-color: #ff914c;
  color: #ffffff;
}

.speciality-with-btn {
  padding-right: 515px;
  min-height: 235px;
}

.speciality-link {
  color: #6d8375 !important;
  text-decoration: underline !important;
}

.speciality-link:hover {
  color: #ff914c !important;
}

.list-referrals p {
  margin-bottom: 5px;
}

.list-referrals {
  margin-bottom: 35px;
}

.view-toggle-box h3 {
  color: #4f5e72;
  text-transform: uppercase;
}

.neurology-bx {
  padding-right: 115px;
}

.neurology-bx .view-default-desc {
  padding-right: 400px;
}

.office-use-bx {
  margin-top: 65px;
  padding-top: 65px;
  border-top: 1px solid #707070;
}

.office-use-bx h3 {
  color: #526c7c;
}

.form-office-use {
  margin: 60px auto 0 auto;
  max-width: 1350px;
}

.gform-theme--framework input,
.gform-theme--framework textarea {
  padding: 20px 27px !important;
  height: auto !important;
  font-size: 20px !important;
  border: 1px solid #707070 !important;
  outline: none !important;
  border-radius: 0 !important;
}

.gform-theme--foundation {
  --gf-form-gap-x: 60px !important;
  --gf-form-gap-y: 55px;
}

.gform_wrapper .gform_footer .gform_button {
  border-radius: 80px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  padding: 22px 30px !important;
}

@media (max-width: 1500px) {
  .emergency-cate-bx {
    padding-right: 45px;
  }

  .referral-form-link {
    right: 45px;
  }

  .speciality-with-btn {
    padding-right: 415px;
  }

  .neurology-bx {
    padding-right: 45px;
  }

  .neurology-bx .view-default-desc {
    padding-right: 370px;
  }
}

@media (max-width: 1100px) {
  .referral-form-link {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    max-width: 432px;
    margin-top: 20px;
  }

  .emergency-cate-bx {
    padding: 30px;
  }

  .neurology-bx .view-default-desc {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .referral-form-link {
    padding: 20px 25px;
    font-size: 20px;
  }
}

/***Veterinarian Partners page end***/

/****style-2 css start*****/

.location-and-service {
  background: #e6e9ec;
}

.location-wrapper {
  display: flex;
  gap: 188px;
  text-align: center;
}

.about_service-wrapper {
  display: flex;
  gap: 90px;
  text-align: center;
}

.location-and-service .locationbox-wrap {
  padding: 37px 0px 77px;
  height: 100%;
  background-color: #6d8375;
}

.location-and-service .bg-blue {
  background-color: #4f5e72;
}

.about-service .about_service-wrap {
  padding: 90px 0px 77px;
  height: 100%;
}

.location-and-service .locationbox-wrap img {
  border-radius: 0px;
  width: 100%;
}

.about-service .about_service-wrap img {
  border-radius: 70px;
  width: 100%;
}

.location-and-service .section-title {
  margin-bottom: 60px;
  color: var(--green);
}

.location-and-service h3,
.location-and-service h5 {
  padding: 0px 15px;
  color: var(--white);
}

.location-and-service h5 {
  margin: 6px 0px 37px 0px;
}

.location-and-service h3 {
  margin-bottom: 0px;
}

.location-desc {
  text-align: left;
  max-width: 390px;
  margin: 0 auto;
  padding: 50px 15px 0px 15px;
}

.about_service-desc {
  text-align: left;
  /* max-width: 390px; */
  margin: 0 auto;
}

.location-desc ul {
  margin: 0px !important;
  padding: 0px 0px 0px 37px !important;
}

.about_service-desc ul {
  margin: 0px !important;
  padding: 15px 0px 15px 37px !important;
}

.location-and-service .location-desc h3 {
  margin-bottom: 34px;
  text-transform: none;
}

.about-service .about_service-desc h3 {
  margin-bottom: 34px;
  margin-top: 55px;
  color: #526c7c;
}

.about-service .about_service-desc h3:first-child {
  margin-bottom: 34px;
  margin-top: 0;
  color: #526c7c;
}

.location-desc li {
  color: var(--white);
}

.about_service-desc li {
  color: #4f5e72;
}

.location-desc img,
.about_service-desc img {
  padding-top: 60px;
}

.my-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* crop to fill, or use contain for full video */
  background: #000;
  /* fallback to avoid white space */
}

@media (max-width: 1199px) {

  .location-wrapper,
  .about_service-wrapper {
    gap: 50px;
  }

  .tabs-card .section_content_image p {
    font-size: 18px;
  }
}

@media (max-width: 980px) {
  .about-service .about_service-wrap {
    padding: 0;
  }

  .about-service .row {
    padding-bottom: 45px;
  }

}

@media screen and (max-width: 767px) {
  .location-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .about_service-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  /* .location-and-service .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .location-and-service h3{
        font-size: 18px;
    }
    .location-and-service h5 {
        font-size: 14px;
        margin: 6px 0px 15px 0px;
    } */
}

.head-with-content {
  border: 1px solid #6e8375;
}

.head-desc-section h2 {
  margin: 0px;
  color: #fff;
  background: #6d8375;
  text-align: center;
  padding: 23px;
  text-transform: uppercase;
}

.head-desc-section h3 {
  margin: 0px;
  color: #fff;
  background: #6d8375;
  text-align: center;
  padding: 23px;
  /* text-transform: uppercase; */
}

/* .head-desc-section p {
	padding-left:20px;
	padding-right:20px;
} */
.head-desc-section ul {
  max-width: 800px;
  margin: 0 auto !important;
  padding: 50px 15px 50px 20px !important;
}

.head-desc-section ul li:last-child {
  margin-bottom: 0px;
}

.head-desc-section .head-with-content-body {
  padding: 50px 0 50px;
  max-width: 880px;
  margin: auto;
}

.head-desc-section .head-with-content-body h4 {
  padding-top: 15px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  max-width: 880px;
  margin: 0 auto !important;
  padding: 20px 0px 40px 0px !important;
  border-top: 1px solid #707070;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  border: 0px;
  font-family: inherit;
  /* uses your theme font */
}

.custom-table th,
.custom-table td {
  padding: 12px 15px;
  text-align: left;
  vertical-align: top;
  border: 0px !important;
}

.custom-table thead th {
  background: none;
  font-weight: bold;
  color: #1a2a3a;
  font-size: 20px;
}

.custom-table tbody tr:nth-child(even) {
  background: #f2f6fa;
}

.custom-table h3 {
  margin: 0px;
  font-weight: 700;
  font-size: 36px;
  color: #4f5e72;
  text-align: right;
  background-color: transparent;
  padding: 0;
  text-transform: none;
}

.custom-table thead th:last-child h3 {
  text-align: left;
}

.custom-table td {
  font-size: 20px;
  color: #4f5e72;
}

.custom-table thead tr th:first-child,
.custom-table tbody tr td:first-child {
  text-align: right;
  min-width: 330px;
}

/* .team-block h2{
    margin-bottom: 0;
    justify-content: center;
    display: flex;
    color: var(--white);
    text-align: center;
    font-size: 3em;
} */

.resources-wrapper,
.resources-new-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 27px;
  row-gap: 25px;
  justify-content: center;
}

.resources-section .heading-content,
.resources-new-section .heading-content {
  margin-bottom: 20px;
  color: var(--blue);
}

.resources-item,
.resources-new-item {
  width: calc(33.33% - 21px);
}

.resources-wrapper img {
  border-radius: 0px;
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center center;
}

.resources-new-wrapper img {
  border-radius: 0px;
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center center;
}

.resources-card-body,
.resources-new-card-body {
  padding: 15px 90px 0px 0px;
  color: var(--blue);
}

.resources-card-body a.learnmore,
.resources-new-card-body a.resources-new-learnmore {
  text-transform: capitalize;
  color: #4f5e72;
  font-weight: 500;
}

.resources-new-card-body a.resources-new-learnmore:hover {
  color: var(--orange);
}

.resources-section button,
.resources-new-section button {
  background: var(--bluedusty);
  border-color: var(--bluedusty);
  text-transform: capitalize;
}

.resources-card-body a.learnmore {
  color: #4f5e72;
  font-weight: 500;
}

.resources-card-body a.learnmore:hover {
  color: var(--orange);
}

.accordion ul {
  padding: 0px 0px 10px 16px;
}

.accordion-header {
  width: 100%;
  padding: 15px 0px;
  font-size: 30px;
  font-weight: 700;
  color: var(--greyishblue);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: var(--font-montserrat);
  gap: 10px;
  text-align: left;
}

.accordion-header .arrow {
  font-size: 35px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow {
  transform: rotate(90deg);
}

.accordion-header.active .arrow {
  transform: rotate(90deg);
  padding-left: 12px;
}

.accordion-header:hover {
  background: transparent;
  color: inherit;
}

.accordion-content {
  display: none;
  padding: 0 0px 15px 0px;
  font-size: 16px;
  color: var(--blue);
  line-height: 1.6;
  font-family: var(--font-montserrat);
}

.accordion-header .arrow {
  min-width: 36px;
}

@media (max-width: 1199px) {

  .resources-card-body,
  .resources-new-card-body {
    padding: 15px 0px 0px 0px;
  }

  .resources-item,
  .resources-new-item {
    width: calc(50% - 21px);
  }
}

@media screen and (max-width: 1024px) {
  .accordion-header {
    font-size: 26px;
  }
}

@media screen and (max-width: 991px) {
  .head-desc-section ul {
    max-width: 100%;
    margin: 0 auto !important;
    padding: 40px 40px 40px 50px !important;
  }

  .table-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto !important;
    padding: 40px 40px 40px 40px !important;
  }

  .custom-table tr:last-child {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 991px) {
  .head-desc-section .head-with-content-body {
    padding: 40px 40px 40px 40px;
  }
}

.head-desc-section .head-with-content-body ul {
  padding: 0 20px !important;
}

/* @media screen and (max-width: 991px) {
	.head-desc-section .head-with-content-body ul {
	padding: 0 40px !important;
}
} */
@media screen and (max-width: 767px) {
  .custom-table thead {
    display: none;
  }

  .custom-table tr {
    display: block;
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
  }

  .custom-table td {
    display: block;
    text-align: left !important;
    font-size: 16px;
    border-bottom: 1px solid #eee;
  }

  .custom-table td:last-child {
    border-bottom: 0;
  }

  .custom-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    color: #1a2a3a;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .accordion .accordion-header {
    font-size: 22px;
  }

  .resources-item,
  .resources-new-item {
    width: 100%;
  }

  .accordion-header,
  .accordion-content {
    padding-left: 0px;
    padding-right: 15px;
  }

  .accordion-header .arrow {
    font-size: 25px;
  }

  .head-desc-section h3 {
    font-size: 1em;
  }

  .resources-new-wrapper img {
    height: auto;
  }
}

footer {
  background-color: #113256;
}

.bg_cream {
  background-color: #fef5df;
}

.bg_darkgrey {
  background-color: #707070 !important;
}

footer h2 {
  color: #ffffff;
}

.mx-860 {
  max-width: 860px;
}

.m-auto {
  margin: auto;
}

.fillgreen {
  background-color: #6d8375;
}

.team-block-text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
}

.team-block-text .text-wrapper {
  padding: 0 90px;
  text-align: center;
}

.team-block-text .text-wrapper h5 {
  margin: 0;
}

/****style-2 css end*****/

/****Continuing Education page start*****/

.continuing-section .hero_image {
  right: auto;
  left: 0;
}

.continuing-section .hero_image::before {
  left: auto;
  right: 0;
  background: url(../images/shape-curve-light-yellow-reverse.svg) right center no-repeat;
}

.continuing-section .hero_content {
  margin-left: auto;
}

.continuing-section .hero_content h3 {
  margin-bottom: 30px;
}

.continuing-section .hero_content h6 {
  margin-top: 30px;
}

.continuing-section .hero_content p:last-child {
  margin-bottom: 0;
  line-height: 1.8em;
}

.dinner-highlight {
  line-height: 1.9em;
}

.time-slot-outer {
  background-color: #fef5df;
  padding: 15px;
  margin-bottom: 35px;
}

.time-title {
  margin-bottom: 50px;
  text-align: center;
}

.time-title h4 {
  color: #526c7c;
}

.time-title h4 span {
  display: inline-block;
  background-color: #ffffff;
  padding: 25px 75px 23px 75px;
}

.time-slot-section {
  padding-top: 20px;
}

.lecture-list .col-6 {
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 20px;
}

.lecture-top {
  position: relative;
  min-height: 195px;
  padding-right: 230px;
  padding-bottom: 10px;
}

.lecture-top h4 {
  color: #526c7c;
}

.lecture-top>img {
  position: absolute;
  right: 0;
  top: 0;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  object-fit: cover;
}

.lecture-list .col-6:first-child {
  border-right: 1px solid #707070;
  padding-left: 35px;
}

.lecture-list .col-6:last-child {
  padding-right: 35px;
}

.lecture-list {
  column-gap: 0;
}

@media (max-width: 700px) {
  .continuing-section .hero_image::before {
    background: url(../images/shape-curve-yellow-mobile.svg) top center no-repeat;
  }
}

/****Continuing Education page end*****/

/* Location Page start */
.map-section {
  background: #ffffff;
}

.map-block-section {
  display: flex;
  gap: 70px;
}

.map-block-section .map-info-panel a:hover {
  color: #ff914c;
}

/* Left map section as image */
.map-container {
  position: relative;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Paw markers */
.marker {
  position: absolute;
  width: 7%;
  cursor: pointer;
}

/* .marker:hover {
  background: #113256;
} */
.marker::after {
  /* content: "🐾";
  transform: rotate(45deg);
  font-size: 18px; */
  content: "";
  background-image: url(../images/map-icon.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 110px;
  display: block;
  vertical-align: middle;
}

.marker:hover::after {
  background-image: url(../images/map-icon-hover.svg);
  background-size: 100%;
  background-position: center center;
}

/* Adjust paw marker placement (match your image) */
.marker.emergency {
  top: 33%;
  left: 13%;
}

.marker.dermatology {
  top: 72%;
  left: 17%;
}

/* Right info panel */
.map-info-panel {
  flex: 1;
  background: #f9f9f6;
  /* padding: 40px 20px 40px 50px; */
  /* border-left: 2px solid #ddd; */
  display: flex;
  flex-direction: column;
}

.map-info-box {
  padding: 40px 20px 40px 50px;
  /* margin-bottom: 15px; */
  /* border-bottom: 2px solid #707070; */
  transition: all 0.3s ease;
  position: relative;
}

.map-info-box:first-child:before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 2px;
  background-color: #707070;
}

.map-info-box h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #556b2f;
}

.map-info-box p {
  margin: 5px 0;
  font-size: 14px;
  color: #333;
}

.map-info-box a {
  font-size: 13px;
  color: #66785f;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
  text-decoration: underline;
}

.map-info-box a {
  text-decoration: underline;
}

.map-info-box.active {
  background: #4f5e72;
}

.map-info-box.active h3,
.map-info-box.active p,
.map-info-box.active a {
  color: #ffffff;
}

.map-info-box:first-child:before {
  left: 50px;
  right: 50px;
}

@media (max-width: 525px) {
  .marker::after {
    height: 55px;
  }
}

/* Location Page end */

/* Continue Education Page start */

.dinner-section h3 {
  padding-top: 20px;
}

.sponsors-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sponsors-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.sponsors-logos figure img {
  max-width: 500px;
  padding-top: 50px;
  height: auto;
}

.sponsors-logos figure .mx-400 {
  max-width: 400px;
  margin: auto;
}

.sponsors-logos figure .mx-270 {
  max-width: 270px;
  margin: auto;
}

@media (max-width: 575px) {
  .sponsors-logos figure img {
    max-width: 100%;
  }

  .sponsors-logos figure .mx-400 {
    max-width: 100%;
  }

  .sponsors-logos figure .mx-270 {
    max-width: 100%;
  }
}

.sponsors-logos figcaption {
  font-weight: 700;
  font-size: 20px;
  padding-top: 20px;
}

.reach-out {
  background-color: #4f5e72;
  padding: 60px 20px 45px;
}

.reach-out p {
  color: #ffffff;
}

.reach-out p a:hover {
  color: #ffffff;
}

@media (max-width: 767px) {

  /* .lecture-top {
    padding-right: 120px;
  }
  .lecture-list .col-6 {
    padding-left: 0;
    padding-right: 0;
  }
  .lecture-list .col-6:first-child {
    padding-left: 0;
  }
  .lecture-top > img {
    width: 100px;
    height: 100px;
  } */
  .lecture-top {
    display: flex;
    flex-direction: column-reverse;
    padding-right: 0;
  }

  .lecture-top>img {
    position: relative;
    margin: 0 auto 20px;
  }

  .lecture-list .col-6 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }

  .time-title h4 span {
    padding: 25px 15px 23px 15px;
  }
}

@media (max-width: 1440px) {
  .lecture-list .col-6 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .lecture-top>img {
    width: 140px;
    height: 140px;
  }

  .lecture-top {
    min-height: 150px;
  }

  .lecture-top {
    padding-right: 150px;
  }
}

@media (max-width: 1100px) {

  .map-block-section,
  .lecture-list {
    flex-direction: column;
  }

  .map-block-section .col-8,
  .map-block-section .col-4,
  .lecture-list .col-6 {
    width: 100%;
  }

  .map-block-section .map-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .lecture-list .col-6 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .lecture-list .col-6:first-child {
    border-right: 0px solid #707070;
  }

  .revbox_main .slick-slide {
    display: block;
  }

  .gform-theme--framework input,
  .gform-theme--framework textarea {
    font-size: 16px !important;
    padding: 14px 15px !important;
  }
}

@media (max-width: 767px) {
  .lecture-top {
    padding-right: 0px;
  }

  .lecture-list .col-6 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .gform-theme--framework input,
  .gform-theme--framework textarea {
    padding: 15px !important;
  }

  .subscribe-section .hero_image::before {
    display: none;
  }

  .subscribe-section .hero_content {
    max-width: 100%;
  }

  .subscribe-section .hero_image {
    width: 100%;
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 30px;
  }

  .subscribe-section {
    flex-direction: column;
  }

  .subscribe-section .gfield--type-email {
    margin-top: 0px !important;
    margin-bottom: 20px !important;
  }
}

/* Continue Education Page end */

.gform-theme--framework .gform_validation_errors {
  border-color: #ff914c !important;
}

@media (max-width: 700px) {
  .hero_content h1 {
    font-size: 2.34em;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}

.button-wrap {
  padding-top: 55px;
}

.map-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.map-popup.active {
  display: flex;
}

.map-popup .popup-inner {
  background: #fff;
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}

.map-popup .popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.map-popup .popup-content h3 {
  margin-top: 0;
}

.map-popup .popup-close {
  top: 5px;
  right: 5px;
  font-size: 18px;
  color: #4f5e72;
  padding: 0px 6px 0px 6px;
  border: 1px solid black;
}

/* @media (max-width: 1199px) {
  .hd-col.menu {
    position: relative;
  }
  .hd-col-main {
    align-items: flex-start;
  }
  .menu-open .menu-toggle {
    right: 0px;
  }
} */

.gfield_description.validation_message.gfield_validation_message {
  font-weight: 700;
}

h2.gform_submission_error.hide_summary {
  font-weight: 700;
}

.gform_validation_errors ol li a.gform_validation_error_link {
  color: #ff914c;
}

.gform-theme--framework .gform_validation_errors .gform_submission_error {
  color: #ff914c;
}

/****client edit 23-10-2025 start****/
.calltobtn {
  background: var(--green);
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: none;
}

header.cust-header {
  position: fixed;
  top: 0;
  z-index: 999;
  /* keeps it above content */
  background: #fff;
  /* or your desired color */
  width: 100%;
}

html,
body {
  overflow-x: hidden;
}


@media (max-width: 1199px) {
  .calltobtn {
    display: block;
  }

  .calltobtn .fillsky {
    background-color: var(--orange);
  }

  .calltobtn .fillsky:hover,
  .calltobtn .fillsky:focus {
    background-color: var(--blue);
  }
}

/****client edit 23-10-2025 end****/

.section_map.bg_pearlblue .map_main .maptext .location_btn a.button:hover {
  background-color: var(--orange);
  color: var(--white);
  transition: var(--transition);
  border-color: var(--blue);
  text-decoration: none;
}

/* html, body,
.container-wrap,
.page-wrap,
.main-content,
#wrapper,
#main-content {
  overflow: visible !important;
height: auto !important; 
} */
.section_content.pt-0 .col-12 p iframe {
  display: flex;
  margin: auto;
  max-width: 100%;
}

@media (max-width: 550px) {
  .section_content.pt-0 .col-12 p iframe {
    height: 220px;
  }
}

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

p.img-center img {
  text-align: center;
  margin: auto;
  padding-top: 15px;
}

.site#page {
  padding-top: 142px;
}

@media (max-width: 1199px) {
  .site#page {
    padding-top: 184px;
  }
}

@media (max-width: 650px) {
  .site#page {
    padding-top: 207px;
  }
}

.section_content .image-center {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: auto;
  gap: 20px;
  flex-wrap: wrap;
}

.image-center img {
  max-width: 500px;
}

@media (max-width: 980px) {
  .image-center img {
    max-width: 100%;
  }
}

.resorces_specialist.child-width .container {
  flex-direction: column;
  row-gap: 0;
}

.resorces_specialist.child-width .container .bottom-section {
  padding: 15px 0px 0px 0px;
}

.resorces_specialist .container {
  display: block;
  column-gap: 25px;
  align-items: flex-start;
}



.single.single-specialties main .container {
  max-width: 960px;
}

.single.single-specialties header h2 {
  color: var(--black);
  padding: 0px 0px 20px 0px;
}

.single.single-specialties .resorces_specialist .post-thumbnail img {
  margin-bottom: 25px;
  /* max-height: 480px; */
  margin-right: auto;
  margin-left: 0;
  width: 100%;
  height: auto;
}

.single.single-specialties .resorces_specialist .post-thumbnail img {
  border-radius: var(--radius-10);
}

.single.single-specialties .resorces_specialist spec_center p {
  font-size: 1em;
  font-family: var(--font-montserrat);
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 1.44em;
}

.resources-new-wrapper .resources-new-desc h4,
.resources-wrapper .resource-desc h4 {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.resources-new-wrapper .resources-new-desc h4 a,
.resources-wrapper .resource-desc h4 a {
  color: var(--blue);
  text-decoration: none;
}

.resources-new-wrapper .resources-new-desc h4 a:hover,
.resources-wrapper .resource-desc h4 a:hover {
  color: var(--orange);
  text-decoration: none;
}

.section_specialties_detail.resorces_specialist.child-width .spec_center p {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.44em;
}

.section_specialties_detail.resorces_specialist.child-width .spec_center ul,
.section_specialties_detail.resorces_specialist.child-width .spec_center li {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.6;
}

.section_specialties_detail.resorces_specialist.child-width .spec_center li {
  margin-bottom: 0.5em;
}

.section_specialties_detail.resorces_specialist.child-width .spec_center ul {
  margin-bottom: 1em;
}
@media (max-width: 1680px) {
.submenu-last-child .sub-menu {
	right:-39px;
	left:auto;
  }
}
.logged-in .site#page {
  padding-top: 110px;
}
@media (max-width: 1199px) {
  .logged-in .site#page {
      padding-top: 150px;
  }
}
@media (max-width: 782px) {
  .logged-in .site#page {
      padding-top: 137px;
  }
}
@media (max-width: 650px) {
  .logged-in .site#page {
      padding-top: 161px;
  }
}


/* New style added */
.custom-button-wrapper a.button.border {
    border: 0 !important;
	justify-content:center !important;
    background: transparent !important;
}
.custom-button-wrapper a.button.border:hover {
    color: #4f5e72 !important;
}

/* @media (max-width: 767px) {
	.custom-button-wrapper a.button.border{
		justify-content: center !important;
	}
} */


/* Home page Video banner */
.custom-button-wrapper video.banner-video {
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
    top: -1px;
}
.section_banner.video_banner_overlay {
	height: 870px /*900px*/;
}
.section_banner.video_banner_overlay .banner_detail{
	    margin: 415px auto 0 auto;
}
.video_banner_overlay::before {
	position: absolute;
    content: "";
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
	background-color: rgba(0, 0, 0, 0.29);
}

body .custom-button-wrapper a.button.border {
    justify-content: center !important;
}
@media screen and (min-device-width: 1600px){ 
    .section_banner.video_banner_overlay {
		height:635px;
	}
	.section_banner.video_banner_overlay .banner_detail{
	    margin: 170px auto 0 auto;}
}
@media screen and (min-device-width: 1100px) and (max-device-width: 1600px) { 
    .section_banner.video_banner_overlay {
		height:560px;
	}
	.section_banner.video_banner_overlay .banner_detail{
	    margin: 90px auto 0 auto;
}
}
@media (max-width: 1099px) {
/* 	.custom-button-wrapper video.banner-video {	
    	height: 900px;
	} */
	.section_banner.video_banner_overlay {
		height:500px;
	}
	.section_banner.video_banner_overlay .banner_detail{
	    margin: 130px auto 0 auto;
}
}
@media (max-width: 991px) {
/* 	.custom-button-wrapper video.banner-video {	
		height: 100%;
	} */
	.section_banner.video_banner_overlay .banner_detail {
        margin: 205px auto 0 auto;
	}
}
@media (max-width: 700px) {
	.section_banner.video_banner_overlay {
		height:auto;
	}
    .section_banner.video_banner_overlay .banner_detail {
        margin: 70px auto 0 auto;
    }
	.section_threebox.bg_green.space_top.space_top_video {
	padding-top:48px;
}
}
@media (max-width: 480px) {
    .section_banner.video_banner_overlay .banner_detail {
        margin: 70px auto 0 auto;
    }
}
/* @media (max-width: 427px) {
    .space_top.space_top_video {
        padding-top: 210px;
    }
} */
@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    #input_6_2 .gchoice label {
      -webkit-text-fill-color:#000000 !important;
    }
  }
}

.gform_legacy_markup_wrapper.gf_browser_safari .gfield_checkbox li input, .gform_legacy_markup_wrapper.gf_browser_safari .gfield_checkbox li input[type=checkbox], .gform_legacy_markup_wrapper.gf_browser_safari .gfield_radio li input[type=radio]{
	width:13px !important;
	padding:0px !important;
}
.referral-form .top_label input.medium,
.referral-form .top_label select.medium {
    width: 100%;
    display: flex !important;
    align-items: center !important;
}
.custom-button-wrapper.video_banner_overlay a.button.border {
	border: 1px solid var(--green) !important;
	font-family: var(--font-montserrat);
    font-weight: 700;
}
.custom-button-wrapper.video_banner_overlay a.button.border:hover {
	background-color: var(--blue) !important;
    color: var(--white) !important;
    transition: var(--transition);
    border-color: var(--blue) !important;
    text-decoration: none;
}



/* Date: 21-11-25 Form changes start */
label.gfield_label.gform-field-label {
    display: inline-block;
}
 
span.gfield_required.gfield_required_asterisk {
    margin-left: 4px;
}
.gform_legacy_markup_wrapper .gfield_error .gfield_label {
  color: var(--black) !important;
}
.gform_legacy_markup_wrapper .validation_message,
.gform_legacy_markup_wrapper .field_description_below .gfield_description {
  margin-block-start: var(--gf-desc-space) !important;
  font-weight: 700 !important;
  font-size: 13px  !important;
      color: var(--orange) !important;
}

.referral-form .gform_wrapper form#gform_21 .gfield_checkbox .gchoice {
  display: flex;
  gap: 10px;
}
.referral-form .gform_wrapper form#gform_21 .gfield_checkbox input[type="checkbox"] {
  padding: 0 !important;
  border-radius: 3px !important;
  width: 13px !important;
  height: 13px !important;
  margin: 3px 0 0 0 !important;
  cursor: pointer;
}
.referral-form .gform_wrapper form#gform_21 .gfield_checkbox input[type="checkbox"]:checked {
  border-color: var(--gf-ctrl-choice-check-color) !important;
}
.referral-form .gform_wrapper form#gform_21 .gfield_checkbox input[type="checkbox"]:before {
  background: var(--gf-ctrl-choice-check-color) !important;
  content: var(--gf-icon-ctrl-checkbox) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #fff !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 4px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  
}
.referral-form .gform_wrapper form#gform_21 .gfield_checkbox input[type="checkbox"] + label.gform-field-label {
  margin:0 !important;
  width: auto !important;
  cursor: pointer !important;
  color: var(--black) !important;
}
.gform_legacy_markup_wrapper li.gfield_error div.ginput_complex.ginput_container label, .gform_legacy_markup_wrapper li.gfield_error ul.gfield_checkbox, .gform_legacy_markup_wrapper li.gfield_error ul.gfield_radio,.gform_legacy_markup_wrapper li div.ginput_complex.ginput_container label, .gform_legacy_markup_wrapper li ul.gfield_checkbox, .gform_legacy_markup_wrapper li ul.gfield_radio {
  color: var(--black) !important;
}

.gform_legacy_markup_wrapper div.validation_error {
  border-color: #ff914c !important;
  color: #ff914c !important;
  background-color: rgba(192,43,10, 0.03);
  padding: 20px !important;
  text-align: left !important;
}
.gform_legacy_markup_wrapper div.validation_error h2.gform_submission_error {
  display: flex-start !important;
  color: #ff914c !important;
  gap: 10px;
  font-family: Montserrat, sans-serif !important;
  justify-content: flex-start;
  flex-direction: row !important;
}
.gform_legacy_markup_wrapper .gform_validation_errors>h2:before {
 background: url(../images/error-icon.webp) center center no-repeat !important;
 width: 20px !important;
 height: 20px !important;
 flex-shrink: 0 !important;
}
.gform_legacy_markup_wrapper .gform_validation_errors>h2 .gform-icon.gform-icon--circle-error {
  display: none;
}
.gform-theme--framework .gform_validation_errors:focus {
  outline: none !important;
}
.referral-form .gf_browser_chrome .gfield_checkbox li input, .referral-form .gf_browser_chrome .gfield_checkbox li input[type="checkbox"], .referral-form .gf_browser_chrome .gfield_radio li input[type="radio"] {
  margin-top: -2px !important;
}
.gform_legacy_markup_wrapper.gf_browser_safari .gfield_checkbox li input, .gform_legacy_markup_wrapper.gf_browser_safari .gfield_checkbox li input[type=checkbox], .gform_legacy_markup_wrapper.gf_browser_safari .gfield_radio li input[type=radio] {
  margin-top: 0 !important;
}

.referral-form .gform_wrapper form#gform_16 ul.gfield_checkbox li, .referral-form .gform_wrapper form#gform_16 ul.gfield_radio li {
  display: inline-block !important;
  width: 33.33% !important;
}
.referral-form .gform_wrapper form#gform_16 ul.gfield_checkbox li .gform-field-label, .referral-form .gform_wrapper form#gform_16 ul.gfield_radio li .gform-field-label{
      padding-left: 5px !important;
}

@media screen and (max-width: 991px) {
    .referral-form .gform_validation_errors>h2.hide_summary {
        flex-direction: row !important;
        align-items: center !important;
    }
}
@media screen and (max-width: 767px){
  .referral-form form {
        max-width: 100% !important;
  }
}
@media screen and (max-width: 720px) {
    .gform-theme--foundation .gform_fields {
        column-gap: 0 !important;
    }
}
@media (max-width: 639px) {
  .referral-form label.gfield_label, .referral-form legend.gfield_label {
    display: block !important;
  }
  .referral-form .gform_wrapper form#gform_16 ul.gfield_checkbox li, .referral-form .gform_wrapper form#gform_16 ul.gfield_radio li {
    display: flex !important;
    width: 100% !important;
  }
  .referral-form .gform_wrapper form#gform_16 ul.gfield_checkbox li .gform-field-label, .referral-form .gform_wrapper form#gform_16 ul.gfield_radio li .gform-field-label{
      padding-left: 0 !important;
}
}
/* Date: 21-11-25 Form changes End */
.team-filter-form {
	display:flex;
	justify-content:flex-end;
	padding-bottom: 25px;
}
@media screen and (max-width: 400px) {

	.team-filter-form select {
		max-width:315px !important;
	}
}
@media screen and (max-width: 1099px) {
   .team-filter-form {
	justify-content:center;
}
	.team-filter-form select {
		max-width:auto !important;
	}
}
.team-filter-form select {
	    background-size: 15px 8px;
		max-width:auto;
/* 	    background-color: var(--pearlblue);
		color: #ffffff; */
	outline: unset;
	padding:5px 35px 5px 15px;
	cursor:pointer;
	    background: var(--white) url(../images/select-arrow.svg) center right 13px no-repeat;
    background-size: 15px 8px;
	transition: background-position 0.2s ease, transform 0.2s ease;
}
 .team-filter-select.is-open select {
		    background-size: 15px 8px;
		max-width:auto;
	outline: unset;
	padding:5px 35px 5px 15px;
	cursor:pointer;
	    background: var(--white) url(https://pvesc.kinsta.cloud/wp-content/uploads/2025/12/up-arrow.svg) center right 10px no-repeat;
    background-size: 23px 23px;
	transition: background-position 0.2s ease, transform 0.2s ease;
}




.team-block .doctor_filters {
  background: #d8dce2;
  padding: 30px 0;
  margin-bottom: 50px;
}
.team-block .doctor_filters .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.team-block .doctor_filters .filter_btn {
  border: 0;
  background: #fef5df !important;
  color: #113256 !important;
  font-weight: 700;
  padding: 11px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
/*   box-shadow: inset 0 0 0 1px transparent; */
	box-shadow: none !important;
  font-size: 18px;
  flex: 0 0 calc((100% - (10px * 4)) / 5);
  line-height: 1;
  font-family: "Montserrat", sans-serif;
	text-decoration:none;
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
}
.team-block .doctor_filters a.filter_btn.active, .team-block .doctor_filters a.filter_btn.current, .team-block .doctor_filters a.filter_btn.is-active,
.team-block .doctor_filters .filter_btn:hover {
  background: #113256 !important;
  color: #ffffff !important;
  box-shadow: inset 0 0 0 1px #113256 !important;
}
.single-specialties.postid-391 p img {
	margin-bottom:25px;
}