:root {

  --color-primary: #27324a;

  --color-dark: #262828;

  --color-blue: #145da0;

  --color-blue2: #3c9cd6;

  --color-red: #ec1b28;

  --container-width: 1349px;

}



body {

  font-family: "Roboto", sans-serif;

  color: #2b3441;

}



html {

  font-family: "Roboto", sans-serif;

}



a {

  color: var(--color-primary);
  text-decoration: none;
}



a:hover,

a:focus {

  color: var(--color-blue);

}



a,

button {

  -webkit-transition: all 0.3s linear;

  -o-transition: all 0.3s linear;

  transition: all 0.3s linear;

}



.btn:focus {

  box-shadow: none;

}



ul,

ol {

  padding: 0;

  margin: 0;

  list-style: none;

}

.resize {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 100%;
}



.resize>img {
  height: 100% !important;
  width: 100% !important;
  top: 0;
  left: 0;
  object-fit: cover;
  position: absolute;
  z-index: 10;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 2;
  background: transparent;
  color: var(--color-blue);
  border: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
  border-radius: 100%;
}

.slick-arrow.arrow-right {
  right: 0;
}

.slick-arrow.arrow-left {
  left: 0;
}

.slick-dots li button {
  width: 15px;
  height: 15px;
  background-color: transparent;
  font-size: 0;
  padding: 0;
  border: 2px solid transparent;
  position: relative;
  border-radius: 100%;
}

.slick-dots li button:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--color-blue);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-57%, -57%);
}

.slick-dots li button:after {
  width: 5px;
  height: 5px;
  content: '';
  border-radius: 100%;
  border: 2px solid var(--color-blue);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-53%, -53%);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.slick-dots li.slick-active button:after {
  width: 15px;
  height: 15px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

img {

  width: 100%;

  height: 100%;

}



.section {

  padding: 4rem 0;

}



.header .menu-top .box-logo {

  text-align: center;

}



.header .menu-top .box-logo img {

  width: auto;

  max-height: 129px;

  padding: 10px 0;

}



.header .menu-main {

  background: #f1f1f1;

  width: 100%;

  text-align: left;

  padding: 8px 2rem;

  display: flex;

  align-items: center;

  min-height: 60px;

}

#menu-main {
  width: 100%;
  background: #f1f1f1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#menu-main.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transform: translateY(0);
  opacity: 1;
}

#menu-main.hidden {
  transform: translateY(-100%);
  opacity: 0;
}



.header .menu-main ol {

  padding-left: 0px;

}





.header .menu-main .menu-item {

  list-style-type: none;

  display: inline;

  position: relative;

  margin-right: 22px;

}



.header .menu-main .menu-item a {

  font-weight: 700;

  text-transform: uppercase;

  font-size: .8em;

}



.header .menu-main .menu-item.current-menu-item a {

  color: var(--color-blue);

}



.header .menu-main .menu-item:before {

  position: absolute;

  content: "";

  border-bottom: 3px solid var(--color-blue);

  overflow: hidden;

  width: 0%;

  left: 50%;

  top: 25px;

  transition: 0.2s ease-in-out 0.15s;

}



.header .menu-main .menu-item:hover:before,

.header .menu-main .menu-item.current-menu-item:before {

  width: 100%;

  left: 0%;

  transition: 0.2s ease-in-out;

}



.header .menu-main .menu-item .sub-menu {

  position: absolute;

  left: 0%;

  background: #fff;

  top: 50px;

  padding: 0;

  text-align: left;

  box-shadow: 0px 4px 20px -5px rgba(0, 0, 0, 0.15);

  max-height: 0;

  width: 150px;

  opacity: 0;

  transition: 0.45s ease all 0.1s;

  z-index: 0;

  -webkit-transform: translateY(20px);

  transform: translateY(20px);

  opacity: 0;

  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) all 0.1s;

  visibility: hidden;

}



.header .menu-main .menu-item:nth-child(n + 3):nth-child(-n + 4):hover .sub-menu {

  max-height: 200px;

  max-width: 200px;

  opacity: 1;

  -webkit-transform: translateY(0px);

  transform: translateY(0px);

  opacity: 1;

  transition-delay: 0.15s;

  visibility: visible;

}



