/*------------------------------------------------------------------
[Common]
*/

/* body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
  font-weight: 400;
  color: #000;
} */

body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
}

/* .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
} */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.35;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  height: unset;
  width: auto;
}

a {
  color: #00617f;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #319c8a;
}

@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1224px;
  }
}

@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1384px;
  }
}

/*------------------------------------------------------------------
[Buttons]
*/
button {
  cursor: pointer;
}
button:focus {
  outline: none;
}

.btn-custom {
  padding: 8px 20px;
  border-radius: 10px;
}
.btn-custom.disabled {
  border: none !important;
}
@media only screen and (min-width: 1200px) {
  .btn-custom {
    min-width: 160px;
  }
}

.btn-clear {
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.btn-primary-custom {
  border-color: #00617f;
  background-color: #00617f;
  color: #fff;
}
.btn-primary-custom:hover,
.btn-primary-custom:focus {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}

.btn-outline-light-custom {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.btn-outline-light-custom:hover,
.btn-outline-light-custom:focus {
  border-color: #309f8d;
  background-color: #309f8d;
  color: #fff;
}

.btn-outline-primary-custom {
  border-color: #00617f;
  background-color: transparent;
  color: #00617f;
}
.btn-outline-primary-custom:hover,
.btn-outline-primary-custom:focus {
  border-color: #00617f;
  background-color: #00617f;
  color: #fff;
}

.btn-xs-custom {
  padding-top: 4px;
  padding-bottom: 4px;
  border-radius: 5px;
}

.btn-info-custom {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}
.btn-info-custom:hover,
.btn-info-custom:focus {
  border-color: #257568;
  background-color: #257568;
  color: #fff;
}

.btn-custom {
  font-weight: 500;
  position: relative !important;
  padding: 0 !important;
  display: inline-block;
  height: 48px !important;
}
.btn-custom::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 2px;
  right: 2px;
  height: 48px;
  border-radius: 50rem;
}
.btn-custom span {
  padding: 10px 30px;
  display: block;
  position: relative;
  min-width: 180px;
  height: 48px;
  line-height: 1.6;
  white-space: nowrap;
  border-radius: 50rem;
}
.btn-custom span::before,
.btn-custom span::after {
  content: "";
  display: block;
  height: 48px;
  width: 50%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
}
.btn-custom span::before {
  left: 0;
  background-image: url(../../images/icons/button-left.png);
  background-position: 0 0;
}
.btn-custom span::after {
  right: 0;
  background-image: url(../../images/icons/button-right.png);
  background-position: right 0;
}
.btn-custom:active {
  border: 0;
  outline: 0;
}

.btn-custom.btn-sm {
  height: 32px;
}
.btn-custom.btn-sm::before {
  height: 32px;
}
.btn-custom.btn-sm span {
  height: 32px;
  padding-top: 5px;
  padding-bottom: 5px;
  min-width: 132px;
}
.btn-custom.btn-sm span::before,
.btn-custom.btn-sm span::after {
  height: 32px;
  background-size: auto 100%;
}
.btn-custom.small {
  height: 40px;
}
.btn-custom.small::before {
  height: 40px;
}
.btn-custom.small span {
  min-width: 140px;
  line-height: 1.3;
  padding-left: 20px;
  padding-right: 20px;
  height: 40px;
}
.btn-custom.small span::after,
.btn-custom.small span::before {
  height: 40px;
  background-size: auto 100%;
}

.btn-info-color {
  color: #fff;
}
.btn-info-color::before {
  background-color: #319c8a;
}
.btn-info-color:hover,
.btn-info-color:focus {
  color: #fff;
}
.btn-info-color:hover::before,
.btn-info-color:focus::before {
  background-color: #2b8979;
}

.ico-upload {
  background-image: url(../../../../images/icons/ico-upload.svg);
  width: 16px;
  height: 14px;
}

.btn-primary-color {
  color: #fff;
}
.btn-primary-color::before {
  background-color: #00617f;
}
.btn-primary-color:hover,
.btn-primary-color:focus {
  color: #fff;
}
.btn-primary-color:hover::before,
.btn-primary-color:focus::before {
  background-color: #004e66;
}

.btn-primary-custom {
  background-image: linear-gradient(
      278.47deg,
      rgba(255, 255, 255, 0.2) 60.05%,
      #ffffff 89.84%
    ),
    linear-gradient(102.04deg, rgba(255, 255, 255, 0) 48.31%, #ffffff 93.36%);
  background-color: #00617f;
}
.btn-primary-custom .btn-custom-inner {
  background-color: #00617f;
  color: #fff;
}
.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background-color: #00617f;
}
.btn-primary-custom:hover .btn-custom-inner,
.btn-primary-custom:focus .btn-custom-inner {
  background-color: #007499;
  color: #fff;
}

.btn-primary-solid {
  border-color: #00617f;
  background-color: #00617f;
  color: #fff;
}
.btn-primary-solid:hover,
.btn-primary-solid:focus {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}

.btn-normal {
  padding: 10px 30px;
  display: inline-block;
  position: relative;
  min-width: 180px;
  height: 48px;
  line-height: 1.6;
  white-space: nowrap;
  border-radius: 50rem;
  font-weight: 500;
}

.btn-outline-primary-color {
  border-color: #00617f;
  background-color: #fff;
  color: #00617f;
}
.btn-outline-primary-color:hover,
.btn-outline-primary-color:focus {
  border-color: #00617f;
  background-color: #00617f;
  color: #fff;
}

/*------------------------------------------------------------------
[Typo]
*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.title {
  color: #00617f;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.21875;
}

.title {
  color: #00617f;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

.title strong {
  font-weight: 600;
}

.title-type-0 {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .title-type-0 {
    font-size: 30px;
  }
}

.title-type-1,
.single-page-title,
.section-text-title,
.entry-title,
.block-text .title {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .title-type-1,
  .single-page-title,
  .section-text-title,
  .entry-title,
  .block-text .title {
    font-size: 30px;
  }
}

.title-type-3 {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .title-type-3 {
    font-size: 30px;
  }
}

.title-type-4,
.video-context .desc h3,
.single-carrer-content h3 {
  font-size: 16px;
}

.title-type-6 {
  font-size: 16px;
}

.heading {
  margin-bottom: 24px;
}

.heading-subtitle {
  line-height: 1.25;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.text-info-1 {
  color: #309f8d;
}

.text-info-2 {
  color: #319c8a;
}

.fw-medium {
  font-weight: 500;
}

.text-primary-color {
  color: #00617f;
}

b,
strong {
  font-weight: 700;
}

.text-info-3 {
  color: #e2f1ee !important;
}

.title-page,
.summary-detail-label {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .title-page,
  .summary-detail-label {
    font-size: 30px;
  }
}

.fz-text,
.service-detail-hero-text,
.aphservice-tabs .nav-tabs .nav-link,
.summary-detail .list-group-disc,
.summary-detail .btn-book-now,
.department-of-doctor,
.doctor-new-item-expert {
  line-height: 1.28;
}
@media only screen and (min-width: 768px) {
  .fz-text,
  .service-detail-hero-text,
  .aphservice-tabs .nav-tabs .nav-link,
  .summary-detail .list-group-disc,
  .summary-detail .btn-book-now,
  .department-of-doctor,
  .doctor-new-item-expert {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .fz-text,
  .service-detail-hero-text,
  .aphservice-tabs .nav-tabs .nav-link,
  .summary-detail .list-group-disc,
  .summary-detail .btn-book-now,
  .department-of-doctor,
  .doctor-new-item-expert {
    font-size: 25px;
  }
}

.fz-sub-title,
.doctor-new-item-title {
  font-size: 26px;
}
@media only screen and (min-width: 768px) {
  .fz-sub-title,
  .doctor-new-item-title {
    font-size: 35px;
  }
}

.fz-title,
.aphservice-title,
.section-title,
.infrastructure-new-title,
.doctor-new-title {
  font-size: 32px;
}
@media only screen and (min-width: 768px) {
  .fz-title,
  .aphservice-title,
  .section-title,
  .infrastructure-new-title,
  .doctor-new-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .fz-title,
  .aphservice-title,
  .section-title,
  .infrastructure-new-title,
  .doctor-new-title {
    font-size: 55px;
  }
}

.title-type-1 {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .title-type-1 {
    font-size: 48px;
  }
}

.title-type-2 {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .title-type-2 {
    font-size: 36px;
  }
}

.title-type-3 {
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  .title-type-3 {
    font-size: 28px;
  }
}

.title-type-4 {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .title-type-4 {
    font-size: 20px;
  }
}

.text-primary-color {
  color: #00617f;
}

/*------------------------------------------------------------------
[Icons]
*/
[class*="ico-"] {
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
}

.ico-package-2 {
  background-image: url(../../images/icons/ico-package-2.png);
  width: 24px;
  height: 24px;
}

.ico-package-3 {
  background-image: url(../../images/icons/ico-package-3.png);
  width: 24px;
  height: 24px;
}

.ico-zalo {
  background-image: url(../../images/icons/ico-zalo.svg);
  width: 24px;
  height: 24px;
}

.ico-facebook-circle {
  background-image: url(../../images/icons/ico-facebook-circle.svg);
  width: 24px;
  height: 24px;
}

.ico-linkedin {
  background-image: url(../../images/icons/ico-linkedin.svg);
  width: 24px;
  height: 24px;
}

.ico-tiktok {
  background-image: url(../../images/icons/ico-tiktok.svg);
  width: 24px;
  height: 24px;
}

[class*="ico-"] {
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.ico-facebook {
  background-image: url(../../images/icons/ico-facebook.png);
  width: 24px;
  height: 24px;
}

.ico-zalo {
  background-image: url(../../images/icons/ico-zalo-2.png);
  width: 24px;
  height: 24px;
}

.ico-linkedin {
  background-image: url(../../images/icons/ico-linkedin.png);
  width: 24px;
  height: 24px;
}

.ico-tiktok {
  background-image: url(../../images/icons/ico-tiktok.png);
  width: 21px;
  height: 24px;
}

/*------------------------------------------------------------------
[Header]
*/
.header-site {
  /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15); */
  z-index: 100;
  position: relative;
}
/* 
body.intro-page .header-site {
  box-shadow: none;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
body.intro-page .navbar-expand-lg {
  background-color: transparent;
  box-shadow: none;
}
@media only screen and (min-width: 992px) {
  body.intro-page .navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
  }
  body.intro-page .navbar-expand-lg .book-schedule .btn-primary-custom {
    border-color: #319C8A;
    background-color: #319C8A;
    color: #fff;
  }
  body.intro-page .navbar-expand-lg .book-schedule .btn-primary-custom:hover, body.intro-page .navbar-expand-lg .book-schedule .btn-primary-custom:focus {
    border-color: #257568;
    background-color: #257568;
    color: #fff;
  }
}
body.intro-page .navbar-toggler {
  color: #fff;
}
body.intro-page .navbar-brand {
  background-image: url(../../images/logo-white.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
body.intro-page .navbar-brand img {
  display: none;
} */
body.fixed .header-site {
  position: fixed;
  height: auto;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #00617f;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15) !important;
  animation: 250ms ease-out 0s normal none 1 running showStickyMenu;
}
body.fixed .header-site .btn-custom {
  padding: 8px 14px;
}
@media only screen and (min-width: 992px) {
  body.fixed .header-site .btn-custom {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  body.fixed .header-site .btn-custom {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  body.fixed .navbar-brand {
    height: 50px;
    width: 116px;
  }
  body.fixed .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  /* body.fixed .navbar-expand-lg .navbar-nav {
    padding-left: 10%;
    padding-right: 10%;
  } */
  body.fixed .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
  }
}

@-webkit-keyframes showStickyMenu {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@-moz-keyframes showStickyMenu {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@keyframes showStickyMenu {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
.navbar-expand-lg {
  padding-top: 7px;
  padding-bottom: 8px;
  /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15); */
  position: relative;
  background-color: #fff;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .container {
    position: relative;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    justify-content: space-between;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 10px;
  }
}
.navbar-expand-lg .navbar-nav .nav-item:not(:last-child) {
  border-bottom: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 0;
  }
}
.navbar-expand-lg .navbar-nav .nav-link {
  color: #00617f;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 35px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1400px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #319c8a;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
}
.navbar-expand-lg .navbar-nav .nav-link i {
  vertical-align: middle;
  font-size: 12px;
}
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active {
  color: #319c8a;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link:hover::after,
  .navbar-expand-lg .navbar-nav .nav-link.active::after {
    width: 100%;
  }
}
.navbar-expand-lg .dropdown .dropdown-menu {
  left: 10px;
  top: 100%;
  border-radius: 0;
  border: none;
  padding: 0;
  box-shadow: none;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    padding: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 10px 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar-expand-lg .dropdown .dropdown-menu {
    left: 20px;
  }
}
.navbar-expand-lg .dropdown .dropdown-menu .dropdown-item {
  color: #00617f;
  font-size: 16px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  padding: 12px 16px;
  border-top: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .dropdown .dropdown-menu .dropdown-item {
    padding: 4px 0 4px 16px;
    position: relative;
    border-top: none;
    font-weight: 500;
  }
  .navbar-expand-lg .dropdown .dropdown-menu .dropdown-item::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f105";
    font-weight: 900;
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 14px;
  }
}
.navbar-expand-lg .dropdown .dropdown-menu .dropdown-item:hover,
.navbar-expand-lg .dropdown .dropdown-menu .dropdown-item:focus,
.navbar-expand-lg .dropdown .dropdown-menu .dropdown-item.active {
  color: #319c8a;
  background-color: transparent;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .dropdown .dropdown-menu.megamenu {
    min-width: 650px;
  }
}
.navbar-expand-lg .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-expand-lg .dropdown .nav-link {
  margin-right: 28px;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .dropdown .nav-link {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-collapse {
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    padding: 16px 0;
    z-index: 11;
    border-top: 1px solid #d8d8d8;
  }
  .navbar-expand-lg .navbar-collapse::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  }
}
.navbar-expand-lg .navbar-collapse .container {
  position: static;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse .container {
    max-width: unset;
  }
}

.group-nav:not(:last-child) {
  margin-bottom: 12px;
}
@media only screen and (min-width: 992px) {
  .group-nav:not(:last-child) {
    margin-bottom: 24px;
  }
}
.group-nav h3 {
  padding: 12px 16px;
  border-top: 1px solid #d8d8d8;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (min-width: 992px) {
  .group-nav h3 {
    padding: 0;
    margin-bottom: 10px;
    border-top: 0;
    font-size: 20px;
  }
}

.btn-toggle-submenu {
  position: absolute;
  color: #00617f;
  top: 0;
  right: 0;
  height: 48px;
  width: 28px;
  text-align: right;
  z-index: 2;
}
.btn-toggle-submenu i {
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.btn-toggle-submenu[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.menu-item {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 14px 12px;
  border-top: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) {
  .menu-item {
    border-top: none;
    text-align: center;
    padding: 0;
  }
}
.menu-item img {
  width: 100%;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.menu-item .menu-item-img {
  margin-bottom: 8px;
}
.menu-item .menu-item-img a {
  display: block;
  overflow: hidden;
}
.menu-item .menu-item-text a {
  font-size: 16px;
  color: #00617f;
  display: block;
}
@media only screen and (min-width: 992px) {
  .menu-item .menu-item-text a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1200px) {
  .menu-item .menu-item-text a {
    padding: 0 20px;
  }
}
.menu-item:hover .menu-item-img img {
  transform: scale(1.1);
}
.menu-item:hover .menu-item-text a {
  color: #00617f;
}

.btn-search {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  text-align: center;
  color: #309f8d;
}

.min-w-160 {
  min-width: 160px;
}

.dropdown-search {
  height: 48px;
  border: none;
  padding: 0;
  background-color: transparent;
  margin: 0 !important;
  left: auto !important;
  right: 0 !important;
  top: 0 !important;
}
@media only screen and (min-width: 992px) {
  .dropdown-search {
    width: 340px;
  }
}

.form-search {
  position: relative;
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) {
  .form-search {
    margin-bottom: 0;
  }
}
.form-search .form-control {
  height: 48px;
  padding-left: 42px;
  padding-right: 24px;
  border-color: #d8d8d8;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.form-search .form-control::-webkit-input-placeholder {
  color: #777777;
}
.form-search .form-control:-moz-placeholder {
  color: #777777;
  opacity: 1;
}
.form-search .form-control::-moz-placeholder {
  color: #777777;
  opacity: 1;
}
.form-search .form-control:-ms-input-placeholder {
  color: #777777;
}
.form-search i {
  position: absolute;
  top: 50%;
  left: 16px;
  color: #309f8d;
  transform: translate(0, -50%);
}

.navbar-brand {
  margin-right: 0;
  height: 36px;
  width: 84px;
  box-sizing: content-box;
}
@media only screen and (min-width: 992px) {
  .navbar-brand {
    height: 56px;
    width: 130px;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar-brand {
    height: 76px;
    width: 177px;
  }
}
.navbar-brand img {
  height: inherit;
  width: inherit;
}

.navbar-toggler {
  border: none;
  font-size: 20px;
  color: #000;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler .fa-xmark {
  display: none;
}
.navbar-toggler[aria-expanded="true"] .fa-xmark {
  display: block;
}
.navbar-toggler[aria-expanded="true"] .fa-bars {
  display: none;
}

.header-site {
  z-index: 100;
  position: relative;
}
/* 
body.intro-page .header-site {
  box-shadow: none;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
body.intro-page .navbar-expand-lg {
  background-color: transparent;
  box-shadow: none;
}
@media only screen and (min-width: 992px) {
  body.intro-page .navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
  }
}
body.intro-page .navbar-toggler {
  color: #fff;
}
body.intro-page .navbar-brand {
  background-image: url(../../images/logo-white.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
body.intro-page .navbar-brand img {
  display: none;
} */
body.fixed .header-site {
  position: fixed;
  height: auto;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #00617f;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15) !important;
  animation: 250ms ease-out 0s normal none 1 running showStickyMenu;
}
@media only screen and (min-width: 992px) {
  body.fixed .navbar-brand {
    height: 50px;
    width: 116px;
  }
  body.fixed .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  body.fixed .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  body.fixed .navbar-expand-lg .navbar-collapse {
    position: fixed;
    top: 61px;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  body.fixed.show-menu {
    overflow: hidden;
  }
}

@-webkit-keyframes showStickyMenu {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@-moz-keyframes showStickyMenu {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@keyframes showStickyMenu {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
.navbar-expand-lg {
  padding-top: 7px;
  padding-bottom: 8px;
  position: relative;
  background-color: #fff;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .container {
    position: relative;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    justify-content: flex-end;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 8px;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 1400px) {
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 20px;
  }
}
.navbar-expand-lg .navbar-nav .nav-item:not(:last-child) {
  border-bottom: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 0;
  }
}
.navbar-expand-lg .navbar-nav .nav-link {
  color: #00617f;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 35px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    padding: 25px 0;
  }
}
@media only screen and (min-width: 1400px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 20px;
    padding: 35px 0;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #319c8a;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
}
.navbar-expand-lg .navbar-nav .nav-link i {
  vertical-align: middle;
  font-size: 12px;
}
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active {
  color: #319c8a;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link:hover::after,
  .navbar-expand-lg .navbar-nav .nav-link.active::after {
    width: 100%;
  }
}
.navbar-expand-lg .dropdown .dropdown-menu {
  left: 10px;
  top: 100%;
  border-radius: 0;
  border: none;
  padding: 0;
  box-shadow: none;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    padding: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 10px 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar-expand-lg .dropdown .dropdown-menu {
    left: 20px;
  }
}
.navbar-expand-lg .dropdown .dropdown-menu .dropdown-item {
  color: #00617f;
  font-size: 16px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  padding: 12px 16px;
  border-top: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .dropdown .dropdown-menu .dropdown-item {
    padding: 4px 0 4px 16px;
    position: relative;
    border-top: none;
    font-weight: 500;
  }
  .navbar-expand-lg .dropdown .dropdown-menu .dropdown-item::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f105";
    font-weight: 900;
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 14px;
  }
}
.navbar-expand-lg .dropdown .dropdown-menu .dropdown-item:hover,
.navbar-expand-lg .dropdown .dropdown-menu .dropdown-item:focus,
.navbar-expand-lg .dropdown .dropdown-menu .dropdown-item.active {
  color: #319c8a;
  background-color: transparent;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .dropdown .dropdown-menu.megamenu {
    min-width: 650px;
  }
}
.navbar-expand-lg .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-expand-lg .dropdown .nav-link {
  margin-right: 28px;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .dropdown .nav-link {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-collapse {
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    padding: 16px 0;
    z-index: 11;
    border-top: 1px solid #d8d8d8;
  }
  .navbar-expand-lg .navbar-collapse::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  }
}
.navbar-expand-lg .navbar-collapse .container {
  position: static;
}
@media only screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse .container {
    max-width: unset;
  }
}

.group-nav:not(:last-child) {
  margin-bottom: 12px;
}
@media only screen and (min-width: 992px) {
  .group-nav:not(:last-child) {
    margin-bottom: 24px;
  }
}
.group-nav h3 {
  padding: 12px 16px;
  border-top: 1px solid #d8d8d8;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (min-width: 992px) {
  .group-nav h3 {
    padding: 0;
    margin-bottom: 10px;
    border-top: 0;
    font-size: 20px;
  }
}

.btn-toggle-submenu {
  position: absolute;
  color: #00617f;
  top: 0;
  right: 0;
  height: 48px;
  width: 28px;
  text-align: right;
  z-index: 2;
}
.btn-toggle-submenu i {
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.btn-toggle-submenu[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.navbar-brand {
  margin-right: 0;
  height: 36px;
  width: 84px;
  box-sizing: content-box;
}
@media only screen and (min-width: 992px) {
  .navbar-brand {
    height: 56px;
    width: 130px;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar-brand {
    height: 76px;
    width: 177px;
  }
}
.navbar-brand img {
  height: inherit;
  width: inherit;
}

.navbar-toggler {
  border: none;
  font-size: 24px;
  color: #00617f;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler .fa-xmark {
  display: none;
}
.navbar-toggler[aria-expanded="true"] .fa-xmark {
  display: block;
}
.navbar-toggler[aria-expanded="true"] .fa-bars {
  display: none;
}

.btn-schedule {
  font-size: 24px;
}

.navbar-right {
  gap: 16px;
}

/*------------------------------------------------------------------
[Content]
*/
.section {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }
}

.section-mb {
  margin-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .section-mb {
    margin-bottom: 72px;
  }
}

.bg-info-3 {
  background-color: #e2f1ee;
}

/***** section-banner *****/
.section-banner .appointment {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section-banner .appointment {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
}
.section-banner .appointment.active {
  display: block;
  z-index: 3;
  bottom: 0;
  animation-name: fadeIn;
}
.section-banner .swiper-slide {
  height: unset;
}

.hero-banner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.hero-banner-item {
  min-height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .hero-banner-item {
    flex-direction: column;
  }
}
.hero-banner-img {
  position: relative;
  display: flex;
  flex-direction: column;
}
/* .hero-banner-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.swiper-navigation--circle .swiper-button-next,
.swiper-navigation--circle .swiper-button-prev {
  width: 48px;
  height: 48px;
  border: 1px solid #319c8a;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
  color: #319c8a;
  z-index: 4;
}
.swiper-navigation--circle .swiper-button-next::after,
.swiper-navigation--circle .swiper-button-prev::after {
  font-size: 20px;
}
.swiper-navigation--circle .swiper-button-next:hover,
.swiper-navigation--circle .swiper-button-prev:hover {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}
.swiper-navigation--circle.swiper-navigation--circle-white .swiper-button-next,
.swiper-navigation--circle.swiper-navigation--circle-white .swiper-button-prev {
  background-color: #fff;
}
.swiper-navigation--circle.swiper-navigation--circle-white
  .swiper-button-next:hover,
.swiper-navigation--circle.swiper-navigation--circle-white
  .swiper-button-prev:hover {
  background-color: #319c8a;
}

/***** section-service *****/
.section-service .card.card-info .card-body {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .section-service .card.card-info .card-body {
    min-height: 120px;
  }
}
.section-service .card.card-info .card-img a {
  padding-bottom: 54.5%;
}

.card.card-info {
  border: none;
  border-radius: 0;
  transition: all 0.25ms ease-in-out;
  box-shadow: 0px 4px 10px 0px rgba(49, 156, 138, 0.2);
  background-color: transparent;
  border-radius: 20px;
}
.card.card-info .card-img {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  overflow: hidden;
}
.card.card-info .card-img a {
  overflow: hidden;
  display: flex;
  position: relative;
  width: 100%;
  padding-bottom: 78.25%;
}
.card.card-info .card-img a img {
  transform: scale(1);
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card.card-info .card-img img,
.card.card-info .card-img .card-img-top {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.card.card-info .card-body {
  background-color: #fff;
  border-top: none;
  padding: 16px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.card.card-info .card-title {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
  color: #00617f;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.card.card-info .card-title a:hover {
  color: #fff;
}
.card.card-info .card-price {
  font-size: 16px;
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  .card.card-info .card-price {
    font-size: 20px;
  }
}
.card.card-info .card-price span:not(:last-child) {
  margin-right: 15px;
}
.card.card-info .old-price {
  text-decoration: line-through;
}
.card.card-info .current-price {
  font-weight: 600;
  color: #319c8a;
}
.card.card-info:hover .card-body {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}
.card.card-info:hover .card-title {
  color: #fff;
}
.card.card-info:hover .card-title a {
  color: #fff;
}
.card.card-info:hover .btn-primary-custom {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}
.card.card-info:hover .ui-link-icon,
.card.card-info:hover .card-cate,
.card.card-info:hover .card-cate a {
  color: #fff;
}
.card.card-info:hover .card-img img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.card.card-info:hover .ui-link-detail,
.card.card-info:hover .current-price {
  color: #fff;
}

.ui-link-detail {
  font-weight: 500;
  color: #00617f;
}
.ui-link-detail span {
  vertical-align: middle;
}

/***** section-package *****/
.packages .row {
  gap: 24px 0;
}

.card-package {
  position: relative;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 0px rgba(49, 156, 138, 0.2);
  overflow: hidden;
}
.card-package:hover .card-package-content::after {
  opacity: 1;
}
.card-package:hover .card-package-icon {
  display: block;
}
.card-package:hover .card-package-expert {
  display: -webkit-box;
}
.card-package:hover .card-package-img img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.card-package.rounded-0 .card-package-content,
.card-package.rounded-0 .card-package-img img {
  border-radius: 0;
}

.card-package-img {
  overflow: hidden;
  display: flex;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.card-package-img img {
  border-radius: 20px;
  transform: scale(1);
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-package-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: flex-end;
  border-radius: 20px;
}
.card-package-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00617f;
  background: linear-gradient(
    180deg,
    rgba(0, 97, 127, 0) 0%,
    rgba(0, 97, 127, 0.2) 62%,
    rgba(0, 97, 127, 0.8) 100%
  );
  opacity: 0.5;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: inherit;
}
.card-package-content .inner {
  position: relative;
  z-index: 2;
}

.card-package-icon {
  font-size: 28px;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .card-package-icon {
    font-size: 32px;
  }
}

.card-package-icon,
.card-package-expert {
  display: none;
}

.card-package-expert {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.link-overlayer {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 4;
}

/***** section-why *****/
/* .section-why {
  position: relative;
  overflow: hidden;
}
.section-why::after {
  content: '';
  height: 100%;
  width: 20%;
  background-image: url(../../images/logo-img.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: -10%;
  opacity: 0.05;
}
.section-why .container {
  position: relative;
} */

.why-box {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  .why-box {
    min-height: 500px;
  }
}
.why-img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .why-img-container {
    width: calc(35% + 30px);
    margin-left: -30px;
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 1200px) {
  .why-img-container {
    width: calc(35% + 50px);
    margin-left: -50px;
  }
}
@media only screen and (min-width: 1400px) {
  .why-img-container {
    width: calc(35% + 98px);
    margin-left: -98px;
  }
}
@media (max-width: 991.98px) {
  .why-img-container img {
    max-width: 300px;
  }
}
.why-content {
  width: 100%;
  padding: 20px 0;
}
@media only screen and (min-width: 992px) {
  .why-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5.2%;
    width: auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.why-text p:last-child {
  margin-bottom: 0;
}

/***** section-impressive-numbers *****/
.section-impressive-numbers {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.impressive-number {
  position: relative;
  overflow: hidden;
}
.impressive-number:hover .impressive-number-img img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.impressive-number-img {
  position: relative;
  padding-top: 80%;
  min-height: 335px;
}
@media only screen and (min-width: 768px) {
  .impressive-number-img {
    padding-top: 130%;
  }
}
.impressive-number-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: scale(1);
  transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) {
  .impressive-number-img img {
    height: 100%;
  }
}
.impressive-number-content {
  background: rgba(0, 97, 127, 0.5);
  background: linear-gradient(
    0deg,
    rgba(0, 97, 127, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  .impressive-number-content {
    padding: 28px 48px;
  }
}
.impressive-number-content .number {
  font-size: 42px;
  line-height: 1.4;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .impressive-number-content .number {
    font-size: 32px;
  }
}
@media only screen and (min-width: 992px) {
  .impressive-number-content .number {
    font-size: 52px;
  }
}
@media only screen and (min-width: 1200px) {
  .impressive-number-content .number {
    font-size: 72px;
  }
}
.impressive-number-content .text {
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .impressive-number-content .text {
    font-size: 20px;
  }
}

/***** section-media *****/
.section-media .media-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-container {
  position: relative;
}
.media-container::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00617f;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}
.media-container video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: bottom;
}
@media only screen and (min-width: 768px) {
  .media-container video {
    height: 600px;
  }
}

/***** section-news *****/
.section-news .card.card-info .card-img a {
  padding-bottom: 80%;
}

.topstory {
  background-color: #319c8a;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.topstory:hover .topstory-art img {
  transform: scale(1.1);
}
.topstory-body,
.topstory-art {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .topstory-body,
  .topstory-art {
    width: 50%;
  }
}
.topstory-art {
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .topstory-art .card-time {
    top: 48px;
    right: 48px;
  }
}
.topstory-art img {
  transition: all 0.3s linear;
}
@media only screen and (min-width: 992px) {
  .topstory-art img {
    height: 100%;
  }
}
.topstory-body {
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .topstory-body {
    padding: 24px;
  }
}
.topstory-title {
  margin-bottom: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 1.25;
}
.topstory-title a:not(:hover) {
  color: inherit;
}
.topstory-text {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topstory .ui-link-icon:not(:hover) {
  color: inherit;
}
.topstory a:hover {
  color: #fff;
}

.list-highlight {
  margin-bottom: 12px;
}
.list-highlight a {
  line-height: 16px;
  padding: 2px 8px;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
}
.list-highlight a:hover,
.list-highlight a.active {
  background-color: #319c8a;
}

.news-container .swiper-slide {
  height: auto;
  margin-bottom: 10px;
  padding-left: 4px;
  padding-right: 4px;
}
.news-container .card.card-info {
  height: 100%;
}
.news-container .card.card-info .card-title.title-type-4,
.news-container .card.card-info .video-context .desc h3.card-title,
.video-context .desc .news-container .card.card-info h3.card-title,
.news-container .card.card-info .single-carrer-content h3.card-title,
.single-carrer-content .news-container .card.card-info h3.card-title {
  font-size: 16px;
}

.time {
  font-size: 12px;
  line-height: 1.1;
  color: #777;
}
.time i {
  margin-right: 4px;
}

.more i {
  font-size: 17px;
  margin-left: 4px;
}
.more svg {
  margin-left: 4px;
}

.card-time {
  top: 25px;
  right: 25px;
  background-color: #fff;
  width: 60px;
  text-align: center;
  border-top: 2px solid #00617f;
  padding: 5px 5px 12px 5px;
  line-height: 1.2;
  border-radius: 10px;
}
.card-time .day {
  font-weight: 700;
  color: #00617f;
  font-size: 20px;
}
.card-time .month {
  font-size: 10px;
  color: #555555;
}

.card-cate {
  color: #319c8a;
  margin-bottom: 16px;
  line-height: 1.25;
}
.card-cate a {
  color: #319c8a;
}

.ui-link-icon {
  color: #00617f;
  font-size: 28px;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .ui-link-icon {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .outer .swiper-button-next,
  .outer .swiper-button-prev {
    display: none;
  }
}
.outer .swiper-button-prev {
  left: -20px;
}
@media (min-width: 1300px) {
  .outer .swiper-button-prev {
    left: -72px;
  }
}
.outer .swiper-button-next {
  right: -20px;
}
@media (min-width: 1300px) {
  .outer .swiper-button-next {
    right: -72px;
  }
}
.outer .swiper-pagination {
  position: static;
}
@media only screen and (min-width: 768px) {
  .outer .swiper-pagination {
    display: none;
  }
}

.swiper-dots--circle .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.swiper-dots--circle .swiper-pagination-bullet:hover,
.swiper-dots--circle .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00617f;
}

.ui-link {
  color: #777777;
}
.ui-link:hover {
  color: #319c8a;
}

/***** section-testimonial *****/
.section-testimonial .title {
  color: #319c8a;
}
.section-testimonial .container {
  max-width: 1440px;
}

.testimonial-content {
  background-image: url(../../images/bg/testimonial-bg.png);
  background-repeat: no-repeat;
  background-position: right top;
  padding: 30px;
}
@media only screen and (min-width: 992px) {
  .testimonial-content {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 16%;
    padding-right: 16%;
  }
}

@media only screen and (min-width: 992px) {
  .testimonial-content-inner {
    max-width: 340px;
    margin-left: auto;
  }
}

.testimonial-text {
  height: 80px;
  overflow: hidden;
  margin-bottom: 9px;
  line-height: 1.25;
}

.testimonial-name {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #319c8a;
}
@media only screen and (min-width: 768px) {
  .testimonial-name {
    font-size: 20px;
  }
}

.testimonial-img img {
  width: auto;
  max-width: unset;
}

.testimonial-slider-content .swiper-button-next,
.testimonial-slider-content .swiper-button-prev {
  position: relative;
  left: unset;
  right: unset;
  margin-top: 0;
}
.testimonial-slider-content .swiper-buttons {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) {
  .testimonial-slider-image {
    height: 100%;
  }
  .testimonial-slider-image .testimonial-img,
  .testimonial-slider-image .testimonial-img img {
    height: 100%;
  }
}

@media only screen and (min-width: 1400px) {
  .testimonial-col-left {
    width: 43.75%;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-col-right {
    width: 56.25%;
  }
}

.appointment {
  animation-duration: 250ms;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation-iteration-count: 1;
}
.appointment-layout {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.appointment-hotline {
  border: 2px dashed #00617f;
  border-radius: 100px;
  padding: 5px 20px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00617f;
}
@media only screen and (min-width: 768px) {
  .appointment-hotline {
    min-width: 392px;
  }
}
.appointment-hotline .fa-phone {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .appointment-hotline .fa-phone {
    font-size: 20px;
  }
}
.appointment-phone label {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  color: #00617f;
  display: none;
}
@media only screen and (min-width: 768px) {
  .appointment-phone label {
    font-size: 24px;
    display: inline-block;
  }
}
.appointment-phone-number {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  color: #00617f;
  padding-left: 4px;
}
@media only screen and (min-width: 768px) {
  .appointment-phone-number {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .appointment-text {
    font-size: 18px;
  }
}

@keyframes fadeIn {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0);
  }
}
/* .forms .form-control, .forms .form-select {
  border-color: #D8D8D8;
  border-radius: 0;
  padding: 11px 16px;
} */
.forms .form-control:focus,
.forms .form-select:focus {
  box-shadow: none;
  border-color: #00617f;
}
/* .forms .form-control::-webkit-input-placeholder {
  color: #000;
}
.forms .form-control:-moz-placeholder {
  color: #000;
  opacity: 1;
}
.forms .form-control::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.forms .form-control:-ms-input-placeholder {
  color: #000;
} */

.input-container {
  position: relative;
}
.input-container.right-inner-addon .form-control {
  padding-right: 40px;
}
.input-container.right-inner-addon .addon-icon {
  right: 16px;
}
.input-container .addon-icon {
  position: absolute;
  top: 0;
  height: 100%;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #777777;
}
.input-container .addon-icon i {
  font-size: 16px;
}

.form-bottom .btn i {
  position: relative;
  top: 2px;
}

@media only screen and (min-width: 768px) {
  .modal-dialog.modal-w-custom {
    max-width: 86%;
  }
}
@media only screen and (min-width: 992px) {
  .modal-dialog.modal-w-custom {
    max-width: 840px;
  }
}

/***** section-category *****/
.article figure {
  margin: 16px 0;
}

.list-group-anpha {
  display: flex;
  flex-wrap: wrap;
}
.list-group-anpha li {
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .list-group-anpha li {
    margin-bottom: 31px;
  }
}
@media only screen and (min-width: 768px) {
  .list-group-anpha li {
    width: 50%;
  }
}
.list-group-anpha li:nth-child(2n + 1) {
  padding-right: 10px;
}
.list-group-anpha li:nth-child(2n + 2) {
  padding-left: 10px;
}

.list-group-anpha-title {
  font-size: 18px;
  line-height: 1.333333;
  font-weight: 600;
  margin-bottom: 2px;
  color: #00617f;
}
@media only screen and (min-width: 768px) {
  .list-group-anpha-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1200px) {
  .img-w-xl-unset img {
    max-width: unset;
  }
}

.section-look-for .heading {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .section-look-for .heading {
    padding-bottom: 98px;
    margin-bottom: 0;
  }
}
.section-look-for .heading .title {
  background-color: #fff;
  position: relative;
}
.section-look-for .heading .title::before {
  content: "";
  display: none;
  width: 2px;
  height: 74px;
  background-color: #00617f;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -2px;
  margin-top: 26px;
}
@media only screen and (min-width: 992px) {
  .section-look-for .heading .title::before {
    display: block;
  }
}
.section-look-for .heading .title::after {
  content: "";
  display: none;
  width: 12px;
  height: 12px;
  background-color: #00617f;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -7px;
  margin-top: 15px;
}
@media only screen and (min-width: 992px) {
  .section-look-for .heading .title::after {
    display: block;
  }
}
.section-look-for .timeline-container {
  display: flex;
  justify-content: center;
}
.section-look-for .timeline-container::before {
  display: none;
}
.section-look-for .timeline {
  position: relative;
  padding-left: 0;
  gap: 0;
  margin: 0 -10px;
}
.section-look-for .col-item {
  position: static;
}
@media only screen and (min-width: 992px) {
  .section-look-for .col-item {
    width: 20%;
    flex: 0 0 auto;
  }
}
.section-look-for .col-item:first-child .iwt::before {
  width: calc(50% + 24px);
  left: 50%;
}
.section-look-for .col-item:last-child .iwt::before {
  width: 50%;
}
.section-look-for .col-item:nth-child(2n + 2) .iwt-index {
  background-color: #319c8a;
  color: #319c8a;
}

.iwt {
  position: relative;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .iwt {
    height: 100%;
    margin-bottom: 0;
  }
}
.iwt::before {
  content: "";
  display: none;
  width: calc(100% + 24px);
  height: 2px;
  background-color: #00617f;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 992px) {
  .iwt::before {
    display: block;
  }
}
.iwt .dot-line {
  display: none;
  position: relative;
  height: 88px;
  width: 2px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3px;
  background-color: #00617f;
  margin-bottom: 6px;
}
@media only screen and (min-width: 992px) {
  .iwt .dot-line {
    display: block;
  }
}
.iwt .dot-line::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #00617f;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -6px;
}
.iwt-index {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background-color: #00617f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00617f;
  border-radius: 100%;
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
  text-shadow: 1px 1px #fff, -1px 1px #fff, 1px -1px #fff, -1px -1px #fff,
    1px 1px 5px #555;
}
@media only screen and (min-width: 768px) {
  .iwt-index {
    width: 96px;
    height: 96px;
    font-size: 46px;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}
.iwt-content {
  padding: 20px 8px 20px 46px;
  border: 1px solid #d8d8d8;
  margin-left: 32px;
}
@media only screen and (min-width: 768px) {
  .iwt-content {
    height: calc(100% - 96px);
    padding: 62px 8px 20px 8px;
    position: relative;
    top: -48px;
    margin-left: 0;
    text-align: center;
  }
}
@media only screen and (min-width: 992px) {
  .iwt-content {
    height: calc(100% - 184px);
  }
}
.iwt-title {
  color: #00617f;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.iwt-text {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.card.card-short {
  border: none;
  border-radius: 10px;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(49, 156, 138, 0.5);
}
@media only screen and (min-width: 576px) {
  .card.card-short {
    height: 100%;
  }
}
.card.card-short:hover .card-body {
  background-color: #319c8a;
}
.card.card-short:hover .card-img::before {
  opacity: 1;
  visibility: visible;
}
.card.card-short:hover .card-title {
  color: #fff;
}
.card.card-short:hover .card-title a {
  color: #fff;
}
.card.card-short .card-img {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.card.card-short .card-img::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
}
.card.card-short .card-img img {
  border-radius: 0;
  width: 100%;
}
.card.card-short .card-body {
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 10px 10px;
}
.card.card-short .card-title {
  color: #00617f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card.card-short .card-title a:not(:hover),
.card.card-short .card-title a:not(:focus) {
  color: inherit;
}

.single-page-title {
  font-weight: 600;
  color: #00617f;
  margin-bottom: 14px;
}
.single-page-body h2 {
  color: #00617f;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  .single-page-body h2 {
    font-size: 20px;
  }
}
.single-page-body h3 {
  color: #00617f;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .single-page-body h3 {
    font-size: 20px;
  }
}

.max-w-996 {
  max-width: 996px;
}

/* .modal-content {
  background-color: #E2F1EE;
} */

textarea {
  resize: none;
}

.form-select {
  border-radius: 10px;
}

/***** section-intro *****/
/* .section-intro {
  background-color: #00617F;
  color: #fff;
  position: relative;
  padding-top: 124px;
  padding-bottom: 68px;
}
.section-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../images/bg/bg-intro.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media only screen and (min-width: 992px) {
  .section-intro {
    padding-top: 225px;
    padding-bottom: 127px;
  }
} */

/***** section-video *****/
.section-video {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .section-video.is-thumb-left .video-thumb {
    right: auto;
    left: 0;
    padding-left: 0;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .section-video.is-thumb-left .row {
    justify-content: flex-end;
  }
}

.video-context {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .video-context {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.video-context .desc {
  text-align: justify;
}
@media only screen and (min-width: 992px) {
  .video-context .desc {
    padding-right: 16px;
  }
}
.video-context .desc h3 {
  font-weight: 500;
  margin-bottom: 8px;
  color: #00617f;
}
.video-context .desc p:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
  .video-thumb {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    padding-left: 12px;
  }
}
.video-thumb a {
  display: block;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .video-thumb a {
    width: 100%;
    height: 100%;
  }
}
.video-thumb a i {
  font-size: 46px;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .video-thumb a i {
    font-size: 96px;
    width: 96px;
    height: 96px;
  }
}
.video-thumb img {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .video-thumb img {
    height: 100%;
    object-fit: cover;
  }
}
.video-thumb.is-img {
  background: url(../../images/bg/bg-img.png) no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.video-thumb.is-img img {
  width: unset;
  height: unset;
}

/***** section-history *****/
/* .section-history {
  padding: 49px 30px;
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .section-history {
    margin-bottom: 78px;
  }
}
.section-history-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
}
.timeline-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}
.timeline-scroll::-webkit-scrollbar {
  width: 0;
  background-color: transparent;
}
.timeline-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: transparent;
}

.timeline {
  position: relative;
  height: 484px;
}
.timeline::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 80px;
  width: calc(100% - 90px);
  height: 4px;
  background-color: #00617F;
  margin-top: -2px;
  z-index: -1;
}
.timeline-start {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  position: absolute;
  top: 208px;
  left: 46px;
  z-index: 1;
}
.timeline-start .timeline-inner {
  flex-direction: column;
  align-items: center;
}
.timeline-start .timeline-period {
  margin-bottom: 9px;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  background-color: #00617F;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-start .timeline-title {
  align-items: flex-start;
}
.timeline-end {
  width: 156px;
  min-width: 156px;
  height: 40px;
  background-color: #00617F;
  color: #fff;
  position: absolute;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-end::after, .timeline-end::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.timeline-end::before {
  top: -20px;
  border-left: 78px solid transparent;
  border-right: 78px solid transparent;
  border-bottom: 20px solid #00617F;
}
.timeline-end::after {
  bottom: -20px;
  border-left: 78px solid transparent;
  border-right: 78px solid transparent;
  border-top: 20px solid #00617F;
}
.timeline-end .timeline-period {
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
}
.timeline-end .timeline-period span {
  text-align: center;
  position: relative;
  z-index: 1;
  top: -10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-item {
  display: flex;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
  height: 242px;
}
.timeline-item:nth-child(2), .timeline-item.nth2 {
  margin-left: 7px;
}
.timeline-item:nth-child(2) .timeline-period-cont, .timeline-item.nth2 .timeline-period-cont {
  padding-top: 26px;
}
.timeline-item:nth-child(2) .timeline-content, .timeline-item.nth2 .timeline-content {
  padding-top: 6px;
}
.timeline-item:nth-child(3), .timeline-item.nth3 {
  margin-left: -132px;
  align-self: flex-end;
}
.timeline-item:nth-child(3) .timeline-inner, .timeline-item.nth3 .timeline-inner {
  margin-top: 0;
  margin-bottom: 29px;
}
.timeline-item:nth-child(3) .timeline-content, .timeline-item.nth3 .timeline-content {
  margin-top: auto;
}
.timeline-item:nth-child(3) .timeline-period-cont, .timeline-item.nth3 .timeline-period-cont {
  transform: rotate(180deg);
  padding: 26px 0;
}
.timeline-item:nth-child(3) .timeline-period, .timeline-item.nth3 .timeline-period {
  transform: rotate(-180deg);
}
.timeline-item:nth-child(4), .timeline-item.nth4 {
  margin-left: 20px;
}
.timeline-item:nth-child(4) .timeline-inner, .timeline-item.nth4 .timeline-inner, .timeline-item:nth-child(6) .timeline-inner, .timeline-item.nth6 .timeline-inner {
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}
.timeline-item:nth-child(4) .timeline-content, .timeline-item.nth4 .timeline-content, .timeline-item:nth-child(6) .timeline-content, .timeline-item.nth6 .timeline-content {
  width: 100%;
  padding-right: 0;
  text-align: center;
  margin-bottom: 5px;
}
.timeline-item:nth-child(4) .timeline-title, .timeline-item.nth4 .timeline-title, .timeline-item:nth-child(6) .timeline-title, .timeline-item.nth6 .timeline-title {
  justify-content: center;
}
.timeline-item:nth-child(4) .timeline-period-cont, .timeline-item.nth4 .timeline-period-cont, .timeline-item:nth-child(6) .timeline-period-cont, .timeline-item.nth6 .timeline-period-cont {
  height: 124px;
}
.timeline-item:nth-child(5), .timeline-item.nth5 {
  margin-left: -50px;
  align-self: flex-end;
}
.timeline-item:nth-child(5) .timeline-inner, .timeline-item.nth5 .timeline-inner {
  margin-top: 0;
  flex-direction: column-reverse;
  align-items: center;
}
.timeline-item:nth-child(5) .timeline-content, .timeline-item.nth5 .timeline-content {
  width: 100%;
  padding-right: 0;
  text-align: center;
  margin-top: 5px;
}
.timeline-item:nth-child(5) .timeline-period-cont, .timeline-item.nth5 .timeline-period-cont {
  transform: rotate(180deg);
}
.timeline-item:nth-child(5) .timeline-period, .timeline-item.nth5 .timeline-period {
  transform: rotate(-180deg);
}
.timeline-item:nth-child(6), .timeline-item.nth6 {
  margin-left: -38px;
}
.timeline-item:nth-child(7), .timeline-item.nth7 {
  margin-left: 8px;
  align-self: flex-end;
}
.timeline-item:nth-child(7) .timeline-inner, .timeline-item.nth7 .timeline-inner {
  margin-top: 0;
  margin-bottom: 29px;
  flex-direction: row-reverse;
}
.timeline-item:nth-child(7) .timeline-content, .timeline-item.nth7 .timeline-content {
  padding-right: 0;
  padding-left: 12px;
  margin-top: auto;
}
.timeline-item:nth-child(7) .timeline-period-cont, .timeline-item.nth7 .timeline-period-cont {
  transform: rotate(180deg);
  padding: 26px 0;
}
.timeline-item:nth-child(7) .timeline-period, .timeline-item.nth7 .timeline-period {
  transform: rotate(-180deg);
}
.timeline-item:nth-child(7) .timeline-title,
.timeline-item:nth-child(7) .timeline-desc, .timeline-item.nth7 .timeline-title,
.timeline-item.nth7 .timeline-desc {
  text-align: left;
}
.timeline-item:nth-child(8), .timeline-item.nth8 {
  margin-left: -128px;
}
.timeline-item:nth-child(8) .timeline-inner, .timeline-item.nth8 .timeline-inner {
  flex-direction: row-reverse;
}
.timeline-item:nth-child(8) .timeline-title, .timeline-item.nth8 .timeline-title {
  justify-content: flex-start;
  text-align: left;
}
.timeline-item:nth-child(8) .timeline-desc, .timeline-item.nth8 .timeline-desc {
  text-align: left;
}
.timeline-item:nth-child(8) .timeline-content, .timeline-item.nth8 .timeline-content {
  padding-right: 0;
  padding-left: 12px;
  padding-top: 6px;
}
.timeline-item:nth-child(8) .timeline-period-cont, .timeline-item.nth8 .timeline-period-cont {
  padding-top: 26px;
}
.timeline-item .timeline-period {
  width: inherit;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  background-image: url(../../images/icons/hexagon.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  position: relative;
} 
.timeline-inner {
  margin-top: auto;
  display: flex;
}
.timeline-content {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  padding-right: 12px;
  text-align: right;
}
.timeline-title {
  font-size: 20px;
  line-height: 24px;
  height: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-weight: 500;
  color: #00617F;
  margin-bottom: 5px;
  overflow: hidden;
}
.timeline-desc {
  width: 198px;
  font-size: 16px;
  line-height: 1.25;
  max-height: 60px;
  overflow: hidden;
}
.timeline-period-cont {
  width: 63px;
  min-width: 63px;
  height: 223px;
  position: relative;
}
.timeline-period-cont::before {
  content: "";
  display: block;
  width: 2px;
  background-color: #00617F;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  height: calc(100% - 30px);
}
.timeline-period-cont::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #319C8A;
  position: absolute;
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
} */

/***** section-group *****/
.core-values {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .core-values {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .core-values {
    row-gap: 64px;
    max-width: 450px;
  }
}

.value-item-expert {
  font-weight: 800;
  font-size: 20px;
  color: #319c8a;
}
@media only screen and (min-width: 768px) {
  .value-item-expert {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .value-item .title {
    text-align: center;
  }
}

.mission-item-expert {
  font-weight: 800;
  font-size: 20px;
  color: #00617f;
}
@media only screen and (min-width: 768px) {
  .mission-item-expert {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .mission-item .title {
    text-align: center;
  }
}

/* section-partners */
@media only screen and (min-width: 768px) {
  .partners-container-md {
    max-width: 588px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 992px) {
  .partners-container-md {
    max-width: 792px;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-container-md {
    max-width: 996px;
  }
}
@media only screen and (min-width: 1400px) {
  .partners-container-md {
    max-width: 1200px;
  }
}

.partner-item {
  height: 88px;
  border-radius: 10px;
  border: 1px solid #319c8a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
/* @media only screen and (min-width: 768px) {
  .partner-item {
    width: 180px;
  }
} */
.partner-item img {
  max-height: 76px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 8px;
  background-color: #319c8a;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 8px;
  background-color: #d8d8d8;
}

/***** section-grid *****/
.section-grid-content {
  padding: 30px 0;
  color: #fff;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .section-grid-content {
    min-height: 680px;
  }
}
.section-grid-content::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #319c8a;
  opacity: 0.9;
}
.section-grid-content .container {
  position: relative;
  z-index: 1;
}
.section-grid-content .section-text-title {
  color: #fff;
}

.section-grid-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media only screen and (min-width: 992px) {
  .section-grid-bg {
    width: 50%;
  }
}

.section-grid-img {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .section-grid-img {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
  }
  .section-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.section-grid-img .btn-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #00617f;
  font-size: 45px;
  line-height: 1;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .section-grid-img .btn-play-circle {
    font-size: 96px;
  }
}
.section-grid-img .btn-play-circle:hover {
  color: #319c8a;
}

.section-slider-doctors .swiper-slide {
  padding: 0 4px 10px 4px;
}

.doctors-container .swiper-slide {
  height: auto;
}
.doctors-container .single-team {
  height: 100%;
}

.single-team {
  box-shadow: 0px 4px 10px 0px rgba(49, 156, 138, 0.25);
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.25s ease-in-out;
}
.single-team:hover {
  background-color: #319c8a;
  color: #fff;
}
.single-team:hover .title,
.single-team:hover .single-team-meta-text {
  color: #fff;
}
.single-team .title a {
  color: inherit;
}
.single-team-img {
  position: relative;
  padding-top: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .single-team-img {
    padding-top: 120%;
  }
}
.single-team-img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.single-team-img a:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.single-team-img img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s linear;
  object-fit: cover;
}
.single-team-meta-text {
  font-weight: 500;
  color: #319c8a;
  line-height: 1.15;
  margin-bottom: 8px;
}
.single-team-expert {
  line-height: 1.25;
}

@media only screen and (min-width: 992px) {
  .intro-boxed {
    padding-left: 10px;
  }
}
.intro-boxed-text p:last-child {
  margin-bottom: 0;
}

.section-text-title {
  margin-bottom: 24px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.21875;
  font-weight: normal;
}

.list-circle-check li {
  position: relative;
  padding-left: 30px;
}
.list-circle-check li::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f058";
  font-weight: normal;
  position: absolute;
  top: -2px;
  left: 0;
  font-size: 16px;
}
.list-circle-check li:not(:last-child) {
  margin-bottom: 10px;
}

.section-page {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .section-page {
    min-height: 300px;
  }
}
.section-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.section-page .container {
  position: relative;
  z-index: 1;
}

.location {
  background-color: #f9f9f9;
  padding-top: 15px;
  padding-bottom: 15px;
}

.breadcrumb-item {
  font-size: 15px;
}
.breadcrumb-item.active {
  color: #777777;
}
@media only screen and (min-width: 768px) {
  .breadcrumb-item + .breadcrumb-item {
    padding-left: 6px;
  }
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  color: #777777;
  font-size: 12px;
  line-height: 1;
  position: relative;
  top: 6px;
}
@media only screen and (min-width: 768px) {
  .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 6px;
  }
}
.breadcrumb-item a {
  color: #777777;
}
.breadcrumb-item i {
  font-size: 14px;
}

.section-teams {
  margin-bottom: 46px;
}

.form-control-primary {
  border-color: #00617f;
  color: #319c8a;
  font-weight: 500;
  font-size: 16px;
  height: 48px;
}
.form-control-primary::-webkit-input-placeholder {
  color: #319c8a;
  font-weight: 500;
}
.form-control-primary:-moz-placeholder {
  color: #319c8a;
  font-weight: 500;
  opacity: 1;
}
.form-control-primary::-moz-placeholder {
  color: #319c8a;
  font-weight: 500;
  opacity: 1;
}
.form-control-primary:-ms-input-placeholder {
  color: #319c8a;
  font-weight: 500;
}
@media only screen and (min-width: 1400px) {
  .form-control-primary {
    font-size: 20px;
  }
}
.form-control-primary.form-select {
  background-image: url(../../images/icons/angle-down.png);
  background-size: auto;
}

.search {
  position: relative;
}
.search .form-control {
  padding-right: 50px;
}
.search i {
  position: absolute;
  top: 50%;
  right: 25px;
  color: #319c8a;
  font-size: 18px;
  transform: translate(0, -50%);
}

.list-teams .pagination {
  padding-top: 6px;
}

.pagination .page-link {
  font-size: 12px;
  color: #000;
  border-radius: 5px;
  border-color: #d8d8d8;
  min-width: 32px;
  height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-link:hover,
.pagination .page-link:focus {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}
.pagination .page-link:focus {
  box-shadow: none;
}
.pagination .page-item {
  margin: 0 8px;
}
.pagination .page-item.active .page-link {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}
.pagination .page-item:not(:first-child) .page-link {
  margin-left: 0;
}

/* single-doctor */
.single-doctor-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
  background-color: #e2f1ee;
  border-radius: 20px;
}
/* .single-doctor-img {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .single-doctor-img {
    border-radius: 20px 0 0 20px;
    width: 39%;
  }
} */
/* .single-doctor-body {
  width: 100%;
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .single-doctor-body {
    width: 61%;
    padding: 24px;
  }
} */
.single-doctor-position {
  color: #319c8a;
}
@media only screen and (min-width: 768px) {
  .single-doctor-position {
    font-size: 20px;
    font-weight: 500;
  }
}
.single-doctor-summary {
  line-height: 1.25;
  margin-bottom: 14px;
}
.single-doctor-content h3 {
  font-weight: 600;
  color: #00617f;
  font-size: 18px;
}
@media only screen and (min-width: 1400px) {
  .single-doctor-content h3 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .single-doctor-content p {
    margin-bottom: 38px;
  }
}
.single-doctor-content ul {
  list-style: none;
  padding-left: 0;
}
.single-doctor-content ul li {
  position: relative;
  padding-left: 10px;
}
.single-doctor-content ul li::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #000;
  content: "";
  display: block;
}
.single-doctor-content ul ul {
  padding-left: 20px;
}

/* section-overview-service */
/* section-services */
.section-services {
  margin-bottom: 46px;
  margin-top: 38px;
}
@media only screen and (min-width: 992px) {
  .section-services .heading-subtitle {
    max-width: 79.5%;
  }
}
@media only screen and (min-width: 768px) {
  .section-services.at-home .card-package-img {
    padding-bottom: 65.5%;
  }
}
@media only screen and (min-width: 992px) {
  .section-services .packages .row > * {
    width: 33.33333333%;
  }
}

/* section-service-detail */
.aside-left-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

.aside-service {
  background-color: #e2f1ee;
}

.navbar-service {
  margin-bottom: 0;
}
.navbar-service:last-child li:last-child .nav-link::after {
  display: none;
}
.navbar-service .nav-link {
  padding: 8px 8px 8px 22px;
  color: #00617f;
  position: relative;
  line-height: normal;
  margin-bottom: 1px;
  font-size: 15px;
}
@media only screen and (min-width: 768px) {
  .navbar-service .nav-link {
    padding: 15px 12px 14px 28px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-service .nav-link {
    font-size: 18px;
  }
}
.navbar-service .nav-link::before,
.navbar-service .nav-link::after {
  content: "";
  display: block;
  position: absolute;
}
.navbar-service .nav-link::before {
  background-color: #319c8a;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  left: 8px;
  top: 14px;
}
@media only screen and (min-width: 768px) {
  .navbar-service .nav-link::before {
    left: 12px;
    top: 22px;
    width: 8px;
    height: 8px;
  }
}
.navbar-service .nav-link::after {
  left: 8px;
  right: 8px;
  height: 1px;
  bottom: -1px;
  background-color: #d8d8d8;
}
@media only screen and (min-width: 768px) {
  .navbar-service .nav-link::after {
    left: 12px;
    right: 12px;
  }
}
.navbar-service .nav-link.active,
.navbar-service .nav-link:hover {
  background-color: #319c8a;
  color: #fff;
}
.navbar-service .nav-link.active::before,
.navbar-service .nav-link:hover::before {
  background-color: #fff;
}
.navbar-service .nav-link.active::after,
.navbar-service .nav-link:hover::after {
  display: none;
}

.title-aside-service {
  font-size: 16px;
  font-weight: 700;
  color: #00617f;
  border-bottom: 1px solid #d8d8d8;
  padding: 10px 0;
  margin: 0 8px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .title-aside-service {
    padding: 14px 0;
    margin: 0 12px;
  }
}
@media only screen and (min-width: 992px) {
  .title-aside-service {
    font-size: 18px;
  }
}
.title-aside-service i {
  position: absolute;
  right: 0;
  top: 15px;
}

.list-services .item {
  margin-bottom: 24px;
}
.list-services .item:nth-child(2n + 1) .col-text {
  order: 12;
}
@media only screen and (min-width: 768px) {
  .list-services .item:nth-child(2n + 2) .context-service {
    padding-left: 20px;
    padding-right: 0;
  }
}

.context-service {
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  .context-service {
    padding-left: 0;
  }
}
.context-service h3 {
  margin-bottom: 10px;
}
.context-service ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.context-service ul li {
  padding-left: 12px;
  position: relative;
}
.context-service ul li:not(:last-child) {
  margin-bottom: 3px;
}
.context-service ul li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
  top: 10px;
  left: 0;
  position: absolute;
}
@media only screen and (min-width: 1400px) {
  .context-service ul li::before {
    top: 14px;
  }
}

.btn-toc {
  border: none;
  background-color: #319c8a;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 10px;
  position: fixed;
  left: 5px;
  top: 23vh;
  margin-top: -24px;
  z-index: 15;
}
@media only screen and (min-width: 768px) {
  .btn-toc {
    left: 25px;
    top: 25%;
  }
}

.tocs {
  width: 300px;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(78vh - 45px);
  top: calc(23vh + 25px);
  left: 5px;
  box-sizing: content-box;
  z-index: 110;
  margin-top: 15px;
}
.tocs::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}
.tocs::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.tocs::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #e9e9e9;
}
@media only screen and (min-width: 768px) {
  .tocs {
    left: 25px;
    top: calc(25% + 25px);
    max-height: calc(75% - 45px);
    width: 283px;
  }
}
.tocs .aside-service {
  border-radius: 10px;
  padding: 3px 0;
}
@media only screen and (min-width: 768px) {
  .tocs .aside-service {
    border-radius: 20px;
    padding: 0;
  }
}

.section-about-package {
  position: relative;
}
.section-about-package .heading {
  margin-bottom: 12px;
}
@media only screen and (min-width: 992px) {
  .section-about-package .wrap {
    padding-left: 32px;
  }
}

.list-features-package {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.list-features-package li {
  width: calc(50% - 8px);
  flex: 0 0 auto;
}

.feature-item {
  background-color: #e2f1ee;
  border-radius: 100px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.feature-item i {
  width: 48px;
  height: 48px;
  width: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #319c8a;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item span {
  flex-grow: 1;
  padding: 5px 16px;
}

.img-package div {
  position: relative;
}
.img-package div::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: -10px;
  left: 10px;
  right: -10px;
  background-color: #319c8a;
  border-radius: 100px 0 100px 0;
}
.img-package div img {
  border-radius: 100px 0 100px 0;
  position: relative;
  z-index: 2;
}

.section-detail-package .expert {
  max-width: 588px;
}
.section-detail-package .expert p {
  margin-bottom: 8px;
}
.section-detail-package .expert ul {
  padding-left: 17px;
  margin-bottom: 8px;
}

@media only screen and (min-width: 768px) {
  .section-other-packages .card.card-info {
    min-height: 100%;
  }
}
.section-other-packages .card.card-info .card-img a {
  padding-bottom: 62%;
}
@media only screen and (min-width: 992px) {
  .section-other-packages .card.card-info .card-body {
    padding: 24px;
  }
}
.section-other-packages .container {
  max-width: 1020px;
}

.testimonial-item {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
}
.testimonial-item:hover .testimonial-item-text {
  background-color: #00617f;
}
.testimonial-item:hover .testimonial-item-text::after {
  background-image: url(../../images/icons/qoute-o.png);
}
.testimonial-item:hover .testimonial-item-text::before {
  border-right-color: #00617f;
}

.testimonial-item-info {
  width: 96px;
  flex: 0 0 auto;
}

.testimonial-item-img {
  width: 96px;
  height: 96px;
  border: 3px solid #00617f;
  border-radius: 50%;
  margin-bottom: 12px;
}
.testimonial-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-item-content {
  padding-left: 20px;
  position: relative;
  text-align: center;
}

.testimonial-item-text {
  border-radius: 20px;
  min-height: 220px;
  padding: 30px;
  background-color: #319c8a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .testimonial-item-text {
    border-radius: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-item-text {
    padding: 30px 55px;
  }
}
.testimonial-item-text::before,
.testimonial-item-text::after {
  content: "";
  display: block;
  position: absolute;
}
.testimonial-item-text::before {
  left: -12px;
  top: 50%;
  transform: translate(0, -50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid #319c8a;
}
.testimonial-item-text::after {
  background: url(../../images/icons/qoute.png) no-repeat;
  width: 55px;
  height: 40px;
  top: -20px;
  left: 68px;
}

.swiper-dots--ellipse .swiper-pagination-bullet {
  background-color: #00617f;
  opacity: 1;
  border-radius: 100px;
}
.swiper-dots--ellipse .swiper-pagination-bullet:hover {
  background-color: #319c8a;
}
.swiper-dots--ellipse .swiper-pagination-bullet-active {
  width: 36px;
  background-color: #319c8a;
}

.section-testimonial-sm {
  background-image: url(../../images/bg/bg-testimonial.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 46px;
  padding-bottom: 46px;
}
@media only screen and (min-width: 768px) {
  .section-testimonial-sm {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
.section-testimonial-sm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(226, 241, 238, 0.8);
}
.section-testimonial-sm .container {
  position: relative;
  z-index: 2;
}

.accordion.service-features .accordion-item {
  background-color: transparent;
  border-width: 0;
  margin-bottom: 16px;
}
.accordion.service-features .accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion.service-features .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 10px;
}
.accordion.service-features .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: 0;
}
.accordion.service-features .accordion-item:last-of-type .accordion-button {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0;
}
.accordion.service-features .accordion-button {
  color: #319c8a;
  font-size: 16px;
  font-weight: 600;
  border-left: 4px solid #319c8a;
  background-color: #e2f1ee;
  border-top-right-radius: 10px;
  padding: 13px 16px;
}
@media only screen and (min-width: 768px) {
  .accordion.service-features .accordion-button {
    font-size: 20px;
  }
}
.accordion.service-features .accordion-button:not(.collapsed) {
  box-shadow: none;
  border-bottom-right-radius: 0;
}
.accordion.service-features .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}
.accordion.service-features .accordion-button::after {
  background-image: none;
  width: auto;
  height: auto;
  content: "\f078";
  font-size: 20px;
  font-family: "Font Awesome 6 Pro";
}
.accordion.service-features .accordion-button.collapsed {
  color: #00617f;
  border-bottom-right-radius: 10px;
}
.accordion.service-features .accordion-body {
  background-color: #e2f1ee;
  padding: 0 16px 10px 20px;
  border-bottom-right-radius: 10px;
}

.list-group-disc li {
  position: relative;
  padding-left: 10px;
}
.list-group-disc li::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #000;
  content: "";
  display: block;
}

.section-about-img img {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .section-about-text {
    position: absolute;
    bottom: 11%;
    left: 0;
    width: 100%;
  }
}

.context-about-package {
  position: relative;
  max-width: 710px;
}
.context-about-package::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: -10px;
  bottom: -10px;
  background-color: #00617f;
  border-radius: 100px 0 100px 0;
}
.context-about-package .inner {
  background-color: #319c8a;
  border-radius: 100px 0 100px 0;
  color: #fff;
  padding: 85px 35px 75px;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .context-about-package .inner {
    font-size: 20px;
  }
}

.section-infrastructure.is-style-2 .swiper-slide {
  padding: 14px 0;
}
.section-infrastructure.is-style-2 .card-package {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.section-infrastructure.is-style-2 .card-package:hover .card-package-content {
  color: #00617f;
}
.section-infrastructure.is-style-2 .card-package-content {
  color: #000;
}
.section-infrastructure.is-style-2 .card-package-content::after {
  display: none;
}

/****** section-subbanner ******/
.section-subbanner {
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.z-1 {
  z-index: 1;
}

.service-detail-hero {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .service-detail-hero {
    flex-direction: row;
    height: 350px;
  }
}
@media only screen and (min-width: 992px) {
  .service-detail-hero {
    height: 501px;
  }
}
.service-detail-hero-img {
  text-align: center;
  height: 430px;
  overflow: hidden;
}
@media only screen and (min-width: 576px) {
  .service-detail-hero-img {
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .service-detail-hero-img {
    width: 35%;
    margin-top: auto;
  }
}
.service-detail-hero-content {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .service-detail-hero-content {
    width: 65%;
    padding-left: 8%;
    padding-top: 10px;
    padding-bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
  }
}
.service-detail-hero-title {
  color: #319c8a;
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .service-detail-hero-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-detail-hero-title {
    font-size: 70px;
  }
}
.service-detail-hero-text {
  color: #00465c;
}

/****** section-aphservice ******/
.section-aphservice::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  height: 200px;
  position: absolute;
  background: #e2f1ee;
  background: linear-gradient(95.42deg, #e2f1ee 0.86%, #319c8a 287.99%);
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .section-aphservice::before {
    height: 500px;
  }
}
.section-aphservice > * {
  position: relative;
  z-index: 1;
}

.dst {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .dst {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: -80px;
  }
}
@media only screen and (min-width: 1200px) {
  .dst {
    margin-top: -110px;
  }
}

.aphservice-block {
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .aphservice-block {
    display: flex;
    align-items: flex-end;
    filter: drop-shadow(0px -8px 20px rgba(226, 241, 238, 0.55));
  }
}
@media only screen and (min-width: 992px) {
  .aphservice-block:nth-child(2n + 2) .aphservice-item {
    flex-direction: row-reverse;
  }
  .aphservice-block:nth-child(2n + 2) .aphservice-item-img {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 992px) {
  .aphservice-block.block1 {
    padding-top: 140px;
  }
}
@media only screen and (min-width: 992px) {
  .aphservice-block.block2 .aphservice-item-body {
    padding-left: 3.4%;
  }
}
.aphservice-block.block2 .wave {
  background: linear-gradient(112.53deg, #e2f1ee -2.7%, #319c8a 299.16%);
}
.aphservice-block .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 1440px) {
  .aphservice-block .container {
    max-width: 1416px;
  }
}
.aphservice-title {
  color: #319c8a;
  font-weight: 600;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .aphservice-title {
    padding-top: 83px;
    padding-bottom: 83px;
  }
}
.aphservice-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .aphservice-item {
    flex-direction: row;
    align-items: center;
  }
}
.aphservice-item-img {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .aphservice-item-img {
    width: 36.5%;
    justify-content: flex-end;
  }
}
.aphservice-item-img img {
  width: 70%;
}
@media only screen and (min-width: 992px) {
  .aphservice-item-img img {
    width: auto;
  }
}
@media (min-width: 1440px) {
  .aphservice-item-img img {
    max-width: unset;
  }
}
@media only screen and (min-width: 992px) {
  .aphservice-item-body {
    width: 63.5%;
    padding-left: 2%;
  }
}
.aphservice-tabs .nav-tabs {
  border-bottom-width: 0;
}
.aphservice-tabs .nav-tabs .nav-link {
  padding: 6px 12px;
  border-color: #319c8a;
  background-color: transparent;
  color: #319c8a;
  margin-bottom: 6px;
}
@media only screen and (min-width: 768px) {
  .aphservice-tabs .nav-tabs .nav-link {
    padding: 9px 18px;
  }
}
.aphservice-tabs .nav-tabs .nav-link:hover,
.aphservice-tabs .nav-tabs .nav-link.active {
  background-color: #00617f;
  color: #fff;
  border-color: transparent;
}
.aphservice-tabs .nav-tabs .nav-link:not(:last-child) {
  margin-right: 8px;
}
.aphservice-item-title {
  font-size: 24px;
  margin-top: 15px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  .aphservice-item-title {
    margin-bottom: 24px;
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .aphservice-item-title {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .aphservice-item-title {
    font-size: 45px;
  }
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  background: #e2f1ee;
  background: linear-gradient(246.98deg, #e2f1ee -8.93%, #319c8a 302.65%);
}
@media only screen and (min-width: 992px) {
  .wave {
    clip-path: polygon(
      100% 100%,
      0% 100%,
      0% 10.23%,
      1% 10.2%,
      2% 10.14%,
      3% 10.02%,
      4% 9.87%,
      5% 9.67%,
      6% 9.44%,
      7% 9.17%,
      8% 8.87%,
      9% 8.55%,
      10% 8.2%,
      11% 7.84%,
      12% 7.47%,
      13% 7.09%,
      14% 6.7%,
      15% 6.33%,
      16% 5.96%,
      17% 5.61%,
      18% 5.27%,
      19% 4.97%,
      20% 4.69%,
      21% 4.45%,
      22% 4.24%,
      23% 4.07%,
      24% 3.94%,
      25% 3.86%,
      26% 3.82%,
      27% 3.83%,
      28% 3.89%,
      29% 3.99%,
      30% 4.13%,
      31% 4.31%,
      32% 4.53%,
      33% 4.79%,
      34% 5.08%,
      35% 5.39%,
      36% 5.73%,
      37% 6.09%,
      38% 6.46%,
      39% 6.84%,
      40% 7.23%,
      41% 7.61%,
      42% 7.98%,
      43% 8.33%,
      44% 8.67%,
      45% 8.99%,
      46% 9.28%,
      47% 9.53%,
      48% 9.75%,
      49% 9.93%,
      50% 10.07%,
      51% 10.17%,
      52% 10.22%,
      53% 10.22%,
      54% 10.18%,
      55% 10.1%,
      56% 9.97%,
      57% 9.8%,
      58% 9.59%,
      59% 9.35%,
      60% 9.07%,
      61% 8.76%,
      62% 8.42%,
      63% 8.07%,
      64% 7.7%,
      65% 7.33%,
      66% 6.94%,
      67% 6.56%,
      68% 6.19%,
      69% 5.83%,
      70% 5.48%,
      71% 5.16%,
      72% 4.86%,
      73% 4.6%,
      74% 4.36%,
      75% 4.17%,
      76% 4.02%,
      77% 3.91%,
      78% 3.84%,
      79% 3.82%,
      80% 3.85%,
      81% 3.92%,
      82% 4.03%,
      83% 4.19%,
      84% 4.39%,
      85% 4.62%,
      86% 4.89%,
      87% 5.19%,
      88% 5.52%,
      89% 5.86%,
      90% 6.23%,
      91% 6.6%,
      92% 6.98%,
      93% 7.37%,
      94% 7.74%,
      95% 8.11%,
      96% 8.46%,
      97% 8.79%,
      98% 9.1%,
      99% 9.37%,
      100% 9.62%
    );
  }
}

.aph-text-hidden {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0.03;
}
.aph-text-hidden img {
  max-width: 100%;
}

.summary-detail {
  padding-top: 12px;
}
@media only screen and (min-width: 992px) {
  .summary-detail {
    padding-top: 35px;
  }
}
.summary-detail .list-group-disc {
  color: #00617f;
  font-weight: 500;
  margin-bottom: 18px;
  padding-left: 12px;
}
@media only screen and (min-width: 992px) {
  .summary-detail .list-group-disc {
    margin-bottom: 36px;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .summary-detail .list-group-disc {
    font-weight: 700;
  }
}
@media only screen and (min-width: 768px) {
  .summary-detail .list-group-disc li {
    padding-left: 22px;
    line-height: 1.2;
  }
}
.summary-detail .list-group-disc li::after {
  background-color: #00617f;
}
@media only screen and (min-width: 768px) {
  .summary-detail .list-group-disc li::after {
    width: 6px;
    height: 6px;
    top: 16px;
    left: 2px;
  }
}
.summary-detail .btn-book-now {
  padding: 6px 20px;
  border-radius: 12px;
}

/****** section-infrastructure-new ******/
.section-infrastructure-new {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0px -8px 20px rgba(226, 241, 238, 0.55));
}
.section-infrastructure-new .wave {
  background: linear-gradient(180deg, #e2f1ee 14.27%, #319c8a 215.54%);
}
.section-infrastructure-new .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 1440px) {
  .section-infrastructure-new .container {
    max-width: 1384px;
  }
}

.infrastructure-new-title {
  color: #319c8a;
  font-weight: 600;
  margin-bottom: 24px;
}
.infrastructure-new-container.swiper-navigation--circle .swiper-button-next,
.infrastructure-new-container.swiper-navigation--circle .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-color: #00617f;
  color: #00617f;
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .infrastructure-new-container.swiper-navigation--circle .swiper-button-next,
  .infrastructure-new-container.swiper-navigation--circle .swiper-button-prev {
    top: -52px;
  }
}
.infrastructure-new-container.swiper-navigation--circle
  .swiper-button-next:hover,
.infrastructure-new-container.swiper-navigation--circle
  .swiper-button-prev:hover {
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .infrastructure-new-container.swiper-navigation--circle .swiper-button-next {
    right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .infrastructure-new-container.swiper-navigation--circle .swiper-button-prev {
    left: unset;
    right: 82px;
  }
}
.infrastructure-new-container .swiper-slide {
  width: 303px;
  height: 326px;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 992px) {
  .infrastructure-new-container .swiper-slide:hover {
    width: 418px;
  }
  .infrastructure-new-container
    .swiper-slide:hover
    .infrastructure-new-item-text {
    opacity: 0;
    display: none;
  }
  .infrastructure-new-container
    .swiper-slide:hover
    .infrastructure-new-item-title {
    font-size: 25px;
  }
  .infrastructure-new-container
    .swiper-slide:hover
    .infrastructure-new-item-img
    img {
    transform: scale(1.08);
  }
}
.infrastructure-new-item-link {
  background-color: #e2f1ee;
  border-radius: 16px;
  display: block;
  overflow: hidden;
  padding: 18px 9px 11px 9px;
}
.infrastructure-new-item-img {
  width: 242px;
  height: 242px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.infrastructure-new-item-img img {
  transition: all 0.3s ease;
}
.infrastructure-new-item-body {
  background-color: #00617f;
  border-radius: 10px;
  height: 44px;
  padding-left: 9px;
  padding-right: 26px;
  position: relative;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.infrastructure-new-item-body::after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 400;
  font-size: 26px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
}
.infrastructure-new-item-title {
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.infrastructure-new-item-text {
  font-size: 12px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/****** section-partners-new ******/
.section-partners-new {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0px -8px 20px rgba(226, 241, 238, 0.55));
}
.section-partners-new .wave {
  background: linear-gradient(180deg, #e2f1ee 14.27%, #319c8a 215.54%);
}
.section-partners-new .container {
  position: relative;
  z-index: 1;
}
.section-partners-new .partner-item {
  background-color: #fff;
}

/****** section-doctors-new ******/
.section-doctors-new {
  position: relative;
  z-index: 1;
  overflow: hidden;
  filter: drop-shadow(0px -8px 20px rgba(226, 241, 238, 0.55));
}
.section-doctors-new .wave {
  background: url(../../images/bg/bg-doctors.png) no-repeat center center;
  background-size: cover;
}
@media (max-width: 991px) {
  .section-doctors-new .wave {
    clip-path: none;
  }
}
.section-doctors-new .container {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .section-doctors-new .container {
    max-width: 1072px;
  }
}
.section-doctors-new .swiper-navigation--circle .swiper-button-prev,
.section-doctors-new .swiper-navigation--circle .swiper-button-next {
  border-color: #fff;
}
@media only screen and (min-width: 1200px) {
  .section-doctors-new .swiper-navigation--circle .swiper-button-prev,
  .section-doctors-new .swiper-navigation--circle .swiper-button-next {
    width: 64px;
    height: 64px;
  }
}
.section-doctors-new .swiper-navigation--circle .swiper-button-prev::after,
.section-doctors-new .swiper-navigation--circle .swiper-button-next::after {
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  .section-doctors-new .swiper-navigation--circle .swiper-button-prev::after,
  .section-doctors-new .swiper-navigation--circle .swiper-button-next::after {
    font-size: 28px;
  }
}
.section-doctors-new .swiper-navigation--circle .swiper-button-prev:hover,
.section-doctors-new .swiper-navigation--circle .swiper-button-prev:focus,
.section-doctors-new .swiper-navigation--circle .swiper-button-next:hover,
.section-doctors-new .swiper-navigation--circle .swiper-button-next:focus {
  background-color: #fff;
}
.section-doctors-new
  .swiper-navigation--circle
  .swiper-button-prev:hover::after,
.section-doctors-new
  .swiper-navigation--circle
  .swiper-button-prev:focus::after,
.section-doctors-new
  .swiper-navigation--circle
  .swiper-button-next:hover::after,
.section-doctors-new
  .swiper-navigation--circle
  .swiper-button-next:focus::after {
  color: #00617f;
}
@media only screen and (min-width: 1200px) {
  .section-doctors-new .swiper-navigation--circle .swiper-button-prev {
    left: -130px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-doctors-new .swiper-navigation--circle .swiper-button-next {
    right: -130px;
  }
}

.department-of-doctor {
  display: inline-block;
  color: #319c8a;
  line-height: 30px;
  background-color: #e2f1ee;
  border-radius: 8px;
  padding: 2px 12px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  .department-of-doctor {
    padding: 7px 18px;
  }
}

.doctor-new-item-title {
  font-weight: 500;
  margin-bottom: 12px;
}

.doctor-new-item-expert {
  margin-bottom: 24px;
}

.group-doctors {
  background: url(../../images/bg/bg-group-doctors.png) no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 10px;
}

.doctor-small-item-img {
  margin-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  .doctor-small-item-img {
    max-width: 67%;
  }
}
.doctor-small-item-img img {
  border-radius: 50%;
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .col-doctor-text {
    padding-bottom: 50px;
  }
}

.col-doctor-img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
@media only screen and (min-width: 768px) {
  .col-doctor-img img {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .col-doctor-img img {
    position: relative;
    bottom: -42px;
    margin-left: auto;
    margin-right: 0;
  }
}

#doctors-new-slider {
  overflow: inherit;
}
#doctors-new-slider .swiper-slide {
  opacity: 0;
}
#doctors-new-slider .swiper-slide-active {
  opacity: 1;
}

/****** option2 ******/
.section-aphservice.option2 .aphservice-tabs .nav-tabs {
  position: relative;
  overflow: hidden;
  border-bottom: none;
}
@media only screen and (min-width: 1200px) {
  .section-aphservice.option2 .aphservice-tabs .nav-tabs {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  .section-aphservice.option2
    .aphservice-tabs
    .nav-tabs
    .nav-link:last-child::before {
    left: auto !important;
    right: 0;
    transform: none !important;
  }
}
.section-aphservice.option2 .aphservice-tabs .nav-tabs .nav-item {
  position: relative;
}
.section-aphservice.option2 .aphservice-tabs .nav-tabs .nav-link {
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-aphservice.option2 .aphservice-tabs .nav-tabs .nav-link {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-aphservice.option2 .aphservice-tabs .nav-tabs .nav-link {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .section-aphservice.option2 .aphservice-tabs .nav-tabs .nav-link {
    font-size: 22px;
    white-space: nowrap;
  }
}
.section-aphservice.option2 .aphservice-tabs .nav-tabs .nav-link span {
  position: relative;
  z-index: 2;
}
.section-aphservice.option2 .aphservice-tabs .nav-tabs .nav-link:hover {
  background-color: transparent;
}
@media only screen and (min-width: 1200px) {
  .section-aphservice.option2 .aphservice-tabs .nav-tabs .nav-link.active {
    border: none;
    background-color: transparent;
    border-radius: 16px 16px 0 0 !important;
    font-weight: bold;
    color: #00617f;
  }
  .section-aphservice.option2
    .aphservice-tabs
    .nav-tabs
    .nav-link.active::before {
    content: "";
    background: linear-gradient(90deg, #e2f1ee 0.28%, #319c8a 275.74%);
    position: absolute;
    top: 0;
    width: 1920px;
    height: 100%;
    left: 0;
    transform: translate(-57%, 0);
  }
}
@media only screen and (min-width: 1400px) {
  .section-aphservice.option2 .aphservice-tabs .nav-tabs .nav-link.active {
    font-size: 29px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-aphservice.option2 .tab-pane {
    position: relative;
  }
  .section-aphservice.option2 .tab-pane::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100%;
    right: 0;
    width: 100%;
    background: linear-gradient(90deg, #e2f1ee 0.28%, #319c8a 275.74%);
    border-radius: 20px;
    box-shadow: 0px -8px 20px 0px rgba(226, 241, 238, 0.55);
  }
}
@media only screen and (min-width: 1200px) and (min-width: 992px) {
  .section-aphservice.option2 .tab-pane::after {
    width: 936px;
  }
}
@media only screen and (min-width: 1200px) and (min-width: 1200px) {
  .section-aphservice.option2 .tab-pane::after {
    width: 1126px;
  }
}
@media only screen and (min-width: 1200px) and (min-width: 1400px) {
  .section-aphservice.option2 .tab-pane::after {
    width: 1200px;
  }
}
@media only screen and (min-width: 1200px) and (min-width: 1440px) {
  .section-aphservice.option2 .tab-pane::after {
    width: 1392px;
  }
}

@media only screen and (min-width: 1200px) {
  .section-aphservice.option2 .summary-detail {
    padding-top: 80px;
    padding-bottom: 98px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-aphservice.option2 .aphservice-item {
    align-items: unset;
  }
  .section-aphservice.option2 .aphservice-item-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .section-aphservice.option2 .aphservice-tabs {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .section-aphservice.option2 .tab-content {
    flex: 1 1 auto;
  }
  .section-aphservice.option2 .tab-pane {
    height: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .section-aphservice.option2 .aphservice-block {
    padding-bottom: 120px;
  }
  .section-aphservice.option2 .aphservice-block .aphservice-item-title {
    text-align: right;
  }
  .section-aphservice.option2
    .aphservice-block:nth-child(2n + 2)
    .nav-tabs
    .nav-link::before {
    left: 0;
    transform: none;
  }
  .section-aphservice.option2 .aphservice-block:nth-child(2n + 2) .tab-pane {
    padding-left: 20px;
  }
  .section-aphservice.option2
    .aphservice-block:nth-child(2n + 2)
    .tab-pane::after {
    left: 0;
  }
  .section-aphservice.option2
    .aphservice-block:nth-child(2n + 2)
    .tab-pane:first-child.show::after {
    border-radius: 0 20px 20px 20px;
  }
  .section-aphservice.option2
    .aphservice-block:nth-child(2n + 2)
    .aphservice-item-title {
    text-align: left;
  }
}
@media only screen and (min-width: 1200px) {
  .section-aphservice.option2
    .aphservice-block:nth-child(2n + 1)
    .tab-pane:last-child.show::after {
    border-radius: 20px 0 20px 20px;
  }
}
.section-aphservice.option2 .aphservice-block.block2 .nav-tabs {
  justify-content: flex-start;
}

.summary-detail-label {
  color: #319c8a;
  margin-bottom: 38px;
}

.group-tab .group-tab-gradient {
  background: linear-gradient(90deg, #e2f1ee 0.28%, #319c8a 275.74%);
}
.group-tab .tab-pane {
  height: 450px;
}
.group-tab .nav-tabs {
  position: relative;
  overflow: hidden;
  border-bottom: none;
}
.group-tab .nav-item {
  position: relative;
}
.group-tab .nav-tabs .nav-link {
  border: none;
  border-radius: 10px !important;
  overflow: hidden;
  position: relative;
}
.group-tab .nav-tabs .nav-link span {
  position: relative;
  z-index: 2;
}
.group-tab .nav-tabs .nav-link.active:before {
  content: "";
  background: linear-gradient(90deg, #e2f1ee 0.28%, #319c8a 275.74%);
  position: absolute;
  top: 0;
  width: 1920px;
  height: 100%;
  left: 0;
}
.group-tab .nav-tabs.justify-content-end .nav-link.active:before {
  transform: translate(-87%, 0);
}

.text-stroke {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #2f9b89;
}

.periodic-package {
  background-color: #319c8a;
  color: #fff;
  border-radius: 20px;
}
@media only screen and (min-width: 768px) {
  .periodic-package {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.periodic-package:hover .periodic-package-img img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}

.periodic-package-img {
  overflow: hidden;
  display: flex;
  position: relative;
  width: 100%;
  padding-bottom: 69%;
  border-radius: 20px 20px 0 0;
}
.periodic-package-img img {
  transform: scale(1);
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.periodic-package-title,
.periodic-package-price {
  font-size: 32px;
  font-weight: normal;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .periodic-package-title,
  .periodic-package-price {
    font-size: 40px;
  }
}

.periodic-package-title {
  margin-bottom: 20px;
}

.periodic-package-expert {
  margin-bottom: 16px;
}
.periodic-package-expert ul {
  list-style: decimal;
  margin-bottom: 0;
}
.periodic-package-expert ul li {
  line-height: 22px;
}

.periodic-package-content {
  padding: 20px 16px;
}
@media only screen and (min-width: 992px) {
  .periodic-package-content {
    padding: 30px 14px;
  }
}

.bg-primary-color {
  background-color: #00617f !important;
}

/* section-procedure */
.section-procedure {
  padding-top: 46px;
  padding-bottom: 46px;
}
@media only screen and (min-width: 768px) {
  .section-procedure {
    padding-top: 145px;
    padding-bottom: 145px;
  }
}

.list-procedure {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .list-procedure {
    margin-left: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .list-procedure::before {
    content: "";
    display: block;
    height: 1px;
    width: calc(75% + 24px);
    background-color: #319c8a;
    position: absolute;
    top: 65px;
    left: 0;
  }
}

.procedure-item-number {
  margin-bottom: 16px;
  line-height: 1.2;
  font-size: 36px;
}
@media only screen and (min-width: 768px) {
  .procedure-item-number {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) {
  .procedure-item-number {
    height: 65px;
    position: relative;
    line-height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .procedure-item-number::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 50%;
    background-color: #319c8a;
    width: 16px;
    height: 16px;
  }
}

.procedure-item-content {
  padding-top: 10px;
}
.procedure-item-content h3 {
  margin-bottom: 5px;
}
.procedure-item-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.procedure-item-content ul li {
  padding-left: 20px;
  position: relative;
}
.procedure-item-content ul li:not(:last-child) {
  margin-bottom: 3px;
}
.procedure-item-content ul li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
  top: 14px;
  left: 0;
  position: absolute;
}

.section-topstory {
  margin-top: 24px;
}

@media only screen and (min-width: 768px) {
  .list-news .card {
    min-height: 100%;
  }
}

.navbar-links {
  display: flex;
  justify-content: center;
  padding: 0;
  background-color: transparent;
}
.navbar-links .nav-item {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .navbar-links .nav-item {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.navbar-links .nav-item::after {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #319c8a;
}
.navbar-links .nav-item:last-child::after {
  display: none;
}
.navbar-links .nav-link {
  color: #00617f;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 0 12px;
  position: relative;
}
.navbar-links .nav-link::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: transparent;
  transition: all 0.25s linear;
}
@media only screen and (min-width: 576px) {
  .navbar-links .nav-link {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .navbar-links .nav-link {
    font-size: 20px;
  }
}
.navbar-links .nav-link:hover,
.navbar-links .nav-link.active {
  color: #319c8a;
}
.navbar-links .nav-link:hover::after,
.navbar-links .nav-link.active::after {
  background-color: #319c8a;
}

.entry-title {
  font-weight: 400;
  margin-bottom: 16px;
  color: #00617f;
}
.entry-highlight {
  background-color: #e2f1ee;
}
.entry-highlight ol,
.entry-highlight ul {
  padding-left: 0;
  list-style-position: inside;
  margin-bottom: 0;
}
.entry-body h3,
.entry-body h2 {
  color: #00617f;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  .entry-body h3,
  .entry-body h2 {
    font-size: 20px;
  }
}

.entry-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.entry-footer .entry-tags {
  width: 100%;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .entry-footer .entry-tags {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    padding-right: 0;
  }
}

.entry-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .entry-social {
    width: auto;
  }
}
.entry-social label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  padding-right: 10px;
}
@media only screen and (min-width: 768px) {
  .entry-social label {
    font-size: 16px;
  }
}

.social-icon {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.social-icon li + li {
  margin-left: 16px;
}

.tag-item {
  background-color: #319c8a;
  border-radius: 5px;
  font-size: 14px;
  line-height: 18px;
  padding: 3px 16px;
  color: #fff;
  transition: all 0.15ms ease-in-out;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .tag-item {
    font-size: 16px;
  }
}
.tag-item:hover,
.tag-item:focus,
.tag-item.active {
  background-color: #00617f;
  color: #fff;
}

.aside-right {
  background-color: #e2f1ee;
  padding: 19px 16px;
  border-radius: 20px;
}
.aside-right .heading {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 12px;
}

.list-group-circle {
  margin-bottom: 0;
}
.list-group-circle li {
  padding: 8px 0;
  border-bottom: 1px solid #d8d8d8;
}
.list-group-circle li:last-child {
  border-bottom: none;
}
.list-group-circle a {
  color: #00617f;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
@media only screen and (min-width: 768px) {
  .list-group-circle a {
    line-height: 1.333333;
  }
}
.list-group-circle a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #319c8a;
  position: absolute;
  top: 6px;
  left: 0;
}
.list-group-circle a:hover {
  color: #319c8a;
}

.aside-right-media img {
  border-radius: 20px;
}

/***** section-looking-for *****/
.section-looking-for {
  background-color: #00617f;
  overflow: hidden;
  padding: 32px 0;
}
@media only screen and (min-width: 768px) {
  .section-looking-for {
    padding: 0;
  }
}
.section-looking-for .container {
  position: relative;
  z-index: 1;
}

.ico-medical-equipment {
  position: absolute;
  top: 0;
  left: -48px;
  width: 20%;
  object-fit: contain;
  display: none;
}
@media only screen and (min-width: 768px) {
  .ico-medical-equipment {
    top: 40px;
    width: 15.41667%;
    display: block;
  }
}
@media only screen and (min-width: 1400px) {
  .ico-medical-equipment {
    width: 223px;
  }
}

.looking-for-header {
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .looking-for-header {
    margin-bottom: 0;
    text-align: left;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media only screen and (min-width: 1400px) {
  .looking-for-header {
    padding-right: 50px;
  }
}
.looking-for-body {
  padding: 24px 16px;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .looking-for-body {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 8%;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .looking-for-body {
    padding-left: 16%;
    padding-top: 114px;
    padding-bottom: 114px;
  }
}
.looking-for-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  .looking-for-list {
    gap: 48px;
  }
}
.looking-for-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .looking-for-img {
    width: calc(100% + ((100vw - 720px) / 2));
    border-bottom-right-radius: 15%;
  }
}
@media only screen and (min-width: 992px) {
  .looking-for-img {
    width: calc(100% + ((100vw - 960px) / 2));
  }
}
@media only screen and (min-width: 1200px) {
  .looking-for-img {
    width: calc(100% + ((100vw - 1140px) / 2));
  }
}
@media only screen and (min-width: 1400px) {
  .looking-for-img {
    width: calc(100% + ((100vw - 1224px) / 2));
  }
}
@media only screen and (min-width: 1400px) {
  .looking-for-img {
    width: calc(100% + ((100vw - 1384px) / 2));
  }
}
.looking-for-img::before {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.looking-for-img::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(49, 156, 138, 0.8);
}
@media only screen and (min-width: 768px) {
  .looking-for-img::after {
    border-bottom-right-radius: 15%;
  }
}
.looking-for-icon {
  width: 62px;
}
.looking-for-icon i {
  font-size: 36px;
}
@media only screen and (min-width: 768px) {
  .looking-for-icon {
    width: 74px;
  }
  .looking-for-icon i {
    font-size: 48px;
  }
}
.looking-for-item .title {
  color: #fff;
}
.looking-for-content {
  width: calc(100% - 62px);
}
@media only screen and (min-width: 768px) {
  .looking-for-content {
    width: calc(100% - 78px);
  }
}

.policies {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy {
  background-color: #e2f1ee;
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 72px;
}
.policy-icon {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #319c8a;
}
.policy-icon i {
  font-size: 32px;
}
.policy-text {
  width: calc(100% - 72px);
  font-weight: 500;
  padding: 8px 48px 8px 16px;
}

.contact-with-us .title {
  margin-bottom: 12px;
}
.contact-with-us .desc {
  margin-bottom: 14px;
}
.contact-with-us .form-group-with-icon .form-control {
  height: 48px;
  font-size: 16px;
  padding-left: 36px;
}
@media only screen and (min-width: 768px) {
  .contact-with-us .form-group-with-icon .form-control {
    padding-left: 46px;
    height: 60px;
  }
}
@media only screen and (min-width: 1400px) {
  .contact-with-us .form-group-with-icon .form-control {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .contact-with-us button {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.features {
  max-width: 894px;
  margin-left: auto;
  margin-right: auto;
}
.features .features-list {
  row-gap: 24px;
}

.block-iwt {
  box-shadow: 0 4px 10px rgba(0, 97, 127, 0.25);
  border-radius: 20px;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 16px;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-iwt .icon {
  color: #00617f;
  font-size: 48px;
  margin-bottom: 10px;
}

.block-text:not(:last-child) {
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .block-text:not(:last-child) {
    margin-bottom: 46px;
  }
}
.block-text h4 {
  font-weight: 600;
  font-size: 18px;
  color: #00617f;
}
@media only screen and (min-width: 768px) {
  .block-text h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .block-text p {
    margin-bottom: 26px;
  }
}
.block-text p:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) {
  .img-overright {
    margin-right: -120px;
  }
}

.form-select-primary {
  background-image: url(../../images/icons/angle-down.png);
  background-size: auto;
  border-color: #00617f;
  color: #00617f;
  height: 48px;
}
.form-select-primary::-webkit-input-placeholder {
  color: #00617f;
}
.form-select-primary:-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.form-select-primary::-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.form-select-primary:-ms-input-placeholder {
  color: #00617f;
}

.filter-carrer {
  margin-bottom: 24px;
}
.filter-carrer .form-select {
  font-size: 16px;
  font-weight: normal;
  height: 36px;
}
.filter-carrer .form-check {
  min-height: unset;
}
.filter-carrer .form-check-input {
  margin-top: 2px;
}

.filter-status {
  gap: 15px;
}
@media only screen and (min-width: 992px) {
  .filter-status {
    gap: 15px 30px;
  }
}
.filter-status .form-check-input {
  border-color: #319c8a;
}
.filter-status .form-check-input:checked {
  border-color: #00617f;
  background-color: #00617f;
}

.table-primary-color {
  border: 1px solid #00617f;
}
.table-primary-color th,
.table-primary-color td {
  border: none;
  padding: 14px;
}
.table-primary-color thead th,
.table-primary-color thead td {
  background-color: #00617f;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.table-primary-color tbody tr:nth-child(2n + 2) {
  background-color: #e2f1ee;
}
.table-primary-color tbody tr td:nth-child(2) {
  min-height: 160px;
}
.table-primary-color tbody tr td:first-child a {
  color: #000;
}
.table-primary-color tbody tr td:first-child a:hover {
  font-weight: 500;
  color: #319c8a;
}

.service-bottom {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .service-bottom {
    padding-top: 8px;
  }
}
.service-bottom .entry-social {
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .service-bottom .entry-social {
    position: absolute;
    top: 8px;
    right: 0;
  }
}

.entry-carrer {
  background-color: #00617f;
  color: #fff;
  margin: 0;
  padding: 8px 16px;
}
@media only screen and (min-width: 768px) {
  .entry-carrer {
    padding: 16px 32px;
  }
}

.single-carrer-content h3 {
  color: #00617f;
  font-weight: 600;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .single-carrer-content p {
    margin-bottom: 32px;
  }
}
.single-carrer-content p:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .modal-apply-carrer .modal-dialog {
    max-width: 688px;
  }
}
.modal-apply-carrer .modal-content {
  border: none;
}
@media only screen and (min-width: 768px) {
  .modal-apply-carrer .modal-body {
    padding: 32px;
  }
}

.section-give-value {
  padding-top: 48px;
  padding-bottom: 48px;
}
.section-give-value .wrap {
  max-width: 910px;
}
.section-give-value .col-item {
  margin-bottom: 22px;
}
@media only screen and (min-width: 768px) {
  .section-give-value .col-item {
    margin-bottom: 32px;
  }
}

.short-text-carrer {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .short-text-carrer {
    margin-bottom: 40px;
  }
}

.form-contact {
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .form-contact {
    padding: 24px;
  }
}
.form-contact .form-group-with-icon .form-control,
.form-contact .form-group-with-icon .form-select {
  padding-left: 45px;
}

/***** section-registration *****/
.registration {
  background-color: #00617f;
  border-radius: 20px;
  color: #fff;
}
.registration-img {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .registration-img {
    height: 100%;
  }
}
.registration-img img {
  border-radius: 0 0 20px 20px;
  width: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .registration-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
  }
}
.registration-form {
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  .registration-form {
    padding: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .registration-form {
    padding: 80px 50px;
  }
}
.registration-form .form-group-with-icon .form-control,
.registration-form .form-group-with-icon .form-select {
  padding-left: 42px;
}

.section-mb {
  margin-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .section-mb {
    margin-bottom: 72px;
  }
}

.section-pb {
  padding-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .section-pb {
    padding-bottom: 72px;
  }
}

.box-heading {
  margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) {
  .col-xl-7-custom {
    width: 60.3%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-xl-5-custom {
    width: 39.7%;
  }
}

/***** section-banner *****/
.hero-img {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.hero-content .title {
  letter-spacing: -1px;
  margin-right: 4.55882%;
}
@media (max-width: 639.98px) {
  .hero-content .title {
    margin-right: 0;
    font-size: 16px;
  }
}

/***** section-appointment *****/
.book-appointment {
  background: linear-gradient(
    90deg,
    #319c8a 0%,
    #e2f1ee 50%,
    rgba(49, 156, 138, 0.1) 100%
  );
  border: 2px solid #fff;
  border-radius: 25px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .book-appointment {
    /* height: 166px; */
    margin-top: -83px;
  }
}
@media only screen and (min-width: 1200px) {
  .book-appointment {
    margin-left: 4.76879%;
    margin-right: 6.79191%;
    /* height: 120px; */
    margin-top: -60px;
  }
}
.book-appointment-inner {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: linear-gradient(
    90deg,
    rgba(226, 241, 238, 0.6) 0%,
    rgba(255, 255, 255, 0.6) 37%,
    rgba(226, 241, 238, 0.6) 100%
  );
}
@media only screen and (min-width: 1200px) {
  .book-appointment-inner {
    padding: 2.83333%;
    height: 100%;
    flex-direction: row;
  }
}
.book-appointment-button {
  text-align: center;
  margin-top: 24px;
}
@media only screen and (min-width: 1200px) {
  .book-appointment-button {
    margin-top: 0;
  }
}
.book-appointment-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 992px) {
  .book-appointment-form {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1200px) {
  .book-appointment-form {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    padding-right: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .book-appointment-form {
    gap: 32px;
    padding-right: 32px;
  }
}
.book-appointment-input {
  flex: 1;
  position: relative;
}
.book-appointment-input.is-icon-right i {
  position: absolute;
  right: 12px;
  top: 12px;
}
.book-appointment-input.is-icon-right input {
  position: relative;
  z-index: 2;
}
.book-appointment-select {
  flex: 1;
  position: relative;
}
.book-appointment-select::after {
  content: "\f107";
  font-weight: normal;
  font-family: "Font Awesome 6 Pro";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  color: #319c8a;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.book-appointment-select.custom-nice-select .nice-select.form-select {
  background-image: none;
  border-bottom: 2px solid #319c8a;
  padding: 0.375rem 0;
}
@media only screen and (min-width: 768px) {
  .book-appointment-select.custom-nice-select .nice-select.form-select {
    font-size: 20px;
  }
}
.book-appointment-select.custom-nice-select .nice-select .current {
  line-height: 1.2;
}
.book-appointment-select.custom-nice-select .nice-select .option {
  padding: 12px 16px;
  line-height: 1.4;
  min-height: 22px;
}

.team-list .swiper {
  padding-left: 16px;
}
@media only screen and (min-width: 768px) {
  .team-list .swiper {
    padding-left: 10px;
  }
}
.team-list .swiper-slide {
  width: 320px;
}
.team-list .swiper-button-prev {
  left: 0;
}
.team-list .swiper-button-next {
  right: 0;
}

.form-control-outline {
  border-color: #319c8a !important;
  border-width: 0 0 2px 0;
  border-radius: 0 !important;
  font-weight: 600;
  line-height: 1.35;
  color: #777777;
  background-color: transparent;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.form-control-outline::-webkit-input-placeholder {
  color: #777777;
}
.form-control-outline:-moz-placeholder {
  color: #777777;
  opacity: 1;
}
.form-control-outline::-moz-placeholder {
  color: #777777;
  opacity: 1;
}
.form-control-outline:-ms-input-placeholder {
  color: #777777;
}
@media only screen and (min-width: 768px) {
  .form-control-outline {
    font-size: 20px;
  }
}
.form-control-outline:focus {
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  color: #777777;
  border-color: #00617f;
}

.form-select-outline {
  border-color: #319c8a !important;
  border-width: 0 0 2px 0;
  border-radius: 0 !important;
  font-weight: 600;
  line-height: 1.35;
  color: #777777;
  background-color: transparent !important;
  padding-left: 0 !important;
  background: none;
  position: relative;
  background-image: none;
}
@media only screen and (min-width: 768px) {
  .form-select-outline {
    font-size: 20px;
  }
}
.form-select-outline:focus {
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  color: #777777;
  border-color: #00617f;
}
.form-select-outline option {
  color: #777777;
}

/***** section-service *****/
.home-service {
  background: linear-gradient(
    90deg,
    #319c8a 0%,
    #e2f1ee 50%,
    rgba(49, 156, 138, 0.1) 100%
  );
  border: 2px solid #fff;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
.home-service-inner {
  padding: 24px;
  background: linear-gradient(
    90deg,
    rgba(226, 241, 238, 0.6) 0%,
    rgba(255, 255, 255, 0.6) 37%,
    rgba(226, 241, 238, 0.6) 100%
  );
}
@media only screen and (min-width: 1200px) {
  .home-service-inner {
    padding: 52px 30px 48px 30px;
  }
}
.home-service-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .home-service-body {
    padding-right: 12%;
  }
}
.home-service-figure {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .home-service-figure {
    margin-bottom: 24px;
  }
}
.home-service-figure:last-child {
  margin-bottom: 0;
}
.home-service-figure::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 69.5%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) -0.25%,
    #00617f 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.home-service-figure.active::after {
  opacity: 1;
}
.home-service-figure.active .home-service-img {
  display: block;
}
.home-service-figure.active .home-service-figure-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: transparent;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: all 0.4s ease-in-out;
}
.home-service-figure-title {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  padding: 10px 16px;
  text-transform: capitalize;
  background-color: #00617f;
  display: block;
  transition: all 0.4s ease-in-out;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .home-service-figure-title {
    font-size: 28px;
  }
}
.home-service-img {
  display: none;
  width: 100%;
}

/***** section-packages *****/
.section-packages {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .section-packages {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.section-packages::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #00617f 100%);
  backdrop-filter: blur(4px);
}
.section-packages .container {
  position: relative;
  z-index: 1;
}

.package-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
}
.package-header-text {
  color: #00617f;
}
@media only screen and (min-width: 768px) {
  .package-header-text {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
  }
}
.package-list {
  margin-top: 10%;
}
.package-list .swiper-slide {
  width: 270px;
}
@media only screen and (min-width: 768px) {
  .package-list .swiper-slide {
    width: 300px;
  }
}
.package-list .swiper {
  overflow: unset;
}
.package-list.swiper-navigation-circle .swiper-button-next,
.package-list.swiper-navigation-circle .swiper-button-prev {
  top: -58px;
  width: 36px;
  height: 36px;
  color: #fff;
  border-color: #00617f;
}
.package-list.swiper-navigation-circle .swiper-button-next:hover,
.package-list.swiper-navigation-circle .swiper-button-prev:hover {
  border-color: #319c8a;
}
.package-list.swiper-navigation-circle .swiper-button-prev {
  left: unset;
  right: 56px;
}
.package-list.swiper-navigation-circle .swiper-button-next {
  right: 0;
}
.package-item {
  width: 270px;
  height: 180px;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .package-item {
    width: 300px;
    height: 200px;
  }
}
.package-item:hover {
  box-shadow: 0px 2px 6px 0px rgba(49, 156, 138, 0.15);
  background-color: #e2f1ee;
}
.package-item:hover .package-item-ico {
  background-color: #fff;
}
.package-item-ico {
  width: 40px;
  height: 40px;
  background-color: #e2f1ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all 0.15ms ease-in-out;
  border-radius: 8px;
}
.package-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #00617f;
  margin-bottom: 10px;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) {
  .package-item-title {
    font-size: 20px;
  }
}
.package-item-text {
  line-height: 1.2;
  /* display: block; */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* số dòng muốn hiển thị */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.package-item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-pagination-length .swiper-pagination-bullet {
  height: 5px;
  width: 48px;
  border-radius: 3px;
  background-color: #00617f;
  opacity: 1;
}
.swiper-pagination-length
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #319c8a;
}

/***** section-team *****/
.team-item-link {
  width: 320px;
  height: 480px;
  border-radius: 20px;
  position: relative;
  background-color: #e2f1ee;
  display: flex;
  align-items: flex-end;
  transition: all 0.15ms ease-in-out;
}
.team-item-link:hover {
  background-color: #c0e0da;
}
.team-item-img {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}
.team-item-img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  height: 90%;
}
.team-item-body {
  height: 160px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: linear-gradient(
    90deg,
    #319c8a 0%,
    #e2f1ee 50%,
    rgba(49, 156, 138, 0.1) 100%
  );
  border: 2px solid #fff;
  border-radius: 20px;
  overflow: hidden;
}
.team-item-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(
    90deg,
    rgba(226, 241, 238, 0.6) 0%,
    rgba(255, 255, 255, 0.6) 37%,
    rgba(226, 241, 238, 0.6) 100%
  );
  min-height: 100%;
}
.team-item-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 4px;
  color: #00617f;
}
.team-item-position {
  color: #319c8a;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.team-item-text {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* số dòng muốn hiển thị */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.group-btns-team {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .group-btns-team {
    margin-top: 50px;
  }
}

/***** section-testmonial *****/
.section-testmonial {
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.section-testmonial::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 16.875%;
  height: 19.23611%;
  background-image: url("../../../../images/bg/logo-background-testmonial.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}

@media only screen and (min-width: 992px) {
  .section-testmonial::before {
    left: -61px;
    bottom: -111px;
    width: 243px;
    height: 277px;
  }
}

.testmonial-swiper .swiper-wrapper {
  align-items: flex-start;
}
.testmonial-swiper .swiper-slide {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .testmonial-swiper .swiper-slide {
    width: 520px;
    transform: scale(0.625);
    transform-origin: 0 0;
  }
  .testmonial-swiper .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
  .testmonial-swiper .swiper-slide.swiper-slide-next .testmonial-item-img {
    position: relative;
  }
  .testmonial-swiper
    .swiper-slide.swiper-slide-next
    .testmonial-item-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    border-radius: 20px;
  }
}
.testmonial-swiper .swiper-pagination {
  color: #00617f;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  left: auto;
  right: 0;
  width: auto;
  bottom: 0;
}
@media only screen and (min-width: 992px) {
  .testmonial-swiper .swiper-pagination {
    left: unset;
    right: 0;
    top: 214px;
    height: 24px;
  }
}
.testmonial-swiper.swiper-navigation-circle .swiper-button-next,
.testmonial-swiper.swiper-navigation-circle .swiper-button-prev {
  width: 32px;
  height: 32px;
  font-size: 18px;
  margin-top: 0;
  bottom: 0;
  top: unset;
}
.testmonial-swiper.swiper-navigation-circle .swiper-button-next {
  left: 56px;
  right: unset;
}
@media only screen and (min-width: 992px) {
  .testmonial-swiper.swiper-navigation-circle .swiper-button-next {
    left: 602px;
    bottom: unset;
    top: 288px;
  }
}
@media only screen and (min-width: 992px) {
  .testmonial-swiper.swiper-navigation-circle .swiper-button-prev {
    left: 550px;
    bottom: unset;
    top: 288px;
  }
}

.testmonial-item {
  width: 100%;
  padding-bottom: 32px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .testmonial-item {
    width: 520px;
    height: 360px;
  }
}
@media only screen and (min-width: 992px) {
  .testmonial-item {
    padding-bottom: 0;
  }
}
.testmonial-item-img img {
  border-radius: 20px;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 768px) {
  .testmonial-item-img img {
    border-radius: 20px;
  }
}
.testmonial-item-body {
  /* padding: 12px; */
  text-align: center;
  overflow: hidden;
}
.testmonial-item-body {
  padding: 12px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .testmonial-item-body {
    padding: 8px 20px;
    position: absolute;
    bottom: 0;
    right: 26px;
    width: 220px;
    border-radius: 15px;
  }
  .testmonial-item-body::before,
  .testmonial-item-body::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }
  .testmonial-item-body::before {
    background: #319c8a;
    background: linear-gradient(
      90deg,
      #319c8a 0%,
      #e2f1ee 50%,
      rgba(49, 156, 138, 0.1) 100%
    );
  }
  .testmonial-item-body::after {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(90deg, #e2f1ee 0%, white 37%, #e2f1ee 100%);
    opacity: 0.6;
  }
  .testmonial-item-body > * {
    position: relative;
    z-index: 1;
  }
}
.testmonial-item-body h3 {
  color: #00617f;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 4px;
}
.testmonial-item-text {
  font-size: 12px;
  margin-bottom: 0;
}

.modal-book-appointment {
  font-size: 16px;
}
.modal-book-appointment .modal-dialog {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .modal-book-appointment .modal-dialog {
    width: 95%;
  }
}
.modal-book-appointment .modal-content {
  border: none;
  border-radius: 25px;
}
.modal-book-appointment .modal-body {
  padding: 0;
}
.modal-book-appointment .btn-close {
  position: absolute;
  background: none;
  font-size: 32px;
  color: #00617f;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  opacity: 1;
}
@media only screen and (min-width: 992px) {
  .modal-book-appointment .btn-close {
    color: #fff;
    top: 20px;
    right: 20px;
  }
}
.modal-book-appointment .btn-close:hover {
  color: #00617f;
}

@media only screen and (min-width: 992px) {
  .book-appointment-general {
    display: flex;
  }
}

.book-appointment-general-img {
  width: 41.66667%;
  flex: 0 0 auto;
}
.book-appointment-general-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 25px 25px 0;
}

.book-appointment-general-content {
  padding: 25px;
}
@media only screen and (min-width: 1200px) {
  .book-appointment-general-content {
    padding: 25px 40px;
  }
}

.form-appointment-on-modal {
  padding-bottom: 10px;
}

.form-group-item {
  margin-bottom: 10px;
}

.form-control.datepicker {
  padding: 6px 12px;
  background-image: url(../../images/icons/calendar-check.svg);
  background-repeat: no-repeat;
  background-position: 95% center;
}

.form-control-cs {
  border-color: #e2f1ee;
  background-color: #e2f1ee;
  color: #000;
  border-radius: 10px;
  height: 48px;
}
.form-control-cs::-webkit-input-placeholder {
  color: #777777;
}
.form-control-cs:-moz-placeholder {
  color: #777777;
  opacity: 1;
}
.form-control-cs::-moz-placeholder {
  color: #777777;
  opacity: 1;
}
.form-control-cs:-ms-input-placeholder {
  color: #777777;
}
@media only screen and (min-width: 768px) {
  .form-control-cs {
    height: 60px;
  }
}
.form-control-cs:focus {
  border-color: #319c8a;
  box-shadow: none;
  background-color: #e2f1ee;
}

.row-xs {
  margin-left: -5px;
  margin-right: -5px;
}
.row-xs > * {
  padding-left: 5px;
  padding-right: 5px;
}

.form-note {
  background-color: #d8d8d8;
  border-radius: 10px;
  padding: 15px 12px;
  font-size: 12px;
  color: #00617f;
  font-weight: 300;
}
.form-note a {
  color: #319c8a;
}
.form-note a:hover {
  text-decoration: underline;
}

.datepicker-dropdown {
  font-size: 14px;
  min-width: 220px;
}
.datepicker-dropdown .table-condensed {
  width: 100%;
}
.datepicker-dropdown .table-condensed thead th {
  font-weight: 500;
}
.datepicker-dropdown .table-condensed tr td.day.active,
.datepicker-dropdown .table-condensed tr td.day:hover {
  background: none;
  background-color: #00617f;
  color: #fff;
}

.heading {
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .heading {
    margin-bottom: 50px;
  }
}

.filter-news {
  margin-bottom: 4px;
}

.view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.view-all a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  border: 1px solid #00617f;
  padding: 14px 37px;
  border-radius: 50px;
}

.card-news {
  padding: 10px;
  border-radius: 20px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  background-color: #f7f7f7;
  margin-bottom: 6px;
}
@media (min-width: 640px) {
  .card-news {
    height: 100%;
  }
}
.card-news .btn-custom {
  display: none;
}
.card-news:hover {
  box-shadow: 0px 3px 6px 0px #0000001a;
  background-color: #fff;
}

.link-normal {
  font-weight: 600;
  color: #319c8a;
  display: inline-block;
  position: relative;
  height: 48px;
  transition: all 0.3s ease-in-out;
}
.link-normal::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 2px;
  right: 2px;
  height: 48px;
  border-radius: 50rem;
  background-color: #00617f;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.link-normal span {
  padding: 10px 0;
  display: block;
  position: relative;
  min-width: 180px;
  height: 48px;
  line-height: 1.6;
  white-space: nowrap;
  border-radius: 50rem;
  transition: all 0.3s ease-in-out;
}
.link-normal span::before,
.link-normal span::after {
  content: "";
  display: block;
  height: 48px;
  width: 50%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.link-normal span::before {
  left: 0;
  background-image: url("../../../../images/icons/button-left.png");
  background-position: 0 0;
}
.link-normal span::after {
  right: 0;
  background-image: url("../../../../images/icons/button-right.png");
  background-position: right 0;
}
.link-normal:hover {
  color: #fff;
}
.link-normal:hover::before {
  opacity: 1;
}
.link-normal:hover span {
  padding: 10px 30px;
}
.link-normal:hover span::before,
.link-normal:hover span::after {
  opacity: 1;
}

.card-news-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .card-news-img {
    margin-bottom: 24px;
  }
}
.card-news-img img {
  width: 100%;
  object-fit: cover;
}

.card-news-date {
  box-shadow: 0px 2px 4px 0px #00617f26;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  padding: 5px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  border-radius: 10px;
  color: #d8d8d8;
}
.card-news-date .day {
  font-size: 16px;
  font-weight: 600;
  color: #00617f;
}

.card-news-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-news-title.card-news-title-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 54px;
  white-space: normal;
}

@media only screen and (min-width: 768px) {
  .card-news-title {
    font-size: 20px;
  }
}

.card-news-desc {
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 66px;
}
.news-button-all {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .news-button-all {
    margin-top: 40px;
  }
}

.swiper-navigation-circle .swiper-button-next,
.swiper-navigation-circle .swiper-button-prev {
  margin-top: -19px;
  font-size: 20px;
  color: #319c8a;
  border: 1px solid #319c8a;
  border-radius: 50%;
  width: 38px;
  height: 38px;
}
@media only screen and (min-width: 768px) {
  .swiper-navigation-circle .swiper-button-next,
  .swiper-navigation-circle .swiper-button-prev {
    width: 48px;
    height: 48px;
    margin-top: -24px;
  }
}
.swiper-navigation-circle .swiper-button-next::after,
.swiper-navigation-circle .swiper-button-prev::after {
  display: none;
}
.swiper-navigation-circle .swiper-button-next:hover,
.swiper-navigation-circle .swiper-button-next:focus,
.swiper-navigation-circle .swiper-button-prev:hover,
.swiper-navigation-circle .swiper-button-prev:focus {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}

.section-news .swiper-button-next,
.section-news .swiper-button-prev {
  top: 27%;
  margin-top: 0;
}
@media only screen and (min-width: 992px) {
  .section-news .swiper-button-next,
  .section-news .swiper-button-prev {
    top: 96px;
  }
}

.section-statics {
  background: linear-gradient(
    90deg,
    #319c8a 0%,
    #e2f1ee 50%,
    rgba(49, 156, 138, 0.1) 100%
  );
}
.section-statics .section-inner {
  padding-top: 24px;
  padding-bottom: 24px;
  background: linear-gradient(
    90deg,
    rgba(226, 241, 238, 0.6) 0%,
    rgba(255, 255, 255, 0.6) 37%,
    rgba(226, 241, 238, 0.6) 100%
  );
}

.static-item {
  color: #319c8a;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .static-item {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .static-item {
    font-size: 20px;
  }
}

.static-item-number {
  font-weight: 800;
  font-size: 42px;
}
@media only screen and (min-width: 768px) {
  .static-item-number {
    font-size: 52px;
  }
}
@media only screen and (min-width: 1200px) {
  .static-item-number {
    font-size: 72px;
  }
}

.section-networks {
  background: url(../../images/bg/pattern-bottom.svg) no-repeat bottom left;
}
.section-networks .swiper-grid-column > .swiper-wrapper {
  flex-direction: row;
  align-items: flex-start;
}
.section-networks .swiper-slide {
  margin-top: 0 !important;
  margin-bottom: 40px;
}

.partner-item {
  padding-top: 100%;
  background-color: #00617f;
  border-radius: 20px;
  position: relative;
}
.partner-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

.swiper-custom-dots .swiper-pagination {
  position: static;
}
.swiper-custom-dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #319c8a;
  opacity: 1;
}
.swiper-custom-dots .swiper-pagination-bullet:hover,
.swiper-custom-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00617f;
}

/***** section-subbanner *****/
.section-subbanner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .section-subbanner {
    height: 500px;
  }
}

.subbanner-img {
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
.subbanner-img.bg-overlay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
}
.subbanner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.subbanner-content {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .subbanner-content {
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
  }
}

.section-subbanner.bg-overlay-primary-color .subbanner-img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #00617f 100%);
}
.section-subbanner.bg-overlay-primary-color .link-back-page a,
.section-subbanner.bg-overlay-primary-color .link-back-page a:hover,
.section-subbanner.bg-overlay-primary-color .title {
  color: #fff;
}
.section-subbanner.bg-overlay-info-color .subbanner-img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 50%, #e2f1ee 100%);
}

.section-subbanner.bg-overlay-white .subbanner-img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90.03deg,
    #ffffff 25.01%,
    rgba(255, 255, 255, 0) 99.97%
  );
}
.section-subbanner.bg-overlay-white-lighter .subbanner-img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 65.06944%;
  height: 100%;
  background: linear-gradient(90deg, #fcfaf8 0%, rgba(255, 255, 255, 0) 100%);
}

/***** section-intro *****/
@media only screen and (min-width: 992px) {
  .section-intro {
    margin-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) {
  .introduction {
    max-width: 88.23529%;
    margin-left: auto;
    margin-right: auto;
  }
}

.intro-video-img {
  border-radius: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.intro-video .btn-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #00617f;
  font-size: 45px;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .intro-video .btn-play-circle {
    font-size: 96px;
  }
}
.intro-video .btn-play-circle:hover {
  color: #319c8a;
}

/***** section-why *****/
.why {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .why {
    flex-direction: row;
    align-items: center;
  }
}
.why-figure {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .why-figure {
    width: 42.20588%;
  }
}
.why-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.why-img img {
  width: 67.24739%;
}
@media only screen and (min-width: 768px) {
  .why-img img {
    width: 50.26042%;
  }
}
@media only screen and (min-width: 992px) {
  .why-img img {
    width: 67.24739%;
  }
}
.why-description {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .why-description {
    width: auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    padding-left: 4.19118%;
  }
}
.why-list {
  margin-left: -10px;
  margin-right: -10px;
}
.why-list > * {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.why-item {
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #e2f1ee 0%, #319c8a 100%);
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .why-item {
    height: 200px;
  }
}
.why-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.why-item-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  color: #00617f;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .why-item-title {
    font-size: 24px;
  }
}

.aph-logo-bg {
  display: block;
  width: 56px;
  min-width: 56px;
}

/***** section-infrastructure *****/
.section-infrastructure {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.infrastructure-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 97, 127, 0.5) 100%
  );
}
.infrastructure-item:hover .infrastructure-item-body {
  background: rgba(0, 97, 127, 0.7);
  backdrop-filter: blur(8px);
  height: 100%;
}
.infrastructure-item:hover .infrastructure-item-body ul {
  display: block;
}
.infrastructure-item-img img {
  display: block;
  width: 100%;
  height: 100%;
}
.infrastructure-item-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 30px 20px;
  transition: height 0.2s, background 0.2s;
}
.infrastructure-item-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 24px;
  display: none;
}
.infrastructure-item-body ul li {
  text-align: center;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .infrastructure-item-body ul li {
    font-size: 20px;
  }
}
.infrastructure-item-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .infrastructure-item-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .infrastructure-item-title {
    font-size: 36px;
  }
}

/***** section-history *****/
.history-leftcol {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) {
  .history-leftcol {
    height: 100%;
    padding-left: 12px;
  }
}
.history-leftcol .title strong {
  font-weight: 700;
}
.history-img img {
  border-radius: 20px;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .timeline {
    padding-left: 16px;
  }
}
.timeline-item:first-child .timeline-button {
  padding-top: 4px;
}
.timeline-button {
  padding: 20px 0;
  border: 0;
  font-size: 26px;
  font-weight: 700;
  color: #00617f;
  background-color: transparent;
  line-height: 1;
  border-bottom: 1px solid #777777;
  width: 100%;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .timeline-button {
    font-size: 52px;
  }
}
.timeline-item-body {
  padding-bottom: 20px;
  border-bottom: 1px solid #777777;
}
.timeline-row {
  display: flex;
  flex-direction: row;
  padding-top: 20px;
}
.timeline-year {
  width: 22%;
  font-size: 24px;
  font-weight: bold;
  color: #00617f;
}
@media only screen and (min-width: 768px) {
  .timeline-year {
    font-size: 36px;
  }
}
.timeline-desc {
  width: 78%;
  padding-left: 16px;
}

/***** section-branch *****/
.section-branch {
  background: linear-gradient(180deg, #e2f1ee 0%, #319c8a 162.75%);
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-branch {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
@media only screen and (min-width: 992px) {
  .section-branch {
    padding-left: 5%;
    padding-right: 5%;
  }
  .section-branch .heading {
    width: 45.73529%;
    margin-left: auto;
    margin-right: auto;
  }
}

.history {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .history {
    padding-bottom: 72px;
  }
}
.history::before {
  content: "";
  display: block;
  width: 18.05556%;
  height: 60%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../../images/bg/branch-bg.png") no-repeat 0 0;
}
.history .container {
  position: relative;
  z-index: 1;
}

.branch-item {
  height: 88px;
  border-radius: 10px;
  border: 1px solid #00617f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .branch-item {
    width: calc(25% - 24px);
    flex: 0 0 auto;
  }
}
@media only screen and (min-width: 992px) {
  .branch-item {
    width: calc(20% - 24px);
    flex: 0 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-item {
    width: calc(16.66667% - 24px);
    flex: 0 0 auto;
  }
}
.branch-item img {
  max-height: 76px;
}

/***** section-department *****/
@media only screen and (min-width: 992px) {
  .section-department .title span {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .department-group {
    border-left: 1px solid rgba(0, 97, 127, 0.4);
  }
}

.department-item {
  border-bottom: 1px solid rgba(0, 97, 127, 0.4);
}
.department-item:first-child .department-button {
  padding-top: 0;
}

.department-button {
  padding: 16px 0;
  border: 0;
  background-color: transparent;
  border-radius: 0;
  color: #c4c4c4;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .department-button {
    font-size: 28px;
    padding: 24px 0 24px 40px;
  }
}
.department-button[aria-expanded="true"] {
  color: #319c8a;
}

.department-item-body {
  padding-left: 20px;
  padding-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .department-item-body {
    padding-left: 40px;
    padding-bottom: 20px;
  }
}
.department-item-body ul {
  list-style: disc;
  padding-left: 0;
  margin-bottom: 0;
  list-style-position: inside;
}

/***** section-workflow *****/
.section-workflow {
  background-color: #e2f1ee;
  padding-top: 25px;
}
@media only screen and (min-width: 768px) {
  .section-workflow {
    padding-top: 50px;
  }
}

.workflow-slider {
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
}
.workflow-slider .swiper-slide {
  width: 410px;
  border-left: 1px dashed rgba(0, 97, 127, 0.4);
}
.workflow-slider .swiper-slide:last-child {
  border-right: 1px dashed rgba(0, 97, 127, 0.4);
}

.workflow-item {
  width: 410px;
  height: 412px;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.workflow-item-body {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: opacity 0.4s ease-in-out, height 0.4s ease-in-out,
    margin-bottom 0.4s ease-in-out;
}
.workflow-item-body h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
.workflow-item-step {
  width: 360px;
  height: 144px;
  background-image: url(../../images/icons/button-step.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 600;
  color: #00617f;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.workflow-item-step:hover {
  pointer-events: none;
}
.workflow-item.active .workflow-item-step {
  background-image: url(../../images/icons/button-step-hover.png);
  color: #fff;
}

.workflow-item.active .workflow-item-step:hover {
  transform: scale(1);
}

.workflow-item.active .workflow-item-body {
  display: block;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 24px;
  height: auto;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.workflow-item.active .workflow-item-body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.workflow-item:hover .workflow-item-step {
  background-image: url("../../images/icons/button-step-hover.png");
  color: #fff;
  transform: scale(1.05);
}
.workflow-item:hover .workflow-item-body {
  display: block;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 24px;
  height: auto;
}

.workflow-slider:hover .workflow-item .workflow-item-body {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
}
.workflow-slider:hover .workflow-item .workflow-item-step {
  background-image: url("../../images/icons/button-step.png");
  color: #00617f;
}
.workflow-slider:hover .workflow-item:hover .workflow-item-step {
  background-image: url("../../images/icons/button-step-hover.png");
  color: #fff;
}

.workflow-slider:hover .workflow-item:hover .workflow-item-body {
  display: block;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 24px;
  height: auto;
}

/***** section-material *****/
.section-material
  .swiper-pagination-length
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}


@media only screen and (min-width: 992px) {
  .material-wrap {
    padding-left: 5.88235%;
    padding-right: 5.88235%;
  }
}

.card-overlay {
  border: 0;
  margin-bottom: 0;
}
.card-overlay-img {
  position: relative;
}
.card-overlay-img img {
  border-radius: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.card-overlay-body {
  padding: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 97, 127, 0.7) 100%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .card-overlay-body {
    padding: 30px;
  }
}
.card-overlay-title {
  color: #fff;
}
.card-overlay-title > a:not(:hover),
.card-overlay-title > a:hover {
  color: inherit;
}
.card-overlay-text {
  display: none;
}
@media only screen and (min-width: 768px) {
  .card-overlay-text {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .card-overlay-text {
    width: 70%;
  }
}
@media only screen and (min-width: 1200px) {
  .card-overlay-text {
    width: 50%;
  }
}

/***** section-category *****/
.package-healthy {
  background-color: #f7f7f7;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .package-healthy {
    min-height: 100%;
  }
}
.package-healthy:hover {
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

.package-healthy-img {
  position: relative;
  border-radius: 20px 20px 0 0;
  padding-bottom: 68.6%;
}
.package-healthy-img a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.package-healthy-img a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.16);
  transition: all 0.15ms ease-in-out;
  opacity: 0;
  z-index: 1;
}
.package-healthy-img a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(217, 217, 217, 0) 50%,
    rgba(0, 97, 127, 0.5) 100%
  );
  z-index: 1;
}
.package-healthy-img a:hover::before {
  opacity: 1;
}
.package-healthy-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-healthy-body {
  padding-top: 10px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.package-healthy-body::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #e2f1ee 0%, #319c8a 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.package-healthy-content {
  padding: 24px 20px;
}

.package-healthy-title {
  margin-bottom: 24px;
  display: inline-block;
  font-size: 20px;
  line-height: 1.2;
  color: #319c8a;
  font-weight: 600;
  padding: 12px 15px;
  border-radius: 10px;
  background-color: #e2f1ee;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) {
  .package-healthy-title {
    max-width: 75%;
  }
}

.package-healthy-expert {
  margin-bottom: 16px;
}
.package-healthy-expert ul {
  list-style: decimal;
  margin-bottom: 0;
  padding-left: 24px;
}
.package-healthy-expert ul li {
  line-height: 22px;
}

.package-healthy-footer {
  border-top: 1px solid rgba(119, 119, 119, 0.3);
  padding: 24px 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-healthy-price {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #00617f;
}
@media only screen and (min-width: 992px) {
  .package-healthy-price {
    font-size: 36px;
  }
}

.ui-text-link {
  color: #777777;
  padding: 0;
  background-color: transparent;
  border: 0;
}
@media only screen and (min-width: 768px) {
  .ui-text-link {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) {
  .ui-text-link {
    font-size: 20px;
  }
}
.ui-text-link i {
  position: relative;
  top: 2px;
}

/***** section-category *****/
.qas {
  background-color: #e2f1ee;
  border-radius: 20px;
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .qas {
    padding: 30px;
  }
}
.qas .accordion-item:first-of-type,
.qas .accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.qas .accordion-item:last-of-type,
.qas
  .accordion-item:last-of-type
  > .accordion-header
  .accordion-button.collapsed {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.qas .accordion-button {
  color: #319c8a;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  box-shadow: none;
}
@media only screen and (min-width: 768px) {
  .qas .accordion-button {
    font-size: 28px;
  }
}
.qas .accordion-button::after {
  content: "\f107";
  background-image: none;
  font-weight: 400;
  font-family: "Font Awesome 6 Pro";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-size: 18px;
  color: #319c8a;
  width: 40px;
  height: 30px;
  margin-right: -10px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .qas .accordion-button::after {
    font-size: 28px;
  }
}
.qas .accordion-button:not(.collapsed) {
  background-color: #fff;
}
.qas .accordion-button:not(.collapsed)::after {
  content: "\f106";
}
.qas .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}
.qas .accordion-item {
  border-width: 0 0 1px 0;
  border-color: rgba(0, 0, 0, 0.3);
}
.qas .accordion-item:last-of-type {
  border-bottom-width: 0;
}
.qas .accordion-body {
  padding-top: 0;
}

.summary-slider {
  padding-bottom: 50px;
  position: relative;
}

.summary-card {
  border-radius: 20px;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 240px;
  position: relative;
}
.summary-card::before {
  content: "";
  display: block;
  width: 42.12963%;
  height: 100%;
  background: url("../../../../images/logo-icon-light.svg") no-repeat right
    center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
.summary-card.bg1 {
  background: linear-gradient(270deg, #f1a478 0%, #cb5724 100%);
}
.summary-card.bg2 {
  background: linear-gradient(270deg, #b47526 0%, #eac663 100%);
}
.summary-card.bg3 {
  background: linear-gradient(270deg, #e2f1ee 0%, #319c8a 100%);
}
.summary-card-price {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .summary-card-price {
    font-size: 48px;
  }
}
.summary-card-text {
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .summary-card-text {
    font-size: 20px;
  }
}
.summary-card-bottom {
  padding: 9px 10px;
  background-color: #fff;
  position: relative;
}
.summary-card .ui-text-link {
  font-size: 20px;
}

.bg-danger-color {
  background-color: #d11720;
}

.badge.badge-custom {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
  min-height: 30px;
  display: inline-block;
}

/***** section-appointment2 *****/
.section-appointment2 {
  padding-top: 36px;
  padding-bottom: 36px;
  background-color: #00617f;
}
@media only screen and (min-width: 768px) {
  .section-appointment2 {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

.appointment2-box {
  margin-bottom: 20px;
}
.appointment2-section .label {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}
.appointment2-section .form-group {
  margin-bottom: 10px;
}
.appointment2-section .form-control,
.appointment2-section .form-select {
  border: 1px solid #00617f;
  border-radius: 10px;
  color: #00617f;
  font-size: 16px;
  line-height: 22px;
  padding: 18px 9px;
}
.appointment2-section textarea.form-control {
  height: 200px;
}
.appointment2-section .form-note {
  margin-bottom: 10px;
}

.form-check-group .form-check {
  color: #fff;
  margin-bottom: 0;
  position: relative;
  padding-left: 0;
}
.form-check-group label {
  padding-left: 42px;
  min-height: 32px;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.form-check-group label::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.form-check-group label::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 6px;
  opacity: 0;
}
.form-check-group .form-check-input {
  opacity: 0;
  margin-left: 0;
  position: absolute;
  top: 0;
  width: 32px;
  height: 32px;
  left: 0;
  margin-top: 0;
}
.form-check-group .form-check-input:checked ~ label::after {
  opacity: 1;
}
.form-check-group .form-check + .form-check {
  margin-left: 20px;
}
.form-check-group .form-control.datepicker {
  background-position: right 10px center;
}

.modal-detail .modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #979797;
}
@media only screen and (min-width: 768px) {
  .modal-detail .modal-title {
    font-size: 36px;
  }
}
.modal-detail .modal-dialog {
  max-width: 1000px;
  width: 90%;
}

.article-figure img {
  border-radius: 8px;
}
@media only screen and (min-width: 768px) {
  .article-figure img {
    border-radius: 20px;
  }
}
.article-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .article-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.article-footer {
  background-color: #e2f1ee;
  padding: 10px;
  border-radius: 15px;
}
@media only screen and (min-width: 768px) {
  .article-footer {
    padding-left: 20px;
  }
}
.article-time {
  font-size: 22px;
  font-weight: 600;
  color: #00617f;
}
@media only screen and (min-width: 992px) {
  .article-time {
    font-size: 28px;
  }
}

.team-grids .team-item {
  margin-bottom: 24px;
}
.team-grids .team-item-link {
  width: 100%;
}
.team-grids .team-item-body {
  height: 160px;
}
.team-grids .pagination-circle {
  padding-top: 26px;
}

.pagination-circle .page-item {
  margin: 0 8px;
}
.pagination-circle .page-item.active .page-link {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}
.pagination-circle .page-item:first-child .page-link,
.pagination-circle .page-item:last-child .page-link {
  border-radius: 50%;
}
.pagination-circle .page-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #000;
}

.pagination-circle .page-link:hover,
.pagination-circle .page-link:focus {
  border-color: #319c8a;
  background-color: #319c8a;
  color: #fff;
}

.link-back-page {
  font-size: 18px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .link-back-page {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.link-back-page a {
  color: #319c8a;
}

@media only screen and (min-width: 1200px) {
  .single-doctor-summary {
    padding-right: 26px;
  }
}

.single-doctor-img {
  position: relative;
  padding-top: 100%;
  background-color: #e2f1ee;
  margin-bottom: 24px;
  border-radius: 25px;
}
.single-doctor-img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-height: calc(100% - 20px);
}

.position-doctor {
  background-color: #e2f1ee;
  display: inline-block;
  padding: 12px 20px;
  font-weight: 600;
  color: #319c8a;
  border-radius: 10px;
  margin-bottom: 24px;
}

.doctor-name {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .doctor-name {
    font-size: 28px;
  }
}

.single-doctor-body h3,
.single-doctor-body h4 {
  font-weight: 600;
  color: #00617f;
  margin-bottom: 10px;
}
.single-doctor-body h3 {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .single-doctor-body h3 {
    font-size: 20px;
  }
}

.service-item {
  position: relative;
}

.service-item.bg-lighter .service-item-img::after {
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 50%, #e2f1ee 100%);
}
.service-item.bg-lighter .service-item-text {
  color: #fff;
}
.service-item.bg-lighter .service-item-text .txt-gradient {
  background: linear-gradient(90deg, #00617f 60%, rgba(0, 97, 127, 0) 100%);
  color: #fff;
}
.service-item.bg-lighter .service-item-text .txt-normal {
  color: #00617f;
}
@media only screen and (min-width: 768px) {
  .service-item.h-half .service-item-img {
    padding-top: calc(40%);
  }
}
@media only screen and (min-width: 992px) {
  .service-item.h-full {
    height: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .service-item.h-full .service-item-img {
    padding-top: 0;
    height: 100%;
  }
}

.service-item-text {
  position: absolute;
  left: 0;
  bottom: 20px;
  max-width: 100%;
  min-width: 220px;
  line-height: 1.1;
  font-weight: 600;
  font-size: 18px;
}

@media only screen and (min-width: 768px) {
  .service-item-text {
    font-size: 20px;
  }
}

.service-item-text .txt-gradient {
  padding: 10px 16px;
  background: linear-gradient(
    90deg,
    #ffffff 66.35%,
    rgba(217, 217, 217, 0) 100%
  );
  color: #00617f;
  z-index: 2;
}
.service-item-text .txt-normal {
  padding: 7px 16px;
  color: #fff;
}

.service-item-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding-top: 83%;
}

.service-item-img::after {
  background: linear-gradient(
    180deg,
    rgba(217, 217, 217, 0) 39.83%,
    #00617f 100%
  );
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.service-item-img img {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list .col-item {
  margin-bottom: 20px;
}
.service-list .col-item:nth-child(2n + 2) .service-item-img::after {
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 50%, #e2f1ee 100%);
}
.service-list .col-item:nth-child(2n + 2) .service-item-text {
  background: linear-gradient(90deg, #00617f 60%, rgba(0, 97, 127, 0) 100%);
  color: #fff;
}

.service-at-home {
  display: block;
  position: relative;
  color: #fff;
}
.service-at-home:hover,
.service-at-home:focus {
  color: #fff;
}
.service-at-home:hover .service-at-home-img img,
.service-at-home:focus .service-at-home-img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.service-at-home-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding-top: 83%;
}
.service-at-home-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.service-at-home-img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 97, 127, 0.1) 81.37%,
    rgba(0, 97, 127, 0.4) 100%
  );
  z-index: 1;
}

.service-at-home-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 16px;
  font-weight: 600;
  font-size: 18px;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .service-at-home-text {
    font-size: 20px;
  }
}

.mb-20 {
  margin-bottom: 20px;
}

.support-item {
  display: flex;
  position: relative;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    90deg,
    #319c8a 0%,
    #e2f1ee 50%,
    rgba(49, 156, 138, 0.1) 100%
  );
  overflow: hidden;
  padding: 25px 20px;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  background-clip: padding-box;
}
@media only screen and (min-width: 768px) {
  .support-item {
    min-height: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .support-item {
    font-size: 20px;
  }
}
.support-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  background: linear-gradient(
    90deg,
    rgba(226, 241, 238, 0.6) 0%,
    rgba(255, 255, 255, 0.6) 37%,
    rgba(226, 241, 238, 0.6) 100%
  );
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.support-item i {
  width: 12px;
  flex: 0 0 auto;
}
.support-item > * {
  position: relative;
  z-index: 2;
}

.support-item-img {
  width: 56px;
  flex: 0 0 auto;
}

.support-item-text {
  width: calc(100% - 68px);
  flex: 0 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.bg-dark-3 {
  background-color: #f7f7f7;
}

.section-pt {
  padding-top: 36px;
}
@media only screen and (min-width: 768px) {
  .section-pt {
    padding-top: 72px;
  }
}

.values-list .col-item {
  margin-bottom: 20px;
}

.section-news-list .col-news {
  margin-bottom: 30px;
}
.section-news-list .card-news {
  background-color: #f7f7f7;
  min-height: 100%;
}
.section-news-list .card-news:hover {
  background-color: #fff;
}
.section-news-list .card-news-view-more {
  min-height: 48px;
}
.section-news-list .pagination {
  padding-top: 10px;
}

.view-all-link {
  display: inline-block;
  background-color: #e2f1ee;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 500;
  color: #319c8a;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .view-all-link {
    font-size: 20px;
  }
}

.heading-section {
  margin-bottom: 26px;
}

.single-post img {
  border-radius: 10px;
}
.single-post h3 {
  font-size: 18px;
  font-weight: 600;
  color: #00617f;
}
@media only screen and (min-width: 768px) {
  .single-post h3 {
    font-size: 20px;
  }
}
.single-post h4 {
  font-size: 16px;
  font-weight: 600;
  color: #00617f;
}
@media only screen and (min-width: 768px) {
  .single-post h4 {
    font-size: 18px;
  }
}
.single-post h2 {
  font-weight: 500;
  color: #00617f;
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .single-post h2 {
    font-size: 36px;
  }
}

.tags {
  padding-top: 24px;
}

.tag-item {
  display: inline-block;
  padding: 2px 16px;
  border-radius: 5px;
  background-color: #319c8a;
  color: #fff;
}
.tag-item:hover,
.tag-item:focus {
  color: #fff;
}

.aside-news {
  background-color: #e2f1ee;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 24px;
}

.aside-news-header {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 12px;
}

.list-news-item li {
  border-bottom: 1px solid #d8d8d8;
}
.list-news-item a {
  display: block;
  padding: 12px 0 12px 20px;
  position: relative;
}
.list-news-item a::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00617f;
}

.promotion-imgs a,
.promotion-imgs img {
  display: block;
  border-radius: 10px;
}
.promotion-imgs img {
  width: 100%;
}
.promotion-imgs a:not(:last-child) {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1200px) {
  .row-xl {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row-xl > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.nav-docs li {
  border-bottom: 1px solid #e2f1ee;
}
.nav-docs a {
  display: block;
  color: #00617f;
  font-weight: 500;
  padding: 20px 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.nav-docs a:hover,
.nav-docs a.active {
  background-color: #e2f1ee;
}

.table-primary-color {
  border: 1px solid #00617f;
}
.table-primary-color th,
.table-primary-color td {
  border: none;
  padding: 14px;
}
.table-primary-color thead th,
.table-primary-color thead td {
  background-color: #00617f;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.table-primary-color tbody tr:nth-child(2n + 2) td {
  background-color: #e2f1ee;
}
.table-primary-color tbody tr td:nth-child(2) {
  min-height: 160px;
}
.table-primary-color tbody tr td:first-child a {
  font-weight: 500;
  color: #000;
}
.table-primary-color tbody tr td:first-child a:hover {
  color: #319c8a;
}

.single-carrer {
  padding-bottom: 26px;
}
.single-carrer table td {
  vertical-align: top;
  padding: 24px 10px;
  border-bottom: 1px solid rgba(119, 119, 119, 0.7);
}
.single-carrer table td:first-child {
  padding-left: 0;
  font-weight: 600;
  font-size: 18px;
  color: #979797;
}
@media only screen and (min-width: 768px) {
  .single-carrer table td:first-child {
    width: 33.333333%;
    font-size: 20px;
  }
}
.single-carrer table td:last-child {
  padding-right: 0;
}
.single-carrer table tr:last-child td {
  border-bottom: none;
}
.single-carrer table ul {
  padding-left: 17px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .single-carrer table {
    display: block;
  }
  .single-carrer table tbody,
  .single-carrer table tr,
  .single-carrer table td {
    display: block;
    width: 100%;
  }
  .single-carrer table td {
    padding-left: 0;
    padding-right: 0;
  }
  .single-carrer table td:first-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .single-carrer table td:last-child {
    padding-top: 10px;
  }
}

.section-partent-bottom {
  background-image: url(../../../../images/bg/bg-partent-bottom.png);
  background-position: bottom right;
  background-repeat: no-repeat;
}

.upload-cv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.upload-cv .upload {
  width: 60%;
  flex: 0 0 auto;
  position: relative;
  color: #319c8a;
}
.upload-cv .upload input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.upload-cv .lbl-upload {
  display: block;
}
.upload-cv .lbl-upload i {
  margin-right: 8px;
}
.upload-cv .note {
  font-size: 8px;
  color: #777777;
  width: 40%;
  flex: 0 0 auto;
  padding-left: 10px;
  text-align: right;
}

.custom-nice-select .nice-select {
  width: 100%;
  display: block;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
}
.custom-nice-select .nice-select::after {
  display: none;
}
.custom-nice-select .nice-select.form-select {
  background-image: url(../../../../images/icons/angle-down.png);
}
.custom-nice-select .nice-select.form-select.open {
  background-color: transparent;
}
@media only screen and (min-width: 768px) {
  .custom-nice-select .nice-select .current {
    line-height: 60px;
  }
}
.custom-nice-select .nice-select .list {
  margin: 0;
  border: none;
  /* width: 100%; */
  width: auto;
  box-shadow: 0px 4px 4px 0px #00000026;
  border-radius: 0 0 10px 10px;
}
.custom-nice-select .nice-select .option {
  min-height: 48px;
  line-height: 48px;
  color: #319c8a;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .custom-nice-select .nice-select .option {
    min-height: 60px;
    line-height: 60px;
  }
}
.custom-nice-select .nice-select .option:not(:last-child) {
  border-bottom: 1px solid #e2f1ee;
}
.custom-nice-select .nice-select .option:hover,
.custom-nice-select .nice-select .option:focus {
  background-color: #e2f1ee;
}
.custom-nice-select .nice-select .option.focus,
.custom-nice-select .nice-select .option.selected.focus {
  background-color: #e2f1ee;
  font-weight: 400;
}

.group-fixed {
  position: fixed;
  bottom: 25px;
  right: 0;
  z-index: 10;
  width: 45px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .group-fixed {
    top: 50%;
    transform: translate(0, -50%);
    bottom: auto;
  }
}
@media only screen and (min-width: 992px) {
  .group-fixed {
    width: 72px;
  }
}

.group-fixed-button {
  color: #fff;
  text-align: center;
  height: 45px;
  padding: 5px 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 992px) {
  .group-fixed-button {
    height: 72px;
    padding: 6px 0;
    font-size: 14px;
  }
}
.group-fixed-button.bg-primary-color {
  background-color: #00617f;
}
.group-fixed-button.bg-primary-color:hover {
  background-color: #004e66;
}
.group-fixed-button.bg-info-color {
  background-color: #319c8a;
}
.group-fixed-button.bg-info-color:hover {
  background-color: #2b8979;
}
.group-fixed-button:hover,
.group-fixed-button:focus {
  color: #fff;
}
.group-fixed-button i {
  font-size: 24px;
}
@media only screen and (min-width: 992px) {
  .group-fixed-button i {
    font-size: 32px;
    margin-bottom: 4px;
  }
}
.group-fixed-button .text {
  display: none;
}
@media only screen and (min-width: 992px) {
  .group-fixed-button .text {
    display: block;
  }
}


.custom-tooltip .tooltip-inner {
  padding: 16px;
}
.custom-tooltip.bg-primary-color .tooltip-inner {
  background-color: #00617f;
}
.custom-tooltip.bg-primary-color.bs-tooltip-auto[data-popper-placement^="top"]
  .tooltip-arrow::before,
.custom-tooltip.bg-primary-color .bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #00617f;
}
.custom-tooltip.bg-primary-color.bs-tooltip-auto[data-popper-placement^="right"]
  .tooltip-arrow::before,
.custom-tooltip.bg-primary-color .bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #00617f;
}
.custom-tooltip.bg-primary-color.bs-tooltip-auto[data-popper-placement^="bottom"]
  .tooltip-arrow::before,
.custom-tooltip.bg-primary-color .bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #00617f;
}
.custom-tooltip.bg-primary-color.bs-tooltip-auto[data-popper-placement^="left"]
  .tooltip-arrow::before,
.custom-tooltip.bg-primary-color .bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #00617f;
}
.custom-tooltip.bg-info-color .tooltip-inner {
  background-color: #e2f1ee;
}
.custom-tooltip.bg-info-color.bs-tooltip-auto[data-popper-placement^="top"]
  .tooltip-arrow::before,
.custom-tooltip.bg-info-color .bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #e2f1ee;
}
.custom-tooltip.bg-info-color.bs-tooltip-auto[data-popper-placement^="right"]
  .tooltip-arrow::before,
.custom-tooltip.bg-info-color .bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #e2f1ee;
}
.custom-tooltip.bg-info-color.bs-tooltip-auto[data-popper-placement^="bottom"]
  .tooltip-arrow::before,
.custom-tooltip.bg-info-color .bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #e2f1ee;
}
.custom-tooltip.bg-info-color.bs-tooltip-auto[data-popper-placement^="left"]
  .tooltip-arrow::before,
.custom-tooltip.bg-info-color .bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #e2f1ee;
}
.custom-tooltip h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
}

.block-hotline {
  border-radius: 10px;
  background-color: #00617f;
  color: #fff;
  padding: 14px;
  margin-bottom: 16px;
}
.block-hotline a {
  color: #fff;
}
.block-hotline a:hover,
.block-hotline a:focus {
  color: #fff;
}

.hotline-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.hotline-item .icon {
  font-size: 32px;
}
.hotline-item .text {
  padding-left: 14px;
}
.hotline-item p {
  margin-bottom: 0;
}
.hotline-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

.map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #66716f;
  margin-bottom: 16px;
}

.schedule-item {
  display: flex;
  align-items: center;
  color: #00617f;
  font-size: 16px;
}
.schedule-item .icon {
  width: 58px;
  flex: 0 0 auto;
}
.schedule-item .text {
  padding-left: 14px;
}
.schedule-item p,
.schedule-item h4 {
  margin-bottom: 0;
}
.schedule-item h4 {
  font-size: 18px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .book-schedule.show .form-appointment,
  .book-schedule:hover .form-appointment {
    opacity: 1;
    right: 100%;
  }
}

.pointer {
  cursor: pointer;
}

.form-appointment {
  background-color: #e2f1ee;
  padding: 16px;
}
.form-appointment.position-absolute {
  width: 688px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  top: 0;
  right: -688px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  opacity: 0;
  z-index: 4;
  border-radius: 20px 0 20px 20px;
}
.form-appointment h3 {
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .form-appointment h3 {
    margin-bottom: 20px;
  }
}

/* .forms .form-control,
.forms .form-select {
  border-radius: 10px;
  height: 48px;
} */
.forms .form-group {
  margin-bottom: 24px;
}

#formPost3 .form-group {
  margin-bottom: 0;
  display: flex;
  flex: 1;
}

@media only screen and (min-width: 992px) {
  .forms .btn-primary-custom {
    font-size: 20px;
    line-height: 24px;
  }
}
.forms .form-control-textarea {
  height: 180px;
  overflow-x: hidden;
  overflow-y: auto;
  border-color: #00617f;
  color: #00617f;
  border-radius: 10px;
}
.forms .form-control-textarea::-webkit-input-placeholder {
  color: #00617f;
}
.forms .form-control-textarea:-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.forms .form-control-textarea::-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.forms .form-control-textarea:-ms-input-placeholder {
  color: #00617f;
}

.form-group-with-icon {
  position: relative;
}
.form-group-with-icon .form-control,
.form-group-with-icon .form-select {
  border-color: #00617f;
  color: #00617f;
  padding-left: 45px;
}
.form-group-with-icon .form-control::-webkit-input-placeholder,
.form-group-with-icon .form-select::-webkit-input-placeholder {
  color: #00617f;
}
.form-group-with-icon .form-control:-moz-placeholder,
.form-group-with-icon .form-select:-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.form-group-with-icon .form-control::-moz-placeholder,
.form-group-with-icon .form-select::-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.form-group-with-icon .form-control:-ms-input-placeholder,
.form-group-with-icon .form-select:-ms-input-placeholder {
  color: #00617f;
}
@media only screen and (min-width: 992px) {
  .form-group-with-icon .form-control,
  .form-group-with-icon .form-select {
    padding-left: 56px;
  }
}
.form-group-with-icon .form-select {
  background-image: url(../../images/icons/angle-down.png);
  background-size: auto;
}
.form-group-with-icon i {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translate(0, -50%);
  color: #00617f;
}
@media only screen and (min-width: 992px) {
  .form-group-with-icon i {
    font-size: 20px;
  }
}

.message-form {
  padding: 9px 15px;
  border-radius: 10px;
  margin-top: 16px;
  text-align: center;
}
.message-form.bg-info-color2 {
  background-color: #319c8a;
  color: #fff;
}

.btn-close.position-absolute {
  top: 20px;
  right: 16px;
  z-index: 3;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .btn-close.position-absolute {
    top: 40px;
    right: 32px;
  }
}

.invalid-feedback[data-fv-result="INVALID"] {
  display: block;
  margin-bottom: 10px;
}

#formPost3 .invalid-feedback[data-fv-result="INVALID"] {
  display: none !important;
  margin-bottom: 0 !important;
}


/*------------------------------------------------------------------
[Footer]
*/
.footer-site {
  background-color: #e2f1ee;
  padding-top: 35px;
}
@media only screen and (min-width: 768px) {
  .footer-site {
    padding-top: 64px;
  }
}
.footer-site a {
  color: #000;
}
.footer-site a:hover {
  color: #00617f;
}

.footer-top {
  padding-bottom: 15px;
}
.footer-top .title {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .footer-top .title {
    margin-bottom: 20px;
  }
}

.list-info-contact {
  margin-bottom: 20px;
}
.list-info-contact li {
  position: relative;
  padding-left: 28px;
}
.list-info-contact li:not(:last-child) {
  margin-bottom: 7px;
}
.list-info-contact li i {
  position: absolute;
  top: 2px;
  left: 0;
}

.group-links li:not(:last-child) {
  margin-bottom: 8px;
}

.list-socials {
  font-size: 24px;
  padding-top: 24px;
}
@media only screen and (min-width: 1400px) {
  .list-socials .list-inline-item:not(:last-child) {
    margin-right: 17px;
  }
}
.list-socials a {
  color: #00617f;
}
.list-socials a:hover {
  color: #00617f;
  opacity: 0.7;
}
.list-socials .ico-zalo-dark {
  vertical-align: -3px;
}

.img-registered {
  margin-top: 24px;
}

.footer-bottom {
  border-top: 1px solid #777;
  text-align: center;
  padding-top: 16px;
  /* padding-bottom: 32px; */
}

.medical img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 5px;
}

.group-btns-fixed {
  position: fixed;
  bottom: 25px;
  right: 0;
  z-index: 10;
  width: 45px;
}
@media only screen and (min-width: 768px) {
  .group-btns-fixed {
    top: 50%;
    transform: translate(0, -50%);
    bottom: auto;
  }
}
@media only screen and (min-width: 992px) {
  .group-btns-fixed {
    width: 72px;
  }
}

.btn-fixed-item {
  color: #fff;
  text-align: center;
  height: 45px;
  padding: 5px 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 992px) {
  .btn-fixed-item {
    height: 72px;
    padding: 6px 0;
    font-size: 14px;
  }
}
.btn-fixed-item.is-primary {
  background-color: #00617f;
}
.btn-fixed-item.is-primary:hover {
  background-color: #004e66;
}
.btn-fixed-item.is-green {
  background-color: #319c8a;
}
.btn-fixed-item.is-green:hover {
  background-color: #2b8979;
}
.btn-fixed-item:hover,
.btn-fixed-item:focus {
  color: #fff;
}
.btn-fixed-item i {
  font-size: 24px;
}
@media only screen and (min-width: 992px) {
  .btn-fixed-item i {
    font-size: 32px;
    margin-bottom: 4px;
  }
}
.btn-fixed-item .text {
  display: none;
}
@media only screen and (min-width: 992px) {
  .btn-fixed-item .text {
    display: block;
  }
}

.custom-tooltip .tooltip-inner {
  padding: 16px;
}
.custom-tooltip.is-primary .tooltip-inner {
  background-color: #00617f;
}
.custom-tooltip.is-primary.bs-tooltip-auto[data-popper-placement^="top"]
  .tooltip-arrow::before,
.custom-tooltip.is-primary .bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #00617f;
}
.custom-tooltip.is-primary.bs-tooltip-auto[data-popper-placement^="right"]
  .tooltip-arrow::before,
.custom-tooltip.is-primary .bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #00617f;
}
.custom-tooltip.is-primary.bs-tooltip-auto[data-popper-placement^="bottom"]
  .tooltip-arrow::before,
.custom-tooltip.is-primary .bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #00617f;
}
.custom-tooltip.is-primary.bs-tooltip-auto[data-popper-placement^="left"]
  .tooltip-arrow::before,
.custom-tooltip.is-primary .bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #00617f;
}
.custom-tooltip.is-green .tooltip-inner {
  background-color: #319c8a;
}
.custom-tooltip.is-green.bs-tooltip-auto[data-popper-placement^="top"]
  .tooltip-arrow::before,
.custom-tooltip.is-green .bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #319c8a;
}
.custom-tooltip.is-green.bs-tooltip-auto[data-popper-placement^="right"]
  .tooltip-arrow::before,
.custom-tooltip.is-green .bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #319c8a;
}
.custom-tooltip.is-green.bs-tooltip-auto[data-popper-placement^="bottom"]
  .tooltip-arrow::before,
.custom-tooltip.is-green .bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #319c8a;
}
.custom-tooltip.is-green.bs-tooltip-auto[data-popper-placement^="left"]
  .tooltip-arrow::before,
.custom-tooltip.is-green .bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #319c8a;
}
.custom-tooltip h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
}

.block-hotline {
  border-radius: 10px;
  background-color: #00617f;
  color: #fff;
  padding: 14px;
  margin-bottom: 16px;
}
.block-hotline a {
  color: #fff;
}
.block-hotline a:hover,
.block-hotline a:focus {
  color: #fff;
}

.hotline-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.hotline-item .icon {
  font-size: 32px;
}
.hotline-item .text {
  padding-left: 14px;
}
.hotline-item p {
  margin-bottom: 0;
}
.hotline-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

.map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #66716f;
  margin-bottom: 16px;
}

.schedule-item {
  display: flex;
  align-items: center;
  color: #00617f;
  font-size: 16px;
}
.schedule-item .icon {
  width: 58px;
  flex: 0 0 auto;
}
.schedule-item .text {
  padding-left: 14px;
}
.schedule-item p,
.schedule-item h4 {
  margin-bottom: 0;
}
.schedule-item h4 {
  font-size: 18px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .book-schedule.show .form-appointment,
  .book-schedule:hover .form-appointment {
    opacity: 1;
    right: 100%;
  }
}

.pointer {
  cursor: pointer;
}

.form-appointment {
  background-color: #e2f1ee;
  padding: 16px;
}
.form-appointment.position-absolute {
  width: 688px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  top: 0;
  right: -688px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  opacity: 0;
  z-index: 4;
  border-radius: 20px 0 20px 20px;
}
.form-appointment h3 {
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .form-appointment h3 {
    margin-bottom: 20px;
  }
}

.forms .form-control,
.forms .form-select {
  border-radius: 10px;
}
#formPost4.forms .form-control,
#formPost4.forms .form-select {
  height: 48px;
}
.forms .form-group {
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .forms .btn-primary-custom {
    font-size: 20px;
    line-height: 24px;
  }
}
.forms .form-control-textarea {
  height: 180px;
  overflow-x: hidden;
  overflow-y: auto;
  border-color: #00617f;
  color: #00617f;
  border-radius: 10px;
}
.forms .form-control-textarea::-webkit-input-placeholder {
  color: #00617f;
}
.forms .form-control-textarea:-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.forms .form-control-textarea::-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.forms .form-control-textarea:-ms-input-placeholder {
  color: #00617f;
}

.form-group-with-icon {
  position: relative;
}
.form-group-with-icon .form-control,
.form-group-with-icon .form-select {
  border-color: #00617f;
  color: #00617f;
  padding-left: 45px;
}
.form-group-with-icon .form-control::-webkit-input-placeholder,
.form-group-with-icon .form-select::-webkit-input-placeholder {
  color: #00617f;
}
.form-group-with-icon .form-control:-moz-placeholder,
.form-group-with-icon .form-select:-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.form-group-with-icon .form-control::-moz-placeholder,
.form-group-with-icon .form-select::-moz-placeholder {
  color: #00617f;
  opacity: 1;
}
.form-group-with-icon .form-control:-ms-input-placeholder,
.form-group-with-icon .form-select:-ms-input-placeholder {
  color: #00617f;
}
@media only screen and (min-width: 992px) {
  .form-group-with-icon .form-control,
  .form-group-with-icon .form-select {
    padding-left: 56px;
  }
}
.form-group-with-icon .form-select {
  background-image: url(../../images/icons/angle-down.png);
  background-size: auto;
}
.form-group-with-icon i {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translate(0, -50%);
  color: #00617f;
}
@media only screen and (min-width: 992px) {
  .form-group-with-icon i {
    font-size: 20px;
  }
}

.message-form {
  padding: 9px 15px;
  border-radius: 10px;
  margin-top: 16px;
  text-align: center;
}
.message-form.is-success {
  background-color: #319c8a;
  color: #fff;
}

.btn-close.position-absolute {
  top: 20px;
  right: 16px;
  z-index: 3;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .btn-close.position-absolute {
    top: 40px;
    right: 32px;
  }
}

@media (max-width: 767.98px) {
  .about-us-footer .title-type-4,
  .about-us-footer .video-context .desc h3,
  .video-context .desc .about-us-footer h3,
  .about-us-footer .single-carrer-content h3,
  .single-carrer-content .about-us-footer h3 {
    font-size: 16px;
  }
}

#ve-chung-toi {
  scroll-margin-top: 90px;
}

#lich-su-phat-trien {
  scroll-margin-top: 90px;
}

#tam-nhin {
  scroll-margin-top: 90px;
}

#co-so-vat-chat {
  scroll-margin-top: 90px;
}

