@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,700|Noto+Sans+TC:300,400,700&display=swap&subset=chinese-traditional,korean");
@import url(https://cdn.rawgit.com/openhiun/hangul/14c0f6faa2941116bb53001d6a7dcd5e82300c3f/nanumbarungothic.css);
/* Dark - Light Theme Styles */
:root {
  --primary-color:        #4285f4;
  --primary-color-dark:   #0d47a1;
  --secondary-color:      #a6c;
  --secondary-color-dark: #93c;
  --default-color:        #2bbbad;
  --default-color-dark:   #00695c;
  --info-color:           #33b5e5;
  --info-color-dark:      #09c;
  --success-color:        #00c851;
  --success-color-dark:   #007e33;
  --warning-color:        #fb3;
  --warning-color-dark:   #f80;
  --danger-color:         #ff3547;
  --danger-color-dark:    #c00;
  --elegant-color:        #2e2e2e;
  --elegant-color-dark:   #212121;
  --stylish-color:        #4b515d;
  --stylish-color-dark:   #3e4551;
  --unique-color:         #3f729b;
  --unique-color-dark:    #1c2331;
  --special-color:        #37474f;
  --special-color-dark:   #263238;
  --white:                #fff;
  --black:                #000;
  --grey-slight:          #ddd;
  --grey-light:           #f5f5f5;
  --grey:                 #9e9e9e;
  --grey-dark:            #121212;
  --white-light:          #fafafa;
  --light:                #FCFCFC;
  --light-grey:           #EBEBEB;
  --dark:                 #333333;
  --dark-grey:            #434343;
  --dark-blue:            #0077FF;
  --light-blue:           #3694FF;
  --rgba-black-slight:    rgba(0, 0, 0, 0.1);
  --rgba-black-light:     rgba(0, 0, 0, 0.35);
  --rgba-black-strong:    rgba(0, 0, 0, 0.70);
  --rgba-blue-grey-slight:rgba(96, 125, 139, 0.1);
  --rgba-blue-grey-light: rgba(96, 125, 139, 0.35);
  --rgba-blue-grey-strong:rgba(96, 125, 139, 0.7);
  --rgba-stylish-slight:  rgba(62, 69, 81, 0.1);
  --rgba-stylish-light:   rgba(62, 69, 81, 0.3);
  --rgba-stylish-strong:  rgba(62, 69, 81, 0.7);
  --brand-secondary-color: #5f6061;
  --brand-beige-color:     #d1c3b8;
}

html {
  --white-black-color: var(--white);
  --black-white-color: var(--black);
  --bg-color: var(--white-light);
  --main-color: var(--white-light);
  --single-main-color: var(--white-light);
  --bg-comment-color: var(--light);
  --text-color: var(--dark);
  --link-color: var(--primary-color-dark);
  --comment-link-color: var(--danger-color-dark);
  --bg-quick-menu: var(--rgba-black-strong);
  --bg-list-group: var(--white-light);
  --list-group-border: var(--rgba-black-slight);
  --gradient-base: var(--white);
  --top-banner-text: var(--dark-grey);
  --bg-breadcrumb: var(--light-grey);
  --text-breadcrumb: var(--dark-grey);
  --bg-section-info: var(--grey-slight);
  --bg-program-title: var(--primary-color-dark);
  --bg-program-list: var(--white-light);
  --text-programs-small: var(--grey);
  --bg-navbar: var(--white);
  --bg-dropdown: var(--white);
  --bg-card: var(--white);
  --bg-card-body: var(--white);
  --text-event-date: var(--unique-color-dark);
  --bg-related-page-link: var(--brand-secondary-color);
}

html[data-theme="dark"] {
  --white-black-color: var(--black);
  --black-white-color: var(--white);
  --bg-color: var(--dark-grey);
  --main-color: var(--dark);
  --single-main-color: var(--dark-grey);
  --bg-comment-color: var(--elegant-color);
  --text-color: var(--light);
  --link-color: var(--primary-color);
  --comment-link-color: var(--danger-color);
  --bg-quick-menu: var(--rgba-black-light);
  --bg-list-group: var(--grey);
  --list-group-border: var(--grey-slight);
  --gradient-base: var(--dark-grey);
  --top-banner-text: var(--light-grey);
  --bg-breadcrumb: var(--dark-grey);
  --text-breadcrumb: var(--light-grey);
  --bg-section-info: var(--dark);
  --bg-program-title: var(--primary-color);
  --bg-program-list: var(--grey);
  --text-programs-small: var(--white-light);
  --bg-navbar: var(--grey-slight);
  --bg-dropdown: var(--grey-light);
  --bg-card: var(--light-grey);
  --bg-card-body: var(--grey);
  --text-event-date: var(--unique-color);
  --bg-related-page-link: var(--brand-beige-color);
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  -webkit-transition: all 750ms !important;
  transition: all 750ms !important;
  -webkit-transition-delay: 0 !important;
          transition-delay: 0 !important;
}

/* Configrations */
body {
  font-family: 'Nanum Barun Gothic', sans-serif !important;
  font-style: normal;
  background-color: var(--bg-color);
  color: var(--text-color);
}

body #loader {
  position: absolute;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10000;
}

body #loader img.loading-logo {
  -webkit-transform-origin: 49% 49%;
          transform-origin: 49% 49%;
  -webkit-animation: rotation 2s infinite linear;
          animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

body main {
  background-color: var(--main-color);
}

body main.event, body main.post, body main.review {
  background-color: var(--single-main-color);
}

p, li, small {
  line-height: 1.8rem !important;
  font-weight: 300 !important;
}

h6, h5 {
  line-height: 2rem !important;
}

h4, h3 {
  line-height: 3rem !important;
}

h2, h1 {
  line-height: 4rem !important;
}

/* Class Styles */
.section-content {
  padding: 3rem 0;
}

.section-raised {
  margin: -6rem 4rem 0;
}

.raised {
  z-index: 3;
}

.raised-square,
.raised-rounded {
  margin: -60px 30px 0;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.raised-rounded {
  border-radius: 6px;
}

.bg-primary-color {
  background: #4285f4 !important;
}

.rgba-black-light {
  background-color: rgba(0, 0, 0, 0.35);
}

.rgba-black-strong {
  background-color: rgba(0, 0, 0, 0.7);
}

.rgba-blue-grey-slight {
  background-color: rgba(96, 125, 139, 0.1);
}

.rgba-blue-grey-light {
  background-color: rgba(96, 125, 139, 0.35);
}

.rgba-blue-grey-strong {
  background-color: rgba(96, 125, 139, 0.7);
}

.aqua-gradient {
  background: linear-gradient(40deg, #2096ff, #05ffa3) !important;
}

.purple-gradient {
  background: linear-gradient(40deg, #ff6ec4, #7873f5) !important;
}

.peach-gradient {
  background: linear-gradient(40deg, #ffd86f, #fc6262) !important;
}

.blue-gradient {
  background: linear-gradient(40deg, #45cafc, #303f9f) !important;
}

hr.hr-white {
  border-top: 1px solid #fff !important;
}

hr.hr-black {
  border-top: 1px solid #000 !important;
}

hr.hr-grey {
  border-top: 1px solid #ddd !important;
}

.hr-after-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 8px 0px;
}

.hr-after-text:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: -webkit-gradient(linear, left top, right top, from(var(--text-color)), to(transparent));
  background: linear-gradient(to right, var(--text-color), transparent);
  height: 1px;
  font-size: 0px;
  line-height: 0px;
  margin: 0px 16px;
}

/* Section Info Styles */
#section-infos {
  background-color: var(--bg-section-info);
}

#section-infos .news-notice-column h4 span {
  font-size: 1.2rem;
}

#section-infos .news-notice-column h4 span a {
  color: #7a8394 !important;
  text-decoration: none !important;
}

