/* Main CSS
-------------------------------------------------- */
:root {
  --white: #ffffff;
  --black: #000000;
  --color-100: #1eb8ba;
  --color-200: #0183bd;
  --bk-grade-100: #eaeaea;
  --bk-grade-150: #d6d6d6;
  --bk-grade-200: #c1c1c1;
  --bk-grade-250: #adadad;
  --bk-grade-300: #999999;
  --bk-grade-350: #848484;
  --bk-grade-400: #707070;
  --bk-grade-450: #5b5b5b;
  --bk-grade-500: #474747;
  --bk-grade-550: #333333;
  --bk-grade-600: #2d2d2d;
  --bk-grade-650: #282828;
  --bk-grade-700: #232323;
  --bk-grade-750: #1e1e1e;
  --bk-grade-800: #191919;
  --bk-grade-850: #141414;
  --bk-grade-900: #0f0f0f;
  --bk-grade-950: #0a0a0a;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Medium.eot");
  src: url("../fonts/Barlow-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Barlow-Medium.woff2") format("woff2"), url("../fonts/Barlow-Medium.woff") format("woff"), url("../fonts/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Light.eot");
  src: url("../fonts/Barlow-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Barlow-Light.woff2") format("woff2"), url("../fonts/Barlow-Light.woff") format("woff"), url("../fonts/Barlow-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Regular.eot");
  src: url("../fonts/Barlow-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Barlow-Regular.woff2") format("woff2"), url("../fonts/Barlow-Regular.woff") format("woff"), url("../fonts/Barlow-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-SemiBold.eot");
  src: url("../fonts/Barlow-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Barlow-SemiBold.woff2") format("woff2"), url("../fonts/Barlow-SemiBold.woff") format("woff"), url("../fonts/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Barlow";
  font-weight: normal;
  font-size: 1rem;
}

a,
button {
  transition: 0.2s ease-out;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a:focus,
button:focus {
  outline: none !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

::selection {
  color: var(--white);
  background: var(--color-100);
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-100) var(--color-200);
}

/* Works on Chrome, Edge, and Safari */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--color-100);
  border-radius: 20px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(30, 184, 186, 0.4);
}

.form-control:focus {
  box-shadow: none;
}

.return-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-100);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transform: rotate(45deg);
  transition: 0.3s linear;
  z-index: 10;
}

.return-top span {
  display: block;
  transform: rotate(-45deg);
}

.return-top span img {
  position: relative;
  width: 15px;
  animation: upBounce 2s infinite;
}

.return-top:hover span img {
  top: 5px;
}

.top-sec {
  position: relative;
  background-color: var(--color-200);
}

.day-time {
  color: var(--white);
  padding: 0.5rem 0.5rem;
  text-transform: uppercase;
}

.day-time .time {
  color: var(--color-100);
}

.top-nav {
  display: flex;
  justify-content: flex-end;
}

.top-nav .nav-item + .nav-item {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.top-nav .nav-item .nav-link {
  color: var(--white);
  text-transform: uppercase;
}

.top-nav .nav-item .nav-link:hover {
  background-color: #017cb3;
}

.navbar-main {
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  padding: 0.75rem 1rem;
  background-color: transparent;
  box-shadow: none;
  z-index: 1030;
}

.navbar-main .logo {
  width: 132px;
  height: 110px;
  background-image: url(../images/royal-hospital-logo.png);
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  transition: 0.2s ease-out;
  transition-duration: 0.5s;
}

.navbar-main .navbar-toggler {
  background-color: var(--color-100);
  border: 0;
  border-radius: 2px;
}

.navbar-main .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-main.ins-navbar {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  background-color: white;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.navbar-main.ins-navbar .logo {
  width: 110px;
  height: 92px;
  background-position: 0 -92px;
}

.navbar-main.navbar-fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-color: white;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  animation: navDown 0.6s ease-in-out 0.2s backwards;
}

.navbar-main.navbar-fixed .logo {
  width: 110px;
  height: 92px;
  background-position: 0 -92px;
}

.navbar-main .navbar-collapse {
  flex-flow: column;
}

.tool-nav {
  display: flex;
  flex-wrap: nowrap;
}

.tool-nav .nav-item + .nav-item {
  margin-left: 0.75rem;
}

.tool-nav .nav-item .nav-link {
  color: var(--white);
  font-weight: 500;
  border: 1px solid var(--white);
}

.tool-nav .nav-item .nav-link:hover {
  background-color: var(--color-100);
  border: 1px solid var(--color-100);
}

.tool-nav .nav-item .nav-covid {
  display: flex;
  align-items: center;
  padding: 0.25rem 1.5rem;
  border-radius: 50px;
}

.tool-nav .nav-item .nav-covid img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.tool-nav .nav-item .nav-lng {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  text-align: center;
}

.tool-nav .nav-item .nav-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  text-align: center;
}

.tool-nav .nav-item .nav-search svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  fill: var(--white);
  transform: translate(-50%, -50%);
}

.main-nav {
  margin-top: 1.25rem;
}

.main-nav .nav-item .nav-link {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.85rem 1.125rem;
  background-color: var(--color-100);
  text-transform: uppercase;
}

.main-nav .nav-item .nav-link:hover {
  background-color: #2bcacc;
}

.main-nav .nav-item:first-child .nav-link {
  border-radius: 25px 0 0 25px;
  padding-left: 2rem;
}

.main-nav .nav-item:last-child .nav-link {
  border-radius: 0 25px 25px 0;
  padding-right: 2rem;
}

.main-nav .dropdown-menu {
  border: 0;
  border-radius: 0;
}

.main-nav .dropdown-toggle::after {
  content: "\f107" !important;
  font-family: "FontAwesome";
  font-size: 0.75rem;
  line-height: 0.5rem;
  margin-left: 0.255em;
  vertical-align: 0;
  border-top: 0 solid;
  border-right: 0 solid transparent;
  border-bottom: 0;
  border-left: 0 solid transparent;
}

.dep-mega-menu {
  display: flex;
  flex-flow: row nowrap;
  width: 800px;
  padding: 1.5rem 1.5rem;
  border: 0;
  border-radius: 0;
}

.dep-mega-menu .dep-menu-cell {
  display: flex;
  flex: 0 0 55%;
  max-width: 55%;
}

.dep-mega-menu .dep-con-cell {
  flex: 0 0 45%;
  max-width: 45%;
}

.dep-mega-menu .dep-link-cell {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0.5rem;
}

.dep-mega-menu .dep-link-cell + .dep-link-cell {
  border-left: 1px solid var(--bk-grade-150);
}

.dep-mega-menu .dep-link-cell ul li a {
  display: block;
  position: relative;
  font-weight: 500;
  padding: 0.5rem 0.25rem 0.5rem 0.25rem;
}

.dep-mega-menu .dep-link-cell ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 0;
  height: 16px;
  background-color: var(--color-100);
  transition: 0.2s ease-out;
}

.dep-mega-menu .dep-link-cell ul li a:hover {
  color: var(--color-100);
  padding: 0.5rem 0.25rem 0.5rem 0.5rem;
}

.dep-mega-menu .dep-link-cell ul li a:hover::before {
  width: 3px;
}

.dep-mega-menu .dep-menu-item figure {
  margin: 0;
}

.dep-mega-menu .dep-menu-item figure img {
  width: 100%;
}

.dep-mega-menu .dep-menu-item figcaption {
  padding: 1rem 1rem 1rem;
}

.dep-mega-menu .dep-menu-item figcaption h3 {
  color: var(--bk-grade-950);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.dep-mega-menu .dep-menu-item figcaption p {
  color: var(--bk-grade-950);
  font-size: 0.875rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
}

.dep-mega-menu .dep-menu-item figcaption .btn-explore {
  color: var(--color-100);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  margin: 0;
  border-radius: 50px;
  box-shadow: none;
  text-transform: uppercase;
}

.dep-mega-menu .dep-menu-item figcaption .btn-explore .fa {
  margin-left: 0.5rem;
}

.dep-mega-menu .dep-menu-item figcaption .btn-explore:hover {
  color: var(--white);
  background-color: var(--color-100);
}

.navbar-fixed .tool-nav .nav-item .nav-link,
.ins-navbar .tool-nav .nav-item .nav-link {
  color: var(--bk-grade-950) !important;
  border: 1px solid var(--bk-grade-950);
}

.navbar-fixed .tool-nav .nav-item .nav-link:hover,
.ins-navbar .tool-nav .nav-item .nav-link:hover {
  color: var(--white) !important;
  background-color: var(--color-100);
  border: 1px solid var(--color-100);
}

.navbar-fixed .tool-nav .nav-item .nav-search svg,
.ins-navbar .tool-nav .nav-item .nav-search svg {
  fill: var(--bk-grade-950);
}

.dropdown-search {
  padding: 0;
}

.drop-search {
  display: flex;
  width: unset !important;
  min-width: 20rem;
}

.drop-search .form-control {
  flex: 1 1 0;
  min-height: 45px;
  background-color: var(--white);
  border: 0;
  border-radius: 0;
}

.drop-search .btn-search {
  flex: 0 0 45px;
  max-width: 45px;
  margin: 0;
  padding: 0;
  background-color: var(--color-100);
  border: 0;
  border-radius: 0;
}

.banner-sec {
  position: relative;
  overflow: hidden;
}

.social-media {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  list-style: none;
  transform: translateY(-50%);
  z-index: 1020;
}

.social-media .sm-item + .sm-item {
  margin-top: 0.5rem;
}

.social-media .sm-item .sm-link {
  position: relative;
  display: block;
  color: var(--white);
  width: 48px;
  height: 48px;
  background-color: var(--color-100);
  border: 0;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}

.social-media .sm-item .sm-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-200);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  transition: 0.2s ease-out;
}

.social-media .sm-item .sm-link .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.social-media .sm-item .sm-link:hover {
  background-color: var(--color-200);
}

.social-media .sm-item .sm-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.scroll-downs {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  margin: auto;
  width: 26px;
  height: 40px;
  z-index: 1020;
}

.scroll-downs .mousey {
  width: 100%;
  padding: 6px 10px;
  height: 40px;
  background-color: var(--color-100);
  border: 2px solid var(--color-100);
  border-radius: 25px;
  opacity: 0.9;
  transition: 0.2s ease-out;
}

.scroll-downs .scroller {
  width: 3px;
  height: 8px;
  border-radius: 25%;
  background-color: var(--white);
  border-radius: 12px;
  animation-name: scroll-dot;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
  transition: 0.2s ease-out;
}

.banner-cover {
  position: relative;
  height: calc(100vh - 40px);
}

.banner-cover::before, .banner-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
}

.banner-cover::before {
  top: 0;
  height: 20%;
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(100%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
}

.banner-cover .carousel .carousel-inner .carousel-item img,
.banner-cover .carousel .carousel-inner .carousel-item video {
  width: 100%;
  height: calc(100vh - 39px);
  object-fit: cover;
}

.banner-cover .carousel-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 65%;
  transform: translateY(-50%);
  z-index: 20;
}

.banner-cover .carousel-content .carousel-hd {
  position: relative;
  max-width: 675px;
}

.banner-cover .carousel-content .carousel-hd p {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}

.banner-cover .carousel-content .carousel-hd h2 {
  color: var(--white);
  font-size: 4.275rem;
  font-weight: 600;
  line-height: 96px;
}

.banner-tool-cover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
}

.banner-tool-cover .banner-tools {
  position: relative;
  min-height: 125px;
}

.scroll-btm {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 15px;
  height: 135px;
  color: var(--white);
  z-index: 100;
}

.scroll-btm .scroll-txt {
  position: absolute;
  left: 50%;
  top: 35%;
  width: 120px;
  font-size: 0.875rem;
  text-transform: uppercase;
  transform: rotate(270deg) translate(-50%, -50%);
  transform-origin: 0 0;
}

.scroll-btm .scroll-arrow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  animation: downBounce 1.5s infinite;
}

.scroll-btm:hover {
  color: var(--white);
}

.voice-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: -2rem;
  width: 132px;
  height: 132px;
  background-color: var(--color-100);
  border-radius: 50%;
  animation: voicePulse 1s ease 0s infinite;
  z-index: 100;
}

.voice-cover h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.voice-cover p {
  color: var(--white);
  font-size: 0.875rem;
  margin: 0;
}

.section-hd {
  margin-bottom: 3rem;
  text-align: center;
}

.section-hd h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bk-grade-700);
  font-size: 2.75rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.section-hd h2 .hd-block {
  flex: 0 1 auto;
  padding: 0 2rem;
}

.section-hd h2 .hd-anim {
  flex: 0 0 160px;
  max-width: 160px;
  height: 60px;
  background-image: url(../images/ecg-graph.png);
  background-repeat: repeat-x;
  animation: ecgGraph 3s linear infinite;
  overflow: hidden;
}

.section-hd p {
  color: var(--bk-grade-700);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.updates-sec {
  position: relative;
  padding: 6rem 0 3rem;
}

.updates-carousel .owl-theme .owl-nav .owl-prev,
.updates-carousel .owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 20px;
  margin: 0 20px;
  padding: 0;
  background-color: transparent;
  background-position: center;
  background-size: 50px;
  background-repeat: no-repeat;
  border-radius: 0;
  transition: 0.2s ease-out;
}

.updates-carousel .owl-theme .owl-nav .owl-prev {
  background-image: url(../images/arrow-left.png);
}

.updates-carousel .owl-theme .owl-nav .owl-next {
  background-image: url(../images/arrow-right.png);
}

.update-item {
  position: relative;
}

.update-item figure {
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.update-item figure img {
  width: 100%;
  width: calc(100% + 50px) !important;
  transform: translate3d(-40px, 0, 0);
  transition: 0.2s ease-out;
}

.update-item figcaption {
  padding: 1rem 1.5rem;
}

.update-item figcaption h3 {
  color: var(--bk-grade-950);
  font-size: 1.125rem;
  font-weight: 500;
}

.update-item figcaption .up-date {
  color: var(--color-200);
  font-weight: 500;
}

.update-item:hover figure img {
  transform: translate3d(0, 0, 0);
}

.department-sec {
  position: relative;
  padding: 3rem 0 3rem 0;
  overflow: hidden;
}

.department-item {
  position: relative;
  max-width: 323px;
  margin: 0 0 1.5rem 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.department-item figure {
  height: 285px;
  margin: 0;
}

.department-item figure .dep-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 285px;
  overflow: hidden;
}

.department-item figure img {
  width: 100%;
}

.department-item figcaption {
  padding: 1rem 1rem;
  text-align: center;
}

.department-item figcaption p {
  color: var(--bk-grade-900);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.department-item .dep-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 3.5rem 2rem 1rem;
  background-color: rgba(30, 184, 186, 0.9);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.2s ease-out;
  transition-duration: 500ms;
}

.department-item .dep-overlay .dep-over-hd {
  min-height: 60px;
  margin-bottom: 1rem;
}

.department-item .dep-overlay .dep-over-hd h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.department-item .dep-overlay .dep-over-body {
  min-height: 125px;
  margin-bottom: 1rem;
}

.department-item .dep-overlay .dep-over-body p {
  color: var(--white);
  margin: 0;
  text-align: justify;
}

.department-item .dep-overlay .dep-over-footer .btn-more {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid var(--white);
  border-radius: 25px;
  box-shadow: none;
  padding: 0.5rem 2rem;
  margin: 0;
}

.department-item .dep-overlay .dep-over-footer .btn-more .btn-label {
  flex: 1 1 0;
  text-align: left;
}

.department-item .dep-overlay .dep-over-footer .btn-more .btn-icon {
  position: relative;
  flex: 0 0 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: 0.2s ease-out;
}

.department-item .dep-overlay .dep-over-footer .btn-more .btn-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  transform: translate(-50%, -50%);
}

.department-item .dep-overlay .dep-over-footer .btn-more:hover {
  color: var(--color-100);
  background-color: var(--white);
}

.department-item .dep-overlay .dep-over-footer .btn-more:hover .btn-icon {
  background-color: var(--color-100);
}

.department-item:hover figure .dep-img {
  height: 100%;
}

.department-item:hover .dep-overlay {
  transform: translateY(0);
  opacity: 1;
}

.exp-dep-cover {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.exp-dep-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0.85)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#35478a', endColorstr='#35478a', GradientType=0);
  z-index: 5;
}

.exp-dep-cover .btn-expand {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  width: 100%;
  max-width: 275px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: var(--color-200);
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--white);
  border: 2px solid var(--color-200);
  border-radius: 50px;
  box-shadow: none;
  padding: 0.5rem 2rem;
  margin: 0 auto;
  z-index: 10;
}

.exp-dep-cover .btn-expand .btn-label {
  flex: 1 1 0;
  text-align: left;
}

.exp-dep-cover .btn-expand .btn-icon {
  position: relative;
  flex: 0 0 32px;
  max-width: 32px;
  height: 32px;
  background-color: var(--color-200);
  border-radius: 50%;
  transition: 0.2s ease-out;
}

.exp-dep-cover .btn-expand .btn-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  transform: translate(-50%, -50%);
}

.exp-dep-cover .btn-expand:hover {
  color: var(--white);
  background-color: var(--color-200);
}

.exp-dep-cover .btn-expand:hover .btn-icon {
  background-color: var(--color-100);
}

.exp-dep-cover.is-active::after {
  display: none;
}

.exp-dep-cover.is-active .btn-expand {
  display: none;
}

.service-sec {
  position: relative;
  padding: 3rem 0 2rem;
}

.service-item {
  max-width: 250px;
  margin: 0 auto 2rem;
}

.service-item figure {
  position: relative;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}

.service-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.service-item figcaption {
  min-height: 60px;
}

.service-item figcaption p {
  color: var(--bk-grade-500);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.service-item:hover figure {
  animation: servicePulse 1s ease 0s infinite;
}

.service-item:hover figure img {
  transform: scale(1.2);
}

.exp-service-cover {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.exp-service-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0.85)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#35478a', endColorstr='#35478a', GradientType=0);
  z-index: 5;
}

.exp-service-cover .btn-expand {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  width: 100%;
  max-width: 275px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: var(--color-200);
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--white);
  border: 2px solid var(--color-200);
  border-radius: 50px;
  box-shadow: none;
  padding: 0.5rem 2rem;
  margin: 0 auto;
  z-index: 10;
}

.exp-service-cover .btn-expand .btn-label {
  flex: 1 1 0;
  text-align: left;
}

.exp-service-cover .btn-expand .btn-icon {
  position: relative;
  flex: 0 0 32px;
  max-width: 32px;
  height: 32px;
  background-color: var(--color-200);
  border-radius: 50%;
  transition: 0.2s ease-out;
}

.exp-service-cover .btn-expand .btn-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  transform: translate(-50%, -50%);
}

.exp-service-cover .btn-expand:hover {
  color: var(--white);
  background-color: var(--color-200);
}

