@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");

@font-face {
    font-family: Lato-Bold;
    src: url(../fonts/Lato-Bold.ttf);
}
@font-face {
    font-family: Lato-Black;
    src: url(../fonts/Lato-Black.ttf);
}
@font-face {
    font-family: Lato-Regular;
    src: url(../fonts/Lato-Regular.ttf);
}
/* Variables */
:root {
  /* Font Sizes & Family */
  /* if we set html's font size 62.5% then 1rem = 10px */

  --body-font: "Poppins", sans-serif;

  --big-font: 4rem;
  --h1-font: 3.6rem;
  --h2-font: 2.4rem;
  --h3-font: 2rem;
  --h4-font: 1.8rem;
  --normal-font: 1.6rem;
  --small-font: 1.4rem;
  --smaller-font: 1.3rem;

  /* Font Weight ***/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* Color Variables */
  --body-color: #e4e9f7;
  --bg-color: #00502b;
  --nav-color: #00974a;
  --menu-color: #d6ebe0;
  --side-nav: #010718;
  --text-title: #037e3f;
  --text-color: #fff;
  --text-color1: #009448;
  --text-color2: #000;
  --search-bar: #f2f2f2;
  --search-text: #010718;
  --search-dark: #000;

  /* BG Color */
  --bg-color1: #9b59b6;
  --bg-color2: #3498db;

  /* z-index */
  --z-overlay: 10;
  --z-fixed: 100;

  /* transition */
  --tran-02: all 0.2s ease;
  --tran-03: all 0.3s ease;
  --tran-04: all 0.4s ease;
  --tran-05: all 0.5s ease;
  --tran-06: all 0.6s ease;
  --tran-07: all 0.7s ease;
}

/*Font sizes For Small Screen 968px */
@media screen and (max-width: 990px) {
  :root {
    --big-font: 3.5rem;
    --h1-font: 2.4rem;
    --h2-font: 2rem;
    --h3-font: 1.8rem;
    --h4-font: 1.6rem;
    --normal-font: 1.5rem;
    --small-font: 1.3rem;
    --smaller-font: 1.2rem;
  }
}

/* Pre-CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font);
  font-weight: var(--font-regular);
  color: var(--text-color);
}
body {
  overflow-x: hidden;
  background-color: var(--white-color);
  font-size: 1.6rem;
  font-family: Arial, Helvetica, sans-serif;
}
ul {
  list-style: none;
  margin-bottom: 0;
}
a:hover {
  text-decoration: none;
}
img {
  max-width: 100%;
  /* width: 100%; */
   height: auto; 
  /* object-fit: cover; */
}

/* Reusuable CSS */
.section {
  padding: 7rem 0rem;
}

.button {
  border: none;
  outline: none;
  color: var(--white-color);
  padding: 1.4rem 4rem;
  border-radius: 3rem;
  background-color: var(--primary-color);
  transition: var(--tran-0-3);
  cursor: pointer;
}
.button:hover {
  background-color: var(--primary-color-hover);
}

.form-control,
.btn {
  font-size: 1.6rem;
}

header {
  background-color: var(--nav-color);
  position: sticky;
  top: 0;
  z-index: 99;
}

.menu_logo {
  padding: 0;
  max-width: 105px;
}

.headNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
/*  margin-left: -15px;*/
/*  margin-right: -15px;*/
  max-height: 8.7rem;
}

#wprmenu_menu_ul {
  display: flex;
  column-gap: 4rem;
}

#wprmenu_menu_ul a {
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.5rem;
}

#wprmenu_menu_ul > li > a {
    padding: 0rem 0rem;
    font-weight: var(--font-bold);
    height: 87px;
    display: flex;
    align-items: center;
    line-height: 42px;
}

#wprmenu_menu_ul li.menu-item-has-children .sub-menu a {
  padding: 10px 0;
  display: block;
  position: relative;
}

#wprmenu_menu_ul li.menu-item-has-children .sub-menu a:after {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 1px dashed #d5ab49;
  left: 0;
  bottom: 1px;
}

.header_tel a {
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
}

.dat_lich i {
    font-size: 20px;
    padding-right: 8px;
}