.header .menu-main .menu-item .sub-menu .menu-item {

  display: block;

  margin: 15px;

}



.header .menu-main .menu-item:nth-child(n + 3):nth-child(-n + 4) .plus-icon {

  width: 15px;

  height: 15px;

  stroke: #333;

  margin-left: 2px;

  margin-bottom: -5px;

}



.header .menu-main .menu-item:nth-child(n + 3):nth-child(-n + 4) .sub-menu-item {

  list-style-type: none;

  display: block;

  margin-left: 15px;

  position: relative;

  opacity: 0;

  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) all 0.1s;

  visibility: hidden;

}



.header .menu-main .menu-item:nth-child(n + 3):nth-child(-n + 4):hover .sub-menu {

  max-height: 200px;

  max-width: 200px;

  opacity: 1;

}



.header .menu-main .menu-item:nth-child(n + 3):nth-child(-n + 4):hover .sub-menu-item a {

  transition: 0.15s ease all;

}



.header .menu-main .menu-item:nth-child(n + 3):nth-child(-n + 4):hover .sub-menu-item a:hover {

  color: grey;

}



.header .menu-main .menu-item:nth-child(n + 3):nth-child(-n + 4):hover .sub-menu-item {

  -webkit-transform: translateY(0px);

  transform: translateY(0px);

  opacity: 1;

  transition-delay: 0.15s;

  visibility: visible;

}



.header .menu-main .b-menu {

  display: flex;

  justify-content: space-between;

  align-items: center;

}





.menu-mai form {

  outline: 0;

  float: left;

  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

  border-radius: 5px;

}



.menu-main form>.textbox {

  outline: 0;

  height: 35px;

  width: 244px;

  line-height: 35px;

  padding: 0 16px;

  background-color: rgba(255, 255, 255, 0.8);

  color: #212121;

  border: 0;

  float: left;

  border-radius: 5px 0 0 5px;

}



.menu-main form>.textbox:focus {

  outline: 0;

  background-color: #FFF;

}



.menu-main form>.button {

  outline: 0;

  background: none;

  background-color: var(--color-blue);

  float: left;

  height: 35px;

  width: 42px;

  text-align: center;

  line-height: 35px;

  border: 0;

  color: #FFF;

  font: normal normal normal 14px/1 FontAwesome;

  font-size: 16px;

  text-rendering: auto;

  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);

  -webkit-transition: background-color .4s ease;

  transition: background-color .4s ease;

  border-radius: 0 5px 5px 0;

}



.menu-main form>.button:hover {

  background-color: var(--color-blue2);

}



/* menu mobi */





.header .main-nav::before {

  content: '';

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: -15px;

  background: var(--color-blue);

  transform-origin: 0 0;

  transform: skew(-14deg) translateX(-120%);

  transition: all .275s .1s;

}



.header .main-nav.is-open::before {

  transform: skew(-14deg) translateX(0);

}





.header .main-nav ul {

  display: inline-flex;

  flex-direction: column;

  height: 93%;

  align-items: flex-end;

  justify-content: center;

  transform: translateX(-18%) skew(-16deg);

}



.header .main-nav li {

  display: block;

  margin: .5rem 0;

  text-align: right;

  transform: skew(16deg);

}



/* Apparition effect on links */

.header .main-nav a {

  opacity: 0;

  transform: translateY(-10px);

}



.header .main-nav.is-open a {

  opacity: 1;

  transform: translateY(0);

}



.header .main-nav li:nth-child(1) a {

  transition: all 275ms 175ms
}



.header .main-nav li:nth-child(2) a {

  transition: all 275ms 225ms
}



.header .main-nav li:nth-child(3) a {

  transition: all 275ms 275ms
}



.header .main-nav li:nth-child(4) a {

  transition: all 275ms 325ms
}



.header .main-nav li:nth-child(5) a {

  transition: all 275ms 375ms
}





.header .main-nav ul,

.header .main-nav li {

  list-style: none;

  padding: 0;

}



.header .main-nav a {

  display: block;

  padding: 12px 0;

  color: white;

  font-size: 1.4em;

  text-decoration: none;

  font-weight: bold;

}