.exp-service-cover .btn-expand:hover .btn-icon {
  background-color: var(--color-100);
}

.exp-service-cover.is-active::after {
  display: none;
}

.exp-service-cover.is-active .btn-expand {
  display: none;
}

.hub-sec {
  position: relative;
  padding: 3rem 0 3rem;
}

.hub-lg-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.hub-lg-item figure {
  margin: 0;
  overflow: hidden;
}

.hub-lg-item figure img {
  width: 100%;
  width: calc(100% + 50px) !important;
  transform: translate3d(-40px, 0, 0);
  transition: 0.2s ease-out;
}

.hub-lg-item figcaption {
  padding: 1rem 1rem;
  text-align: center;
}

.hub-lg-item figcaption p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.hub-lg-item.hub-green figcaption {
  background-color: var(--color-100);
}

.hub-lg-item.hub-blue figcaption {
  background-color: var(--color-200);
}

.hub-lg-item:hover figure img {
  transform: translate3d(0, 0, 0);
}

.hub-sm-item {
  position: relative;
  display: flex;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.hub-sm-item figure {
  flex: 0 0 60%;
  max-width: 60%;
  margin: 0;
  overflow: hidden;
}

.hub-sm-item figure img {
  width: 100%;
  width: calc(100% + 50px) !important;
  height: 235px;
  object-fit: cover;
  transform: translate3d(-40px, 0, 0);
  transition: 0.2s ease-out;
}

.hub-sm-item figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40%;
  max-width: 40%;
  padding: 1rem 1rem;
  background-color: var(--color-100);
}

.hub-sm-item figcaption p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

.hub-sm-item:nth-child(odd) figcaption {
  background-color: var(--color-200);
}

.hub-sm-item:hover figure img {
  transform: translate3d(0, 0, 0);
}

.location {
  height: 550px;
}

.location iframe {
  width: 100%;
  height: 100%;
}

.info-sec {
  position: relative;
  padding: 4rem 0 4rem 0;
  background-color: #08969d;
}

.info-cover {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.info-cover figure {
  flex: 0 0 250px;
  max-width: 250px;
  margin: 0;
  order: 2;
}

.info-cover figure img {
  width: 100%;
}

.info-cover .info-co-body {
  flex: 1 1 0;
  text-align: center;
}

.info-cover .info-co-body h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.info-cover .info-co-body p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
}

.info-cover .info-co-body .btn-call {
  display: flex;
  align-items: center;
  max-width: 350px;
  padding: 0;
  margin: 0 auto;
  box-shadow: none;
  overflow: visible;
}

.info-cover .info-co-body .btn-call .btn-icon {
  position: relative;
  flex: 0 0 72px;
  max-width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-100);
  z-index: 10;
  animation: callPulse 1s ease 0s infinite;
}

.info-cover .info-co-body .btn-call .btn-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  transform: translate(-50%, -50%);
}

.info-cover .info-co-body .btn-call .btn-number {
  position: relative;
  flex: 1 1 0;
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin-left: -2rem;
  background-color: var(--color-200);
  border-radius: 0 50px 50px 0;
}

.footer-social .sm-item {
  display: inline-block;
}

.footer-social .sm-item + .sm-item {
  margin-left: 1rem;
}

.footer-social .sm-item .sm-link {
  position: relative;
  display: block;
  color: var(--white);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}

.footer-social .sm-item .sm-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  transition: 0.2s ease-out;
}

.footer-social .sm-item .sm-link .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.footer-social .sm-item .sm-link:hover {
  background-color: var(--color-100);
}

.footer-social .sm-item .sm-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.footer-accredit-sec {
  position: relative;
  padding: 3rem 0 1rem;
  background-color: var(--white);
}

.ft-accredit-cover {
  max-width: 1000px;
  margin: 0 auto;
}

.ft-accredit-cover .ft-accredit-hd {
  margin-bottom: 2rem;
  text-align: center;
}

.ft-accredit-cover .ft-accredit-hd h3 {
  color: #494646;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.ft-accredit-cover .ft-accredit-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ft-accredit-cover .ft-accredit-body .ft-accredit-item {
  flex: 0 0 200px;
  max-width: 200px;
  margin-bottom: 0.5rem;
}

.ft-accredit-cover .ft-accredit-body .ft-accredit-item img {
  width: 100%;
}

.footer-social-sec {
  position: relative;
  padding: 1rem 0 1rem;
  background-color: #494646;
}

.site-visitors {
  color: var(--white);
  margin-top: 0.5rem;
  text-align: right;
}

.site-visitors span {
  color: #f44436;
}

.copyright-sec {
  position: relative;
  padding: 1rem 0 1rem;
  background-color: #403e3e;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
}

.footer-links li {
  position: relative;
  margin-right: 1rem;
}

.footer-links li + li::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  width: 1px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%);
}

.footer-links li a {
  display: block;
  color: #f4f3f4;
  font-size: 0.875rem;
  padding: 0.25rem 0.25rem;
  text-decoration: none;
}

.footer-links li a:hover {
  color: var(--color-100);
}

.copy-right {
  color: #f4f3f4;
  font-size: 0.875rem;
  text-align: right;
}

.ins-banner-sec {
  position: relative;
}

.ins-banner-sec .ins-banner-slider img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.ins-banner-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ins-banner-body .ins-banner-hd {
  position: relative;
  display: flex;
  align-items: center;
}

.ins-banner-body .ins-banner-hd .ins-ban-hd-body {
  flex: 1 1 0;
}

.ins-banner-body .ins-banner-hd .ins-ban-hd-body h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.ins-banner-body .ins-banner-hd .ins-ban-hd-body .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0.25rem;
}

.ins-banner-body .ins-banner-hd .ins-ban-hd-body .breadcrumb .breadcrumb-item {
  color: var(--white);
  font-weight: normal;
}

.ins-banner-body .ins-banner-hd .ins-ban-hd-body .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  color: var(--white);
  font-family: "FontAwesome";
}

.ins-banner-body .ins-banner-hd .ins-ban-hd-body .breadcrumb .breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
}

.ins-banner-body .ins-banner-hd .ins-ban-hd-body .breadcrumb .breadcrumb-item a:hover {
  color: var(--color-100);
}

.ins-banner-body .ins-banner-hd .ins-ban-tools {
  flex: 0 0 125px;
  max-width: 125px;
}

.ins-banner-body .ins-banner-hd .ins-ban-tools .tools-list {
  display: flex;
  align-items: center;
}

.ins-banner-body .ins-banner-hd .ins-ban-tools .tools-list li {
  padding: 0 0.5rem;
}

.ins-banner-body .ins-banner-hd .ins-ban-tools .tools-list li a {
  display: block;
  padding: 0.25rem 0.25rem;
  border-radius: 4px;
}

.ins-banner-body .ins-banner-hd .ins-ban-tools .tools-list li a:hover {
  background-color: var(--color-100);
}

.ins-banner-sec.facts-banner {
  padding: 3rem 0 3rem;
  background-color: var(--color-200);
}

.ins-banner-sec.facts-banner .ins-banner-body {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: unset;
}

.ins-banner-sec.employee-banner .ins-banner-slider img {
  width: 100%;
  height: unset;
  object-fit: cover;
}

.ins-content-sec {
  position: relative;
  padding: 3rem 0 3rem;
}

.ins-abt-sec {
  position: relative;
}

.ins-abt-cover {
  position: relative;
  padding: 5rem 5rem 25rem;
  margin: 0 0 5rem 0;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 1rem;
}

.ins-abt-cover .ins-abt-graph {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.ins-abt-cover .ins-abt-graph img {
  width: 100%;
}

.ins-abt-cover .ins-abt-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5rem;
  width: 700px;
  margin: 0 auto;
}

.ins-abt-cover .ins-abt-img img {
  width: 100%;
}

.ins-abt-cover .ins-abt-body {
  position: relative;
  z-index: 10;
}