@media screen and (min-width: 992px) {
  .wprmenu_bar {
    display: none;
  }
  .main-menu-top ul > li.menu-item-has-children:hover .sub-menu {
    display: block !important;
  }

  #wprmenu_menu_ul li.menu-item-has-children .sub-menu {
    position: absolute;
    z-index: 99;
    text-align: left;
    background-color: #00974a;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
    padding: 5px 15px 15px !important;
    min-width: 250px;
    /* top: 90px; */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--tran-03);
    height: inherit !important;
  }

  #wprmenu_menu_ul li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    /* top: 80px; */
  }
}

@media screen and (max-width: 1199px) {
  #wprmenu_menu_ul {
    column-gap: 30px;
  }
  #wprmenu_menu_ul a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  .headNav {
    position: relative;
  }

  .header_tel {
    position: absolute;
    right: 0;
    padding-right: 0px;
  }

  #wprmenu_bar {
    padding-left: 0;
  }

  #wprmenu_menu_ul {
    display: block;
  }

  /* #wprmenu_menu_ul a {
    color: var(--text-color1);
  } */
}

/* .breadcrumbs .bg_custom_1 {
  background: #fff;
} */

#main.cpd {
  color: var(--text-color2);
  padding: 3rem 0;
}

.entry-title {
  color: var(--text-title);
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 0;
  padding: 30px 0 30px;
}

.entry-content {
  padding: 0px 0 60px;
}

.entry-content img {
  display: block;
  margin: auto;
}

.breadcrumbs {
  font-size: 15px;
  border-bottom: 1px solid #e8e8e8;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.4;
}

.breadcrumbs a {
  color: var(--text-title);
}

.breadcrumbs span {
  padding: 0 15px;
}

.breadcrumbs span:not(:last-child) {
  border-right: 1px solid #666;
}

.breadcrumbs span:first-child {
  padding-left: 0;
}

.breadcrumbs .current {
  color: #666;
}

.tit_post_custom {
  color: var(--text-title);
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 0;
}

.title_pgt {
  
  font-family: Lato-Black, sans-serif;
  color: var(--text-title);
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 0;
}

.bg_f {
  background: url(../images/bg-gt.jpg) repeat-y center top;
  background-size: 100%;
}

.pageGioiThieu {
  background: url(../images/bg-gt.jpg) repeat-y center top;
  padding: 7rem 0 10rem;
  color: #000;
  font-size: 1.7rem;
  text-align: justify;
}

.pageGioiThieu .temp_1 {
  padding-top: 20px;
}

.pageGioiThieu .temp_1 figure {
  text-align: center;
}

.pageGioiThieu .temp_2 {
  padding-top: 95px;
}

.pageGioiThieu .temp_2 .grid_ct {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  column-gap: 70px;
  padding-top: 70px;
}
.pageGioiThieu .temp_3 {
  background: url(../images/gioi-thieu/t3-bg.png) no-repeat center bottom;
  background-size: 100%;
  padding: 150px 0;
}

.pageGioiThieu .temp_3 .box {
  padding-top: 90px;
  max-width: 60%;
}

.pageGioiThieu .temp_3 .box p {
  margin-bottom: 25px;
}

.text_act {
  font-weight: var(--font-bold);
  font-size: 25px;
}

.pageGioiThieu .temp_3 .text:not(:first-child) {
  padding-top: 30px;
}

.pageGioiThieu .temp_3 li {
  padding-left: 20px;
  background: url(../images/gioi-thieu/icon_hoa.png) no-repeat left 6px;
}

.pageGioiThieu .temp_3 li b {
  color: #00a651;
}

.pageGioiThieu .temp_4 .box {
  padding-top: 40px;
}

.pageGioiThieu .temp_4 .r_fixx {
  padding: 60px 0;
  align-items: center;
  justify-items: center;
}

.pageGioiThieu .temp_4 .r_fixx .colum_1 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.pageGioiThieu .temp_4 .khauhieu {
  text-align: center;
  padding-top: 60px;
}

.pageGioiThieu .temp_5 {
  padding-top: 160px;
}

.pageGioiThieu .temp_5 figure {
  padding-top: 50px;
}

.pageGioiThieu .temp_6 {
  padding-top: 150px;
}