.header .open-main-nav {

  position: absolute;

  top: 15px;

  padding-top: 20px;

  right: 15px;

  z-index: 1000;

  background: none;

  border: 0;

  cursor: pointer;

}



.header .open-main-nav:focus {

  outline: none;

}



.header .burger {

  position: relative;

  display: block;

  width: 28px;

  height: 4px;

  margin: 0 auto;

  background: var(--color-blue);

  transform: skew(5deg);

  transition: all .275s;

}



.header .open-main-nav.is-open .burger,

.header .open-main-nav.is-open .burger:after,

.header .open-main-nav.is-open .burger:before {

  background-color: white;

}



.open-main-nav.is-open .burger-text {

  color: white;

}



.header .burger:after,

.header .burger:before {

  content: '';

  display: block;

  height: 100%;

  background: var(--color-blue);

  transition: all .275s;

}



.header .burger:after {

  transform: translateY(-12px) translateX(-2px) skew(-20deg);

}



.header .burger:before {

  transform: translateY(-16px) skew(-10deg);

}



.header .is-open .burger {

  transform: skew(5deg) translateY(-8px) rotate(-45deg);

}



.header .is-open .burger:before {

  transform: translateY(0px) skew(-10deg) rotate(75deg);

}



.header .is-open .burger:after {

  transform: translateY(-12px) translateX(10px) skew(-20deg);

  opacity: 0;

}





.header .burger-text {

  display: block;

  font-size: .675rem;

  letter-spacing: .05em;

  margin-top: .5em;

  text-transform: uppercase;

  font-weight: 500;

  text-align: center;

  color: var(--color-blue);

}







.header .main-nav {

  position: fixed;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100vh;

  opacity: 0;

  visibility: hidden;

  transition: left 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;

}



.header .main-nav.is-open {

  left: 0;

  opacity: 1;

  visibility: visible;

  text-align: center;

}





.sec-info .b-heading {

  text-align: center;

  margin-bottom: 2rem;

}



.sec-info .b-heading h2.title {

  text-transform: uppercase;

}



.sec-info .b-heading .desc {

  font-size: 1.5rem;

}



.sec-info .video-container {

  margin-top: 56.25%;

  position: relative;

  width: 100%;

  padding-bottom: 56.25%;

  height: 0;

  overflow: hidden;

  background: #000;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

}



.sec-info .video-container iframe {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: none;

}



.sec-info .trustindex-widget {

  margin-top: 5rem;

}



.sec-why {

  background-color: var(--color-blue);

  padding: 2rem 0;

  text-align: center;

  color: white;

}



.sec-why .b-heading {

  margin-bottom: 2rem;

}



.sec-why .b-heading .desc {

  color: #ffff00;

  font-size: 2rem;

}



.sec-why .item {

  background-color: rgb(249, 249, 249);

  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);

  border-radius: 30px;

  color: #2b3441;

}



.sec-why .item .b-img img {

  width: 65%;

}



.sec-why .item .b-txt {

  padding-bottom: 1.4em;

  padding-top: .7em;

  position: relative;

  width: 100%;

}



.sec-why .item .b-txt h3 .strong {

  color: var(--color-red);

}



.sec-why .item .b-txt h3 {

  font-size: 1.25em;

}



.sec-why .item .b-txt p {

  padding-left: 10px;

  padding-right: 10px;

  font-size: .95rem;

}



.sec-why .btn-lh,
.sec-trainghiem .b-btn .btn-lh {

  background-color: #b20000;

  color: white;

  font-size: 1.3em;

  border-radius: 10px;

  padding: 10px 30px;

  text-transform: uppercase;

  font-weight: bold;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: block;

  width: 232px;

  box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .1);

  margin: auto;

}



.sec-why .b-btn .btn-lh:hover,
.sec-trainghiem .b-btn .btn-lh:hover {

  transform: translateY(-6px);

  box-shadow: none;



}



.sec-chungtoi {

  padding-top: 2rem;

}



.sec-chungtoi .b-heading h2 {

  text-align: center;

  color: var(--color-blue);

  margin-bottom: 2rem;

}