#section-infos li {
  line-height: 2rem !important;
}

#section-infos li a {
  color: #121212 !important;
  text-decoration: none !important;
}

#section-infos .conveniences .convenience-items span a {
  text-decoration: none !important;
}

#section-infos .conveniences .convenience-items span:nth-child(odd) a {
  color: #4b515d !important;
}

#section-infos .conveniences .convenience-items span:nth-child(even) a {
  color: #3f729b !important;
}

#section-infos .conveniences .convenience-items span small {
  font-size: 0.9rem;
}

/* Breadcrumb Styles */
ol.breadcrumb {
  background-color: var(--bg-breadcrumb);
}

ol.breadcrumb .breadcrumb-item.active {
  color: var(--text-breadcrumb);
}

ol.breadcrumb a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

/* Vertical Text */
.vertical-title-holder {
  position: absolute;
  width: auto;
  margin: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(-90deg) translateX(-100%) translateY(-100%);
          transform: rotate(-90deg) translateX(-100%) translateY(-100%);
}

.vertical-title-holder span.vertical-title {
  display: inline-block;
  margin: 0 0 7px;
  font-size: 12px;
}

.vertical-title-holder .vertical-title {
  position: relative;
  margin: 0 0 12px;
}

/* Lightbox Shadow effect */
.lightbox-photos img {
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

/* Related Page Link Section Card bg & Link Color */
.related-page-link-part .card {
  background-color: var(--bg-related-page-link);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.related-page-link-part .card a {
  color: var(--white-black-color) !important;
  text-decoration: none !important;
}

.related-page-link-part .card:hover {
  -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

/* Content Custom WPBakery Page Builder Styles */
h4.vc_custom_heading {
  border-left: 1rem solid var(--link-color);
  padding-left: 0.7rem;
}

.uavc-mb-0 ul.uavc-list .uavc-list-content {
  margin-bottom: 0;
}

/* Social share buttons */
hr.social-share-divider {
  border-color: var(--top-banner-text);
}

.social-share-buttons .btn-fb, .social-share-buttons .btn-pr, .social-share-buttons .btn-tw,
.social-share-buttons .btn-fb:hover, .social-share-buttons .btn-pr:hover, .social-share-buttons .btn-tw:hover {
  color: #fff;
}

.social-share-buttons .btn-fb:hover, .social-share-buttons .btn-pr:hover, .social-share-buttons .btn-tw:hover {
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.social-share-buttons .btn-fb {
  background-color: #3b5998;
  border-color: #3b5998;
}

.social-share-buttons .btn-pr {
  background-color: #e60023;
  border-color: #e60023;
}

.social-share-buttons .btn-tw {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

body.doctor-template-default.iphone.osx #doctorTopBanner {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 100vh;
}

body.doctor-template-default.iphone.osx article.doctor-middle-section {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: auto;
}

body.doctor-template-default.iphone.osx article.doctor-lower-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: auto;
}

/* Shadow Styles */
.shadow-xl {
  -webkit-box-shadow: 0 1rem 2.5rem -0.8rem rgba(0, 0, 0, 0.56), 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.75rem -0.3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 1rem 2.5rem -0.8rem rgba(0, 0, 0, 0.56), 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.75rem -0.3rem rgba(0, 0, 0, 0.2);
}

.shadow-box {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.shadow-box:hover {
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

/* Form Styles */
.form-control:focus {
  border: 1px solid #ff3547 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

::-webkit-input-placeholder {
  font-size: 0.85rem !important;
  opacity: 0.5 !important;
}

:-ms-input-placeholder {
  font-size: 0.85rem !important;
  opacity: 0.5 !important;
}

::-ms-input-placeholder {
  font-size: 0.85rem !important;
  opacity: 0.5 !important;
}

::placeholder {
  font-size: 0.85rem !important;
  opacity: 0.5 !important;
}

/* WordPress Styles */
ul.list-group > li.page_item,
ul.children > li {
  display: none;
}

.aligncenter,
.alignleft,
.alignright {
  display: block;
  padding: 0;
}

.aligncenter {
  float: none;
  margin: .5em auto 1em;
}

.alignright {
  float: right;
  margin: .5em 0 1em 1em;
}

.alignleft {
  float: left;
  margin: .5em 1em 1em 0;
}

.kboard-default-poweredby {
  display: none !important;
}

#kboard-default-list .kboard-list {
  background-color: var(--bg-color) !important;
}

#kboard-default-list .kboard-list table thead tr td {
  color: var(--text-color) !important;
  font-weight: bold !important;
}

#kboard-default-list .kboard-list table tbody tr td, #kboard-default-list .kboard-list table tbody tr td a {
  color: var(--text-color) !important;
}

#kboard-default-list .kboard-list table tbody tr:hover td, #kboard-default-list .kboard-list table tbody tr:hover td a {
  color: #000 !important;
}

body.login {
  background: #e5ddd7;
}

body.login a {
  color: #333 !important;
}

body.login h1 a {
  font-size: 2rem;
  font-weight: 300;
  background-image: none;
  width: auto;
  height: auto;
  text-indent: 0;
}

body.login form {
  background: rgba(255, 255, 255, 0.25) !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

body.login form:hover {
  background: #fff !important;
}

body.login .button-primary {
  background-color: red;
  border-color: red;
  text-shadow: 0 -1px 1px #d45238, 1px 0 1px #d45238, 0 1px 1px #d45238, -1px 0 1px #d45238;
  -webkit-box-shadow: 1px 1px 5px 0px #c90000;
          box-shadow: 1px 1px 5px 0px #c90000;
}

body.login .button-primary:hover, body.login .button-primary:active, body.login .button-primary:focus {
  background-color: red;
  border-color: red;
  text-shadow: 0 -1px 1px #c75038, 1px 0 1px #c75038, 0 1px 1px #c75038, -1px 0 1px #c75038;
  -webkit-box-shadow: 1px 1px 5px 0 #720000;
          box-shadow: 1px 1px 5px 0 #720000;
}

body.login label,
#reg_passmail {
  color: #333 !important;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./../fonts/slick.eot");
  src: url("./../fonts/slick.eot?#iefix") format("embedded-opentype"), url("./../fonts/slick.woff") format("woff"), url("./../fonts/slick.ttf") format("truetype"), url("./../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 40px;
  line-height: 1;
  color: var(--black-white-color);
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  z-index: 1;
  left: -5%;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -5%;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: var(--black-white-color);
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: var(--black-white-color);
  opacity: 0.75;
}

/* Header Styles */
#quick-menu {
  position: fixed;
  right: 4px;
  top: 170px;
  width: 100px;
  height: 100px;
  z-index: 10000;
}

#quick-menu ul {
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

#quick-menu ul li {
  background-color: var(--bg-quick-menu);
}

#quick-menu ul li.quick-menu-title {
  background-color: #4f4f4f !important;
  color: #fafafa;
}