.pageGioiThieu .temp_6 .title {
  padding-bottom: 30px;
}

.pageGioiThieu .temp_6 .colum_1 {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .pageGioiThieu {
    padding: 4rem 0;
  }
  .title_pgt {
    font-size: 2rem;
  }
  .pageGioiThieu .temp_2 .grid_ct {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    row-gap: 3rem;
  }
  .temp {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .pageGioiThieu .temp_2 .grid_ct {
    padding-top: 30px;
  }
  .pageGioiThieu .temp_3 .box {
    max-width: 100%;
    padding-top: 30px;
  }
  .pageGioiThieu .temp_4 .r_fixx {
    padding: 30px 0;
  }
  .pageGioiThieu .temp_4 .khauhieu {
    padding-top: 30px;
  }
  .pageGioiThieu .temp_6 .colum_1 {
    padding-bottom: 0;
  }
}

.pageThongTinDieuTri .title {
  padding-bottom: 2rem;
}

.pageThongTinDieuTri .temp:not(:last-child) {
  padding-bottom: 10rem;
}

.pageThongTinDieuTri .temp:first-child {
  padding-top: 3rem;
}

.archive-post .effect-apollo2 {
  border: 1px solid #ccc;
  /* border-radius: 1rem; */
  overflow: hidden;
}

.archive-post {
  padding-bottom: 2rem;
}

.archive-post .entry-title {
  padding-top: 0;
  padding-bottom: 15px;
  text-align: left;
  font-size: 18px;
}

.archive-post .effect-apollo2 {
  position: relative;
  padding-bottom: 56.6%;
  transition: var(--tran-03);
}

.archive-post .effect-apollo2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.archive-post:hover .effect-apollo2 {
  box-shadow: 5px 5px 0 #ddd;
}

.archive-post-content {
  text-align: justify;
}

.read_more_11 {
  /* text-align: right; */
  /* text-transform: uppercase; */
  padding-top: 20px;
}

.read_more_11 a {
  padding: 5px 18px 5px;
  background: #fff;
  color: #222;
  display: inline-block;
  border-radius: 30px;
  border: 1px solid #d5b153;
}

.read_more_11 a:hover {
  color: #fff;
  background-color: #222;
}

.archive-post .entry-title a {
  color: var(--text-color1);
}

.archive-post-text a {
  color: #000;
}

.archive-title a {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 0;
}

.archive-post:hover .archive-post-text .archive-title a {
  color: var(--text-color1);
}

.archive-post .archive-post-text .read_more_11 a {
  background: #00502b;
  border-radius: 20px;
  padding: 6px 20px 4px;
  font-size: 1.4rem;
  color: #fff;
}

.page-title.title_custom_1 .ten {
  font-family: Lato-Black, sans-serif;
  text-align: center;
/*  font-weight: bold;*/
  text-transform: uppercase;
  padding: 3rem 0;
  color: var(--text-color1);
}

.content-search .pagetitle {
  font-weight: bold;
  text-transform: uppercase;
  padding: 3rem 0;
  color: var(--text-color1);
}

.content-search .searchform input {
  color: #000;
}

.content-search .searchform input[type="submit"] {
  padding-left: 10px;
  padding-right: 10px;
}

.pagination-nav {
  text-align: right;
  border-top: 1px solid #ddd;
}

.pagination-nav .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0 0;
  border-radius: 4px;
}

.pagination-nav .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.pagination-nav .page-numbers {
  color: #fff;
  padding: 0 14px;
  margin-right: 1px;
  display: inline-block;
  background: #4d4d4d;
  line-height: 36px;
}

.pagination-nav .page-numbers.current {
  color: #fff;
  background: #014b29;
  padding: 0 14px;
  margin-right: 1px;
  display: inline-block;
  line-height: 36px;
}

.pagination-nav .page-numbers:hover {
  background: #014b29;
}

#thongtinlienhe .diachi h2 {
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-color1);
}

.header_tel {
  display: flex;
  align-items: center;
}

.search_123 {
  position: relative;
}

.search_123 > i {
  padding: 15px;
}

.search_123 .top_form_search {
    margin-top: 20px;
    position: absolute;
    right: 0;
    z-index: 9;
    transition: all .3s ease-in-out;

}