.sec-chungtoi .b-img {

  width: 72%;

  margin: auto;

}



.sec-coso .b-cnt .title {

  color: var(--color-blue);

}



.sec-coso .b-cnt p {

  margin-bottom: 1.3em;

}



.sec-coso .b-cnt .btn-lh {

  box-shadow: none;

  padding: 8px 20px;

  font-weight: bold;

  text-transform: uppercase;

  border-radius: 10px;

  color: white;

  background-color: #b20000;

}



.sec-coso .b-cnt .btn-lh:hover {

  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .2);

}



.sec-trainghiem {

  background-color: var(--color-blue);

  color: #fff;

  text-align: center;

}

.sec-trainghiem .b-heading {

  margin-bottom: 3rem;

}

.sec-trainghiem .b-heading .title {

  font-size: 1.7rem;

}

.sec-trainghiem .b-heading .desc {

  font-size: .85rem;

  width: 60%;

  display: block;

  margin: 1rem auto 2rem auto;

  opacity: .8;

}



.sec-trainghiem .item {

  background-color: rgb(252, 252, 252);

  border-radius: 10px;

  box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .1);

  color: #2b3441;

}

.sec-trainghiem .col-12.col-md-6.d-lg-5:first-child .item .b-icon {

  width: 35%;

  margin-bottom: 1.7rem;

}

.sec-trainghiem .col-12.col-md-6.d-lg-5:first-child .item .b-cnt p strong span,
.sec-trainghiem .col-12.col-md-6.d-lg-5:first-child .item .b-cnt p span strong {

  font-size: 1.3rem;

}

.sec-trainghiem .item .b-icon {

  border-radius: 12%;

  width: 50%;

  margin: auto;

}

.sec-trainghiem .item .b-cnt h3,
.sec-trainghiem .item .b-cnt h2,
.sec-trainghiem .item .b-cnt h1,
.sec-trainghiem .item .b-cnt h4 {

  font-size: 1.2rem;

}

.sec-trainghiem .item .b-cnt p {

  margin-bottom: 0;

  opacity: .8;

  font-size: .8rem;

}

.sec-trainghiem .item .b-cnt {

  padding: 15px;

}

.sec-trainghiem .b-ing {

  width: 80%;

  margin: auto;

}

.sec-trainghiem .col-md-2.d-flex,
.sec-trainghiem .col-12.col-md-6.d-lg-5.d-flex {

  align-items: center;

  justify-content: center;

}

.sec-trainghiem .item {

  margin-bottom: 2rem;

}



.sec-trainghiem .b-btn {

  margin-top: 3rem;

}



.sec-cauhoi {

  position: relative;

}



.bg.section-bg {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-size: cover;

  background-position: center;

  z-index: 0;
  /* Nền nằm dưới */

}



.section-bg-overlay {

  background: rgba(255, 255, 255, 0.8);

  height: 100%;

  left: 0;

  margin: 0 !important;

  padding: 0 !important;

  position: absolute;

  right: 0;

  top: 0;

}



.sec-cauhoi .b-cauhoi {

  position: relative;

  z-index: 2;

}

.sec-cauhoi .b-cauhoi h2.title-cauhoi {
  border-bottom: 2px solid #ececec;
  text-transform: uppercase;
  color: var(--color-blue);
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}

.sec-cauhoi .b-cauhoi h2.title-cauhoi span {
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  margin-bottom: -2px;
  margin-right: 15px;
  padding-bottom: 7.5px;
}



.sec-news {
  padding-bottom: 1rem;
}

.sec-news .b-heading h2.title {
  color: var(--color-blue);
  text-transform: uppercase;
  text-align: center;
}

.sec-news .news-item {
  padding: 24px 24px 6px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all .3s;
  box-shadow: 0 1px 3px -2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);

  margin: 3rem .5rem;
  position: relative;
}

.sec-news .news-item .box-text {
  background-color: hsla(0, 0%, 100%, .95);
  margin: -15% auto 0;
  max-width: 85%;
  padding: 15px 20px;
  position: relative;
  width: 100%;
}