#dich-vu-tai-phong-kham {
  scroll-margin-top: 180px;
}

#dich-vu-tai-nha {
  scroll-margin-top: 180px;
}

.footer-site {
  background-color: #e2f1ee;
  font-size: 16px;
  padding-top: 35px;
  padding-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  .footer-site {
    padding-top: 64px;
    padding-bottom: 72px;
  }
}
.footer-site a {
  color: #000;
}
.footer-site a:hover,
.footer-site a:focus {
  color: #00617f;
}

.about-footer ul li {
  position: relative;
  padding-left: 28px;
}
.about-footer ul li:not(:last-child) {
  margin-bottom: 8px;
}
.about-footer ul li i {
  position: absolute;
  top: 2px;
  left: 0;
}
.about-footer .span1 {
  color: #00617f;
}
.about-footer .span2 {
  color: #319c8a;
}

.title-footer {
  color: #00617f;
  font-size: 20px;
  font-weight: 600;
}

.group-links li:not(:last-child) {
  margin-bottom: 8px;
}

.socials li:not(:last-child) {
  margin-right: 12px;
}
@media only screen and (min-width: 768px) {
  .socials li:not(:last-child) {
    margin-right: 24px;
  }
}

.footer-bottom {
  border-top: 1px solid #777777;
  padding-top: 16px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.health-service {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.health-service img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  width: 32px;
  flex: 0 0 auto;
}

#formPackage1 .invalid-feedback,
#formPackage2 .invalid-feedback {
  color: #ffffff;
}

.table-rounded-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #00617f;
  background: transparent;
}

.table-rounded-wrapper .table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  border: none;
}

.table-rounded-wrapper .table thead th:first-child {
  border-top-left-radius: 10px;
}
.table-rounded-wrapper .table thead th:last-child {
  border-top-right-radius: 10px;
}

.table-rounded-wrapper .table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.table-rounded-wrapper .table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.table-rounded-wrapper .table td,
.table-rounded-wrapper .table th {
  background-clip: padding-box;
}

.table-rounded-wrapper .table-responsive {
  margin: 0;
  border-radius: 0;
}