#quick-menu ul li.quick-menu-title.item-to-top a {
  color: #fafafa !important;
  text-decoration: none !important;
  cursor: pointer;
}

#quick-menu ul li.quick-menu-item {
  border: 1px solid #1c1c1c;
}

#quick-menu ul li.quick-menu-item span {
  font-size: 0.9rem;
  color: #fff;
}

#nav-cta {
  background-color: dimgray;
  color: #fff;
}

#nav-cta a {
  color: #ddd;
}

#nav-top {
  background-color: var(--bg-navbar);
}

#nav-top #secondary-menus li.align-self-center a.btn-danger,
#nav-top #secondary-menus li.align-self-center a.btn-warning {
  color: #fff;
}

#nav-top #secondary-menus li.align-self-center a.search-trigger:hover i {
  color: #fff;
}

#nav-top #secondary-menus li.align-self-center .btn.btn-sm {
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
}

#nav-top #secondary-menus input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

#nav-top #secondary-menus label {
  margin-bottom: 0;
  margin-top: 0.05rem;
  cursor: pointer;
  text-indent: -9999px;
  width: 26px;
  height: 18px;
  background: grey;
  float: right;
  border-radius: 100px;
  position: relative;
}

#nav-top #secondary-menus label:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 90px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#nav-top #secondary-menus input:checked + label {
  background: #4285f4;
}

#nav-top #secondary-menus input:checked + label:after {
  left: calc(100% - 5px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

#nav-top #secondary-menus label:active:after {
  width: 45px;
}

#primary-nav {
  background-color: var(--bg-navbar);
}

#primary-nav .dropdown .dropdown-menu {
  margin-top: -1rem !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#primary-nav .dropdown:hover .dropdown-menu {
  display: block !important;
}

#primary-nav .arrow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  display: block;
  background: white;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

#primary-nav .dropdown-menu.w-75.show {
  background-color: var(--bg-dropdown);
}

#primary-nav .nav-item {
  margin-left: 6px;
  margin-right: 6px;
}

#primary-nav .nav-item a.nav-link {
  font-size: 1.1rem;
  color: #000;
}

#primary-nav .nav-item.dropdown-fluid {
  position: static;
}

#primary-nav .nav-item .dropdown-toggle:after {
  content: none;
}

#primary-nav .dropdown-fluid .dropdown-menu.w-75 {
  margin-top: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

#primary-nav .dropdown-fluid .dropdown-menu.w-75 #mega-menu {
  padding: 0 6rem;
}

#primary-nav .dropdown-fluid .dropdown-menu.w-75 a.dropdown-item:active {
  background-color: #4f4f4f;
}

#primary-nav li#navbarIntro .contact a,
#primary-nav li#navbarReview .contact a,
#primary-nav li#navbarProgram .contact a,
#primary-nav li#navbarAdmissionTa .contact a {
  color: #454545 !important;
}

#primary-nav li#navbarClinic .treatments a,
#primary-nav li#navbarPains .treatments a,
#primary-nav li#navbarBalance .treatments a {
  color: #454545 !important;
}

#primary-nav li#navbarBlog .card {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 130px;
}

#primary-nav li#navbarBlog .card .card-overlay {
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

#primary-nav li#navbarReview .review-header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#primary-nav li#navbarReview .review-header a {
  color: #fff !important;
  text-decoration: none !important;
}

#primary-nav li#navbarEvent small.float-right a {
  color: #aaaaaa !important;
  text-decoration: none !important;
  font-size: 0.75rem;
}

#primary-nav li#navbarEvent small.menu-event-date {
  color: #c00;
  font-weight: 400;
}

#primary-nav li#navbarEvent .card.shadow-box img {
  width: 100%;
  max-height: 200px;
  overflow-y: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

#primary-nav #secondary-menus li.align-self-center a.btn-danger,
#primary-nav #secondary-menus li.align-self-center a.btn-warning {
  color: #fff;
}

#primary-nav #secondary-menus li.align-self-center a.search-trigger:hover i {
  color: #fff;
}

#primary-nav #secondary-menus li.align-self-center .btn.btn-sm {
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
}

#primary-nav #secondary-menus input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

#primary-nav #secondary-menus label {
  margin-bottom: 0;
  margin-top: 0.05rem;
  cursor: pointer;
  text-indent: -9999px;
  width: 26px;
  height: 18px;
  background: grey;
  float: right;
  border-radius: 100px;
  position: relative;
}

#primary-nav #secondary-menus label:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 90px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#primary-nav #secondary-menus input:checked + label {
  background: #4285f4;
}

#primary-nav #secondary-menus input:checked + label:after {
  left: calc(100% - 5px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

#primary-nav #secondary-menus label:active:after {
  width: 45px;
}

#modal-search {
  z-index: 10001;
}

#modal-search .modal-content {
  background-color: var(--bg-dropdown);
  color: #6c757d;
}

#modal-search .modal-fluid {
  max-width: 100% !important;
}

#modal-search .second-search {
  background-color: #ddd;
}

#modal-search a {
  color: #0d47a1 !important;
  text-decoration: none !important;
}

#modal-search #search-doctor .card {
  background-color: #efeae6;
  border: none;
}

#modal-search #search-doctor .card .doctor-card-image {
  border-radius: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  max-height: 250px;
}

#modal-search #search-doctor .card .doctor-card-profile a.doctor-card-profile-link {
  color: #121212 !important;
  text-decoration: none !important;
}

/* Landing Page Styles */
section#landing #landing-image {
  position: fixed;
  height: 100vh;
}

section#landing #landing-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 50%;
     object-position: 0 50%;
}

section#landing #landing-video {
  position: fixed;
  left: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

section#landing:hover #landing-image,
section#landing:hover #landing-video {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

section#landing:hover .content {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  display: block;
}

section#landing .content {
  display: none;
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

section#landing .content {
  color: #fff;
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 50%;
  margin-top: 105px;
  margin-left: -145px;
  width: 350px;
  height: 350px;
  text-align: center;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

section#landing .content .title,
section#landing .content .text {
  text-shadow: 2px 2px 2px #121212;
}

section#landing .content .logo {
  height: 240px;
  width: 240px;
}

section#landing .content .title {
  font-size: 2.6rem;
}

section#landing .content .text {
  font-size: 1.3rem;
  line-height: 1.7;
}

section#landing .content .text a {
  text-shadow: none !important;
}

/* Front Page Styles */
#front-carousel .carousel-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  height: 70vh;
}

#front-carousel .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  margin: auto;
  width: 100%;
  height: 100%;
}

#front-carousel .carousel-overlay .carousel-text {
  margin-right: 10rem;
  margin-left: 10rem;
}