.sec-news .news-item .box-text .news-title {
  font-size: 1.15em;
  font-weight: 700;
}

.sec-news .news-item .box-text .is-divider {
  background-color: rgba(0, 0, 0, .1);
  display: block;
  margin-top: .5em;
  margin-bottom: .5em;
  height: 1px;
  max-width: 100%;
  width: 100%;
}

.sec-news .news-item:hover .news-date {
  background-color: var(--color-blue);
  color: white;
}

.news-date {
  position: absolute;
  top: 7%;
  left: 7%;
  border: 2px solid var(--color-blue);
  background-color: white;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: table;
  height: 2.8em;
  pointer-events: none;
  width: 2.8em;
  z-index: 20;
  font-weight: bolder;
  text-align: center;
  color: var(--color-blue);
}

.news-date .badge-inner {
  display: table-cell;
  font-weight: bolder;
  height: 100%;
  line-height: .85;
  padding: 2px;
  text-align: center;
  transition: background-color .3s, color .3s, border .3s;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;

}

.news-date .badge-inner .news-month {
  font-size: .7em;
}

.sec-news .news-slider .slick-arrow {
  opacity: 0;
  transform: translateX(0);
  color: #446084;
}

.sec-news .news-slider:hover .slick-arrow {
  opacity: 1;
  transform: translateX(-20%);
  font-weight: bold;
  font-size: 1.5rem;

}

.sec-news .news-slider .slick-arrow.arrow-right {
  right: 2%;

}

.sec-news .news-slider .slick-arrow.arrow-right:hover {
  color: var(--color-blue) !important;

}

.sec-news .news-slider .slick-arrow.arrow-left {
  left: 2%;
}

.sec-news .news-slider .slick-arrow.arrow-left:hover {
  color: var(--color-blue) !important;

}

.sec-news .news-slider:hover .slick-arrow.arrow-left {
  color: var(--color-blue) !important;

}

.footer {
  color: white;
  position: relative;
}

.footer a {
  color: white;
  opacity: .8;
}

.footer a:hover {
  color: var(--color-blue2);
}

.footer .name {
  color: var(--color-blue2);
  text-transform: uppercase;
  font-size: 1.5rem;
}

.footer ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
  margin-left: 1rem;
}

.footer .title {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer .vp {
  opacity: .8;
}

.footer .vp strong {
  opacity: 1;
}

.footer .b-form {
  margin-bottom: 3rem;
}

.footer .b-form input {
  width: 100%;
  padding: .575rem .75rem;
  border-radius: 0;
}

.footer .b-form input[type="submit"] {
  width: 40%;
  padding: .375rem .75rem;
  background-color: var(--color-blue);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
}

.footer .b-form input[type="submit"]:hover {
  background-color: var(--color-blue2);
}

.footer .section-bg-overlay {
  background: rgb(2 2 2 / 21%);
}

.page-category article {
  border: var(--bs-card-border-width) solid transparent;
}

.page-category article:hover {
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.page-category article .resize {
  padding-top: 50%;
}

.page-category article .resize img {
  border-radius: var(--bs-card-inner-border-radius);
}

.page-category article .card-body {
  padding: 24px 24px 6px 24px;
}

.page-category article .card-body .box-text {
  font-size: 1rem;
  padding-bottom: 1.4em;
  padding-top: .7em;
}

.page-category article .card-body .box-text .post-title {
  font-size: 1rem;
}

.page-category article .card-body .box-text .is-divider {
  margin-top: .5em;
  margin-bottom: .5em;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, .1);
  display: block;
}

.page-category article .card-body .box-text .post-excerpt {
  font-size: .9rem;
}

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

.page-category .pagination .page-numbers {
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  border-radius: 100%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin: 0 .2rem;
  font-weight: bold;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.page-category .pagination .page-numbers:hover,
.page-category .pagination .page-numbers.current {
  background-color: var(--color-blue);
  color: white;
}

.page-category .pagination .page-numbers i {
  font-size: 0.7rem;
}

.post-sidebar {
  border-left: 1px solid #ececec;
}

#sidebar {
  padding: 0 20px 20px;
  top: 40px;
  position: sticky;
}

#sidebar .widget-title {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.05;
  text-transform: uppercase;
}