.ins-abt-cover .ins-abt-body h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.ins-abt-cover .ins-abt-body p {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.mission-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.mission-cover {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2.5rem 5rem;
  background-color: #d2f1f1;
  border-radius: 1rem 1rem;
}

.mission-cover figure {
  flex: 0 0 250px;
  max-width: 250px;
  margin: 0 0 0 5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  order: 2;
}

.mission-cover figure img {
  width: 100%;
}

.mission-cover figcaption {
  flex: 1 1 0;
}

.mission-cover figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 2.15rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.mission-cover figcaption h4 {
  color: var(--bk-grade-700);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.mission-cover figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.goal-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.goal-cover {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2.5rem 5rem;
  border-radius: 1rem 1rem;
}

.goal-cover figure {
  flex: 0 0 250px;
  max-width: 250px;
  margin: 0 5rem 0 0;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
}

.goal-cover figure img {
  width: 100%;
}

.goal-cover figcaption {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 0;
}

.goal-cover figcaption .values-body-hd {
  flex: 0 0 100%;
  max-width: 100%;
}

.goal-cover figcaption .values-body-hd h3 {
  color: var(--bk-grade-700);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.goal-cover figcaption .goal-body-block {
  flex: 0 0 100%;
  max-width: 100%;
}

.goal-cover figcaption .goal-body-cell {
  flex: 0 0 50%;
  max-width: 50%;
}

.goal-cover figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.goal-cover figcaption ul li {
  position: relative;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.goal-cover figcaption ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #08294f;
  border-radius: 50%;
}

.values-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.values-cover {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2.5rem 5rem;
  background-color: #d2f1f1;
  border-radius: 1rem 1rem;
}

.values-cover figure {
  flex: 0 0 250px;
  max-width: 250px;
  margin: 0 0 0 5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  order: 2;
}

.values-cover figure img {
  width: 100%;
}

.values-cover figcaption {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 0;
}

.values-cover figcaption .values-body-hd {
  flex: 0 0 100%;
  max-width: 100%;
}

.values-cover figcaption .values-body-hd h3 {
  color: var(--bk-grade-700);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.values-cover figcaption .values-body-cell {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0.25rem;
}

.values-cover figcaption .fig-body-cell {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0.25rem;
}

.values-cover figcaption ul li {
  position: relative;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.values-cover figcaption ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #08294f;
  border-radius: 50%;
}

.journey-cover {
  position: relative;
  padding: 5rem 5rem 5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 1rem;
}

.journey-cover p {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.journey-item-cover {
  position: relative;
  padding: 3rem 2rem 3rem;
}

.journey-item-scroll {
  max-height: 300px;
}

.journey-item-scroll .mCSB_outside + .mCSB_scrollTools {
  right: -15px;
}

.journey-item-scroll .mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.journey-item-scroll .mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  background-color: transparent;
  background-color: transparent;
  border-radius: 0px;
}

.journey-item-scroll .mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.journey-item-scroll .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: var(--color-200);
  background-color: #0183bd;
  border-radius: 4px;
}

.journey-item-scroll .mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: var(--color-200);
  background-color: #0183bd;
}

.journey-item-scroll .mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.journey-item-scroll .mCS-light-thick.mCSB_scrollTools
.mCSB_dragger.mCSB_dragger_onDrag
.mCSB_dragger_bar {
  background-color: var(--color-200);
  background-color: #0183bd;
}

.journey-item-scroll .mCSB_scrollTools .mCSB_dragger {
  height: 100px !important;
}

.journey-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}

.journey-item figure {
  flex: 0 0 375px;
  max-width: 375px;
  margin: 0;
  border: 5px solid rgba(30, 184, 186, 0.25);
  border-radius: 1.5rem;
  overflow: hidden;
  order: 1;
}

.journey-item figure img {
  width: 100%;
}

.journey-item .journey-year {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  order: 2;
}

.journey-item .journey-year .year-pulse {
  flex: 1 1 0;
  height: 1px;
  border-top: 2px dotted var(--color-100);
}

.journey-item .journey-year .year {
  flex: 0 0 375px;
  max-width: 375px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1rem 0.5rem;
  background-color: var(--color-100);
  border-radius: 50px;
  text-align: center;
}

.journey-item figcaption {
  display: flex;
  align-items: center;
  flex: 0 0 375px;
  max-width: 375px;
  min-height: 300px;
  padding: 2.5rem 2.5rem;
  background-color: var(--white);
  border: 2px solid var(--color-100);
  border-radius: 3rem;
  order: 3;
}

.journey-item:nth-of-type(even) .journey-year {
  order: 2;
}

.journey-item:nth-of-type(even) figure {
  order: 3;
}

.journey-item:nth-of-type(even) figcaption {
  order: 1;
}

.qua-intro-sec {
  position: relative;
  padding: 0 0 2rem 0;
}

.quality-intro {
  position: relative;
  padding: 5rem 5rem 5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 1rem;
}

.quality-intro h2 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.quality-intro h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.quality-intro p {
  color: var(--white);
  font-size: 1.025rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-safety-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.qua-safety {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem 5rem;
  border-radius: 1rem 1rem;
}

.qua-safety figure {
  flex: 0 0 250px;
  max-width: 250px;
  margin: 0 0 0 5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  overflow: hidden;
  order: 2;
}

.qua-safety figure img {
  width: 100%;
}

.qua-safety figcaption {
  flex: 1 1 0;
}

.qua-safety figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 2.15rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.qua-safety figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-safety figcaption ul li {
  position: relative;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-safety figcaption ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #08294f;
  border-radius: 50%;
}

.qua-safety figcaption ol {
  padding: 0 0 0 1rem;
  margin: 0;
}

.qua-safety figcaption ol li {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-measure-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.qua-measure {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem 5rem;
  background-color: #d2f1f1;
  border-radius: 1rem 1rem;
}

.qua-measure figure {
  flex: 0 0 250px;
  max-width: 250px;
  margin: 0 5rem 0 0;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  overflow: hidden;
}

.qua-measure figure img {
  width: 100%;
}

.qua-measure figcaption {
  flex: 1 1 0;
}

.qua-measure figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 2.15rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.qua-measure figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-measure figcaption ol {
  padding: 0 0 0 1rem;
  margin: 0;
}

.qua-measure figcaption ol li {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-measure figcaption ul li {
  position: relative;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-measure figcaption ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #08294f;
  border-radius: 50%;
}

.qua-prioritiy-sec {
  position: relative;
  padding: 3rem 0 3rem;
}

.qua-prioritiy-hd {
  margin-bottom: 3rem;
  text-align: center;
}

.qua-prioritiy-hd p {
  color: var(--bk-grade-700);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

.qua-prioritiy-hd h2 {
  color: var(--bk-grade-700);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0;
}

.prio-nav-item {
  max-width: 250px;
  margin: 0 auto 1rem;
}

.prio-nav-item a {
  padding: 0;
  box-shadow: none !important;
}

.prio-nav-item figure {
  position: relative;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}

.prio-nav-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.prio-nav-item figure .down-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  background-color: var(--color-100);
  border-radius: 50%;
}

.prio-nav-item figure .down-icon img {
  position: relative;
  width: 20px;
  animation: downBounce 2s infinite;
}

.prio-nav-item figcaption {
  min-height: 60px;
}

.prio-nav-item figcaption p {
  color: var(--bk-grade-500);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.prio-acc-cover {
  position: relative;
  padding: 2.5rem 5rem;
  background-color: #d2f1f1;
  margin-bottom: 2rem;
  border: 2px solid var(--color-100);
  border-radius: 1rem;
}

.prio-acc-cover h3 {
  color: var(--bk-grade-700);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.prio-acc-cover ul li {
  position: relative;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
}

.prio-acc-cover ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #08294f;
  border-radius: 50%;
}

.prio-acc-cover ol {
  padding: 0;
  margin: 0 0 1rem 1rem;
}

.prio-acc-cover ol li {
  color: var(--bk-grade-700);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: justify;
}

.prio-acc-cover ol li ol {
  padding: 0;
  margin: 1rem 0 1rem 1rem;
}

.prio-acc-cover ol li ol li {
  color: var(--bk-grade-500);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.qua-speak-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.qua-speak {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem 5rem;
  background-color: #d2f1f1;
  border-radius: 1rem 1rem;
}

.qua-speak figure {
  flex: 0 0 250px;
  max-width: 250px;
  margin: 0 0 0 5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  overflow: hidden;
  order: 2;
}

.qua-speak figure img {
  width: 100%;
}

.qua-speak figcaption {
  flex: 1 1 0;
}

.qua-speak figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.qua-speak figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-speak figcaption ol {
  padding: 0 0 0 1rem;
  margin: 0;
}

.qua-speak figcaption ol li {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-achieve-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.qua-achieve {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem 5rem;
  border-radius: 1rem 1rem;
}

.qua-achieve .qua-achieve-hd {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}

.qua-achieve .qua-achieve-hd h3 {
  color: var(--bk-grade-700);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
}

.qua-achieve figure {
  flex: 0 0 250px;
  max-width: 250px;
  margin: 0 5rem 0 0;
  overflow: hidden;
}

.qua-achieve figure img {
  width: 100%;
}

.qua-achieve figcaption {
  flex: 1 1 0;
}

.qua-achieve figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.qua-achieve figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-achieve figcaption ol {
  padding: 0 0 0 1rem;
  margin: 0;
}

.qua-achieve figcaption ol li {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-awards-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.qua-awards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem 5rem;
  background-color: #d2f1f1;
  border-radius: 1rem 1rem;
}

.qua-awards figure {
  flex: 0 0 250px;
  max-width: 250px;
  margin: 0 0 0 5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  overflow: hidden;
  order: 2;
}

.qua-awards figure img {
  width: 100%;
}

.qua-awards figcaption {
  flex: 1 1 0;
}

.qua-awards figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.qua-awards figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.qua-awards figcaption ol {
  padding: 0 0 0 1rem;
  margin: 0;
}

.qua-awards figcaption ol li {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.com-block-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.com-sec-hd {
  padding: 0 0 0 4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--bk-grade-150);
}

.com-sec-hd h2 {
  color: var(--bk-grade-700);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.com-block-cover {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2.5rem 5rem;
  border-radius: 1rem 1rem;
}

.com-block-cover .com-block-hd {
  flex: 0 0 100%;
  margin-bottom: 1rem;
}

.com-block-cover .com-block-hd h2 {
  color: var(--bk-grade-700);
  font-size: 2.05rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.com-block-cover figure {
  flex: 0 0 450px;
  max-width: 450px;
  margin: 0 5rem 0 0;
  overflow: hidden;
}

.com-block-cover figure img {
  width: 100%;
  border-radius: 2rem;
}

.com-block-cover figure.figure-right {
  margin: 0 0 0 5rem;
  order: 2;
}

.com-block-cover figure.figure-radius-2 {
  border-radius: 2rem;
}

.com-block-cover figure.figure-grade {
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
}

.com-block-cover figure.figure-circle {
  border-radius: 50%;
  overflow: hidden;
}

.com-block-cover figure.figure-250 {
  flex: 0 0 250px;
  max-width: 250px;
}

.com-block-cover figure .reflect img {
  border-radius: 2rem;
}

.com-block-cover figure .reflect canvas {
  border-radius: 2rem 2rem 0 0 !important;
}

.com-block-cover figcaption {
  flex: 1 1 0;
}

.com-block-cover figcaption .fig-body {
  display: flex;
  flex-wrap: wrap;
}

.com-block-cover figcaption .fig-body .fig-body-hd {
  flex: 0 0 100%;
  max-width: 100%;
}

.com-block-cover figcaption .fig-body .fig-body-cell {
  flex: 1 1 0;
  padding: 0 2rem 0 0;
}

.com-block-cover figcaption h2 {
  color: var(--bk-grade-700);
  font-size: 2.05rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.com-block-cover figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.com-block-cover figcaption h4 {
  color: var(--bk-grade-700);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.com-block-cover figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.com-block-cover figcaption strong {
  font-weight: 600;
}

.com-block-cover figcaption ul li {
  position: relative;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
}

.com-block-cover figcaption ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #08294f;
  border-radius: 50%;
}

.com-block-cover figcaption a {
  color: var(--color-100);
  text-decoration: underline;
}

.com-block-cover figcaption .btn-expand {
  position: relative;
  width: 100%;
  max-width: 275px;
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--color-200);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 2rem;
  background-color: var(--white);
  border: 2px solid var(--color-200);
  border-radius: 50px;
  box-shadow: none;
  z-index: 10;
}

.com-block-cover figcaption .btn-expand .btn-label {
  flex: 1 1 0;
  text-align: left;
}

.com-block-cover figcaption .btn-expand .btn-icon {
  position: relative;
  flex: 0 0 32px;
  max-width: 32px;
  height: 32px;
  background-color: var(--color-200);
  border-radius: 50%;
  transition: 0.2s ease-out;
}

.com-block-cover figcaption .btn-expand .btn-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  transform: translate(-50%, -50%);
}

.com-block-cover figcaption .btn-expand:hover {
  color: var(--white);
  background-color: var(--color-200);
}

.com-block-cover figcaption .btn-expand:hover .btn-icon {
  background-color: var(--color-100);
}

.com-block-cover figcaption .btn-leaf {
  color: var(--bk-grade-950);
  margin: 0;
  border-radius: 0.25rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.com-block-cover.block-top {
  align-items: flex-start;
}

.com-block-cover.block-lt-blue {
  background-color: #d2f1f1;
}

.com-block-cover.block-grade {
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
}

.com-block-cover.block-grade h2 {
  color: var(--white);
}

.com-block-cover.block-grade h3 {
  color: var(--white);
}

.com-block-cover.block-grade h4 {
  color: var(--white);
}

.com-block-cover.block-grade p {
  color: var(--white);
}

.com-block-cover.block-grade ul li {
  color: var(--white);
}

.com-block-cover.block-grade ul li::before {
  background-color: var(--white);
}

.com-block-cover.block-grade a {
  color: var(--white);
  text-decoration: underline;
}

.block-figure {
  margin: 0 auto 2rem;
}

.block-figure figure {
  position: relative;
  max-width: 250px;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.block-figure figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.block-figure figure .down-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  background-color: var(--color-100);
  border-radius: 50%;
}

.block-figure figure .down-icon img {
  position: relative;
  width: 20px;
  animation: downBounce 2s infinite;
}

.block-figure figure.figure-round {
  border-radius: 50%;
}

.block-figure figure.figure-grade {
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
}

.block-figure figcaption {
  text-align: center;
}

.block-figure figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  text-align: center;
}

.block-figure figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
}

.reflect {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  height: 300px;
  background: linear-gradient(#000, #000) center/100% 1px no-repeat, var(--img) top/100% 50% no-repeat;
  position: relative;
}

.reflect::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: inherit;
  transform: scale(1, -1);
  mask-image: linear-gradient(transparent 25%, #ccc 50%);
}

.com-section {
  position: relative;
  padding: 2rem 0 2rem;
}

.adole-item {
  position: relative;
}

.adole-item figure {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}

.adole-item figure img {
  width: 100%;
}

.adole-item figure .reflect {
  width: 100% !important;
  height: auto !important;
}

.adole-item figure .reflect img {
  border-radius: 2rem;
}

.adole-item figure .reflect canvas {
  width: 100% !important;
  border-radius: 2rem 2rem 0 0 !important;
}

.adole-item figcaption {
  padding: 2rem 1rem;
  text-align: center;
  transform: translateY(-2rem);
}

.adole-item figcaption h3 {
  color: var(--bk-grade-950);
  font-size: 1.4rem;
  font-weight: 600;
}

.adole-item figcaption p {
  color: var(--bk-grade-950);
  font-size: 1.05rem;
  font-weight: normal;
  text-align: justify;
}

.adole-item:hover figure img {
  transform: translate3d(0, 0, 0);
}

.e-learn-hd {
  margin-bottom: 3rem;
  text-align: center;
}

.e-learn-hd h3 {
  color: var(--bk-grade-950);
  font-size: 1.6rem;
  font-weight: 500;
}

.anesthesia-item {
  position: relative;
}

.anesthesia-item figure {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}

.anesthesia-item figure img {
  width: 100%;
}

.anesthesia-item figure .reflect {
  width: 100% !important;
  height: auto !important;
}

.anesthesia-item figure .reflect img {
  border-radius: 2rem;
}

.anesthesia-item figure .reflect canvas {
  width: 100% !important;
  border-radius: 2rem 2rem 0 0 !important;
}

.anesthesia-item figcaption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  padding: 1rem 1rem;
  background-color: var(--color-200);
  border-radius: 50px;
  text-align: center;
  transform: translateY(-1rem);
  transition: 0.2s ease-out;
}

.anesthesia-item figcaption h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.anesthesia-item:hover figcaption {
  transform: translateY(-2rem);
}

.anesthesia-collapse .collapse-item {
  margin-bottom: 1.5rem;
}

.anesthesia-collapse .collapse-item .collapse-nav {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  padding: 1rem 1rem 1rem 2rem;
  background-color: transparent;
  border: 2px solid var(--color-100);
  border-radius: 1rem;
}

.anesthesia-collapse .collapse-item .collapse-nav .collapse-label {
  flex: 1 1 0;
  color: var(--bk-grade-950);
  font-size: 1.4rem;
  font-weight: 600;
}

.anesthesia-collapse .collapse-item .collapse-nav .collapse-icon {
  flex: 0 0 36px;
  max-width: 36px;
}

.anesthesia-collapse .collapse-item .collapse-nav .collapse-icon .icon {
  display: block;
  width: 36px;
  background-color: var(--color-100);
  border-radius: 50%;
  transition: 0.2s ease-out;
}

.anesthesia-collapse .collapse-item .collapse-nav .collapse-icon .icon img {
  width: 100%;
}

.anesthesia-collapse .collapse-item .collapse-nav:not(.collapsed) .collapse-icon .icon {
  transform: rotate(180deg);
}

.anesthesia-collapse .collapse-item .anesthesia-body {
  padding: 1rem 0;
}

.anesthesia-collapse .collapse-item .training-coll-body {
  padding: 1rem 0;
}

.training-collapse {
  position: relative;
  padding: 1.5rem 5rem;
  border-radius: 1rem 1rem;
  background-color: #d2f1f1;
}

.training-collapse h3 {
  color: var(--bk-grade-700);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.training-nav-hd {
  margin-bottom: 3rem;
  text-align: center;
}

.training-nav-hd p {
  color: var(--bk-grade-700);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

.training-nav-hd h2 {
  color: var(--bk-grade-700);
  font-size: 2.05rem;
  font-weight: 600;
  margin: 0;
}

.training-nav-item {
  position: relative;
  margin-bottom: 1rem;
}

.training-nav-item a {
  display: block;
}

.training-nav-item figure {
  position: relative;
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}

.training-nav-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.training-nav-item figure .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  opacity: 0;
  transition: 0.2s ease-out;
}

.training-nav-item figure .overlay .btn-more {
  color: var(--white);
  padding: 1rem 2rem;
  margin: 0;
  background-color: var(--color-100);
  border: 0;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.training-nav-item figcaption {
  position: relative;
  padding: 2rem 1rem;
  text-align: center;
}

.training-nav-item figcaption .down-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  background-color: var(--color-100);
  border-radius: 50%;
}

.training-nav-item figcaption .down-icon img {
  position: relative;
  width: 16px;
  animation: downBounce 2s infinite;
}

.training-nav-item figcaption h3 {
  color: var(--bk-grade-950);
  font-size: 1.025rem;
  font-weight: 600;
}

.training-nav-item:hover figure img {
  transform: scale(1.1);
}

.training-nav-item:hover figure .overlay {
  transform: scale(1);
  opacity: 1;
}

.safety-list-cover {
  position: relative;
  padding: 2rem 2rem;
  border: 2px solid var(--color-100);
  border-radius: 1rem;
}

.safety-list-cover .safety-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.safety-list-cover .safety-item figure {
  position: relative;
  flex: 0 0 130px;
  max-width: 130px;
  height: 130px;
  margin: 0 1.2rem 0 0;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(30, 184, 186, 0.4);
}

.safety-list-cover .safety-item figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  transform: translate(-50%, -50%);
}

.safety-list-cover .safety-item figcaption {
  flex: 1 1 0;
}

.safety-list-cover .safety-item figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  text-align: justify;
}

.social-list-hd {
  text-align: center;
}

.social-list-hd h3 {
  color: var(--bk-grade-700);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.social-cover {
  position: relative;
  padding-top: 300px;
  margin-bottom: 3rem;
}

.social-cover .social-list {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.social-cover .social-list .social-item {
  position: absolute;
  max-width: 250px;
}

.social-cover .social-list .social-item figure {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 1rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(30, 184, 186, 0.4);
}

.social-cover .social-list .social-item figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  transform: translate(-50%, -50%);
}

.social-cover .social-list .social-item figcaption {
  text-align: center;
}

.social-cover .social-list .social-item figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
}

.social-cover .social-list .social-item:nth-of-type(1) {
  left: -75%;
  top: 35%;
}

.social-cover .social-list .social-item:nth-of-type(2) {
  left: -65%;
  top: -30%;
}

.social-cover .social-list .social-item:nth-of-type(3) {
  left: 0;
  right: 0;
  top: -65%;
  margin: 0 auto;
}

.social-cover .social-list .social-item:nth-of-type(4) {
  right: -65%;
  top: -30%;
}

.social-cover .social-list .social-item:nth-of-type(5) {
  right: -75%;
  top: 35%;
}

.social-cover .social-img {
  position: relative;
  width: 400px;
  margin: 0 auto;
}

.social-cover .social-img img {
  width: 100%;
}

.social-cover .social-img::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 2px dotted var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.1);
}

.instruction-hd {
  margin-bottom: 5rem;
  text-align: center;
}

.instruction-hd h3 {
  color: var(--bk-grade-700);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.instruct-cover {
  position: relative;
}

.instruct-cover .instruct-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 3.5rem 0 0 0;
  overflow: hidden;
}

.instruct-cover .instruct-item::before {
  content: "";
  position: absolute;
  left: 55px;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 1px dotted var(--color-100);
}

.instruct-cover .instruct-item::after {
  content: "";
  position: absolute;
  left: 51px;
  bottom: 1rem;
  width: 10px;
  height: 10px;
  background-color: var(--color-200);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(30, 184, 186, 0.4);
}

.instruct-cover .instruct-item figure {
  position: relative;
  flex: 0 0 90px;
  max-width: 90px;
  height: 90px;
  padding: 0.25rem;
  margin: 10px 1rem 10px 10px;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(30, 184, 186, 0.4);
  z-index: 5;
}

.instruct-cover .instruct-item figure img {
  width: 100%;
}

.instruct-cover .instruct-item figcaption {
  flex: 1 1 0;
  min-height: 175px;
}

.instruct-cover .instruct-item figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
}

.instruct-cover .instruct-item:first-child {
  padding: 0;
}

.instruct-cover .instruct-item:first-child::before {
  top: 3.5rem;
}

.instruct-cover .instruct-item:last-child::before {
  height: 3.5rem;
}

.instruct-cover .instruct-item:last-child::after {
  display: none;
}

.visiting-hd {
  margin-bottom: 5rem;
  text-align: center;
}

.visiting-hd h3 {
  color: var(--bk-grade-700);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.visiting-time {
  position: relative;
  display: flex;
  margin-bottom: 2rem;
}

.visiting-time .hopital-cell {
  flex: 0 0 550px;
  max-width: 550px;
  padding: 10px;
  order: 2;
}

.visiting-time .hopital-cell .hospital-img {
  position: relative;
  width: 450px;
  margin: 0 auto;
}

.visiting-time .hopital-cell .hospital-img::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 2px dotted var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.1);
}

.visiting-time .hopital-cell .hospital-img img {
  width: 100%;
  border-radius: 50%;
}

.visiting-time .time-cell {
  flex: 1 1 0;
}

.visiting-time .time-cell .time-item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 225px;
  padding: 2rem 2rem;
  background-color: #d2f1f1;
  border-radius: 0.5rem;
}

.visiting-time .time-cell .time-item + .time-item {
  margin-top: 3rem;
}

.visiting-time .time-cell .time-item h3 {
  color: var(--bk-grade-600);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.visiting-time .time-cell .time-item p {
  color: var(--bk-grade-600);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.visiting-time .time-cell.time-left {
  order: 1;
}

.visiting-time .time-cell.time-left .time-item {
  text-align: left;
}

.visiting-time .time-cell.time-left .time-item::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  border-left: 10px solid #d2f1f1;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateY(-50%);
}

.visiting-time .time-cell.time-right {
  order: 3;
}

.visiting-time .time-cell.time-right .time-item {
  text-align: justify;
}

.visiting-time .time-cell.time-right .time-item::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  border-right: 10px solid #d2f1f1;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateY(-50%);
}

.visiting-note p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
}

.visiting-note .txt-red {
  color: #ef0d0d;
}

.hos-fac-cover {
  display: flex;
}

.hos-fac-cover .hos-img-cell {
  display: flex;
  align-items: center;
  flex: 0 0 325px;
  max-width: 325px;
  padding: 0 1.5rem;
  order: 2;
}

.hos-fac-cover .hos-img-cell .hos-img {
  position: relative;
  max-width: 275px;
  margin: 0 auto;
}

.hos-fac-cover .hos-img-cell .hos-img::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 2px dotted var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.1);
}

.hos-fac-cover .hos-img-cell .hos-img img {
  width: 100%;
}

.hos-fac-cover .hos-fac-cell {
  flex: 1 1 0;
  padding: 0 1.5rem;
}

.hos-fac-cover .hos-fac-cell.hos-fac-left {
  order: 1;
}

.hos-fac-cover .hos-fac-cell.hos-fac-right {
  order: 3;
}

.hos-fac-cover .hos-fac-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 6rem;
}

.hos-fac-cover .hos-fac-item figure {
  position: relative;
  flex: 0 0 275px;
  max-width: 275px;
  margin: 0 1rem 0 0;
  border: 5px solid #abe5e6;
  border-radius: 50%;
}

.hos-fac-cover .hos-fac-item figure img {
  width: 100%;
  border-radius: 50%;
}

.hos-fac-cover .hos-fac-item figcaption {
  flex: 1 1 0;
}

.hos-fac-cover .hos-fac-item figcaption h3 {
  color: var(--bk-grade-600);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.hos-fac-cover .hos-fac-item figcaption p {
  color: var(--bk-grade-600);
  font-weight: 500;
  margin: 0;
}

.hos-fac-cover .line-cover {
  position: absolute;
  right: 100px;
  bottom: 0;
  width: 1px;
  height: 1px;
}

.hos-fac-cover .line-cover .line {
  position: absolute;
  height: 5px;
  background-color: #abe5e6;
}

.hos-fac-cover .line-cover .line.line-01 {
  width: 50px;
  transform: rotate(45deg);
  transform-origin: 0 0;
}

.hos-fac-cover .line-cover .line.line-02 {
  width: 100px;
  top: 35px;
  left: 32px;
}

.hos-fac-cover .line-cover .circle {
  position: absolute;
  left: 130px;
  top: 22px;
  width: 30px;
  height: 30px;
  border: 5px solid #abe5e6;
  border-radius: 50%;
}

.hos-fac-cover .hos-fac-left .hos-fac-item:nth-child(even) figure {
  margin: 0 0 0 1rem;
  order: 2;
}

.hos-fac-cover .hos-fac-left .hos-fac-item:nth-child(even) figure .line-cover {
  right: auto;
  left: 100px;
  transform: rotateY(-180deg);
}

.hos-fac-cover .hos-fac-left .hos-fac-item:nth-child(even) figcaption {
  text-align: right;
}

.hos-fac-cover .hos-fac-right .hos-fac-item:nth-child(odd) figure {
  margin: 0 0 0 1rem;
  order: 2;
}

.hos-fac-cover .hos-fac-right .hos-fac-item:nth-child(odd) figure .line-cover {
  right: auto;
  left: 100px;
  transform: rotateY(-180deg);
}

.hos-fac-cover .hos-fac-right .hos-fac-item:nth-child(odd) figcaption {
  text-align: right;
}

.hos-fac-cover .hos-fac-center figure {
  flex: 0 0 170px;
  max-width: 170px;
  margin: 2rem auto 1rem;
}

.hos-fac-cover .hos-fac-center figcaption {
  flex: 0 0 100%;
  max-width: 100%;
}

.hos-fac-cover .hos-fac-center .line-cover {
  right: auto;
  left: -5px;
  bottom: 60px;
  transform: rotateY(-180deg);
}

.hos-fac-cover .hos-fac-center .line-cover .line {
  position: absolute;
  height: 5px;
  background-color: #abe5e6;
}

.hos-fac-cover .hos-fac-center .line-cover .line.line-01 {
  width: 115px;
  transform: rotate(45deg);
  transform-origin: 0 0;
}

.hos-fac-cover .hos-fac-center .line-cover .line.line-02 {
  width: 5px;
  height: 100px;
  left: 76px;
  top: 80px;
}

.hos-fac-cover .hos-fac-center .line-cover .circle {
  left: 63px;
  top: 175px;
}

.voice-form-cover {
  position: relative;
  padding: 2.5rem 5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 1rem 1rem;
}

.voice-form-cover .voice-form-hd {
  margin-bottom: 2rem;
}

.voice-form-cover .voice-form-hd h3 {
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0;
}

.voice-form-cover .voice-form-hd p {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.voice-form-cover .voice-form {
  padding: 2rem 2rem;
  background-color: var(--white);
  border-radius: 0.875rem;
}

.voice-form-cover .voice-form .form-group {
  margin-bottom: 1rem;
}

.voice-form-cover .voice-form .form-control {
  border: 1px solid #d0d7de;
  border-radius: 0;
}

.voice-form-cover .voice-form .btn-send {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 3rem;
  background-color: var(--color-200);
  border: 0;
  border-radius: 0.25rem;
}

.voice-form-cover .voice-form .btn-send:hover {
  background-color: var(--color-100);
}

.donate-cover {
  position: relative;
  padding: 2.5rem 5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 1rem 1rem;
}

.donate-cover .donate-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  overflow: hidden;
}

.donate-cover .donate-item figure {
  position: relative;
  flex: 0 0 300px;
  max-width: 300px;
  margin: 0 2rem 0 0;
}

.donate-cover .donate-item figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 2px dotted var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.donate-cover .donate-item figure::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 1000px;
  border-left: 2px dotted var(--white);
}