#front-grid .container .row.grids {
  z-index: 10;
  display: -ms-grid;
  display: grid;
  grid-gap: 0.5rem;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (minmax(250px, 1fr))[5];
      grid-template-rows: repeat(5, minmax(250px, 1fr));
      grid-template-areas: 'grid-1 grid-1 grid-2' 'grid-1 grid-1 grid-5' 'grid-3 grid-4 grid-5' 'grid-6 grid-8 grid-8' 'grid-7 grid-8 grid-8';
}

#front-grid .container .row.grids .grid {
  background-color: #eee;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
  z-index: 100;
}

#front-grid .container .row.grids .grid-1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: grid-1;
}

#front-grid .container .row.grids .grid-1 .carousel-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  height: 70vh;
}

#front-grid .container .row.grids .grid-1 .carousel-item .overlay {
  background-color: rgba(96, 125, 139, 0.35);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#front-grid .container .row.grids .grid-1 .carousel-item .overlay h1.display-4 {
  color: #fff;
}

#front-grid .container .row.grids .grid-2 {
    -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: grid-2;
  background-color: #d1c3b8;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #121212;
}


#front-grid .container .row.grids .grid-2 a {
  color: #121212 !important;
  text-decoration: none !important;
}

#front-grid .container .row.grids .grid-3 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: grid-3;
  background-color: #efebe9;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #121212;
}

#front-grid .container .row.grids .grid-3 a {
  color: #121212 !important;
  text-decoration: none !important;
}

#front-grid .container .row.grids .grid-4 {
-ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: grid-4;
  background-color: #880e4f;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #fff;
}

#front-grid .container .row.grids .grid-4 a {

  
    color: #fff !important;
  text-decoration: none !important;
}

#front-grid .container .row.grids .grid-5 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: grid-5;
  color: #fff;
  background-color: #1c2a48;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 55%;
  color: #fff;
}

#front-grid .container .row.grids .grid-5 a {
  color: #fff !important;
  text-decoration: none !important;
}

#front-grid .container .row.grids .grid-6 {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: grid-6;
  background-color: #bcaaa4;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #fff;
}

#front-grid .container .row.grids .grid-6 a {
  color: #fff !important;
  text-decoration: none !important;
}

#front-grid .container .row.grids .grid-7 {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: grid-7;
  background-color: #8d6e63;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #fff;
}

#front-grid .container .row.grids .grid-7 a {
  color: #fff !important;
  text-decoration: none !important;
}

#front-grid .container .row.grids .grid-8 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: grid-8;
}

#front-grid .container .row.grids .grid-8 .carousel-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  height: 70vh;
}

#front-grid .container .row.grids .grid-8 .carousel-item .overlay {
  background-color: rgba(62, 69, 81, 0.1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#front-grid .container .row.grids .grid-8 .carousel-item .overlay h1.display-4 {
  color: #fff;
}

#front-grid-mobile .clinics {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  will-change: transform;
  position: relative;
  -webkit-perspective: 500px;
          perspective: 500px;
}

#front-grid-mobile .clinics.active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#front-grid-mobile .clinics .clinic {
  width: 340px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#front-grid-mobile .clinics .clinic:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#front-grid-mobile .clinics .clinic .card {
  border: none;
  background-color: var(--bg-color);
}

#front-grid-mobile .clinics .clinic .card a {
  color: var(--text-color) !important;
  text-decoration: none !important;
}

#front-grid-mobile .clinics .clinic .card small {
  color: var(--text-programs-small);
}

#front-grid-mobile .clinics .clinic .card .card-body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 320px;
  height: 180px;
}

#front-grid-mobile .carousel .carousel-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  height: 60vh;
}

#front-grid-mobile .carousel .carousel-item .overlay {
  background-color: rgba(62, 69, 81, 0.1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#front-grid-mobile .carousel .carousel-item .overlay h1.display-4 {
  color: #fff;
}

#front-grid-mobile .carousel .carousel-item h1.display-4 {
  font-size: 3rem;
}

#front-grid-mobile #abouts-grid .col-6 {
  min-height: 180px;
  padding-right: 8px;
  padding-left: 8px;
}

#front-grid-mobile #abouts-grid .grid {
  background-color: #eee;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
  z-index: 100;
}

#front-grid-mobile #abouts-grid .grid-3 {
  background-color: #efebe9;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #121212;
}

#front-grid-mobile #abouts-grid .grid-3 a {
  color: #121212 !important;
  text-decoration: none !important;
}

#front-grid-mobile #abouts-grid .grid-5 {
  color: #fff;
  background-color: #1c2a48;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 55%;
  color: #fff;
}

#front-grid-mobile #abouts-grid .grid-5 a {
  color: #fff !important;
  text-decoration: none !important;
}

#front-grid-mobile #abouts-grid .grid-2 {
  background-color: #880e4f;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #fff;
}

#front-grid-mobile #abouts-grid .grid-2 a {
  color: #fff !important;
  text-decoration: none !important;
}

#front-grid-mobile #abouts-grid .grid-4 {
  background-color: #d1c3b8;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #121212;
}

#front-grid-mobile #abouts-grid .grid-4 a {
  color: #121212 !important;
  text-decoration: none !important;
}

#front-grid-mobile #abouts-grid .grid-6 {
  background-color: #bcaaa4;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #fff;
}

#front-grid-mobile #abouts-grid .grid-6 a {
  color: #fff !important;
  text-decoration: none !important;
}

#front-grid-mobile #abouts-grid .grid-7 {
  background-color: #8d6e63;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 45%;
  color: #fff;
}

#front-grid-mobile #abouts-grid .grid-7 a {
  color: #fff !important;
  text-decoration: none !important;
}

.blog {
  background-color: #f7f7f7;
}

.blog #blogTopBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  position: relative;
  height: 50vh;
}

.blog #blogTopBanner .banner-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black-white-color);
}

.blog #blogTopBanner .banner-overlay .banner-body {
  text-align: center;
}

.blog #blog .blog-tab {
  background-color: var(--bg-card);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.blog #blog .blog-tab a.nav-link {
  border-radius: 0 !important;
  color: var(--link-color) !important;
}

.blog #blog .blog-tab a.nav-link.active {
  border-bottom: 5px solid var(--link-color) !important;
  color: var(--link-color) !important;
  background-color: var(--bg-card);
}

.blog #blog #blog-tabContent .card {
  background-color: var(--bg-card-body);
}

.blog #blog #blog-tabContent .card .card-body a {
  color: var(--black-white-color) !important;
  text-decoration: none !important;
}

.blog #blog #blog-tabContent .card .card-body span.sl-wrapper a {
  padding: 0;
}

.blog #blog #blog-tabContent .card .card-body span.sl-wrapper .sl-icon {
  font-family: 'Nanum Barun Gothic', sans-serif !important;
}

.blog #blog #blog-tabContent .card .card-body span.sl-wrapper .sl-icon svg {
  color: #c00 !important;
}

.blog #blog #blog-tabContent .card .card-body span.sl-wrapper .sl-count {
  font-family: 'Nanum Barun Gothic', sans-serif !important;
  color: #c00 !important;
  font-size: 85% !important;
}