#sidebar .is-divider {
  background-color: rgba(0, 0, 0, .1);
  display: block;
  height: 1px;
  margin: 1em 0;
  max-width: 100%;
  width: 100%;
}

#sidebar .resize {
  padding-top: 0;
  width: 30%;
}

#sidebar .resize img {
  width: auto;
  transition: all .8s ease;
  overflow: hidden;
  transform: scale(1);
}

#sidebar .title-post {
  width: 70%;
  font-size: .9rem;

}

#sidebar .title-post a {
  color: var(--color-blue);

}

#sidebar .recent-blog-posts-li {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ececec;
}

#sidebar .recent-blog-posts-li:hover .resize img {
  transform: scale(1.1);
  overflow: hidden;
}

#sidebar .recent-blog-posts-li:hover .title-post a {
  color: #27324a;
}

#page-breadcrumbs {
  font-size: .9rem;
}

#page-breadcrumbs a {
  color: var(--color-blue);
  font-size: .9rem;
}

#page-breadcrumbs a:hover {
  color: var(--color-blue2);
}

.page-category {
  padding: 3rem 0;
}

.single #content .wp-element-caption,
.single #content figcaption,.page #content .wp-element-caption,
.page #content figcaption{
  background: rgba(0, 0, 0, .05);
  font-size: .9em;
  font-style: italic;
  padding: .4em;
}

.single #content .box-content ul,.page #content .box-content ul {
  list-style: disc;
}

.single #content figure,.page #content figure {
  margin-top: 1rem;
}

.single #content,.page #content{
  padding: 3rem 0;
}
.single #content .b-cnt,.page #content .b-cnt{
  text-align: justify;
}
.box-content .entry-header {
  padding: .5em 0;
}

.box-content .entry-header .entry-title {
  font-weight: bold;
  font-size: 1.7em;
}

.box-content .entry-header .is-divider {
  background-color: rgba(0, 0, 0, .1);
  display: block;
  height: 1px;
  margin: 1em 0;
  max-width: 100%;
  width: 100%;
}

.box-content .entry-header .entry-meta {
  font-size: .7em;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.box-content .entry-header .entry-meta .posted-on .entry-date,
.box-content .entry-header .entry-meta .byline .meta-author {
  color: var(--color-blue);
}

.page-about {
  padding: 1rem 0 3rem 0;
}

.page-about .row-info {
  background-color: rgb(249 251 255);
  padding-top: 59px;
  padding-bottom: 59px;
  border: 1px solid rgb(235, 235, 235);
}

.page-about .b-img {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  transition: transform .3s, box-shadow .3s, background-color .3s, color .3s, opacity .3s;
  padding: 15px 15px 15px 15px;
  width: 90%;
}

.page-about .b-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 40px 0 rgba(0, 0, 0, .2);
}

.page-about .row-info .b-cnt {
  text-align: justify;
}

.page-about .row-info .b-cnt .btn-tel {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 30%;
  height: 40px;
  line-height: 40px;
  background-color: var(--color-blue);
  color: white;
  margin: 2rem auto;
}

.page-about .row-info .b-cnt .btn-tel:hover {
  background-color: var(--color-blue2);
}

.page-about .row-why {
  padding-top: 59px;
  padding-bottom: 59px;
  border-bottom: 1px solid rgb(235, 235, 235);
}

.page-about .row-why .b-cnt {
  text-align: justify;
}

.page-about .row-why .b-cnt ul li {
  margin-bottom: 1rem;
}

.page-about .row-why .b-img {
  margin: auto 0 auto auto;
}


.page-about .row-eye {
  padding-top: 59px;
  text-align: center;
}

/* support */
.supports {
  position: fixed;
  right: 30px;
  bottom: 140px;
  z-index: 999;
}