.donate-cover .donate-item figure .donate-img {
  position: relative;
  border: 10px solid transparent;
  border-radius: 50%;
  overflow: hidden;
}

.donate-cover .donate-item figure .donate-img img {
  width: 100%;
}

.donate-cover .donate-item figcaption {
  flex: 1 1 0;
  min-height: 350px;
  padding: 0 0 2.5rem 0;
  margin: 0 0 2.5rem 0;
  border-bottom: 2px dotted var(--white);
}

.donate-cover .donate-item figcaption .sub-hd {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

.donate-cover .donate-item figcaption h2 {
  color: #f6c645;
  font-size: 4rem;
  font-weight: 600;
  margin: 0;
}

.donate-cover .donate-item figcaption h3 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0;
}

.donate-cover .donate-item figcaption ul {
  margin-bottom: 1rem;
}

.donate-cover .donate-item figcaption ul li {
  position: relative;
  color: var(--white);
  font-size: 1.125rem;
  padding: 0 0 0 1.5rem;
}

.donate-cover .donate-item figcaption ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--white);
  border-radius: 50%;
}

.donate-cover .donate-item figcaption .fig-body {
  display: flex;
  flex-wrap: wrap;
}

.donate-cover .donate-item figcaption .fig-body .fig-body-hd {
  flex: 0 0 100%;
  max-width: 100%;
}

.donate-cover .donate-item figcaption .fig-body .fig-body-cell {
  flex: 1 1 0;
  padding: 0 2rem 0 0;
}

.donate-cover .donate-item figcaption .do-note {
  color: #5cdaf3;
}

.donate-cover .donate-item figcaption .donate-msg {
  color: #a2f6ff;
  font-size: 2.25rem;
  font-weight: 600;
}

.donate-cover .donate-item:last-child figure::after {
  display: none;
}

.donate-cover .donate-item:last-child figcaption {
  border-bottom: 2px dotted transparent;
}

.m-report-list-cover {
  position: relative;
  padding: 2rem 2rem;
  border: 2px solid var(--color-100);
  border-radius: 1rem;
}

.m-report-list-cover .m-report-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.m-report-list-cover .m-report-item figure {
  position: relative;
  flex: 0 0 200px;
  max-width: 200px;
  height: 200px;
  margin: 0 1.2rem 0;
  border-radius: 50%;
  border: 5px solid #ace7ef;
  overflow: hidden;
}

.m-report-list-cover .m-report-item figure img {
  width: 100%;
}

.m-report-list-cover .m-report-item figcaption {
  flex: 1 1 0;
}

.m-report-list-cover .m-report-item figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.m-report-list-cover .m-report-item figcaption ul li {
  position: relative;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
}

.m-report-list-cover .m-report-item figcaption ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #08294f;
  border-radius: 50%;
}

.m-report-list-cover .m-report-item figcaption p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  text-align: justify;
}

.m-report-list-cover .m-report-item figcaption .txt-phone {
  font-size: 1.5rem;
  font-weight: 600;
}

.employee-sec {
  position: relative;
  padding: 4rem 0 4rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
}

.employee-sec .employee-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.employee-sec .employee-shape img {
  width: 100%;
}

.employee-graphics {
  max-width: 1300px;
  margin: 0 auto 3rem;
}

.employee-graphics img {
  width: 100%;
}

.employee-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}

.employee-item figure {
  flex: 0 0 450px;
  max-width: 450px;
  margin: 0 5rem 0 0;
  border-radius: 2rem;
  overflow: hidden;
}

.employee-item figure img {
  width: 100%;
}

.employee-item figure.figure-right {
  margin: 0 0 0 5rem;
  order: 2;
}

.employee-item figcaption {
  flex: 1 1 0;
}

.employee-item figcaption h2 {
  color: var(--white);
  font-size: 4.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.employee-item figcaption h3 {
  color: var(--white);
  font-size: 1.675rem;
  margin: 0 0 1rem 0;
}

.employee-item figcaption p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: justify;
  margin: 0 0 1rem 0;
}

.employee-item figcaption .btn-down {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 3rem 0 0 auto;
  border: 1px solid var(--white);
  border-radius: 50%;
}

.employee-item figcaption .btn-down .fa {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  color: var(--white);
  font-size: 1rem;
  margin: auto;
  animation: downBounce 2s infinite;
}

.employee-item figcaption .btn-down .btn-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  width: 1px;
  height: 40px;
  margin: 0 auto;
}

.employee-item figcaption .btn-down .btn-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 2px dotted var(--white);
  animation: lineMove 1.5s infinite;
}

.employee-tb-cover .employee-tb-nav {
  display: flex;
  margin-bottom: 4rem;
}

.employee-tb-cover .employee-tb-nav .nav-item {
  flex: 1 1 0;
  padding: 0 1rem;
}

.employee-tb-cover .employee-tb-nav .nav-item .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 0.5rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.employee-tb-cover .employee-tb-nav .nav-item .nav-link .nav-icon {
  flex: 0 0 90px;
  max-width: 90px;
  margin-right: 1rem;
  opacity: 0.5;
}

.employee-tb-cover .employee-tb-nav .nav-item .nav-link .nav-label {
  flex: 1 1 0;
  color: #93ddff;
  font-size: 1.5rem;
  font-weight: 600;
}

.employee-tb-cover .employee-tb-nav .nav-item .nav-link.active {
  border-bottom: 2px solid white;
}

.employee-tb-cover .employee-tb-nav .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 10px solid var(--white);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.employee-tb-cover .employee-tb-nav .nav-item .nav-link.active .nav-icon {
  opacity: 1;
}

.employee-tb-cover .employee-tb-nav .nav-item .nav-link.active .nav-label {
  color: var(--white);
}

.employee-tb-cover .employee-tb-content h3 {
  color: var(--white);
  font-size: 4.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.employee-tb-cover .employee-tb-content h4 {
  color: var(--white);
  font-size: 1.675rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.employee-tb-cover .employee-tb-content p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: justify;
  margin: 0 0 1rem 0;
}

.employee-tb-cover .employee-tb-content .btn-down {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 3rem 0 0 auto;
  border: 1px solid var(--white);
  border-radius: 50%;
}

.employee-tb-cover .employee-tb-content .btn-down .fa {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  color: var(--white);
  font-size: 1rem;
  margin: auto;
  animation: downBounce 2s infinite;
}

.employee-tb-cover .employee-tb-content .btn-down .btn-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  width: 1px;
  height: 40px;
  margin: 0 auto;
}

.employee-tb-cover .employee-tb-content .btn-down .btn-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 2px dotted var(--white);
  animation: lineMove 1.5s infinite;
}

.employee-nav-item {
  position: relative;
  margin-bottom: 1rem;
}

.employee-nav-item a {
  display: block;
}

.employee-nav-item figure {
  position: relative;
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}

.employee-nav-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.employee-nav-item figcaption {
  position: relative;
  padding: 2rem 1rem;
  text-align: center;
}

.employee-nav-item figcaption .down-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  background-color: var(--color-100);
  border-radius: 50%;
}

.employee-nav-item figcaption .down-icon img {
  position: relative;
  width: 16px;
  animation: downBounce 2s infinite;
}

.employee-nav-item figcaption h3 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

.employee-nav-item:hover figure img {
  transform: scale(1.1);
}

.employee-acc-cover h3 {
  color: var(--white);
  font-size: 4.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.employee-acc-cover h4 {
  color: var(--white);
  font-size: 1.675rem;
  margin: 0 0 1rem 0;
}

.employee-acc-cover p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: justify;
  margin: 0 0 1rem 0;
}

.employee-acc-cover .btn-down {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 3rem 0 0 auto;
  border: 1px solid var(--white);
  border-radius: 50%;
}

.employee-acc-cover .btn-down .fa {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  color: var(--white);
  font-size: 1rem;
  margin: auto;
  animation: downBounce 2s infinite;
}

.employee-acc-cover .btn-down .btn-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  width: 1px;
  height: 40px;
  margin: 0 auto;
}

.employee-acc-cover .btn-down .btn-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 2px dotted var(--white);
  animation: lineMove 1.5s infinite;
}

.inclusion-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}

.inclusion-item figure {
  flex: 0 0 450px;
  max-width: 450px;
  margin: 0 5rem 0 0;
  border-radius: 2rem;
  overflow: hidden;
}

.inclusion-item figure img {
  width: 100%;
}

.inclusion-item figure.figure-right {
  margin: 0 0 0 5rem;
  order: 2;
}

.inclusion-item figcaption {
  flex: 1 1 0;
}

.inclusion-item figcaption h2 {
  color: var(--bk-grade-700);
  font-size: 4.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.inclusion-item figcaption h3 {
  color: var(--bk-grade-700);
  font-size: 1.675rem;
  margin: 0 0 1rem 0;
}

.inclusion-item figcaption p {
  color: var(--bk-grade-700);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.engagement-sec {
  padding: 6rem 0 6rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  overflow: hidden;
}

.engagement-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.engagement-item figure {
  position: relative;
  flex: 0 0 450px;
  max-width: 450px;
  margin: 0 5rem 0 0;
  border-radius: 2rem;
  overflow: hidden;
  z-index: 5;
}

.engagement-item figure img {
  width: 100%;
}

.engagement-item figure.figure-right {
  margin: 0 0 0 5rem;
  order: 2;
}

.engagement-item figcaption {
  position: relative;
  flex: 1 1 0;
}

.engagement-item figcaption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1000px;
  height: 1500px;
  background-color: var(--white);
  transform: translate(95%, -50%);
}

.engagement-item figcaption h2 {
  color: var(--white);
  font-size: 4.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.engagement-item figcaption h3 {
  color: var(--white);
  font-size: 1.675rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.engagement-item figcaption p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: justify;
  margin: 0 0 1rem 0;
}

.welfare-hd {
  margin-bottom: 3rem;
}

.welfare-hd h2 {
  color: var(--bk-grade-700);
  font-size: 4.1rem;
  font-weight: 600;
  margin: 0;
}

.welfare-item {
  margin-bottom: 2rem;
}

.welfare-item figure {
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 0 1.5rem 1;
}

.welfare-item figure img {
  width: 100%;
}

.welfare-item figcaption p {
  color: var(--bk-grade-700);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: justify;
  margin: 0 0 1rem 0;
}

.h-manage-cover {
  position: relative;
  border: 2px solid var(--color-100);
  border-radius: 1rem;
  overflow: hidden;
}

.h-manage-item .h-manage-top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 2.5rem 3rem;
  background-color: #e2fcfd;
}

.h-manage-item .h-manage-top figure {
  position: relative;
  flex: 0 0 130px;
  max-width: 130px;
  height: 130px;
  margin: 0 1.5rem 0 0;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 1.5rem;
  box-shadow: 0 0 0 5px rgba(30, 184, 186, 0.4);
}

.h-manage-item .h-manage-top figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  transform: translate(-50%, -50%);
}

.h-manage-item .h-manage-top article {
  flex: 1 1 0;
}