/* Page Styles */
.page-template-default #pageTopBanner,
.page-template-page-fullwidth #pageTopBanner,
.page-template-page-doctor #pageTopBanner,
.page-template-page-event #pageTopBanner,
.page-template-page-pastEvent #pageTopBanner,
.page-template-page-review #pageTopBanner {
  position: relative;
}

.page-template-default #pageTopBanner .banner-overlay,
.page-template-page-fullwidth #pageTopBanner .banner-overlay,
.page-template-page-doctor #pageTopBanner .banner-overlay,
.page-template-page-event #pageTopBanner .banner-overlay,
.page-template-page-pastEvent #pageTopBanner .banner-overlay,
.page-template-page-review #pageTopBanner .banner-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-template-default #pageTopBanner,
.page-template-page-fullwidth #pageTopBanner,
.page-template-page-doctor #pageTopBanner,
.page-template-page-event #pageTopBanner,
.page-template-page-pastEvent #pageTopBanner,
.page-template-page-review #pageTopBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 70vh;
}

.page-template-default #pageTopBanner .banner-overlay,
.page-template-page-fullwidth #pageTopBanner .banner-overlay,
.page-template-page-doctor #pageTopBanner .banner-overlay,
.page-template-page-event #pageTopBanner .banner-overlay,
.page-template-page-pastEvent #pageTopBanner .banner-overlay,
.page-template-page-review #pageTopBanner .banner-overlay {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-base)), to(rgba(96, 125, 139, 0.35)));
  background: linear-gradient(to top, var(--gradient-base) 0%, rgba(96, 125, 139, 0.35) 100%);
  color: var(--top-banner-text);
}

.page-template-default #pageTopBanner .banner-overlay .banner-body,
.page-template-page-fullwidth #pageTopBanner .banner-overlay .banner-body,
.page-template-page-doctor #pageTopBanner .banner-overlay .banner-body,
.page-template-page-event #pageTopBanner .banner-overlay .banner-body,
.page-template-page-pastEvent #pageTopBanner .banner-overlay .banner-body,
.page-template-page-review #pageTopBanner .banner-overlay .banner-body {
  text-align: center;
}

.page-template-default main.raised-rounded,
.page-template-page-fullwidth main.raised-rounded,
.page-template-page-doctor main.raised-rounded,
.page-template-page-event main.raised-rounded,
.page-template-page-pastEvent main.raised-rounded,
.page-template-page-review main.raised-rounded {
  position: relative;
  z-index: 1000 !important;
}

.page-template-page-doctor main .doctor-card .col-md-6 .card {
  background-color: #efeae6;
  border: none;
}

.page-template-page-doctor main .doctor-card .col-md-6 .card .doctor-card-image {
  border-radius: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  max-height: 250px;
}

.page-template-page-doctor main .doctor-card .col-md-6 .card .doctor-card-profile a.doctor-card-profile-link {
  color: #121212 !important;
  text-decoration: none !important;
}

.page-template-page-fullwidth main#page-21 {
  background-color: #fff;
}

.page-template-page-fullwidth #mobile-program .flexible-program .programs {
  padding-left: 5rem;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  will-change: transform;
  position: relative;
  -webkit-perspective: 500px;
          perspective: 500px;
}

.page-template-page-fullwidth #mobile-program .flexible-program .programs.active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.page-template-page-fullwidth #mobile-program .flexible-program .programs .program {
  width: 260px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.page-template-page-fullwidth #mobile-program .flexible-program .programs .program:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.page-template-page-fullwidth #mobile-program .flexible-program .programs .program .list-group {
  width: 230px;
}

.page-template-page-fullwidth #mobile-program .flexible-program .programs .program .list-group .list-group-item {
  background-color: var(--bg-program-list);
  color: var(--text-color);
}

.page-template-page-fullwidth #mobile-program .flexible-program .programs .program .list-group .list-group-item small {
  color: var(--text-programs-small);
}

.page-template-page-fullwidth #mobile-program .flexible-program .programs .program .list-group .list-group-item.list-group-title {
  background-color: var(--bg-program-title);
  color: #fff;
}

.page-template-page-fullwidth #pc-program .list-group {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.page-template-page-fullwidth #pc-program .list-group:active, .page-template-page-fullwidth #pc-program .list-group:focus {
  outline: 0 !important;
  color: transparent !important;
}

.page-template-page-fullwidth #pc-program .list-group .list-group-item {
  background-color: var(--bg-program-list);
  color: var(--text-color);
}

.page-template-page-fullwidth #pc-program .list-group .list-group-item small {
  color: var(--text-programs-small);
}

.page-template-page-fullwidth #pc-program .list-group .list-group-item.list-group-title {
  background-color: var(--bg-program-title);
  color: #fff;
}

.page-template-page-fullwidth #pc-program .list-group:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 1rem 2.5rem -0.8rem rgba(0, 0, 0, 0.56), 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.75rem -0.3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 1rem 2.5rem -0.8rem rgba(0, 0, 0, 0.56), 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.75rem -0.3rem rgba(0, 0, 0, 0.2);
}

.page-template-default article .sub-clinic .card.card-body {
  background-color: var(--bg-color);
}

.page-template-default article .sub-clinic .card.card-body a {
  text-decoration: none;
}

.page-template-default article .sub-clinic .card.card-body a h5.card-title,
.page-template-default article .sub-clinic .card.card-body a p.card-text {
  color: var(--text-color) !important;
  text-decoration: none !important;
}

.page-template-default article .sub-clinic .card.card-body a h6.card-subtitle {
  color: var(--text-programs-small) !important;
  text-decoration: none !important;
}

.page-template-default article .table-responsive th, .page-template-default article .table-responsive tr {
  color: var(--text-color);
}