.iconsupport {
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.iconsupport a {
  display: block;
}

.iconsupport img {
  width: 50px;
  transition: .3s;
  position: relative;
  z-index: 9;
}

.iconsupport ul {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
  visibility: hidden;
  margin: 0;
}

.iconsupport ul li {
  margin: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  transform: translateY(-20px);
}

.iconsupport ul li:nth-child(2) {
  transition-delay: .2s;
}

.iconsupport ul li a {
  display: inline-block;
  padding: 10px;
  border-radius: 20px;
  background: var(--color-blue);
  color: #fff;
  margin: 0;
  min-width: 165px;
}

.iconsupport.opened ul li {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.iconsupport.opened img {
  transform: scale(1.3);
}

.iconsupport.opened ul {
  visibility: visible;
}

.this_mb {
  display: none;
}

@media(max-width:768px) {
  .supports {
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
  }

  .iconsupport {
    width: 50%;
    margin: 0;
    text-align: center;
    border-radius: 0;
    background: var(--color-blue);
    padding: 15px 0;
    position: unset;
  }

  .iconsupport i {
    width: 100%;
    border-radius: 0;
  }

  .iconsupport ul {
    right: 0;
    top: auto;
    bottom: 100%;
    transform: none;
    width: 100%;
    margin: 0;
    display: flex;
  }

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

  .iconsupport ul li {
    transform: translateY(30px);
    width: 50%;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .iconsupport ul li a {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-blue);
    min-width: auto;
    border-radius: 0;
  }

  .iconsupport.opened img {
    transform: scale(1);
  }

  .this_pc {
    display: none;
  }

  .this_mb {
    display: block;
  }

  .iconsupport.iconsupport1 img {
    width: 30px;
  }

  .iconsupport.iconsupport2 img {
    width: 52px;
  }

  .iconsupport.iconsupport2>a {
    border-left: 1px solid #fff;
  }

  .iconsupport ul li:nth-child(2) {
    transition-delay: unset;
  }
}

@keyframes zoomIn_zalo {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

.zoomIn_zalo {
  animation-name: zoomIn_zalo
}

.animated_zalo {
  animation-duration: 1s;
  animation-fill-mode: both
}

.animated_zalo.infinite {
  animation-iteration-count: infinite
}

.cmoz-alo-circle {
  width: 60px;
  height: 60px;
  top: -6px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid var(--color-blue);
  opacity: .1;
  border-color: var(--color-blue);
  opacity: .5
}

.cmoz-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -5px;
  position: absolute;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  background-color: var(--color-blue);
  opacity: .75;
  right: -5px;
}

@-webkit-keyframes pulse_zalo {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes pulse_zalo {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.pulse_zalo {
  -webkit-animation-name: pulse_zalo;
  animation-name: pulse_zalo
}

.hotline-phone-ring-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999999
}

.hotline-phone-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 110px;
  height: 110px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility .5s;
  left: 0;
  bottom: 0;
  display: block
}

.hotline-phone-ring-circle {
  width: 70px;
  height: 70px;
  top: -12px;
  left: -10px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid var(--color-blue);
  -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: .5
}

.hotline-phone-ring-circle-fill {
  width: 60px;
  height: 60px;
  top: -5px;
  left: -5px;
  position: absolute;
  background-color: var(--color-blue);
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%
}

.hotline-phone-ring-img-circle {
  background-color: var(--color-blue);
  width: 33px;
  height: 33px;
  top: 37px;
  left: 37px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center
}

.hotline-phone-ring-img-circle .pps-btn-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.hotline-phone-ring-img-circle .pps-btn-img img {
  width: 20px;
  height: 20px
}


@-webkit-keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(.5) skew(1deg);
    -webkit-opacity: .1
  }

  30% {
    -webkit-transform: rotate(0) scale(.7) skew(1deg);
    -webkit-opacity: .5
  }

  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: .1
  }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(.7) skew(1deg);
    opacity: .6
  }

  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: .6
  }

  100% {
    -webkit-transform: rotate(0) scale(.7) skew(1deg);
    opacity: .6
  }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg)
  }

  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg)
  }

  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg)
  }

  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg)
  }

  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg)
  }
}


.iconsupport1 {
  margin-bottom: 15px !important
}

@media (max-width: 768px) {
  .iconsupport ul li a {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-blue);
    min-width: auto;
    border-radius: 0;
  }

  .iconsupport1 {
    margin-bottom: 0 !important
  }
}