.h-manage-item .h-manage-top article h2 {
  color: var(--bk-grade-700);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.h-manage-item .h-manage-top article h3 {
  color: var(--bk-grade-700);
  font-size: 1.675rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.h-manage-item .h-manage-top article h4 {
  color: var(--bk-grade-700);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.h-manage-item .h-manage-top article p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.h-manage-item .h-manage-top article strong {
  font-weight: 600;
}

.h-manage-item .h-manage-top article ul li {
  position: relative;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
}

.h-manage-item .h-manage-top article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #08294f;
  border-radius: 50%;
}

.h-manage-item .h-manage-body .h-manage-body-hd {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 2.5rem 3rem 1rem;
  margin-bottom: 1rem;
}

.h-manage-item .h-manage-body .h-manage-body-hd h4 {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-align: justify;
}

.h-manage-item .h-manage-body .h-mng-b-item {
  display: flex;
  flex-wrap: wrap;
  padding: 2.5rem 3rem;
}

.h-manage-item .h-manage-body .h-mng-b-item figure {
  position: relative;
  flex: 0 0 185px;
  max-width: 185px;
  height: 185px;
  margin: 0 2.5rem 0 0;
  border-radius: 1.5rem;
  box-shadow: 0 0 0 5px rgba(30, 184, 186, 0.4);
  overflow: hidden;
}

.h-manage-item .h-manage-body .h-mng-b-item figure img {
  width: 100%;
}

.h-manage-item .h-manage-body .h-mng-b-item article {
  flex: 1 1 0;
}

.h-manage-item .h-manage-body .h-mng-b-item article h2 {
  color: var(--bk-grade-700);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.h-manage-item .h-manage-body .h-mng-b-item article h3 {
  color: var(--bk-grade-700);
  font-size: 1.675rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.h-manage-item .h-manage-body .h-mng-b-item article h4 {
  color: var(--bk-grade-700);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.h-manage-item .h-manage-body .h-mng-b-item article p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.h-manage-item .h-manage-body .h-mng-b-item article strong {
  font-weight: 600;
}

.h-manage-item .h-manage-body .h-mng-b-item article ul li {
  position: relative;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
}

.h-manage-item .h-manage-body .h-mng-b-item article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #08294f;
  border-radius: 50%;
}

.h-manage-item .h-manage-body .h-mng-b-item .article-body {
  display: flex;
  flex-wrap: wrap;
}

.h-manage-item .h-manage-body .h-mng-b-item .article-body .article-body-hd {
  flex: 0 0 100%;
  max-width: 100%;
}

.h-manage-item .h-manage-body .h-mng-b-item .article-body .article-body-cell {
  flex: 1 1 0;
  padding: 0 2rem 0 0;
}

.covid-video-cover {
  position: relative;
}

.covid-video-cover figure {
  position: relative;
  margin: 0;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}

.covid-video-cover figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.covid-video-cover figure video {
  width: 100%;
}

.covid-video-cover .covid-vid-body {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 850px;
  padding: 1rem 1rem 4rem 6rem;
}

.covid-video-cover .covid-vid-body h2 {
  color: var(--white);
  font-size: 3.75rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.covid-video-cover .covid-vid-body h2 span {
  color: #e2cc44;
}

.covid-video-cover .covid-vid-body p {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
}

.covid-video-cover .covid-vid-body .btn-down {
  position: relative;
  margin-top: 3rem;
  box-shadow: none;
  overflow: unset;
  z-index: 10;
}

.covid-video-cover .covid-vid-body .btn-down::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  background-image: url(../images/down-btn-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
  z-index: -1;
}

.covid-video-cover .covid-vid-body .btn-down img {
  animation: downBounce 2s infinite;
}

.covid-video-cover .covid-vid-body .btn-down:hover::before {
  animation: btnRotate 2s infinite alternate;
}

.heroes-caro-cover {
  padding: 6rem 6rem;
  background-color: #d2f1f1;
}

.heroes-caro-cover .heroes-caro-intro {
  margin-bottom: 2rem;
}

.heroes-caro-cover .heroes-caro-intro .sub-hd {
  color: var(--bk-grade-950);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.heroes-caro-cover .heroes-caro-intro h3 {
  color: var(--bk-grade-950);
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.heroes-caro-cover .heroes-caro-intro p {
  color: var(--bk-grade-950);
  font-weight: normal;
}

.heroe-carousel .heroe-caro-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.heroe-carousel .heroe-caro-item figure {
  margin: 0;
}

.heroe-carousel .heroe-caro-item figure img {
  width: 100%;
}

.heroe-carousel .heroe-caro-item .heroe-caro-body {
  padding: 1rem 1rem;
  background-color: #08979b;
}

.heroe-carousel .heroe-caro-item .heroe-caro-body h3 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

.heroe-carousel .heroe-caro-item .heroe-caro-body p {
  color: var(--white);
  font-weight: normal;
  margin: 0;
}

.heroe-carousel .heroe-caro-item .heroe-caro-body .btn-more {
  color: var(--white);
  padding: 0.25rem;
  margin: 1.5rem 0 0 0;
  box-shadow: none;
}

.heroe-carousel .owl-theme .owl-nav {
  margin-top: 4rem;
  text-align: right;
}

.heroe-carousel .owl-theme .owl-nav .owl-prev,
.heroe-carousel .owl-theme .owl-nav .owl-next {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 0.5rem;
  padding: 0;
  background-color: transparent;
  transition: 0.2s ease-out;
}

.heroe-carousel .owl-theme .owl-nav .owl-prev::before,
.heroe-carousel .owl-theme .owl-nav .owl-next::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  background-image: url(../images/caro-btn-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
}

.heroe-carousel .owl-theme .owl-nav .owl-prev:hover::before,
.heroe-carousel .owl-theme .owl-nav .owl-next:hover::before {
  animation: btnRotate 2s infinite alternate;
}

.heroe-carousel .owl-theme .owl-nav .owl-prev::after,
.heroe-carousel .owl-theme .owl-nav .owl-next::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}

.heroe-carousel .owl-theme .owl-nav .owl-prev::after {
  background-image: url(../images/arrow-left-white.svg);
}

.heroe-carousel .owl-theme .owl-nav .owl-next::after {
  background-image: url(../images/arrow-right-white.svg);
}

.covid-photo-cover .covid-photo {
  position: relative;
}

.covid-photo-cover .covid-photo::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.covid-photo-cover .covid-photo .carousel .carousel-item img {
  width: 100%;
}

.covid-photo-cover .covid-ph-body {
  position: absolute;
  left: 0;
  top: 50%;
  max-width: 850px;
  padding: 1rem 1rem 1rem 6rem;
  transform: translateY(-50%);
}

.covid-photo-cover .covid-ph-body h3 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.covid-photo-cover .covid-ph-body h3 span {
  color: #e2cc44;
}

.covid-photo-cover .covid-ph-body p {
  color: var(--white);
  font-weight: normal;
}

.covid-photo-cover .covid-ph-body .btn-play {
  position: relative;
  margin-top: 3rem;
  box-shadow: none;
  overflow: unset;
  z-index: 10;
}

.covid-photo-cover .covid-ph-body .btn-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  background-image: url(../images/down-link-btn-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
}

.covid-photo-cover .covid-ph-body .btn-play img {
  width: 100%;
}

.covid-photo-cover .covid-ph-body .btn-play:hover::before {
  animation: btnRotate 2s infinite alternate;
}

.covid-video-list {
  padding: 4rem 4rem;
  background-color: #384a58;
}

.covid-video-list .co-vid-intro {
  margin-bottom: 4rem;
}

.covid-video-list .co-vid-intro h3 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.covid-video-list .co-vid-intro h3 span {
  color: #e2cc44;
}

.covid-video-list .co-vid-intro p {
  color: var(--white);
  font-weight: normal;
}

.covid-video-list .co-vid-body {
  padding: 0 3rem;
}

.covid-video-list .co-vid-item {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  overflow: hidden;
}

.covid-video-list .co-vid-item + .co-vid-item {
  margin-top: 4rem;
}

.covid-video-list .co-vid-item figure {
  position: relative;
  flex: 0 0 45%;
  max-width: 45%;
  margin: 0;
}

.covid-video-list .co-vid-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.covid-video-list .co-vid-item figure .btn-play {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: 0;
  box-shadow: none;
  overflow: unset;
  transform: translate(50%, -50%);
  z-index: 10;
}

.covid-video-list .co-vid-item figure .btn-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  background-image: url(../images/down-link-btn-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
}

.covid-video-list .co-vid-item figure .btn-play img {
  width: 30px;
}

.covid-video-list .co-vid-item figure .btn-play:hover::before {
  animation: btnRotate 2s infinite alternate;
}

.covid-video-list .co-vid-item .co-item-body {
  flex: 1 1 0;
  padding: 2rem 2rem 1rem 3rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
}

.covid-video-list .co-vid-item .co-item-body h3 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.covid-video-list .co-vid-item .co-item-body h3 span {
  color: #e2cc44;
}

.covid-video-list .co-vid-item .co-item-body p {
  color: var(--white);
  font-weight: normal;
}

.covid-video-list h3 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.covid-video-list h3 span {
  color: #e2cc44;
}

.covid-data-cover {
  padding: 6rem 4rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
}

.co-data-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.co-data-intro .co-data-hd {
  flex: 1 1 0;
}

.co-data-intro .co-data-hd .sub-hd {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.co-data-intro .co-data-hd h3 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.co-data-intro .co-data-hd h3 span {
  color: #e2cc44;
}

.co-data-intro .co-data-body {
  flex: 1 1 0;
}

.co-data-intro .co-data-body p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: normal;
}

.co-video-list {
  margin-bottom: 2rem;
}

.co-video-list .co-vid-item {
  margin-bottom: 1rem;
}

.co-video-list .co-vid-item iframe {
  width: 100%;
  height: 250px;
}

.co-data-carousel .co-carousel-item {
  margin-bottom: 2rem;
}

.co-data-carousel .co-carousel-item img {
  width: 100%;
}

.co-data-carousel .carouse-data-footer {
  max-width: 850px;
}

.co-data-carousel .carouse-data-footer p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.co-data-carousel .carouse-data-footer h3 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.co-data-carousel .carouse-data-footer h3 span {
  color: #e2cc44;
}

.co-data-carousel .owl-theme .owl-nav {
  margin-top: 1rem;
  text-align: right;
}

.co-data-carousel .owl-theme .owl-nav .owl-prev,
.co-data-carousel .owl-theme .owl-nav .owl-next {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 0.5rem;
  padding: 0;
  background-color: transparent;
  transition: 0.2s ease-out;
}

.co-data-carousel .owl-theme .owl-nav .owl-prev::before,
.co-data-carousel .owl-theme .owl-nav .owl-next::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  background-image: url(../images/caro-btn-bg-white.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
}

.co-data-carousel .owl-theme .owl-nav .owl-prev:hover::before,
.co-data-carousel .owl-theme .owl-nav .owl-next:hover::before {
  animation: btnRotate 2s infinite alternate;
}

.co-data-carousel .owl-theme .owl-nav .owl-prev::after,
.co-data-carousel .owl-theme .owl-nav .owl-next::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}

.co-data-carousel .owl-theme .owl-nav .owl-prev::after {
  background-image: url(../images/arrow-left-blue.svg);
}

.co-data-carousel .owl-theme .owl-nav .owl-next::after {
  background-image: url(../images/arrow-right-blue.svg);
}

.co-form-cover {
  padding: 2rem 4rem;
  background-color: #d2f1f1;
}

.co-form-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.co-form-intro .co-form-int-hd {
  flex: 1 1 0;
}

.co-form-intro .co-form-int-hd .sub-hd {
  color: var(--bk-grade-950);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.co-form-intro .co-form-int-hd h3 {
  color: var(--bk-grade-950);
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.co-form-intro .co-form-int-hd h3 span {
  color: #e2cc44;
}

.co-form-intro .co-form-int-body {
  flex: 1 1 0;
}

.co-form-intro .co-form-int-body p {
  color: var(--bk-grade-700);
  font-size: 1.125rem;
  font-weight: normal;
}

.co-form {
  margin-bottom: 2rem;
}

.co-form .form-group label {
  color: var(--bk-grade-950);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.co-form .form-group .form-control {
  border: 0;
  border-radius: 0;
}

.co-form .btn-send {
  position: relative;
  color: var(--white);
  margin: 3rem 0 3rem;
  box-shadow: none;
  overflow: unset;
  z-index: 10;
}

.co-form .btn-send::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  background-image: url(../images/down-btn-bg-blue.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
  z-index: -1;
  transition: 0.2s ease-out;
}

.co-form .btn-send:hover::before {
  animation: btnRotate 2s infinite alternate;
}

.co-form-msg {
  margin-bottom: 2rem;
}

.co-form-msg h3 {
  color: var(--bk-grade-950);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.co-form-msg .co-message {
  padding: 1.5rem 1.5rem;
  background-color: #0183bd;
}

.co-form-msg .co-message p {
  color: var(--white);
  font-weight: normal;
  margin: 0 0 1rem 0;
}

.co-form-social {
  margin-bottom: 2rem;
}

.co-form-social h3 {
  color: var(--bk-grade-950);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.co-form-social ul {
  display: flex;
  list-style: none;
}

.co-form-social ul li + li {
  margin-left: 0.5rem;
}

.co-form-social ul li a {
  position: relative;
  display: block;
  color: #0d8cb8;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}

.co-form-social ul li a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  transition: 0.2s ease-out;
}

.co-form-social ul li a .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.co-form-social ul li a:hover {
  color: var(--color-100);
  background-color: var(--white);
}

.co-form-social ul li a:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.co-form-donate h3 {
  color: var(--color-200);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.co-form-donate p {
  color: var(--bk-grade-950);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.co-form-donate .btn-donate {
  position: relative;
  color: var(--white);
  margin: 3rem 0 3rem;
  box-shadow: none;
  overflow: unset;
  z-index: 10;
}

.co-form-donate .btn-donate::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  background-image: url(../images/down-btn-bg-blue.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
  z-index: -1;
}

.co-form-donate .btn-donate:hover::before {
  animation: btnRotate 2s infinite alternate;
}

.fact-bg {
  background-color: #4c5c69;
}

.facts-wrapper {
  position: relative;
  background-color: #384a58;
}

.facts-intro {
  max-width: 800px;
  margin: 2rem auto 2rem;
  text-align: center;
}

.facts-intro .logo {
  max-width: 200px;
  margin: 0 auto 2rem;
}

.facts-intro .logo img {
  width: 100%;
}

.facts-intro h2 {
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.facts-intro h2 span {
  font-weight: 300;
}

.facts-intro h3 {
  color: #32c5ca;
  font-size: 1.875rem;
  font-weight: 300;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.facts-intro .map-icon {
  width: 75px;
  margin: 0 auto 1rem;
}

.facts-intro .map-icon img {
  width: 100%;
}

.facts-intro h4 {
  color: #d6e7f4;
  font-size: 1.875rem;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

.fact-med-cover {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #506372;
  border-bottom: 1px solid #506372;
}

.fact-med-cover .fact-med-cell {
  flex: 0 0 50%;
  max-width: 50%;
}

.fact-med-cover .fact-med-cell + .fact-med-cell {
  border-left: 1px solid #506372;
}

.med-time-cover {
  position: relative;
  padding: 2rem 3.5rem 1rem;
}

.med-time-cover .sub-hd {
  color: #6d8aa0;
  margin: 0 0 1rem 0;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.med-time-cover .med-time-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0 0 2rem 0;
  overflow: hidden;
}

.med-time-cover .med-time-item figure {
  position: relative;
  flex: 0 0 130px;
  max-width: 130px;
  margin-right: 2rem;
}

.med-time-cover .med-time-item figure::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 1px;
  height: 500px;
  margin: 0 auto;
  border-left: 2px dotted #32c5ca;
}

.med-time-cover .med-time-item figure .icon {
  width: 42px;
  margin: 0 auto;
}

.med-time-cover .med-time-item figure .icon img {
  width: 100%;
}

.med-time-cover .med-time-item .med-time-body {
  flex: 1 1 0;
}

.med-time-cover .med-time-item .med-time-body h3 {
  color: #32c5ca;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
}

.med-time-cover .med-time-item .med-time-body h3 span {
  font-weight: 300;
}

.med-time-cover .med-time-item.med-top figure .icon {
  width: 130px;
}

.med-time-cover .med-time-item.med-white figure::after {
  border-left: 2px dotted var(--white);
}

.med-time-cover .med-time-item.med-white .med-time-body h3 {
  color: var(--white);
}

.med-time-cover .med-time-item:last-child figure::after {
  display: none;
}

.med-time-cover .med-time-item:nth-child(2n + 1) figure .icon {
  transform: rotate(90deg);
}

.med-time-cover .med-time-item:nth-child(3n + 1) figure .icon {
  transform: rotate(180deg);
}

.med-time-cover .med-itme-lg {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.med-time-cover .med-itme-lg .med-count {
  flex: 0 1 auto;
  color: var(--white);
  font-size: 6rem;
  font-weight: 600;
  line-height: 80px;
}

.med-time-cover .med-itme-lg .med-label {
  flex: 1 1 0;
  color: #32c5ca;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
}

.med-time-cover .med-itme-inc {
  display: flex;
  flex-flow: row wrap;
}

.med-time-cover .med-itme-inc .med-inc-hd {
  flex: 0 0 100%;
  max-width: 100%;
  color: #a3c7e4;
  font-size: 1.25rem;
  font-weight: 600;
}

.med-time-cover .med-itme-inc .med-inc-body {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 100%;
  max-width: 100%;
  color: #32c5ca;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
}

.med-time-cover .med-itme-inc .med-inc-body .med-inc-count {
  flex: 0 1 auto;
  color: #32c5ca;
  font-size: 4rem;
  font-weight: 600;
  line-height: 48px;
  margin: 0;
}

.med-time-cover .med-itme-inc .med-inc-body .med-inc-label {
  flex: 1 1 0;
  color: #32c5ca;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
}

.med-spec-cover {
  position: relative;
  padding: 2rem 0 1rem;
}

.med-spec-cover .sub-hd {
  color: #6d8aa0;
  margin: 0 0 1rem 0;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.med-spec-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 3.5rem 2rem;
  border-bottom: 1px solid #506372;
}

.med-spec-item figure {
  flex: 0 0 125px;
  max-width: 125px;
  margin-right: 2rem;
}

.med-spec-item figure img {
  width: 100%;
}

.med-spec-item .med-spec-body .sub-hd {
  color: #6d8aa0;
  margin: 0 0 1rem 0;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.med-spec-item .med-spec-body h3 {
  color: var(--white);
  font-size: 6rem;
  font-weight: 600;
  line-height: 80px;
}

.med-spec-item .med-spec-body p {
  color: #32c5ca;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
  text-transform: uppercase;
}

.med-camp-cover {
  position: relative;
  padding: 2rem 0 2rem;
  border-bottom: 1px solid #506372;
}

.med-camp-cover .sub-hd {
  color: #6d8aa0;
  margin: 0 0 1rem 0;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.med-camp-lg-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 3.5rem 2rem;
}

.med-camp-lg-item figure {
  flex: 0 0 150px;
  max-width: 150px;
  margin-right: 2rem;
}

.med-camp-lg-item figure img {
  width: 100%;
}

.med-camp-lg-item .med-camp-lg-body h3 {
  color: var(--white);
  font-size: 6rem;
  font-weight: 600;
  line-height: 80px;
}

.med-camp-lg-item .med-camp-lg-body p {
  color: #32c5ca;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 40px;
  margin: 0;
  text-transform: uppercase;
}

.med-camp-md-cover {
  padding: 0 3rem;
}

.med-camp-md-cover .sub-hd {
  color: #6d8aa0;
  margin: 0 0 1rem 0;
  font-weight: 500;
  padding: 0 3rem;
  text-align: center;
  text-transform: uppercase;
}

.med-camp-md-cover .med-camp-md-hd {
  margin-bottom: 2rem;
  text-align: center;
}

.med-camp-md-cover .med-camp-md-hd h2 {
  color: #32c5ca;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 40px;
  margin: 0;
  text-transform: uppercase;
}

.med-camp-md-cover .med-camp-md-hd p {
  color: #6d8aa0;
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  font-weight: 500;
  text-transform: uppercase;
}

.med-camp-md-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 2rem 2rem;
}

.med-camp-md-item figure {
  flex: 0 0 100px;
  max-width: 100px;
  margin-right: 2rem;
}

.med-camp-md-item figure img {
  width: 100%;
}

.med-camp-md-item .med-camp-md-body h3 {
  color: var(--white);
  font-size: 4rem;
  font-weight: 600;
  line-height: 40px;
}

.med-camp-md-item .med-camp-md-body p {
  color: #32c5ca;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.med-camp-md-item .med-camp-md-body h4 {
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
  text-transform: uppercase;
}

.med-fac-cover {
  position: relative;
  padding: 2rem 0 2rem;
  border-bottom: 1px solid #506372;
}

.med-fac-cover .sub-hd {
  color: #6d8aa0;
  margin: 0 0 1rem 0;
  font-weight: 500;
  padding: 0 3rem;
  text-align: center;
  text-transform: uppercase;
}

.med-fac-list {
  padding: 0 4rem;
}

.med-fac-list .med-fac-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.med-fac-list .med-fac-item figure {
  flex: 0 0 60px;
  max-width: 60px;
  margin: 0 1rem 0 0;
}

.med-fac-list .med-fac-item .med-fac-body h3 {
  color: #32c5ca;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
  text-transform: uppercase;
}

.med-care-lg-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.med-care-lg-item figure {
  flex: 0 0 100px;
  max-width: 100px;
  margin: 0 2rem 0 0;
}

.med-care-lg-item .med-care-lg-body h3 {
  color: var(--white);
  font-size: 6rem;
  font-weight: 600;
  line-height: 60px;
}

.med-care-lg-item .med-care-lg-body p {
  color: #32c5ca;
  font-size: 2rem;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
  text-transform: uppercase;
}

.med-care-md-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.med-care-md-item figure {
  flex: 0 0 60px;
  max-width: 60px;
  margin: 0 2rem 0 0;
}

.med-care-md-item .med-care-md-body h3 {
  color: var(--white);
  font-size: 6rem;
  font-weight: 600;
  line-height: 60px;
}

.med-care-md-item .med-care-md-body p {
  color: #32c5ca;
  font-size: 2rem;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
  text-transform: uppercase;
}

.achieve-cover .achieve-hd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-top: 5px solid var(--color-200);
  border-bottom: 5px solid var(--color-200);
  text-align: center;
}

.achieve-cover .achieve-hd h2 {
  color: var(--bk-grade-950);
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0;
}

.achieve-list {
  display: flex;
  flex-wrap: wrap;
}

.achieve-list .achieve-item {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  flex: 1 1 0;
  min-height: 325px;
  padding: 3rem 3rem 2rem 4rem;
  margin-bottom: 1rem;
  background-color: var(--color-200);
  border-radius: 0.5rem;
}

.achieve-list .achieve-item .achieve-it-hd {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.achieve-list .achieve-item .achieve-it-hd h3 {
  color: var(--white);
  font-size: 3.75rem;
  font-weight: 500;
  margin: 0;
}

.achieve-list .achieve-item figure {
  flex: 0 0 125px;
  max-width: 125px;
  margin: 0 2rem 0 0;
}

.achieve-list .achieve-item figure img {
  width: 100%;
}

.achieve-list .achieve-item .achieve-it-body {
  flex: 1 1 0;
  padding-top: 1rem;
}

.achieve-list .achieve-item .achieve-it-body p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
}

.achieve-list .achieve-item .achieve-it-body .txt-large {
  font-size: 1.875rem;
}

.achieve-list .achieve-item:nth-of-type(1n + 2) {
  background-color: var(--color-100);
}

.achieve-list .achieve-divide {
  flex: 0 0 80px;
  max-width: 80px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.achieve-list .achieve-divide .achieve-line {
  position: relative;
  height: calc(100% - 35px);
  background: #0c7eaf;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #0c7eaf), color-stop(100%, #2cade0));
  background: linear-gradient(to bottom, #0c7eaf 0%, #2cade0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c7eaf', endColorstr='#2cade0', GradientType=0);
}

.achieve-list .achieve-divide .achieve-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -35px;
  height: 35px;
  background-color: #0c7eaf;
  z-index: 5;
}

.achieve-list .achieve-divide .achieve-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 35px solid #2cade0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  z-index: 10;
}

.achieve-list:nth-child(odd) .achieve-divide .achieve-line {
  background: #2dd7e3;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #2dd7e3), color-stop(100%, #1390c2));
  background: linear-gradient(to bottom, #2dd7e3 0%, #1390c2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2dd7e3', endColorstr='#1390c2', GradientType=0);
}

.achieve-list:nth-child(odd) .achieve-divide .achieve-line::before {
  background-color: #2dd7e3;
}

.achieve-list:nth-child(odd) .achieve-divide .achieve-line::after {
  border-top: 35px solid #1390c2;
}

.achieve-list.first-list .achieve-divide .achieve-line {
  background: rgba(2, 204, 222, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(2, 204, 222, 0)), color-stop(100%, #2cade0));
  background: linear-gradient(to bottom, rgba(2, 204, 222, 0) 0%, #2cade0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#02ccde', endColorstr='#2cade0', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#02ccde', endColorstr='#02ccde', GradientType=0);
}

.achieve-list.first-list .achieve-divide .achieve-line::before {
  display: none;
}

.award-cover .award-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem 2rem;
  margin-bottom: 1.5rem;
  background-color: var(--color-200);
  border-radius: 1rem;
}

.award-cover .award-item figure {
  flex: 0 0 450px;
  max-width: 450px;
  padding: 1.5rem 1.5rem;
  margin: 0 3.75rem 0 0;
  background-color: var(--white);
  border-radius: 1rem;
}

.award-cover .award-item figure img {
  width: 100%;
}

.award-cover .award-item .award-body {
  flex: 1 1 0;
}

.award-cover .award-item .award-body h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
}

.award-cover .award-item .award-body p {
  color: var(--white);
  margin: 0 0 1.5rem 0;
}

.award-cover .award-item:nth-child(even) {
  background-color: var(--color-100);
}

.health-info-item {
  position: relative;
  margin-bottom: 1rem;
}

.health-info-item a {
  display: block;
}

.health-info-item figure {
  position: relative;
  margin: 0;
  border: 5px solid var(--color-100);
  border-radius: 1rem;
  overflow: hidden;
}

.health-info-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.health-info-item figure .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  opacity: 0;
  transition: 0.2s ease-out;
}

.health-info-item figure .overlay .btn-more {
  color: var(--white);
  padding: 1rem 2rem;
  margin: 0;
  background-color: var(--color-100);
  border: 0;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.health-info-item figcaption {
  position: relative;
  padding: 2rem 1rem;
  text-align: center;
}

.health-info-item figcaption .down-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  background-color: var(--color-100);
  border-radius: 50%;
}

.health-info-item figcaption .down-icon img {
  position: relative;
  width: 16px;
  animation: downBounce 2s infinite;
}

.health-info-item figcaption h3 {
  color: var(--bk-grade-950);
  font-size: 1.125rem;
  font-weight: 600;
}

.health-info-item:hover figure img {
  transform: scale(1.1);
}

.health-info-item:hover figure .overlay {
  transform: scale(1);
  opacity: 1;
}

.EZView-container {
  background-color: rgba(0, 0, 0, 0.25);
}

.health-nav-item {
  margin-bottom: 2rem;
}

.health-nav-item a {
  display: block;
}

.health-nav-item figure {
  max-width: 250px;
  margin: 0 auto 1.5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 50%;
  overflow: hidden;
}

.health-nav-item figure img {
  width: 100%;
}

.health-nav-item .health-it-body {
  text-align: center;
}

.health-nav-item .health-it-body p {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.res-cover {
  position: relative;
  margin: 2rem 0 6rem;
}

.res-cover .res-heading {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 450px;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 15px 15px;
  margin: 0 auto;
  color: var(--white);
  background-color: #1eb8ba;
  border-radius: 50px 50px;
  transform: translateY(-50%);
}

.res-cover .res-heading .hd-no {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  max-width: 40px;
  height: 40px;
  margin: 0 1.5rem 0 0;
  background-color: #f1ac18;
  border-radius: 50%;
  text-align: center;
}

.res-cover .res-heading .hd-label {
  flex: 1 1 0;
}

.res-cover .res-outer {
  padding: 1.5rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 1.5rem;
}

.res-cover .res-inner {
  padding: 2.5rem 1.5rem;
  background-color: var(--white);
  border-radius: 1.5rem;
}

.res-cover .res-sec-hd {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  background-color: #cdfeff;
  border-radius: 50px;
  text-align: center;
}

.res-cover .res-sec-hd h3 {
  color: var(--bk-grade-700);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.publish-cover {
  display: flex;
  flex-wrap: wrap;
  max-width: 950px;
  margin: 0 auto 1.5rem;
}

.publish-cover .publish-cell {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 4rem;
}

.publish-cover .publish-cell + .publish-cell {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}

.publish-cover .publish-item figure {
  max-width: 275px;
  margin: 0 auto 1rem;
}

.publish-cover .publish-item figure img {
  width: 100%;
}

.publish-cover .publish-item .publish-it-body {
  text-align: center;
}

.publish-cover .publish-item .publish-it-body p {
  color: var(--bk-grade-700);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.proposal-cover {
  display: flex;
  flex-wrap: wrap;
  max-width: 975px;
  margin: 0 auto 2rem;
}

.proposal-cover .proposal-cell {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.proposal-cover .proposal-item {
  position: relative;
  flex: 1 1 0;
  color: var(--white);
  padding: 2.5rem 2.5rem;
  margin: 1rem 0;
  background-color: var(--color-100);
  border-radius: 1rem;
  text-align: center;
}

.proposal-cover .proposal-item h3 {
  position: relative;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
}

.proposal-cover .proposal-item p {
  position: relative;
  font-size: 1.125rem;
  font-weight: normal;
}

.proposal-cover .proposal-item .arrow-right {
  position: absolute;
  left: 100%;
  top: 90px;
  width: 0;
  height: 30px;
  background-color: #f7b426;
  transform: translateX(-15px);
  z-index: 10;
  animation: arrowRightMove 2s alternate infinite;
}

.proposal-cover .proposal-item .arrow-right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0;
  height: 0;
  border-left: 30px solid #f7b426;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  transform: translateY(-50%);
}

.proposal-cover .proposal-item .arrow-down {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 30px;
  height: 0;
  margin: 0 auto;
  background-color: #f7b426;
  transform: translateY(-15px);
  z-index: 10;
  animation: arrowDownMove 2s alternate infinite;
}

.proposal-cover .proposal-item .arrow-down::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 30px solid #f7b426;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  transform: translateX(-50%);
}

.proposal-cover .proposal-item .arrow-left {
  position: absolute;
  right: 100%;
  top: 90px;
  width: 0;
  height: 30px;
  background-color: #f7b426;
  transform: translateX(15px);
  z-index: 10;
  animation: arrowLeftMove 2s alternate infinite;
}

.proposal-cover .proposal-item .arrow-left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 0;
  height: 0;
  border-right: 30px solid #f7b426;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  transform: translateY(-50%);
}

.proposal-submit {
  margin-bottom: 2rem;
  text-align: center;
}

.proposal-submit p {
  font-size: 1.5rem;
  font-weight: normal;
}

.proposal-submit a {
  color: var(--bk-grade-950);
}

.proposal-submit a:hover {
  color: var(--color-200);
}

.proposal-contact {
  max-width: 450px;
  margin: 0 auto 2rem;
}

.proposal-contact li {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0 0 0 4rem;
  margin-bottom: 2.5rem;
}

.proposal-contact li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: -6px;
  width: 52px;
  height: 52px;
  color: var(--white);
  background-color: var(--color-100);
  border-radius: 50%;
}

.proposal-contact li a {
  color: var(--bk-grade-900);
}

.proposal-contact li a:hover {
  color: var(--color-200);
}

.contact-cover {
  position: relative;
  padding: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  background: #089899;
  background: -webkit-gradient(left top, right top, color-stop(0%, #089899), color-stop(100%, #0e89be));
  background: linear-gradient(to right, #089899 0%, #0e89be 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#089899', endColorstr='#0e89be', GradientType=1);
  border-radius: 1.5rem;
}

.contact-cover .contact-hd {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 450px;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  background-color: var(--color-100);
  border-radius: 50px;
  transform: translateY(-50%);
  text-align: center;
}

.contact-cover .contact-hd h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.contact-cover .contact-co-body {
  padding: 1.5rem 1.5rem;
  margin-top: 1rem;
  background-color: var(--white);
  border-radius: 1.5rem;
}

.contact-cover .contact-co-body .contact-co-bo-hd {
  margin-bottom: 4rem;
  text-align: center;
}

.contact-cover .contact-co-body .contact-co-bo-hd h3 {
  color: var(--bk-grade-950);
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
}

.contact-cover .call-center {
  max-width: 525px;
  padding: 2.5rem 1.5rem 1rem;
  margin: 0 auto 4rem;
  border-radius: 1.5rem;
  border: 3px solid #0a93a8;
  text-align: center;
}

.contact-cover .call-center .call-center-hd {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 250px;
  padding: 0.5rem 1.5rem;
  margin: 0 auto;
  background-color: var(--white);
  transform: translateY(-50%);
  text-align: center;
}

.contact-cover .call-center .call-center-hd::before, .contact-cover .call-center .call-center-hd::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background-color: #08989a;
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-cover .call-center .call-center-hd::before {
  left: 0;
}

.contact-cover .call-center .call-center-hd::after {
  right: 0;
}

.contact-cover .call-center .call-center-hd h3 {
  color: var(--bk-grade-950);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0;
}

.contact-cover .call-center h3 {
  color: #ed1c24;
  font-size: 5rem;
  font-weight: 600;
  margin: 0;
}

.contact-cover .call-center p {
  color: var(--bk-grade-950);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.contact-cover .contact-item {
  position: relative;
  padding: 2.5rem 1.5rem 1rem;
  margin: 0 auto 4rem;
  border-radius: 1.5rem;
  border: 3px solid #0a93a8;
  text-align: center;
}

.contact-cover .contact-item .contact-it-hd {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  top: 0;
  padding: 0.5rem 1.5rem;
  background-color: var(--color-100);
  border-radius: 50px;
  transform: translateY(-50%);
  text-align: center;
}

.contact-cover .contact-item .contact-it-hd h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.contact-cover .contact-item h3 {
  color: var(--bk-grade-950);
  font-size: 3.75rem;
  font-weight: 600;
  margin: 0;
}

.contact-cover .contact-item p {
  color: var(--bk-grade-950);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.contact-cover .contact-item .icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 0.5rem;
  background-color: #25d366;
  border-radius: 50%;
}

.contact-cover .contact-item .icon .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--white);
  font-size: 1.875rem;
  transform: translate(-50%, -50%);
}

.contact-cover .contact-bo-add {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.contact-cover .contact-bo-add p {
  color: var(--bk-grade-950);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.contact-cover .contact-co-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 2rem;
  text-align: center;
}

.contact-cover .contact-co-footer .con-co-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.contact-cover .contact-co-footer .icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 0.5rem;
  background-color: #1eb8ba;
  border-radius: 50%;
}

.contact-cover .contact-co-footer .icon .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--white);
  font-size: 1.875rem;
  transform: translate(-50%, -50%);
}

.ins-heading-sec {
  position: relative;
  padding: 3rem 0 0;
}

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

.ins-heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bk-grade-700);
  font-size: 2.75rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.ins-heading h2 .hd-block {
  flex: 0 1 auto;
  padding: 0 2rem;
}

.ins-heading h2 .hd-anim {
  flex: 0 0 160px;
  max-width: 160px;
  height: 60px;
  background-image: url(../images/ecg-graph.png);
  background-repeat: repeat-x;
  animation: ecgGraph 3s linear infinite;
  overflow: hidden;
}

.ins-heading p {
  color: var(--bk-grade-700);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.pa-visit-item {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  transition: 0.2s ease-out;
}

.pa-visit-item figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.pa-visit-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.pa-visit-item .pa-visit-it-body {
  min-height: 225px;
  padding: 1.5rem 1rem 1rem;
}

.pa-visit-item .pa-visit-it-body h3 {
  color: var(--bk-grade-950);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.pa-visit-item .pa-visit-it-body p {
  color: var(--bk-grade-450);
  margin: 0;
}

.pa-visit-item:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
}

.pa-visit-item:hover figure img {
  transform: scale(1.1);
}

.media-news-cover .media-hd-cover {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.media-news-cover .media-hd-cover .media-hd {
  margin-bottom: 3rem;
}

.media-news-cover .media-hd-cover .media-hd h3 {
  color: var(--bk-grade-950);
  font-size: 1.875rem;
  font-weight: 500;
  margin: 0;
}

.media-news-cover .media-hd-cover .media-nav .btn-more {
  display: flex;
  align-items: center;
  color: var(--color-200);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  margin: 0;
  background-color: transparent;
  border: 1px solid var(--color-200);
  border-radius: 50px;
  box-shadow: none;
}

.media-news-cover .media-hd-cover .media-nav .btn-more .nav-label {
  flex: 1 1 0;
  margin-right: 2rem;
}

.media-news-cover .media-hd-cover .media-nav .btn-more .nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-200);
  border-radius: 50%;
}

.media-news-cover .media-hd-cover .media-nav .btn-more:hover {
  color: var(--white);
  background-color: var(--color-200);
}

.media-news-cover .media-hd-cover .media-nav .btn-more:hover .nav-icon {
  color: var(--color-200);
  background-color: var(--white);
  animation: iconMoveRight 1s infinite;
}

.media-news-cover .media-item {
  padding: 1.5rem;
  background-color: var(--color-200);
  border-radius: 1.5rem;
}

.media-news-cover .media-item.events-item {
  background-color: var(--color-100);
}

.media-news-cover .media-item figure img {
  width: 100%;
}

.media-news-cover .media-item .media-it-body {
  padding: 1.5rem 1.5rem;
}

.media-news-cover .media-item .media-it-body h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 36px;
  margin: 0 0 1rem 0;
}

.media-news-cover .media-item .media-it-body p {
  color: var(--white);
}

.media-news-cover .media-item .media-it-body .news-date {
  color: #78d5fb;
  text-transform: uppercase;
}

.media-news-cover .media-item .media-it-body .btn-more {
  color: #78d5fb;
  font-size: 1.125rem;
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  box-shadow: none;
}

.media-news-cover .media-item .media-it-body .btn-more:hover {
  border: 1px solid var(--white);
}

/* Loader CSS
-------------------------------------------------- */
.loader-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader-overlay .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
}

.loader-overlay .loader .logo {
  display: block;
  width: 80px;
  margin: 0 auto 0.5rem;
}

.loader-overlay .loader .logo svg {
  width: 100%;
}

.loader-overlay .loader-txt {
  color: #1eb8ba;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
}

.beat-loader {
  stroke: #1eb8ba;
  stroke-dasharray: 175;
  stroke-dashoffset: 350;
  animation: draw 1.4s linear;
  animation-iteration-count: infinite;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Animations
-------------------------------------------------- */
@keyframes navDown {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes upBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes downBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

@keyframes drop-anim {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

@keyframes voicePulse {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 5px rgba(30, 184, 186, 0.4);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(30, 184, 186, 0.4), 0 0 0 20px rgba(30, 184, 186, 0.2);
  }
  25% {
    box-shadow: 0 0 0 15px rgba(30, 184, 186, 0.4), 0 0 0 30px rgba(30, 184, 186, 0.2);
  }
}

@keyframes ecgGraph {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 160px center;
  }
}

@keyframes servicePulse {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 5px rgba(30, 184, 186, 0.4);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(30, 184, 186, 0.4), 0 0 0 20px rgba(30, 184, 186, 0.2);
  }
  25% {
    box-shadow: 0 0 0 15px rgba(30, 184, 186, 0.4), 0 0 0 30px rgba(30, 184, 186, 0.2);
  }
}

@keyframes journeyDotPulse {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 5px rgba(30, 184, 186, 0.4);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(30, 184, 186, 0.4), 0 0 0 20px rgba(30, 184, 186, 0.2);
  }
  25% {
    box-shadow: 0 0 0 15px rgba(30, 184, 186, 0.4), 0 0 0 30px rgba(30, 184, 186, 0.2);
  }
}

@keyframes journeyPulse {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 2px rgba(30, 184, 186, 0.4);
  }
  25% {
    box-shadow: 0 0 0 4px rgba(30, 184, 186, 0.4), 0 0 0 15px rgba(30, 184, 186, 0.2);
  }
  25% {
    box-shadow: 0 0 0 8px rgba(30, 184, 186, 0.4), 0 0 0 20px rgba(30, 184, 186, 0.2);
  }
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 184, 186, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(30, 184, 186, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 184, 186, 0);
  }
}

@keyframes lineMove {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    top: 0;
    height: 100%;
  }
  100% {
    top: 100%;
    height: 0;
  }
}

@keyframes btnRotate {
  from {
    transform: rotate(0) scale(1) translate(-50%, -50%);
  }
  to {
    transform: rotate(360deg) scale(0.8) translate(-50%, -50%);
  }
}

@keyframes arrowRightMove {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

@keyframes arrowDownMove {
  0% {
    height: 0;
  }
  100% {
    height: 40px;
  }
}

@keyframes arrowLeftMove {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-menu {
    animation: drop-anim 0.3s ease-out;
  }
}

@media (min-width: 1280px) {
  .container,
  .container-xl {
    width: 1220px;
    max-width: 1220px;
  }
}

@media (min-width: 1366px) {
  .container,
  .container-xl {
    width: 1320px;
    max-width: 1320px;
  }
}

@media (max-width: 1366px) {
  .main-nav .nav-item .nav-link {
    font-size: 0.75rem;
    padding: 0.85rem 0.75rem;
  }
  .dep-mega-menu {
    width: 650px;
  }
  .banner-cover .carousel-content .carousel-hd {
    padding-left: 2rem;
  }
  .voice-cover {
    top: 0;
    width: 125px;
    height: 125px;
  }
  .hub-sm-item figure img {
    height: 220px;
  }
  .location {
    height: 400px;
  }
  .ins-banner-sec .ins-banner-slider img {
    height: 275px;
  }
  .ins-abt-cover {
    padding: 3rem 3rem 10rem;
  }
  .ins-abt-cover .ins-abt-img {
    width: 600px;
  }
  .mission-cover {
    padding: 1.5rem 3rem;
  }
  .mission-cover figure {
    flex: 0 0 225px;
    max-width: 225px;
  }
  .goal-cover {
    padding: 1.5rem 3rem;
  }
  .goal-cover figure {
    flex: 0 0 225px;
    max-width: 225px;
  }
  .values-cover {
    padding: 1.5rem 3rem;
  }
  .values-cover figure {
    flex: 0 0 225px;
    max-width: 225px;
  }
  .journey-cover {
    padding: 3rem 3rem 3rem;
  }
  .journey-item {
    margin-bottom: 2rem;
  }
  .journey-item figure {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .journey-item figcaption {
    flex: 0 0 350px;
    max-width: 350px;
    min-height: 310px;
    padding: 2rem 2rem;
  }
  .journey-item .journey-year .year {
    font-size: 1.5rem;
    padding: 0.5rem 0.5rem;
  }
  .quality-intro {
    padding: 3rem 3rem 3rem;
  }
  .qua-safety {
    padding: 1.5rem 3rem;
  }
  .qua-safety figure {
    flex: 0 0 225px;
    max-width: 225px;
  }
  .qua-measure {
    padding: 1.5rem 3rem;
  }
  .qua-measure figure {
    flex: 0 0 225px;
    max-width: 225px;
  }
  .prio-acc-cover {
    padding: 3rem 3rem 3rem;
    border: 2px solid var(--color-100);
    border-radius: 2rem;
  }
  .qua-speak {
    padding: 1.5rem 3rem;
  }
  .qua-speak figure {
    flex: 0 0 225px;
    max-width: 225px;
  }
  .qua-achieve {
    padding: 1.5rem 3rem;
  }
  .qua-achieve figure {
    flex: 0 0 225px;
    max-width: 225px;
  }
  .qua-awards {
    padding: 1.5rem 3rem;
  }
  .qua-awards figure {
    flex: 0 0 225px;
    max-width: 225px;
  }
  .com-block-cover {
    padding: 2rem 3rem;
  }
  .com-block-cover figure {
    flex: 0 0 425px;
    max-width: 425px;
    margin: 0 3rem 0 0;
  }
  .com-block-cover figure.figure-right {
    margin: 0 0 0 3rem;
  }
  .com-block-cover figure.figure-250 {
    flex: 0 0 225px;
    max-width: 225px;
  }
  .facts-intro .logo {
    max-width: 175px;
  }
  .facts-intro h2 {
    font-size: 2.5rem;
  }
  .facts-intro h3 {
    font-size: 1.75rem;
  }
  .facts-intro h4 {
    font-size: 1.75rem;
  }
  .med-time-cover {
    padding: 2rem 2.5rem 1rem;
  }
  .med-time-cover .med-time-item figure {
    flex: 0 0 100px;
    max-width: 100px;
  }
  .med-time-cover .med-time-item.med-top figure .icon {
    width: 100px;
  }
  .med-time-cover .med-itme-lg .med-count {
    font-size: 5rem;
    line-height: 66px;
  }
  .med-time-cover .med-itme-lg .med-label {
    font-size: 1.5rem;
  }
  .med-time-cover .med-itme-inc .med-inc-body .med-inc-count {
    font-size: 3.5rem;
  }
  .med-time-cover .med-itme-inc .med-inc-body .med-inc-label {
    font-size: 1.5rem;
  }
  .med-time-cover .med-time-item .med-time-body h3 {
    font-size: 1.5rem;
    line-height: 28px;
  }
  .med-spec-item {
    padding: 1rem 2.5rem 2rem;
  }
  .med-spec-item figure {
    flex: 0 0 100px;
    max-width: 100px;
  }
  .med-spec-item .med-spec-body h3 {
    font-size: 5rem;
    line-height: 68px;
  }
  .med-spec-item .med-spec-body p {
    font-size: 1.5rem;
  }
  .med-camp-lg-item figure {
    flex: 0 0 100px;
    max-width: 100px;
  }
  .med-camp-lg-item .med-camp-lg-body h3 {
    font-size: 5rem;
    line-height: 68px;
  }
  .med-camp-md-item figure {
    flex: 0 0 90px;
    max-width: 90px;
  }
  .med-care-md-item .med-care-md-body h3 {
    font-size: 5rem;
  }
  .med-care-md-item .med-care-md-body p {
    font-size: 1.75rem;
  }
  .med-care-lg-item .med-care-lg-body h3 {
    font-size: 5rem;
  }
  .med-care-lg-item .med-care-lg-body p {
    font-size: 1.75rem;
  }
  .health-nav-item figure {
    max-width: 200px;
  }
  .health-info-item figure {
    border: 2px solid var(--color-100);
  }
  .employee-item figure {
    flex: 0 0 400px;
    max-width: 400px;
    margin: 0 3rem 0 0;
    border-radius: 1rem;
  }
  .employee-item figure.figure-right {
    margin: 0 0 0 3rem;
  }
  .employee-item figcaption h2 {
    font-size: 3rem;
  }
  .employee-item figcaption h3 {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .employee-acc-cover h3 {
    font-size: 3rem;
  }
  .employee-acc-cover h4 {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .inclusion-item figure {
    flex: 0 0 400px;
    max-width: 400px;
    margin: 0 3rem 0 0;
    border-radius: 1rem;
  }
  .inclusion-item figcaption h2 {
    font-size: 3rem;
  }
  .inclusion-item figcaption h3 {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .engagement-item figure.figure-right {
    margin: 0 0 0 3rem;
  }
  .engagement-item figcaption h2 {
    font-size: 3rem;
  }
  .engagement-item figcaption h3 {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

@media (max-width: 1280px) {
  .banner-cover .carousel-content .carousel-hd h2 {
    font-size: 4rem;
    line-height: 60px;
  }
  .ins-banner-body .ins-banner-hd .ins-ban-hd-body h1 {
    font-size: 3rem;
  }
  .journey-item figure {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .journey-item figcaption {
    flex: 0 0 300px;
    max-width: 300px;
    min-height: 280px;
    padding: 2rem 2rem;
  }
  .journey-item .journey-year .year {
    flex: 0 0 200px;
    max-width: 200px;
  }
  .donate-cover {
    padding: 2.5rem 2.5rem;
  }
  .award-cover .award-item figure {
    flex: 0 0 350px;
    max-width: 350px;
    padding: 1rem 1rem;
    margin: 0 2rem 0 0;
  }
}

@media (max-width: 1200px) {
  .updates-sec {
    padding: 4rem 0 2rem;
  }
  .section-hd {
    margin-bottom: 2rem;
  }
  .section-hd h2 {
    font-size: 2.5rem;
    margin: 0;
  }
  .section-hd p {
    font-size: 1.125rem;
  }
  .department-sec {
    padding: 2rem 0 2rem 0;
  }
  .department-item figcaption p {
    font-size: 1.125rem;
  }
  .service-sec {
    padding: 2rem 0 1rem;
  }
  .hub-sec {
    position: relative;
    padding: 2rem 0 2rem;
  }
  .ins-abt-cover {
    padding: 3rem 3rem 12rem;
  }
  .ins-abt-cover .ins-abt-img {
    width: 500px;
  }
  .mission-cover figure {
    margin: 0 0 0 3rem;
  }
  .goal-cover figure {
    margin: 0 3rem 0 0;
  }
  .values-cover figure {
    margin: 0 0 0 3rem;
  }
  .qua-safety figure {
    margin: 0 0 0 3rem;
  }
  .qua-measure figure {
    margin: 0 3rem 0 0;
  }
  .qua-speak figure {
    margin: 0 0 0 3rem;
  }
  .qua-achieve figure {
    margin: 0 3rem 0 0;
  }
  .qua-awards figure {
    margin: 0 0 0 3rem;
  }
  .ins-heading h2 {
    font-size: 2.5rem;
    margin: 0;
  }
  .ins-heading p {
    font-size: 1.125rem;
  }
  .donate-cover .donate-item figure {
    flex: 0 0 250px;
    max-width: 250px;
    margin: 0 1rem 0 0;
  }
  .donate-cover .donate-item figcaption {
    min-height: 300px;
    padding: 0 0 1.5rem 0;
    margin: 0 0 1.5rem 0;
  }
  .donate-cover .donate-item figcaption .sub-hd {
    font-size: 1.125rem;
  }
  .donate-cover .donate-item figcaption h2 {
    font-size: 3rem;
  }
  .donate-cover .donate-item figcaption h3 {
    font-size: 1.5rem;
  }
  .donate-cover .donate-item figcaption .donate-msg {
    font-size: 2rem;
  }
}

@media (max-width: 1080px) {
  .main-nav .nav-item .nav-link {
    font-size: 0.75rem;
    padding: 0.85rem 0.5rem;
  }
  .main-nav .nav-item:first-child .nav-link {
    padding-left: 1rem;
  }
  .main-nav .nav-item:last-child .nav-link {
    padding-right: 1rem;
  }
}

@media (max-width: 1023px) {
  .main-nav .nav-item .nav-link {
    padding: 0.85rem 0.5rem;
  }
  .main-nav .nav-item:first-child .nav-link {
    padding-left: 0.5rem;
  }
  .main-nav .nav-item:last-child .nav-link {
    padding-right: 0.5rem;
  }
}

@media (max-width: 991px) {
  .day-time {
    font-size: 0.875rem;
  }
  .top-nav .nav-item .nav-link {
    font-size: 0.875rem;
  }
  .navbar-main .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.5);
  }
  .main-nav .dropdown-menu {
    left: 0 !important;
    right: 0 !important;
  }
  .tool-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.5rem 0;
  }
  .tool-nav .nav-item {
    padding: 0.25rem;
  }
  .tool-nav .nav-item + .nav-item {
    margin-left: 0;
  }
  .tool-nav .nav-item .nav-covid {
    font-size: 0.875rem;
    font-weight: normal;
    padding: 0.25rem 0.5rem;
  }
  .tool-nav .nav-item .nav-covid img {
    width: 26px;
    margin-right: 0.25rem;
  }
  .tool-nav .nav-item .nav-lng {
    width: 38px;
    height: 38px;
    font-size: 0.875rem;
  }
  .tool-nav .nav-item .nav-search {
    width: 38px;
    height: 38px;
  }
  .navbar-main .logo {
    width: 90px;
    height: 75px;
  }
  .navbar-main.navbar-fixed .logo {
    width: 75px;
    height: 63px;
    background-position: 0 -63px;
  }
  .main-nav {
    margin-top: 0;
  }
  .main-nav .nav-item .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .main-nav .nav-item:first-child .nav-link {
    border-radius: 0;
  }
  .main-nav .nav-item:last-child .nav-link {
    border-radius: 0;
  }
  .ins-banner-body .ins-banner-hd .ins-ban-tools {
    flex: 0 0 auto;
  }
  .ins-banner-body .ins-banner-hd .ins-ban-tools .tools-list li:nth-of-type(2) {
    display: none;
  }
  .dep-mega-menu {
    width: auto;
    padding: 0;
  }
  .dep-mega-menu .dep-con-cell {
    display: none;
  }
  .voice-cover {
    width: 100px;
    height: 100px;
  }
  .voice-cover h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
  }
  .voice-cover p {
    font-size: 0.75rem;
  }
  .banner-cover .carousel-content .carousel-hd h2 {
    font-size: 3rem;
    line-height: 46px;
  }
  .section-hd h2 {
    font-size: 2rem;
  }
  .section-hd p {
    font-size: 1rem;
  }
  .section-hd h2 .hd-anim {
    flex: 0 0 100px;
    max-width: 100px;
    height: 60px;
  }
  .hub-lg-item {
    margin-bottom: 1rem;
  }
  .footer-links {
    justify-content: center;
  }
  .copy-right {
    text-align: center;
  }
  .mission-cover figure {
    flex: 0 0 150px;
    max-width: 150px;
    margin: 0 auto 1rem;
    order: unset;
  }
  .mission-cover figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mission-cover figcaption h3 {
    font-size: 1.875rem;
  }
  .goal-cover figure {
    flex: 0 0 150px;
    max-width: 150px;
    margin: 0 auto 1rem;
    order: unset;
  }
  .goal-cover figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .goal-cover figcaption .values-body-hd h3 {
    font-size: 1.5rem;
  }
  .goal-cover figcaption .goal-body-cell {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .values-cover figure {
    flex: 0 0 150px;
    max-width: 150px;
    margin: 0 auto 1rem;
    order: unset;
  }
  .values-cover figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .values-cover figcaption .values-body-hd h3 {
    font-size: 1.5rem;
  }
  .values-cover figcaption .values-body-cell {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .journey-item figure {
    flex: 0 0 250px;
    max-width: 250px;
  }
  .journey-item figcaption {
    flex: 0 0 250px;
    max-width: 250px;
    min-height: 230px;
    padding: 1rem 1rem;
    border-radius: 1rem;
  }
  .qua-safety figure {
    flex: 0 0 150px;
    max-width: 150px;
    margin: 0 auto 1rem;
    order: unset;
  }
  .qua-safety figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qua-safety figcaption h3 {
    font-size: 1.5rem;
  }
  .qua-measure figure {
    flex: 0 0 150px;
    max-width: 150px;
    margin: 0 auto 1rem;
    order: unset;
  }
  .qua-measure figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qua-measure figcaption h3 {
    font-size: 1.5rem;
  }
  .qua-prioritiy-hd {
    margin-bottom: 2rem;
  }
  .qua-prioritiy-hd p {
    font-size: 1.125rem;
  }
  .qua-prioritiy-hd h2 {
    font-size: 2rem;
  }
  .priority-nav-cover .prio-nav-item {
    max-width: 225px;
  }
  .prio-acc-cover {
    padding: 2rem 2rem 2rem;
  }
  .qua-speak figure {
    flex: 0 0 150px;
    max-width: 150px;
    margin: 0 auto 1rem;
    order: unset;
  }
  .qua-speak figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qua-speak figcaption h3 {
    font-size: 1.5rem;
  }
  .qua-achieve figure {
    flex: 0 0 150px;
    max-width: 150px;
    margin: 0 auto 1rem;
    order: unset;
  }
  .qua-achieve figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qua-achieve .qua-achieve-hd h3 {
    font-size: 1.5rem;
  }
  .qua-awards figure {
    flex: 0 0 150px;
    max-width: 150px;
    margin: 0 auto 1rem;
    order: unset;
  }
  .qua-awards figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qua-awards figcaption h3 {
    font-size: 1.5rem;
  }
  .com-block-cover {
    padding: 1.5rem 1.5rem;
  }
  .com-block-cover figure {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto 2rem;
  }
  .com-block-cover figure img {
    border-radius: 1rem;
  }
  .com-block-cover figure.figure-right {
    margin: 0 auto 2rem;
    order: unset;
  }
  .com-block-cover figure.figure-250 {
    flex: 0 0 200px;
    max-width: 200px;
    margin: 0 auto 2rem;
  }
  .com-block-cover figure.radius-2 {
    border-radius: 1rem;
  }
  .com-block-cover figure .reflect img {
    border-radius: 1rem;
  }
  .com-block-cover figure .reflect canvas {
    border-radius: 1rem 1rem 0 0 !important;
  }
  .com-block-cover figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .com-block-cover figcaption h2 {
    font-size: 1.5rem;
  }
  .com-block-cover figcaption h3 {
    font-size: 1.25rem;
  }
  .com-block-cover figcaption h4 {
    font-size: 1.125rem;
  }
  .com-block-cover figcaption .fig-body .fig-body-cell {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .info-cover figure {
    flex: 0 0 150px;
    max-width: 150px;
  }
  .achieve-cover .achieve-hd {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-top: 3px solid var(--color-200);
    border-bottom: 3px solid var(--color-200);
  }
  .achieve-cover .achieve-hd h2 {
    font-size: 2rem;
  }
  .achieve-list .achieve-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: unset;
    padding: 1rem 1rem 1rem 1rem;
  }
  .achieve-list .achieve-divide {
    display: none;
  }
  .achieve-list .achieve-item .achieve-it-hd h3 {
    font-size: 1.5rem;
  }
  .achieve-list .achieve-item figure {
    flex: 0 0 75px;
    max-width: 75px;
    margin: 0 1rem 0 0;
  }
  .achieve-list .achieve-item .achieve-it-body {
    padding-top: 0;
  }
  .achieve-list .achieve-item .achieve-it-hd h3 {
    font-size: 2.5rem;
  }
  .achieve-list .achieve-item .achieve-it-body p {
    font-size: 1rem;
    font-weight: normal;
  }
  .award-cover .award-hd {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-top: 3px solid var(--color-200);
    border-bottom: 3px solid var(--color-200);
  }
  .award-cover .award-hd h2 {
    font-size: 2rem;
  }
  .award-list .award-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: unset;
  }
  .award-list.first-list .award-divide {
    display: none;
  }
  .award-list .award-item .award-it-body {
    padding-top: 0;
  }
  .ins-heading h2 {
    font-size: 2rem;
  }
  .ins-heading p {
    font-size: 1rem;
  }
  .ins-heading h2 .hd-anim {
    flex: 0 0 100px;
    max-width: 100px;
    height: 60px;
  }
  .med-time-cover {
    padding: 2rem 1.5rem 1rem;
  }
  .med-time-cover .med-time-item.med-top figure {
    margin-right: 1rem;
  }
  .med-time-cover .med-time-item.med-top figure .icon {
    width: 75px;
  }
  .med-time-cover .med-itme-lg .med-count {
    font-size: 4rem;
    line-height: 52px;
  }
  .med-spec-item figure {
    flex: 0 0 75px;
    max-width: 75px;
    margin-right: 1rem;
  }
  .med-spec-item .med-spec-body h3 {
    font-size: 4rem;
    line-height: 52px;
  }
  .med-camp-md-item figure {
    flex: 0 0 75px;
    max-width: 75px;
    margin-right: 1rem;
  }
  .med-camp-md-item .med-camp-md-body h3 {
    font-size: 3rem;
    line-height: 28px;
  }
  .med-camp-md-item .med-camp-md-body h4 {
    font-size: 1.5rem;
    line-height: 26px;
  }
  .donate-cover .donate-item figure {
    flex: 0 0 250px;
    max-width: 250px;
    margin: 0 auto 2rem;
  }
  .donate-cover .donate-item figure::after {
    display: none;
  }
  .donate-cover .donate-item figcaption {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: unset;
    padding: 0 0 2rem 0;
    margin: 0 0 2rem 0;
  }
  .donate-cover .donate-item figcaption .sub-hd {
    font-size: 1rem;
  }
  .donate-cover .donate-item figcaption h2 {
    font-size: 2rem;
  }
  .donate-cover .donate-item figcaption h3 {
    font-size: 1.25rem;
  }
  .donate-cover .donate-item figcaption .donate-msg {
    font-size: 1.25rem;
  }
  .h-manage-item .h-manage-top {
    padding: 2rem 2rem;
  }
  .h-manage-item .h-manage-body .h-mng-b-item {
    padding: 2rem 2rem;
  }
  .h-manage-item .h-manage-top figure {
    flex: 0 0 150px;
    max-width: 150px;
    height: 150px;
    margin: 0 0 2rem 0;
    border-radius: 1rem;
  }
  .h-manage-item .h-manage-top article {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .h-manage-item .h-manage-body .h-mng-b-item figure {
    flex: 0 0 150px;
    max-width: 150px;
    height: 150px;
    margin: 0 0 2rem 0;
    border-radius: 1rem;
  }
  .h-manage-item .h-manage-body .h-mng-b-item article {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .block-figure figure {
    max-width: 200px;
  }
  .employee-item figure {
    flex: 0 0 350px;
    max-width: 350px;
    margin: 0 auto 2rem;
  }
  .employee-item figure.figure-right {
    margin: 0 auto 2rem;
    order: unset;
  }
  .employee-item figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .employee-item figcaption h2 {
    font-size: 2rem;
  }
  .employee-item figcaption h3 {
    font-size: 1.25rem;
  }
  .employee-item figcaption p {
    font-size: 1rem;
    font-weight: normal;
  }
  .inclusion-item figure {
    flex: 0 0 350px;
    max-width: 350px;
    margin: 0 auto 2rem;
  }
  .inclusion-item figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .inclusion-item figcaption h2 {
    font-size: 2rem;
  }
  .engagement-item figure {
    flex: 0 0 350px;
    max-width: 350px;
    margin: 0 auto 2rem;
  }
  .engagement-item figure.figure-right {
    flex: 0 0 350px;
    max-width: 350px;
    margin: 0 auto 2rem;
    order: unset;
  }
  .engagement-item figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .engagement-item figcaption h2 {
    font-size: 2rem;
  }
  .health-nav-item .health-it-body p {
    font-size: 1rem;
  }
  .employee-acc-cover h3 {
    font-size: 2rem;
  }
  .employee-acc-cover h4 {
    font-size: 1.25rem;
  }
  .employee-acc-cover p {
    font-size: 1rem;
    font-weight: normal;
  }
  .inclusion-item figcaption h3 {
    font-size: 1.25rem;
  }
  .award-cover .award-item {
    padding: 1.5rem 1.5rem;
    margin-bottom: 1rem;
  }
  .award-cover .award-item figure {
    flex: 0 0 100%;
    margin: 0 auto 2rem;
  }
  .award-cover .award-item .award-body {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ft-accredit-cover .ft-accredit-body .ft-accredit-item {
    flex: 0 0 150px;
    max-width: 150px;
  }
  .journey-cover {
    padding: 2rem 2rem 2rem;
  }
  .journey-item {
    margin-bottom: 2rem;
  }
  .journey-item::after {
    bottom: -25px;
  }
  .journey-item .journey-year {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    order: unset;
  }
  .journey-item figure {
    margin: 0 auto 1rem;
    order: unset;
  }
  .journey-item figcaption {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: unset;
  }
  .journey-item .journey-year .year {
    font-size: 1rem;
  }
  .journey-item:nth-of-type(even) figure,
  .journey-item:nth-of-type(even) figcaption,
  .journey-item:nth-of-type(even) .journey-year {
    order: unset;
  }
  .safety-list-cover {
    padding: 1rem 1rem;
  }
  .safety-list-cover .safety-item {
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .safety-list-cover .safety-item figure {
    flex: 0 0 100px;
    max-width: 100px;
    height: 100px;
    margin: 0 1rem 0;
  }
  .safety-list-cover .safety-item figure img {
    width: 60px;
  }
  .res-cover .res-heading {
    max-width: 300px;
    font-size: 1.25rem;
    padding: 10px 10px;
  }
  .res-cover .res-sec-hd {
    padding: 1rem 1rem;
  }
  .res-cover .res-sec-hd h3 {
    font-size: 1.25rem;
    font-weight: 500;
  }
  .publish-cover .publish-cell {
    padding: 0 1rem;
  }
  .contact-cover .contact-hd h2 {
    font-size: 1.5rem;
  }
  .contact-cover .contact-co-body .contact-co-bo-hd h3 {
    font-size: 1.875rem;
  }
  .contact-cover .call-center .call-center-hd h3 {
    font-size: 1.875rem;
  }
  .contact-cover .call-center h3 {
    font-size: 3rem;
  }
  .contact-cover .contact-item .contact-it-hd h3 {
    font-size: 1.25rem;
  }
  .contact-cover .contact-item h3 {
    font-size: 2.5rem;
  }
  .contact-cover .contact-item .contact-it-hd h3 {
    font-size: 1.25rem;
  }
  .contact-cover .contact-bo-add p {
    font-size: 1.25rem;
  }
  .contact-cover .contact-co-footer {
    font-size: 1.25rem;
  }
  .contact-cover .contact-co-footer .icon {
    width: 40px;
    height: 40px;
  }
  .contact-cover .contact-co-footer .icon .fa {
    font-size: 1rem;
  }
  .proposal-cover .proposal-cell {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .site-visitors {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .day-time {
    display: none;
  }
  .navbar-main.ins-navbar .logo {
    width: 75px;
    height: 63px;
    background-position: 0 -63px;
  }
  .dep-mega-menu .dep-menu-cell {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .banner-cover {
    height: 350px;
  }
  .banner-cover .carousel .carousel-inner .carousel-item img,
  .banner-cover .carousel .carousel-inner .carousel-item video {
    height: 350px;
  }
  .banner-cover .carousel-content .carousel-hd h2 {
    font-size: 2.5rem;
    line-height: 40px;
  }
  .banner-tool-cover {
    bottom: 1rem;
  }
  .voice-cover {
    top: auto;
    bottom: 0;
  }
  .info-sec {
    padding: 2rem 0 2rem 0;
  }
  .info-cover figure {
    margin: 0 auto 1rem;
    order: unset;
  }
  .info-cover .info-co-body {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .info-cover .info-co-body .btn-call {
    max-width: 300px;
  }
  .info-cover .info-co-body .btn-call .btn-icon {
    flex: 0 0 60px;
    max-width: 60px;
    height: 60px;
  }
  .info-cover .info-co-body .btn-call .btn-icon img {
    width: 32px;
  }
  .info-cover .info-co-body .btn-call .btn-number {
    font-size: 1.25rem;
  }
  .social-media {
    display: none;
  }
  .footer-social {
    text-align: center;
  }
  .site-visitors {
    text-align: center;
  }
  .ins-banner-sec .ins-banner-slider img {
    height: 200px;
  }
  .ins-banner-body .ins-banner-hd .ins-ban-hd-body h1 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
  }
  .ins-content-sec {
    padding: 2rem 0 2rem;
  }
  .ins-abt-cover {
    padding: 2rem 2rem 18rem;
  }
  .ins-abt-cover .ins-abt-body h3 {
    font-size: 1.25rem;
  }
  .ins-abt-cover .ins-abt-body p {
    font-size: 1rem;
  }
  .mission-cover {
    padding: 1.5rem 1.5rem;
  }
  .mission-cover figcaption h3 {
    font-size: 2rem;
  }
  .mission-cover figcaption h4 {
    font-size: 1.25rem;
  }
  .goal-cover {
    padding: 1.5rem 1.5rem;
  }
  .goal-cover figcaption .values-body-hd h3 {
    font-size: 2rem;
  }
  .values-cover {
    padding: 1.5rem 1.5rem;
  }
  .values-cover figcaption .values-body-hd h3 {
    font-size: 2rem;
  }
  .quality-intro {
    padding: 2rem 2rem 2rem;
  }
  .quality-intro h2 {
    font-size: 2rem;
  }
  .quality-intro h3 {
    font-size: 1.25rem;
  }
  .quality-intro p {
    font-size: 1rem;
  }
  .qua-safety {
    padding: 1.5rem 1.5rem;
  }
  .qua-safety figcaption h3 {
    font-size: 2rem;
  }
  .qua-safety figcaption h4 {
    font-size: 1.25rem;
  }
  .qua-measure {
    padding: 1.5rem 1.5rem;
  }
  .qua-measure figcaption h3 {
    font-size: 2rem;
  }
  .qua-measure figcaption h4 {
    font-size: 1.25rem;
  }
  .priority-nav-cover .prio-nav-item {
    max-width: 180px;
  }
  .prio-acc-cover {
    padding: 1.5rem 1.5rem 1rem;
    border-radius: 1rem;
  }
  .prio-acc-cover h3 {
    font-size: 1.5rem;
  }
  .prio-acc-cover ol li {
    font-size: 1.125rem;
  }
  .qua-speak {
    padding: 1.5rem 1.5rem;
  }
  .qua-speak figcaption h3 {
    font-size: 2rem;
  }
  .qua-speak figcaption h4 {
    font-size: 1.25rem;
  }
  .qua-achieve {
    padding: 1.5rem 1.5rem;
  }
  .qua-achieve figcaption h3 {
    font-size: 2rem;
  }
  .qua-achieve figcaption h4 {
    font-size: 1.25rem;
  }
  .qua-awards {
    padding: 1.5rem 1.5rem;
  }
  .qua-awards figcaption h3 {
    font-size: 2rem;
  }
  .qua-awards figcaption h4 {
    font-size: 1.25rem;
  }
  .com-block-cover figcaption h2 {
    font-size: 2rem;
  }
  .com-block-cover figcaption h3 {
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
  }
  .com-block-cover figcaption h4 {
    font-size: 1.125rem;
  }
  .achieve-cover .achieve-hd h2 {
    font-size: 1.5rem;
  }
  .award-cover .award-hd h2 {
    font-size: 1.5rem;
  }
  .fact-med-cover .fact-med-cell {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .fact-med-cover .fact-med-cell + .fact-med-cell {
    border-left: 0 solid #506372;
  }
  .med-camp-md-cover {
    padding: 0;
  }
  .med-spec-item .med-spec-body h3 {
    font-size: 3rem;
    line-height: 28px;
  }
  .donate-cover .donate-item figure {
    flex: 0 0 200px;
    max-width: 200px;
  }
  .donate-cover .donate-item figcaption .fig-body .fig-body-cell {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .m-report-list-cover {
    padding: 1rem 1rem;
  }
  .m-report-list-cover .m-report-item {
    margin-bottom: 2rem;
  }
  .m-report-list-cover .m-report-item figure {
    flex: 0 0 200px;
    max-width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
  }
  .m-report-list-cover .m-report-item figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .health-nav-item figure {
    max-width: 150px;
    margin: 0 auto 1rem;
  }
  .employee-nav-item figure {
    border-radius: 1rem;
  }
  .employee-nav-item figcaption h3 {
    font-size: 1rem;
    font-weight: normal;
  }
  .training-nav-item figure {
    border-radius: 0.5rem;
  }
  .training-nav-item figcaption .down-icon {
    top: -16px;
    width: 32px;
    height: 32px;
  }
  .training-nav-item figcaption .down-icon img {
    width: 10px;
  }
  .training-nav-item figcaption {
    padding: 1rem 1rem;
  }
  .training-nav-item figcaption h3 {
    font-size: 1rem;
    font-weight: 500;
  }
  .diabetes-acc-cover {
    margin-bottom: 1.5rem;
  }
  .com-block-cover {
    padding: 1rem 1rem;
  }
  .diabetes-acc-cover .com-block-cover {
    padding: 1rem 1rem;
    border-radius: 0.5rem;
  }
  .employee-nav-item figure {
    border-radius: 0.5rem;
  }
  .employee-nav-item figcaption .down-icon {
    top: -16px;
    width: 32px;
    height: 32px;
  }
  .employee-nav-item figcaption .down-icon img {
    width: 10px;
  }
  .prio-nav-item figure .down-icon {
    bottom: 4px;
    width: 32px;
    height: 32px;
  }
  .res-cover .res-outer {
    padding: 1rem;
    border-radius: 1rem;
  }
  .res-cover .res-inner {
    padding: 2.5rem 1rem 1rem;
    background-color: var(--white);
    border-radius: 1.5rem;
  }
  .proposal-cover .proposal-cell {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .proposal-cover .proposal-item {
    padding: 1.5rem 1.5rem;
    margin: 0.5rem 0;
  }
  .proposal-cover .proposal-item .arrow-right {
    display: none;
  }
  .proposal-cover .proposal-item .arrow-left {
    display: none;
  }
  .proposal-cover .proposal-item .arrow-down {
    display: none;
  }
}

@media (max-width: 576px) {
  .top-nav .nav-item .nav-link {
    font-size: 0.75rem;
    padding: 0.5rem 0.5rem;
  }
  .tool-nav .nav-item .nav-covid {
    font-size: 0.75rem;
  }
  .tool-nav .nav-item .nav-covid img {
    width: 20px;
    margin-right: 0.1rem;
  }
  .drop-search {
    width: 20rem !important;
  }
  .banner-cover .carousel-content {
    top: 50%;
  }
  .voice-cover {
    top: auto;
    bottom: 0;
    width: 75px;
    height: 75px;
  }
  .scroll-btm .scroll-txt {
    font-size: 0.75rem;
  }
  .voice-cover h3 {
    font-size: 0.875rem;
  }
  .voice-cover p {
    font-size: 0.65rem;
  }
  .section-hd h2 {
    font-size: 1.75rem;
  }
  .section-hd h2 .hd-anim {
    flex: 0 0 60px;
    max-width: 60px;
    height: 38px;
    background-size: 100px;
  }
  @keyframes ecgGraph {
    from {
      background-position: 0 center;
    }
    to {
      background-position: 100px center;
    }
  }
  .department-item {
    max-width: unset;
  }
  .ins-banner-body
.ins-banner-hd
.ins-ban-hd-body
.breadcrumb
.breadcrumb-item {
    font-size: 0.75rem;
    font-weight: normal;
  }
  .ins-abt-cover {
    padding: 1.5rem 1.5rem 9rem;
  }
  .ins-abt-cover .ins-abt-img {
    width: 100%;
    max-width: 350px;
  }
  .ins-abt-cover .ins-abt-body h3 {
    font-size: 1.125rem;
  }
  .journey-cover {
    padding: 1.5rem 1.5rem 1rem;
  }
  .journey-cover p {
    font-size: 1rem;
  }
  .journey-item .journey-year .year-pulse {
    background-size: 100px;
  }
  .journey-item .journey-year .year {
    font-size: 1.25rem;
    padding: 0.25rem 0.25rem;
  }
  .ins-banner-body .ins-banner-hd .ins-ban-hd-body h1 {
    font-size: 1.5rem;
  }
  .quality-intro {
    padding: 1.5rem 1.5rem;
  }
  .quality-intro h2 {
    font-size: 1.5rem;
  }
  .quality-intro h3 {
    font-size: 1.125rem;
  }
  .quality-intro p {
    font-size: 1rem;
  }
  .qua-prioritiy-hd h2 {
    font-size: 1.5rem;
  }
  .priority-nav-cover {
    align-items: flex-start;
  }
  .priority-nav-cover .prio-nav-item {
    max-width: 160px;
  }
  .priority-nav-cover .prio-nav-item figcaption p {
    font-size: 1rem;
    font-weight: 500;
  }
  .prio-acc-cover {
    padding: 1rem 1rem 1rem;
    border-radius: 0.5rem;
  }
  .anesthesia-item figcaption {
    left: 1rem;
    right: 1rem;
    bottom: 0;
    padding: 0.5rem 0.5rem;
  }
  .anesthesia-item figcaption h3 {
    font-size: 1.125rem;
  }
  .anesthesia-collapse .collapse-item {
    margin-bottom: 0.5rem;
  }
  .anesthesia-collapse .collapse-item .collapse-nav {
    padding: 0.25rem 0.5rem 0.25rem 1rem;
    border: 2px solid var(--color-100);
    border-radius: 0.5rem;
  }
  .anesthesia-collapse .collapse-item .collapse-nav .collapse-label {
    font-size: 1.125rem;
  }
  .anesthesia-item {
    margin-bottom: 1rem;
  }
  .ins-heading h2 {
    font-size: 1.75rem;
  }
  .ins-heading h2 .hd-anim {
    flex: 0 0 60px;
    max-width: 60px;
    height: 38px;
    background-size: 100px;
  }
  .med-time-cover {
    padding: 1rem 1rem 1rem;
  }
  .med-time-cover .med-time-item.med-top figure .icon {
    width: 52px;
  }
  .med-time-cover .med-time-item figure {
    flex: 0 0 75px;
    max-width: 75px;
  }
  .med-time-cover .med-itme-lg .med-count {
    font-size: 3rem;
    line-height: 32px;
  }
  .med-time-cover .med-itme-lg .med-label {
    font-size: 1.125rem;
  }
  .med-time-cover .med-itme-inc .med-inc-hd {
    font-size: 1rem;
  }
  .med-time-cover .med-itme-inc .med-inc-body .med-inc-count {
    font-size: 3rem;
    line-height: 32px;
  }
  .med-time-cover .med-itme-inc .med-inc-body .med-inc-label {
    font-size: 1.125rem;
  }
  .med-time-cover .med-time-item .med-time-body h3 {
    font-size: 1.25rem;
    line-height: 22px;
  }
  .med-spec-item {
    padding: 1rem 1rem 1rem;
  }
  .med-spec-item figure {
    flex: 0 0 50px;
    max-width: 50px;
  }
  .med-spec-item .med-spec-body h3 {
    font-size: 2rem;
    line-height: 26px;
  }
  .med-spec-item .med-spec-body p {
    font-size: 1.25rem;
  }
  .med-camp-md-item {
    padding: 1rem 1rem 1rem;
  }
  .med-camp-md-item figure {
    flex: 0 0 50px;
    max-width: 50px;
  }
  .med-camp-md-item .med-camp-md-body h3 {
    font-size: 2rem;
    line-height: 26px;
  }
  .med-camp-md-item .med-camp-md-body p {
    font-size: 1rem;
  }
  .med-camp-md-item .med-camp-md-body h4 {
    font-size: 1.125rem;
  }
  .h-manage-item .h-manage-top {
    padding: 1rem 1rem;
  }
  .h-manage-item .h-manage-top article h3 {
    font-size: 1.5rem;
  }
  .h-manage-item .h-manage-body .h-mng-b-item {
    padding: 1rem 1rem;
  }
  .h-manage-item .h-manage-body .h-mng-b-item article h3 {
    font-size: 1.5rem;
  }
  .block-figure figcaption h3 {
    font-size: 1.5rem;
  }
  .safety-list-cover .safety-item figure {
    margin: 0 auto 1rem;
  }
  .safety-list-cover .safety-item figcaption {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .instruct-cover .instruct-item figure {
    flex: 0 0 75px;
    max-width: 75px;
    height: 75px;
    box-shadow: 0 0 0 3px rgba(30, 184, 186, 0.4);
  }
  .employee-item {
    margin-bottom: 2rem;
  }
  .employee-sec {
    padding: 3rem 0 3rem;
  }
  .ft-accredit-cover .ft-accredit-body .ft-accredit-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .res-cover .res-outer {
    padding: 1rem;
    border-radius: 1rem;
  }
  .res-cover .res-inner {
    padding: 2.5rem 1rem 1rem;
    border-radius: 1rem;
  }
  .res-cover .res-sec-hd {
    padding: 0.5rem 0.5rem;
  }
  .res-cover .res-sec-hd h3 {
    font-size: 1.125rem;
  }
  .res-cover .res-heading {
    max-width: 250px;
    font-size: 1.125rem;
  }
  .contact-cover .contact-hd {
    max-width: 325px;
    padding: 0.5rem 0.5rem;
  }
  .contact-cover .contact-hd h2 {
    font-size: 1rem;
    font-weight: 500;
  }
  .contact-cover .contact-co-body .contact-co-bo-hd h3 {
    font-size: 1rem;
  }
  .contact-cover .call-center .call-center-hd h3 {
    font-size: 1rem;
  }
  .contact-cover .call-center h3 {
    font-size: 2rem;
  }
  .contact-cover .call-center p {
    font-size: 1.125rem;
    font-weight: 500;
  }
  .contact-cover .contact-item .contact-it-hd {
    left: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 0.5rem;
  }
  .contact-cover .contact-item .contact-it-hd h3 {
    font-size: 1rem;
  }
  .contact-cover .contact-item h3 {
    font-size: 2rem;
  }
  .contact-cover .contact-item p {
    font-size: 1.125rem;
    font-weight: 500;
  }
  .contact-cover .contact-bo-add p {
    font-size: 1rem;
  }
}