.page-template-default article .lightbox-photos .lightbox-photo img {
  height: 100px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.page-template-default aside .card {
  background-color: var(--bg-list-group);
  border: 1px solid var(--list-group-border);
}

.page-template-default aside .card .card-body {
  border-bottom: 1px solid var(--list-group-border);
}

.page-template-default aside .card ul.page-list li.list-group-item {
  background-color: var(--bg-list-group);
  border: 1px solid var(--list-group-border);
}

.page-template-default aside .card ul.page-list li.list-group-item.active {
  background-color: var(--link-color);
}

.page-template-default aside .card ul.page-list a {
  color: #121212 !important;
  text-decoration: none !important;
}

.page-template-page-event article .event-content,
.page-template-page-pastEvent article .event-content {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #ddd;
}

.page-template-page-event article .event-content .event-date,
.page-template-page-pastEvent article .event-content .event-date {
  text-align: center;
}

.page-template-page-event article .event-content .event-date span.event-date-month,
.page-template-page-pastEvent article .event-content .event-date span.event-date-month {
  font-size: 2rem;
  color: var(--text-event-date);
}

.page-template-page-event article .event-content .event-date span.event-date-divider,
.page-template-page-pastEvent article .event-content .event-date span.event-date-divider {
  display: block;
}

.page-template-page-event article .event-content .event-date span.event-date-day,
.page-template-page-pastEvent article .event-content .event-date span.event-date-day {
  font-size: 1.3rem;
  color: var(--text-event-date);
}

.page-template-page-event article .event-content .event-image img,
.page-template-page-pastEvent article .event-content .event-image img {
  width: 100%;
  max-height: 280px;
  overflow-y: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.page-template-page-event article .event-content .event-text a,
.page-template-page-pastEvent article .event-content .event-text a {
  color: var(--black-white-color) !important;
  text-decoration: none !important;
}

.page-template-page-event article .event-content .event-text a.more,
.page-template-page-pastEvent article .event-content .event-text a.more {
  color: #ff3547 !important;
  text-decoration: none !important;
}

.page-template-page-event #section-infos,
.page-template-page-pastEvent #section-infos {
  background-color: var(--bg-color);
}

.page-template-page-review .list-group .review-header {
  background-color: var(--link-color);
  color: #fff;
}

.page-template-page-review .list-group .review-body {
  background-color: var(--bg-card);
}

.page-template-page-review .list-group .review-body:hover {
  background-color: var(--bg-navbar);
}

.page-template-page-review .list-group .review-body .review-image {
  max-height: 150px;
}

.page-template-page-review .list-group .review-body .review-image img {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.page-template-default #related-article .related-latest-post .card,
.page-template-default #related-article .related-latest-event .card,
.page-template-page-fullwidth #related-article .related-latest-post .card,
.page-template-page-fullwidth #related-article .related-latest-event .card,
.page-template-page-doctor #related-article .related-latest-post .card,
.page-template-page-doctor #related-article .related-latest-event .card {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.page-template-default #related-article .related-latest-post .card a,
.page-template-default #related-article .related-latest-event .card a,
.page-template-page-fullwidth #related-article .related-latest-post .card a,
.page-template-page-fullwidth #related-article .related-latest-event .card a,
.page-template-page-doctor #related-article .related-latest-post .card a,
.page-template-page-doctor #related-article .related-latest-event .card a {
  color: #fff !important;
  text-decoration: none !important;
}

.page-template-default #related-article .related-latest-post .card a img,
.page-template-default #related-article .related-latest-event .card a img,
.page-template-page-fullwidth #related-article .related-latest-post .card a img,
.page-template-page-fullwidth #related-article .related-latest-event .card a img,
.page-template-page-doctor #related-article .related-latest-post .card a img,
.page-template-page-doctor #related-article .related-latest-event .card a img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.page-template-default #related-article .related-latest-post .card:hover,
.page-template-default #related-article .related-latest-event .card:hover,
.page-template-page-fullwidth #related-article .related-latest-post .card:hover,
.page-template-page-fullwidth #related-article .related-latest-event .card:hover,
.page-template-page-doctor #related-article .related-latest-post .card:hover,
.page-template-page-doctor #related-article .related-latest-event .card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.page-template-default #related-article .related-latest-post .card.card-body,
.page-template-default #related-article .related-latest-event .card.card-body,
.page-template-page-fullwidth #related-article .related-latest-post .card.card-body,
.page-template-page-fullwidth #related-article .related-latest-event .card.card-body,
.page-template-page-doctor #related-article .related-latest-post .card.card-body,
.page-template-page-doctor #related-article .related-latest-event .card.card-body {
  background-color: var(--bg-list-group);
  color: var(--text-color);
}

.page-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action,
.page-template-page-fullwidth #related-article .related-latest-reviews .list-group-item.list-group-item-action,
.page-template-page-doctor #related-article .related-latest-reviews .list-group-item.list-group-item-action {
  background-color: var(--bg-list-group);
  color: var(--text-color);
}

.page-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child,
.page-template-page-fullwidth #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child,
.page-template-page-doctor #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child {
  background-color: var(--link-color);
}

.page-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child:hover,
.page-template-page-fullwidth #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child:hover,
.page-template-page-doctor #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child:hover {
  background-color: var(--link-color);
}

.page-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child .list-group-title,
.page-template-page-fullwidth #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child .list-group-title,
.page-template-page-doctor #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child .list-group-title {
  color: #fff;
}

.page-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child .list-group-title small a,
.page-template-page-fullwidth #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child .list-group-title small a,
.page-template-page-doctor #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child .list-group-title small a {
  color: #fff !important;
  text-decoration: none !important;
}

.page-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:hover,
.page-template-page-fullwidth #related-article .related-latest-reviews .list-group-item.list-group-item-action:hover,
.page-template-page-doctor #related-article .related-latest-reviews .list-group-item.list-group-item-action:hover {
  background-color: var(--bg-section-info);
}

.search-results #searchTopBanner,
.search-no-results #searchTopBanner,
.archive #archiveTopBanner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 70vh;
}

.search-results #searchTopBanner .banner-overlay,
.search-no-results #searchTopBanner .banner-overlay,
.archive #archiveTopBanner .banner-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-base)), to(rgba(96, 125, 139, 0.35)));
  background: linear-gradient(to top, var(--gradient-base) 0%, rgba(96, 125, 139, 0.35) 100%);
  color: var(--top-banner-text);
}

.search-results #searchTopBanner .banner-overlay .banner-body,
.search-no-results #searchTopBanner .banner-overlay .banner-body,
.archive #archiveTopBanner .banner-overlay .banner-body {
  text-align: center;
}

.search-results main.raised-rounded,
.search-no-results main.raised-rounded,
.archive main.raised-rounded {
  background-color: var(--main-color);
  position: relative;
  z-index: 1000 !important;
}

.search-results main.raised-rounded .card,
.search-no-results main.raised-rounded .card,
.archive main.raised-rounded .card {
  background-color: var(--bg-card-body);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.search-results main.raised-rounded .card .card-title a,
.search-no-results main.raised-rounded .card .card-title a,
.archive main.raised-rounded .card .card-title a {
  color: var(--text-color) !important;
  text-decoration: none !important;
}

.search-results main.raised-rounded a,
.search-no-results main.raised-rounded a,
.archive main.raised-rounded a {
  color: var(--black-white-color) !important;
  text-decoration: none !important;
}

.search-results main.raised-rounded a.page-link,
.search-no-results main.raised-rounded a.page-link,
.archive main.raised-rounded a.page-link {
  color: #121212 !important;
  text-decoration: none !important;
}

.search-results main.raised-rounded .sl-wrapper a,
.search-no-results main.raised-rounded .sl-wrapper a,
.archive main.raised-rounded .sl-wrapper a {
  padding: 0;
}

.search-results main.raised-rounded .sl-wrapper .sl-icon,
.search-no-results main.raised-rounded .sl-wrapper .sl-icon,
.archive main.raised-rounded .sl-wrapper .sl-icon {
  font-family: 'Nanum Barun Gothic', sans-serif !important;
}

.search-results main.raised-rounded .sl-wrapper .sl-icon svg,
.search-no-results main.raised-rounded .sl-wrapper .sl-icon svg,
.archive main.raised-rounded .sl-wrapper .sl-icon svg {
  color: #c00 !important;
}

.search-results main.raised-rounded .sl-wrapper .sl-count,
.search-no-results main.raised-rounded .sl-wrapper .sl-count,
.archive main.raised-rounded .sl-wrapper .sl-count {
  font-family: 'Nanum Barun Gothic', sans-serif !important;
  color: #c00 !important;
  font-size: 0.8rem !important;
}

.search-results #section-infos,
.search-no-results #section-infos,
.archive #section-infos {
  background-color: var(--bg-color);
}