.search_123 form {
  position: relative;
  display: flex;
          border: 1px solid #ccc;
    border-radius: 12px;
}

.search_123 label {
  margin-bottom: 0;
}

.search_123 input {
    padding: 6px 10px 6px 10px;
    background-color: #24ad66;
    border-radius: 12px 0px 0px 12px;
    border: none;
    color: #fff;
}

.search_123 input::placeholder {color: #fff;}

.search_123 .search-submit {
    padding: 0 10px 0 5px;
    background-color: yellow;
    border-radius: 0px 12px 12px 0px;
    border: none;
    color: #000;
    border-left: 1px solid #fff;
}

.banner-home {
  position: relative;
  background: url(../images/bannerF.jpg) no-repeat center;
  height: calc(100vh - 87px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-home .logoF {
  max-width: 1920px;
  width: 100%;
}

.banner-home .logoF img {
  width: 36%;
}

@media screen and (max-width: 991px) {
  .banner-home {
    height: calc(100vh - 72px);
  }

  .banner-home .logoF {
    padding-bottom: 30%;
  }
  .banner-home .logoF img {
      width: 70%;
  }
}
/*.banner-home img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}*/

.ctForm {
  text-align: center;
  color: #000;
}

.ctForm .close {
  font-size: 2rem;
}

.ctForm select, .ctForm input {
    height: 45px;
    border: 0px solid #44755c;
    background-color: rgba(0, 148, 79, 0.1);
    border-radius: 50px;
    font-weight: 500;
/*    font-size: 1.7rem;*/
    padding: .6rem 2rem;
    font-style: italic;
}

.ctForm .f_section select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    color: #009450;
}

.ctForm .form-group {
    position: relative;
}

/*.ctForm .f_section .form-group::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 12px solid #009450;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
}*/

.ctForm input::placeholder {
  color: #009450;
  font-style: italic;
}

.ctForm .modal-body {
  padding: 2rem;
}

.ctForm .bt_custom {
  margin: 2rem 0;
}

.ctForm .cover-btn {
    text-transform: uppercase;
    font-weight: 700;
    background: #d50d16;
    background: linear-gradient(180deg,#d50d16 0%,#a20909 100%);
    color: #fff;
    border: 2px solid #F2AF69;
    padding: 7px 20px 5px;
    border-radius: 20px;
}

@media screen and (max-width: 480px) {
  .entry-title,.page-title.title_custom_1 .ten {
    font-size: 2rem;
  }
  .ctForm em {
    font-size: 1.4rem;
  }
}

#thankyou {
    padding: 100px 0
}

#thankyou .thank-you {
    color: #333;
    text-align: center;
}

#thankyou .sentfinish__title {
    color: #09601b;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 15px
}

#thankyou #countdown {
    color: red;
    font-weight: 600;
    font-size: 18px
}

@media screen and (max-width: 480px) {
  #thankyou .thank-you p {
    font-size: 14px;
  }
}


#ft-sg {
  background: url(../images/ft/ftsg-bg.jpg) no-repeat center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 30px;
}

#ft-sg .colum_1 .title_1 {
  padding-bottom: 50px;
}

#ft-sg .colum_1 li:not(:last-child) {
  padding-bottom: 50px;
}

#ft-sg .colum_2 {
  text-align: right;
}

#ft-sg hr {
  background-color: #fff;
  margin: 40px 0;
}

#ft-sg .mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  #ft-sg {
    padding: 30px 0;
  }
  #ft-sg .colum_1 .title_1 {
    padding-bottom: 20px;
  }
  #ft-sg .colum_1 li:not(:last-child) {
    padding-bottom: 20px;
  }
  #ft-sg hr {
    margin: 20px 0;
  }
  #ft-sg .mobile {
    display: block;
    text-align: left;
    margin-top: 20px;
  }
  #ft-sg .desktop {
    display: none;
  }
}

.wp-caption.aligncenter {
    text-align: center;
    margin: auto;
}

.wp-caption-text {
    font-style: italic;
    margin-top: 10px;
}

.post-249 ol {
  padding-left: 30px;
}

.post-249 {
  text-align: justify;
}