.search-results main.raised-rounded .card-columns .card.shadow-sm.mb-3 img.card-img-top,
.search-no-results main.raised-rounded .card-columns .card.shadow-sm.mb-3 img.card-img-top {
  max-height: 240px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.search-results main.raised-rounded span.review-tag a,
.search-no-results main.raised-rounded span.review-tag a {
  pointer-events: none;
  cursor: default;
}

/* Single Styles */
.post-template-default #postTopBanner,
.event-template-default #eventTopBanner,
.doctor-template-default #doctorTopBanner,
.review-template-default #reviewTopBanner {
  position: relative;
}

.post-template-default #postTopBanner .banner-overlay,
.event-template-default #eventTopBanner .banner-overlay,
.doctor-template-default #doctorTopBanner .banner-overlay,
.review-template-default #reviewTopBanner .banner-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}

.post-template-default #postTopBanner,
.event-template-default #eventTopBanner,
.review-template-default #reviewTopBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 60vh;
}

.post-template-default #postTopBanner .banner-overlay,
.event-template-default #eventTopBanner .banner-overlay,
.review-template-default #reviewTopBanner .banner-overlay {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(62, 69, 81, 0.3);
}

.post-template-default #postTopBanner .banner-overlay .banner-body,
.event-template-default #eventTopBanner .banner-overlay .banner-body,
.review-template-default #reviewTopBanner .banner-overlay .banner-body {
  text-align: center;
}

.post-template-default #postTopBanner .banner-overlay .banner-body .sl-wrapper a,
.event-template-default #eventTopBanner .banner-overlay .banner-body .sl-wrapper a,
.review-template-default #reviewTopBanner .banner-overlay .banner-body .sl-wrapper a {
  padding: 0;
}

.post-template-default #postTopBanner .banner-overlay .banner-body .sl-wrapper .sl-icon,
.event-template-default #eventTopBanner .banner-overlay .banner-body .sl-wrapper .sl-icon,
.review-template-default #reviewTopBanner .banner-overlay .banner-body .sl-wrapper .sl-icon {
  font-family: 'Nanum Barun Gothic', sans-serif !important;
}

.post-template-default #postTopBanner .banner-overlay .banner-body .sl-wrapper .sl-icon svg,
.event-template-default #eventTopBanner .banner-overlay .banner-body .sl-wrapper .sl-icon svg,
.review-template-default #reviewTopBanner .banner-overlay .banner-body .sl-wrapper .sl-icon svg {
  color: #c00 !important;
}

.post-template-default #postTopBanner .banner-overlay .banner-body .sl-wrapper .sl-count,
.event-template-default #eventTopBanner .banner-overlay .banner-body .sl-wrapper .sl-count,
.review-template-default #reviewTopBanner .banner-overlay .banner-body .sl-wrapper .sl-count {
  font-family: 'Nanum Barun Gothic', sans-serif !important;
  color: #c00 !important;
  font-size: 1rem !important;
}

.post-template-default #postTopBanner .post-meta a {
  color: #fff !important;
  text-decoration: none !important;
}

.post-template-default #relatedPost {
  background-color: var(--bg-section-info);
}

.post-template-default #relatedPost .related-post .card {
  background-color: var(--bg-card-body);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.post-template-default #relatedPost .related-post .card .card-title a {
  color: var(--text-color) !important;
  text-decoration: none !important;
}

.post-template-default main th, .post-template-default main td {
  color: var(--text-color) !important;
}

.doctor-template-default #doctorTopBanner {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}

.doctor-template-default #doctorTopBanner .banner-overlay {
  background-color: rgba(96, 125, 139, 0.35);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.doctor-template-default #doctorTopBanner .banner-overlay .doctor-title small {
  font-size: 70%;
}

.doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer .specialty {
  font-weight: 500 !important;
  color: #ffb866;
}

.doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer .specialty span {
  font-weight: lighter !important;
  margin-left: 1rem;
  color: #fff;
}

.doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer .month-name {
  font-weight: 500 !important;
  color: #ffb866;
}

.doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer table.table th, .doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer table.table td {
  color: #cccccc;
  padding: 0.25rem;
  text-align: center;
}

.doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer table.table thead {
  border-bottom: 2px solid #999999;
}

.doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer table.table tbody tr:first-child {
  border-bottom: 1px solid #999999;
}

.doctor-template-default main article {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.doctor-template-default main article .section-content {
  height: 100%;
  color: #fff;
}

.doctor-template-default main article.doctor-middle-section {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
}

.doctor-template-default main article.doctor-middle-section .doctor-middle-section-overlay {
  background: -webkit-gradient(linear, right top, left top, from(#5f6061), to(rgba(0, 0, 0, 0.1))) !important;
  background: linear-gradient(to left, #5f6061, rgba(0, 0, 0, 0.1)) !important;
  height: auto;
  width: 100%;
  top: 0;
  left: 0;
}

.doctor-template-default main article.doctor-middle-section .social-network a {
  color: #fff;
  padding-left: 1rem;
  -webkit-transition: hover 0.5s ease-in;
  transition: hover 0.5s ease-in;
}

.doctor-template-default main article.doctor-middle-section .social-network a:hover .fa-home {
  color: #f80;
}

.doctor-template-default main article.doctor-middle-section .social-network a:hover .fa-rss-square {
  color: #00695c;
}

.doctor-template-default main article.doctor-middle-section .social-network a:hover .fa-youtube {
  color: #c00;
}

.doctor-template-default main article.doctor-middle-section .social-network a:hover .fa-instagram {
  color: #93c;
}

.doctor-template-default main article.doctor-middle-section .social-network a:hover .fa-twitter-square {
  color: #4285f4;
}

.doctor-template-default main article.doctor-middle-section .social-network a:hover .fa-facebook {
  color: #0d47a1;
}

.doctor-template-default main article.doctor-lower-section {
  min-height: 450px;
}

.doctor-template-default main article.doctor-lower-section .section-content.rgba-black-light {
  min-height: 450px;
}

.doctor-template-default main article.doctor-lower-section .section-content.rgba-black-light .card-columns {
  -webkit-column-count: 2;
          column-count: 2;
  height: 100%;
  min-height: 70px;
}

.doctor-template-default main article.doctor-lower-section .section-content.rgba-black-light .card-columns .card.card-body a {
  color: #121212 !important;
  text-decoration: none !important;
}

.doctor-template-default main article.doctor-lower-section .section-content.rgba-black-light .card-columns .card.card-body a small {
  color: #f80;
  font-size: 0.95rem;
  font-weight: bolder;
}

.doctor-template-default main article.doctor-lower-section .section-content.rgba-black-light span.go-to-all-doctors {
  font-size: 0.95rem;
}

.doctor-template-default main article.doctor-lower-section .section-content.rgba-black-light span.go-to-all-doctors a {
  color: #fff !important;
  text-decoration: none !important;
}

.review-template-default #reviewTopBanner h4.review-cat-meta a {
  color: #c00 !important;
  text-decoration: none !important;
  pointer-events: none;
  cursor: default;
}

.review-template-default #reviewRelatedPost {
  background-color: var(--bg-section-info);
}

.review-template-default #reviewRelatedPost .related-post-event .card {
  background-color: var(--bg-card-body);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.review-template-default #reviewRelatedPost .related-post-event .card .card-title a {
  color: var(--text-color) !important;
  text-decoration: none !important;
}

.review-template-default #reviewRelatedPost .related-doctor .card {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: var(--bg-card-body);
  border: none;
}

.review-template-default #reviewRelatedPost .related-doctor .card .doctor-card-image {
  border-radius: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  max-height: 250px;
}

.review-template-default #reviewRelatedPost .related-doctor .card .doctor-card-profile a.doctor-card-profile-link {
  color: var(--text-color) !important;
  text-decoration: none !important;
}

.event-template-default #related-article {
  border-top: 1px solid #ddd;
}

.event-template-default #related-article .related-latest-post .card,
.event-template-default #related-article .related-latest-event .card {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.event-template-default #related-article .related-latest-post .card a,
.event-template-default #related-article .related-latest-event .card a {
  color: #fff !important;
  text-decoration: none !important;
}

.event-template-default #related-article .related-latest-post .card a img,
.event-template-default #related-article .related-latest-event .card a img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.event-template-default #related-article .related-latest-post .card:hover,
.event-template-default #related-article .related-latest-event .card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.event-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action {
  background-color: var(--bg-list-group);
  color: var(--text-color);
}

.event-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child {
  background-color: var(--link-color);
}

.event-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child:hover {
  background-color: var(--link-color);
}

.event-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child .list-group-title {
  color: #fff;
}

.event-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:first-child .list-group-title small a {
  color: #fff !important;
  text-decoration: none !important;
}

.event-template-default #related-article .related-latest-reviews .list-group-item.list-group-item-action:hover {
  background-color: var(--bg-section-info);
}

/* Comment Styles */
#comment-box {
  background-color: var(--bg-comment-color);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

#comment-box .media.my-3 img {
  border-radius: 50%;
  margin-right: 1rem;
  -webkit-box-shadow: 0 1rem 2.5rem -0.8rem rgba(0, 0, 0, 0.56), 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.75rem -0.3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 1rem 2.5rem -0.8rem rgba(0, 0, 0, 0.56), 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.75rem -0.3rem rgba(0, 0, 0, 0.2);
}

#comment-box .media.my-3 .media-body h5 small span.badge.badge-pill.badge-warning a.comment-edit-link {
  color: #fafafa !important;
  text-decoration: none !important;
}

#comment-box .media.my-3 .media-body .logged-in-as a {
  color: var(--comment-link-color) !important;
  text-decoration: none !important;
}

/* Footer Styles */
footer#footer {
  background-color: dimgray;
  color: #fafafa;
}

footer#footer .container p a {
  color: #fafafa !important;
  text-decoration: none !important;
}

footer#footer .container .infos-in-footer small {
  font-size: 13px;
  line-height: 20px;
  color: #bdbdbd;
}

footer#footer .container .infos-in-footer small a {
  text-decoration: none !important;
}

footer#footer .container .socials-in-footer img {
  border-radius: 16px;
  width: 64px;
}

/* Mobiles */
@media screen and (max-width: 767px) {
  .raised-square,
  .raised-rounded {
    margin: -60px 15px 0;
  }
}

@media screen and (max-width: 767px) {
  footer#footer .container .socials-in-footer img {
    width: 48px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1211px) {
  #primary-nav .nav-item a.nav-link {
    font-size: 1rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  #primary-nav .nav-item.active {
    border-top: 7px solid black;
    margin-top: -17px;
    padding-top: 10px;
  }
  #primary-nav .nav-item a.nav-link {
    font-size: 0.95rem;
  }
  #primary-nav .dropdown-fluid .dropdown-menu.w-75 #mega-menu {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 1200px) {
  #primary-nav .nav-item.active {
    border-top: 7px solid #000;
    margin-top: -17px;
    padding-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  #primary-nav .nav-item a.nav-link {
    font-size: 1rem;
  }
  #primary-nav .nav-item .dropdown-menu {
    margin-top: 0 !important;
  }
  #nav-cta p.lead {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 767px) {
  .banner-overlay .banner-body h1.doctor-title-department {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .banner-overlay .banner-body h1.display-2 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer .col-md-9 .specialty {
    font-size: 1rem;
  }
  .doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer .col-md-3 a {
    font-size: 0.9rem;
  }
  .doctor-template-default #doctorTopBanner .banner-overlay .bannder-footer .col-md-11 .doctor-schedule p {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 575px) {
  section#landing .content {
    margin-left: -175px;
  }
}

@media screen and (max-width: 767px) {
  #front-carousel .carousel-overlay .carousel-text {
    margin-right: 3.6rem;
    margin-left: 3.6rem;
  }
  #front-carousel .carousel-overlay .carousel-text h1.display-3 {
    font-size: 3.2rem;
  }
  #front-carousel .carousel-overlay .carousel-text h3.font-weight-lighter {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .page-template-default #related-article .related-latest-reviews,
  .page-template-page-fullwidth #related-article .related-latest-reviews,
  .page-template-page-doctor #related-article .related-latest-reviews {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-template-default #pageTopBanner .banner-overlay h1.display-3,
  .page-template-page-fullwidth #pageTopBanner .banner-overlay h1.display-3,
  .page-template-page-doctor #pageTopBanner .banner-overlay h1.display-3,
  .page-template-page-event #pageTopBanner .banner-overlay h1.display-3,
  .page-template-page-pastEvent #pageTopBanner .banner-overlay h1.display-3,
  .page-template-page-review #pageTopBanner .banner-overlay h1.display-3 {
    font-size: 4rem;
  }
  .search-results #searchTopBanner .banner-overlay h1.display-3,
  .search-no-results #searchTopBanner .banner-overlay h1.display-3,
  .archive #archiveTopBanner .banner-overlay h1.display-3 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .blog #blog #blog-tabContent .card-columns {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .blog #blog #blog-tabContent .card-columns {
    -webkit-column-count: 2;
            column-count: 2;
  }
}

@media screen and (max-width: 767px) {
  .post-template-default #postTopBanner .banner-overlay h1.display-3,
  .event-template-default #eventTopBanner .banner-overlay h1.display-3,
  .doctor-template-default #doctorTopBanner .banner-overlay h1.display-3,
  .review-template-default #reviewTopBanner .banner-overlay h1.display-3 {
    font-size: 3rem;
  }
  .event-template-default #related-article .related-latest-reviews {
    margin-left: 15px;
    margin-right: 15px;
  }
  .doctor-template-default main article.doctor-lower-section .card-columns {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

@media screen and (max-width: 767px) {
  #section-infos .conveniences .convenience-items span small {
    font-size: 0.85rem;
  }
}
