@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@font-face {
  font-family: "Montserrat";
  src: url("../font/SVNBOLD.TTF");
  font-weight: 900;
}
* {
  padding: 0px;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 992px) {
  html {
    font-size: 58%;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 40%;
  }
}

body {
  font-family: Montserrat;
  font-size: 1.6rem;
  overflow-x: hidden;
  color: #000;
}

img {
  max-width: 100%;
}

.grid {
  display: grid;
}

a {
  text-decoration: none;
  color: unset;
  transition: all 0.5s ease;
}

a:hover {
  color: unset;
  text-decoration: none;
}

.gap-1 {
  grid-gap: 1rem;
}

.gap-2 {
  grid-gap: 2rem;
}

.gap-3 {
  grid-gap: 3rem;
}

.gap-4 {
  grid-gap: 4rem;
}

.gap-5 {
  grid-gap: 5rem;
}

.gap-6 {
  grid-gap: 6rem;
}

@media only screen and (max-width: 600px) {
  .gap-sm-0 {
    grid-gap: 0;
  }
}
.grid-col-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-col-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media only screen and (max-width: 1200px) {
  .grid-col-xl-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 1200px) {
  .grid-col-xl-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 1200px) {
  .grid-col-xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 1200px) {
  .grid-col-xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 1200px) {
  .grid-col-xl-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media only screen and (max-width: 1200px) {
  .grid-col-xl-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .grid-col-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .grid-col-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .grid-col-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .grid-col-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .grid-col-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .grid-col-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media only screen and (max-width: 600px) {
  .grid-col-sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 600px) {
  .grid-col-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 600px) {
  .grid-col-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 600px) {
  .grid-col-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 600px) {
  .grid-col-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media only screen and (max-width: 600px) {
  .grid-col-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.header {
  padding-top: 10px;
  position: relative;
  z-index: 1;
  color: #000;
}
.header-top {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.header-top__left a {
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-radius: 30px;
  padding: 10px 30px;
}
.header-top__right {
  display: flex;
}
.header-top__right__call {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.header-top__right__search {
  padding-left: 40px;
}
.header-main {
  background-image: url(../img/header.png);
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.header-main__menu {
  display: grid;
  grid-template-columns: 35% 30% 35%;
}
.header-main__menu__center {
  text-align: center;
	margin-top:-70px;
}
.header-main__menu__center img {

}
.main-menu {
  height: 100%;
}

.section-title {
  transform: skew(-20deg);
  background: #1E90FF;
  margin-left: 20px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 10px 50px;
  margin: auto;
  margin: 50px auto;
}

.section-title h2, .section-title h1 {
  font-size: 20px;
  color: #fff;
  font-weight: 900;
  transform: skew(20deg);
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}

.title, .item-post-title h3, .tuyendung-post-title h3, .section-2__title h3 {
  font-size: 15px;
  font-weight: 900;
  color: #0999f3;
}

.title-child h3 {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-1 {
  padding-bottom: 50px;
}
.section-1 .title-child h3 {
  color: #ffae00;
}
.section-1__content__description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-align: justify;
}
.section-1__content__xemchitiet {
  font-size: 14px;
  font-weight: 900;
}

.section-2 {
  padding-top: 50px;
}
.section-2__title {
  text-align: center;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 600px) {
  .section-2__title {
    display: block;
  }
  .section-1__content__xemchitiet {
    padding-bottom: 20px;
  }
  
}
.section-2__title img {
  max-width: 200px;
}
@media only screen and (max-width: 992px) {
  .section-2__title img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 600px) {
  .section-2__title img {
    max-width: 100px;
  }
}
.section-2__title a:hover img {
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}
.section-2__list {
  max-width: 1200px;
  margin: auto;
}

.section-3 {
  background-image: url(../img/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.section-3 .title-child h3 {
  color: #0999f3;
  text-align: center;
  padding: 10px 0;
}
.section-3 .section-title {
  transform: skew(-20deg);
  background: #fff;
  margin-left: 20px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 10px 50px;
  margin: auto;
  margin: 50px auto;
  margin-top: 0;
}
.section-3 .section-title h2 {
  font-size: 20px;
  color: #1E90FF;
  font-weight: 900;
  transform: skew(20deg);
  line-height: 1;
  margin-bottom: 0;
}
.section-3__content__item {
  background-color: #fff;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
}
.section-3__content__item__icon {
  text-align: center;
  margin-bottom: 10px;
}
.section-3__content__item__content__description{
  min-height: 230px;
}
.section-3__content__item__content__description p {
  text-align: justify;
}
.section-3__content__item__content__xemchitiet {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.section-3__content__item__content__xemchitiet i {
  padding-left: 10px;
}

.carousel {
  padding-bottom: 100px;
  overflow: hidden;
}

.carousel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px 10px 20px;
  background-color: #fff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media only screen and (max-width: 600px) {
  .carousel-title {
    overflow: hidden;
    max-width: calc(100vw - 30px);
    margin: auto;
  }
}
.carousel-title__text h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0999f3;
}
.carousel-title__text p {
  font-size: 14px;
  font-weight: 400;
}
.carousel-title__chitiet {
  border: 1px solid #ffae00;
  border-radius: 50px;
  padding: 10px 10px;
  font-weight: 500;
  font-size: 14px;
  color: #ffae00;
}
.carousel-title__chitiet i {
  padding-left: 30px;
}

.flipster__item__content {
  border-radius: 40px;
  margin: 20px 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
@media only screen and (max-width: 600px) {
  .flipster__item__content {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }
}

.xemthemsp {
  background-color: #FF9E30;
  padding: 10px 50px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 14px;
  margin-top: 5rem;
}

.section-4 {
  background-color: #f5f7ff;
  margin-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.section-4__title {
  text-align: center;
  padding: 50px 0;
}
.section-4__title h2 {
  color: #0999f3;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
}
.section-4__list {
  max-width: 1000px;
  margin: auto;
}

.section-5 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 50px 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.section-5 .title-child h3 {
  color: #0999f3;
  text-align: center;
  padding: 30px 0;
}
.section-5__content__item {
  background-color: #0999f3;
  padding: 30px;
}
.section-5__content__item__icon {
  text-align: center;
  padding-bottom: 10px;
}
.section-5__content__item__content {
  color: #fff;
}
.section-5__content__item__content__title h3 {
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  padding: 10px 0;
}
.section-5__content__item__content__description p {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
}

.tuyendung-post {
  display: grid;
  grid-template-columns: 38% 58%;
  gap: 20px;
  border: 1px solid #0999f3;
  border-radius: 30px;
}
.tuyendung-post-img {
  position: relative;
}
.tuyendung-post-img::before {
  padding-top: 100%;
  height: 100%;
  width: 100%;
  content: " ";
  display: block;
}
.tuyendung-post-img img {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
}
.tuyendung-post-content {
  margin: auto;
  padding: 20px;
}
.tuyendung-post-title h3 {
  font-weight: 900;
  text-transform: uppercase;
  color: #0999f3;
}
.tuyendung-post-description p {
  font-size: 14px;
  font-weight: 500;
  color: #777777;
}
.tuyendung-post-chitiet {
  display: flex;
  justify-content: space-between;
}
.tuyendung-post-chitiet a {
  font-size: 12px;
  color: #000;
  font-weight: 900;
}
.tuyendung-post-chitiet a i {
  padding-left: 10px;
}
.tuyendung-post-chitiet .date-post {
  color: #C1C1C1;
}

.item-post {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.item-post-img img {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.item-post-title h3 {
  font-weight: 900;
  text-transform: uppercase;
}
.item-post-description p {
  font-size: 14px;
  font-weight: 500;
  color: #777777;
}
.item-post-chitiet {
  display: flex;
  justify-content: space-between;
}
.item-post-chitiet a {
  font-size: 12px;
  color: #000;
  font-weight: 900;
}
.item-post-chitiet a i {
  padding-left: 10px;
}
.item-post-chitiet .date-post {
  color: #C1C1C1;
}

.footer {
  background-image: url(../img/footer.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px 0;
  padding-bottom: 5px;
}
.footer-item__title {
  font-size: 15px;
  font-weight: 900;
  color: #0999f3;
  padding-bottom: 15px;
}
.footer-item__content__item {
  display: flex;
  padding-bottom: 15px;
}
.footer-item__content__item__icon {
  line-height: 1;
  padding-right: 10px;
}
.footer-item__content__item__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}

.coppyright {
  background-color: #0999f3;
  color: #fff;
  text-align: center;
  font-weight: 300;
  font-size: 12px;
  padding: 10px 0;
}

.box-google-map {
  position: relative;
}

.box-google-map::before {
  padding-top: 65%;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.box-google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flipster--loop {
  /*  .flipster__item--past { transform: translateX(-100%); }
    .flipster__item--future { transform: translateX(100%); }*/
}
.flipster--loop .flipster__item {
  position: absolute;
}
.flipster--loop .flipster__item--past-2 {
  transform: translateX(-100%);
}
.flipster--loop .flipster__item--future-2 {
  transform: translateX(100%);
}
.flipster--loop .flipster__item--past-1 {
  transform: translateX(-50%);
}
.flipster--loop .flipster__item--future-1 {
  transform: translateX(50%);
}

.flipster--infinite-carousel .flipster__container,
.flipster--infinite-carousel .flipster__item {
  transition: all 350ms ease-in-out;
  transition-timing-function: cubic-bezier(0.56, 0.12, 0.12, 0.98);
}
.flipster--infinite-carousel .flipster__item__content {
  transition: inherit;
}
.flipster--infinite-carousel .flipster__item__content img {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.flipster--infinite-carousel .flipster__item {
  position: absolute;
  opacity: 0;
  perspective: 800px;
}
.flipster--infinite-carousel .flipster__item--past-2,
.flipster--infinite-carousel .flipster__item--future-2 {
  opacity: 0.6;
  transition-delay: 90ms;
}
.flipster--infinite-carousel .flipster__item--past-1,
.flipster--infinite-carousel .flipster__item--future-1 {
  opacity: 0.8;
  transition-delay: 60ms;
}
.flipster--infinite-carousel .flipster__item--current {
  opacity: 1;
  transition-delay: 0;
}
.flipster--infinite-carousel .flipster__item--past .flipster__item__content,
.flipster--infinite-carousel .flipster__item--future .flipster__item__content {
  transform: scale(0.4);
}
.flipster--infinite-carousel .flipster__item--past-2 .flipster__item__content {
  transform: translateX(-75%) rotateY(45deg) scale(0.6);
}
.flipster--infinite-carousel .flipster__item--future-2 .flipster__item__content {
  transform: translateX(75%) rotateY(-45deg) scale(0.6);
}
.flipster--infinite-carousel .flipster__item--past-1 .flipster__item__content {
  transform: translateX(-44%) rotateY(45deg) scale(0.7);
}
.flipster--infinite-carousel .flipster__item--future-1 .flipster__item__content {
  transform: translateX(44%) rotateY(-45deg) scale(0.7);
}
.flipster--infinite-carousel .flipster__item--current .flipster__item__content {
  transform: translateX(0) rotateY(0deg) scale(1);
}

.flipster__nav {
  border-bottom: 5px solid #F8F8F8;
  border-radius: 2.5px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.flipster__nav {
  position: absolute !important;
}
.flipster__nav__item{
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  margin: 0 10px;
}
@media only screen and (max-width: 992px) {
  .flipster__nav {
    display: none;
  }
}

.flipster__nav__item .flipster__nav__link {
  color: transparent;
  width: 120px;
  position: relative;
  top: 8px;
}
@media only screen and (max-width: 992px) {
  .flipster__nav__item .flipster__nav__link {
    display: none;
  }
}

.flipster__nav__item--current > .flipster__nav__link, .flipster__nav__link:hover, .flipster__nav__link:focus {
  color: transparent !important;
}

.flipster__nav__item .flipster__nav__link::after {
  background: none;
}

.flipster__nav {
  display: block;
  margin: 0 0 4em;
  text-align: center;
  position: relative;
}

.flipster__nav, .flipster__nav__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}



.flipster__nav, .flipster__nav__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.flipster__nav__item {
  margin: 0 10px;
}
.flipster__nav__item .flipster__nav__link {
  color: transparent;
  width: 120px;
  position: relative;
  top: 8px;
}

.flipster__nav__link {
  display: block;
  color: inherit;
  padding: 0.5em 1em;
  position: relative;
  overflow: hidden;
  transition: all 250ms ease-out;
  transition-timing-function: cubic-bezier(0.56, 0.12, 0.12, 0.98);
}

.flipster__nav__item--current .flipster__nav__link {
  border-bottom: 5px solid #0999f3;
  border-radius: 2.5px;
  top: 4px;
}

.carousel-title__chitiet img {
  filter: brightness(0);
  padding-left: 3rem;
}

.scrolldown {
  position: absolute;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  top: 50%;
  left: 100px;
  transform: rotate(-90deg);
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .scrolldown {
    left: -30px;
  }
}
@media (max-width: 1200px) {
  .scrolldown {
    display: none;
  }
}
.scrolldown img {
  transform: rotate(90deg);
  padding-right: 10px;
  padding-left: 10px;
}

.scrolldown img {
  position: relative;
  -webkit-animation: anim 2s ease infinite;
          animation: anim 2s ease infinite;
}

@-webkit-keyframes anim {
  0% {
    right: 40px;
    opacity: 1;
  }
  50% {
    right: 0px;
    opacity: 0.4;
  }
  100% {
    right: 40px;
    opacity: 1;
  }
}

@keyframes anim {
  0% {
    right: 40px;
    opacity: 1;
  }
  50% {
    right: 0px;
    opacity: 0.4;
  }
  100% {
    right: 40px;
    opacity: 1;
  }
}
.slick-initialized .slick-slide.box-slider-item {
  display: flex;
}

.slider-item-child {
  padding-bottom: 20px;
}

@media only screen and (max-width: 992px) {
  .slick-prev, .slick-next {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .carousel-title {
    overflow: hidden;
    max-width: 100vw;
    margin: auto;
    padding-left: 0;
    justify-content: space-around;
  }
}
.page-custom .banner::before {
  display: none;
}
.page-custom .banner video {
  top: -40%;
}
.page-custom .banner-content__title {
  text-align: center;
}
.page-custom .banner-content__title h1 {
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0;
}
.page-custom .scrolldown {
  position: relative;
  width: 100px;
  left: 49%;
  height: 100px;
}
@media (max-width: 1200px) {
  .page-custom .scrolldown {
    display: block;
  }
}

@media (max-width: 768px) {
  .page-custom .banner video {
    top: -21%;
  }
  .banner video {
    position: absolute;
    top: 0%;
    left: 0;
    mix-blend-mode: color-dodge;
    opacity: 0.38;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
  }
}
.lienhe {
  padding: 10rem 0;
}
.lienhe-content {
  background-image: url(../img/lienhe.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
}
.lienhe-content-text {
  padding-left: 100px;
}
@media only screen and (max-width: 992px) {
  .lienhe-content-text {
    padding-left: 15px;
  }
}
.lienhe-content-text h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 30px;
}
.lienhe-content-text-info {
  font-size: 16px;
  color: #777777;
  font-weight: 400;
}
.lienhe-content-text-info div {
  padding-bottom: 10px;
}
.lienhe-content-text-info i {
  padding-right: 15px;
}
.lienhe-content-text-social > * ~ * {
  padding-left: 10px;
}

.modal-list {
  padding: 20px;
  width: 1100px;
  background-color: #f1f1f1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  overflow: auto;
  max-height: calc(100vh - 40px);
}
@media (max-width: 1200px) {
  .modal-list {
    width: 100%;
  }
}

.close-modal {
  position: absolute;
  top: 2px;
  right: 10px;
  cursor: pointer;
}
.close-modal i {
  font-size: 30px;
}

.baogia-content-item__func {
  position: absolute;
  right: 30px;
  top: 15px;
  display: none;
}
.baogia-content-item__func i {
  font-size: 20px;
}
.baogia-content-item__func .baogia-content-item-delete {
  padding-left: 15px;
}

.main-content video {
  max-height: 100vh;
  width: 100%;
}

.feedback-item-human {
  background-color: #eee;
  display: grid;
  grid-template-columns: 40% calc(60% - 50px) 50px;
}
.feedback-item-human-name {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
}
.feedback-item-human-name .avt {
  width: 50px;
  height: 50px;
}
.feedback-item-human-name .ten {
  font-size: 14px;
}
.feedback-item-human-rating img {
  width: 100%;
}
.feedback-item-human-chitiet {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner,.banner-content__list {
  margin-top: -80px;
}

.bread-crumb {
  line-height: 1;
  font-weight: 900;
  color: #000;
  background-color: #f0f0f0;
  padding: 20px 0;
  text-transform: uppercase;
}
.bread-crumb .current_link {
  color: #0999f3;
}

.title-post h1 {
  font-size: 24px;
  font-weight: 900;
  color: #0999f3;
}

.post-content{
  font-size: 16px;
  font-weight: 400;
}
.post-content ul{
  padding: 0 20px;
}
.page-single-post {
  padding-bottom: 50px;
}

.post-realed-title {
  font-size: 20px;
  font-weight: 900;
  border-radius: 30px;
  border: 1px solid #0999f3;
  color: #0999f3;
  line-height: 1;
  padding: 10px 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 30px auto;
}

.post-related-list .slick-slide {
  margin: 0 10px 30px 10px;
}

.post-related-list__item {
  margin-bottom: 50px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.post-related-list__item__img img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.post-related-list__item__content {
  padding: 20px;
}
.post-related-list__item__content__title h3 {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: #0999f3;
  line-height: 1.1;
  text-align: center;
}
.post-related-list__item__content__description p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.page-du-an-list .post-related-list__item .post-related-list__item__content .post-related-list__item__content__title h3 {
  text-align: start;
}

.page-gioithieu {
  padding-bottom: 40px;
}
.page-gioithieu .title-child h1 {
  font-size: 16px;
  font-weight: 900;
  color: #ffae00;
}
.page-gioithieu p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: justify;
}
.page-gioithieu .hoshi {
  margin-top: -50px;
}
@media (max-width: 1200px) {
  .page-gioithieu .hoshi {
    margin-top: 20px;
  }
}

.page-gioithieu-content-2 {
  background-image: url(../img/gioithieu3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 800px;
  display: flex;
  align-items: center;
}
.page-gioithieu-content-2 .title-child h3 {
  color: #fff;
  text-align: center;
}
.page-gioithieu-content-2 p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: justify;
  color: #fff;
}

.page-lien-he-content {
  background-image: url(../img/lienhe.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10rem 0;
}
.page-lien-he-content-left {
  color: #fff;
}
.page-lien-he-content-left h3 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
}
.page-lien-he-content-left p {
  font-size: 14px;
  font-weight: 600;
}
.page-lien-he-content .box-lienhe-line {
  border-radius: 50px;
  border: 3px solid #fff;
}
.page-lien-he-content .box-lienhe-bg {
  background-color: #fff;
  margin: 20px;
  border-radius: 30px;
}
.page-lien-he-content .box-lienhe {
  padding: 40px;
}
.page-lien-he-content .box-lienhe-description {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 30px;
}
.page-lien-he-content .box-lienhe .form-group {
  display: grid;
  grid-template-columns: 30% 70%;
}
@media only screen and (max-width: 600px) {
  .page-lien-he-content .box-lienhe .form-group {
    display: block;
  }
}
.page-lien-he-content .box-lienhe .form-group-title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.page-lien-he-content .box-lienhe .form-group-content input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #000;
  height: 35px;
}
.page-lien-he-content .box-lienhe .form-group-content textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #000;
}
.page-lien-he-content .box-lienhe .form button[type=submit] {
  background-color: #0999f3;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  padding: 10px 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  display: flex;
  border-radius: 30px;
}

.page-duan-details .title-child {
  padding-top: 30px;
}
.page-duan-details .title-child h3 {
  color: #0999f3;
  text-transform: unset;
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 10px;
}
.page-duan-details p {
  font-size: 18px;
  font-weight: 400;
}

.product-image-slider {
  position: relative;
  background-color: #f0f0f0;
}

.product-image-slider ._inner {
  width: 100%;
  max-width: 1000px;
  position: relative;
}

.product-image-slider .thumbnails .thumbnail {
  margin: 10px 5px;
}

.product-image-slider .slick-next {
  background-image: url(../img/next.png);
  background-repeat: no-repeat;
  right: -50px;
}

.product-image-slider .slick-prev {
  background-image: url(../img/prev.png);
  background-repeat: no-repeat;
  left: -50px;
}
.section-4 .box-slider .slick-list{
  max-width: 90%;
  margin: auto;
}
.section-4 .box-slider .slick-next {
  background-image: url(../img/right.png);
  background-repeat: no-repeat;
  background-size: contain;
  right: -20px;
}
.section-4 .slick-prev:before,.section-4 .slick-next:before{
  display: none;
}
.footer ul li{
  list-style: none;
  font-size: 14px;
}
.section-4 .box-slider .slick-prev {
  background-image: url(../img/left.png);
  background-repeat: no-repeat;
  right: -20px;
}
.product-image-slider .slick-prev:before, .product-image-slider .slick-next:before {
  display: none;
}
.banner .banner-item{
  position: relative;
}
.banner .banner-item::before{
  content: "";
  display: block;
  padding-top: 30%;
  height: 100%;
  width: 100%;
}
.banner .banner-item img{
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.post-related-list__item__img{
  position: relative;
}
.post-related-list__item__img::before{
  padding-top: 65%;
  height: 100%;
  width: 100%;
  content:'';
  display: block;
}
.post-related-list__item__img img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.product-image-slider .slick-arrow {
  background-position: left top;
  width: 35px;
  height: 35px;
  margin-top: -17px;
  font-size: 0;
  line-height: 0;
  border: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  z-index: 100;
}
.phantrang{
  margin: 3rem 0;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current{
  border-color: #0999f3;
}
.wp-pagenavi a, .wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #BFBFBF;
  padding: 3px 10px;
  margin: 5px;
}
/* .hover img {
  transition: all 0.5s ease;
  max-width: 100%;
  width: 100%;
}
.hover:hover img {
  transform: scale(1.1);
  border-radius: 15px;
}
.hover-img{
  overflow: hidden;
} */
/* Circle */
.hover .hover-img {
	position: relative;
}
.hover .hover-img::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.hover .hover-img:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
.a-hover:hover{
  color: #0999f3;
}
.pulse:hover,
.pulse:focus {
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
.fill {
  --color: #a972cb;
  --hover: #cb72aa;
}

.pulse {
  --color: #ef6eae;
  --hover: #ef8f6e;
}

.close {
  --color: #ff7f82;
  --hover: #ffdc7f;
}

.raise {
  --color: #ffa260;
  --hover: #e5ff60;
}

.up {
  --color: #e4cb58;
  --hover: #94e458;
}

.slide {
  --color: #8fc866;
  --hover: #66c887;
}

.offset {
  --color: #19bc8b;
  --hover: #1973bc;
}

button {
  color: var(--color);
  transition: 0.25s;
}
button:hover, button:focus {
  border-color: var(--hover);
  color: #fff;
}
.hoverscale img {
  overflow: hidden;
  transition: all 0.5s ease;
  max-width: 100%;
  width: 100%;
}
.hoverscale:hover img {
  transform: scale(.9);
}
.hoverscale-img {
  overflow: hidden;
}
.post-related-list__item:hover .post-related-list__item__content{
  background-color:#ffae00;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.post-related-list__item:hover .post-related-list__item__content__description p{
  color: #fff;
}
@media(max-width:992px){
  .banner, .banner-content__list{
    margin-top: 0;
  }
  .header-top .header-top__right__call{
    color: #fff;
  }
  .header-top__left a{
    color: #fff;
    border-color: #fff;
  }
  .header-top{
    padding: 20px 10px;
    align-items: center;
  }
  .section-3__content__item{
    margin-bottom: 30px;
  }
}
.header-main__menu__center img{
  max-width: 123px;
}
.text-hoshi-1{
  text-align: end;
  padding-bottom: 20px;
}
.text-hoshi-2{
  text-align: end;
  padding-top: 20px;
}
@media(min-width: 992px){
  .text-hoshi-2{
    margin-left: -100px;
  }
}
.social{
  font-size: 14px;
  margin-top: 20px;
}
.sns-list {

  padding: 0;
  margin: 0;
  list-style: none;
}
.sns-list li {
  margin: 0px 5px 5px;
}
.sns-list li a {
  display: block;
  line-height: 24px;
  min-width: 17px;
  text-align: center;
  border-radius: 2px;
  color: #000;
}
.img-duan{
  position: relative;
  width:600px;
}
@media(max-width:992px){
  .img-duan{
    position: relative;
    width:auto;
  }
}
.img-duan::before{
  content: "";
  display: block;
  padding-top: 65%;
  height: 100%;
  width: 100%;
}
.img-duan img{
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-single-duan{
  font-size:16px;
}
.page-single-duan ul{
  padding: 0 20px;
}
@media(max-width:575px){
  #footerBar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50px;
      overflow: hidden;
      z-index: 11;
  }
  #footerBar .bo {
      text-align: center;
      line-height: 50px;
      position: relative;
      background: rgba(9, 153, 243,.9);
      border-top: 1px solid #fff;
  }
  #footerBar .bo a.but.location {
      position: absolute;
      height: 100%;
      width: 80px;
      top: 0;
      left: 0;
      border-right: 1px solid #fff;
      z-index: 1;
      font-size: 18px;
  }
  #footerBar .bo a.but.hotline {
      display: block;
      font-weight: bold;
  }
  #footerBar .bo a.but {
      display: inline-block;
      line-height: 50px;
      color: #ebe5d6;
      font-size: 16px;
  }
  #footerBar .bo a.but.zalo {
      position: absolute;
      height: 100%;
      width: 80px;
      top: 0;
      right: 0;
      border-left: 1px solid #fff;
      font-size: 0;
      background-image: url(../img/zalo-icon-w.png);
      background-repeat: no-repeat;
      background-size: 32px;
      background-position: center;
      z-index: 1;
  }
}
.fixed_contact {
  position: fixed;
  left: 30px;
  bottom: 87px;
  z-index: 9;
}
.fixed_contact li {
  animation-delay: .15s;
  list-style: none;
}
.fixed_contact li {
  -webkit-animation: rung_lac 2.3s infinite ease-in-out;
  animation: rung_lac 2.3s infinite ease-in-out;
  position: relative;
  z-index: 1;
}
.alignnone {
  margin: 0;
}


@keyframes rung_lac {
0% {
  -webkit-transform: rotate(0) scale(1) scale(1);
}
10% {
  -webkit-transform: rotate(-25deg) scale(1) scale(1.1);
}
20% {
  -webkit-transform: rotate(25deg) scale(1) scale(1.2);
}
30% {
  -webkit-transform: rotate(-25deg) scale(1) scale(1.3);
}
40% {
  -webkit-transform: rotate(25deg) scale(1) scale(1.2);
}
50% {
  -webkit-transform: rotate(0) scale(1) scale(1.1);
}
100% {
  -webkit-transform: rotate(0) scale(1) scale(1);
}
}
.hotline-phone-ring-wrap {
position: fixed;
bottom: 0;
left: 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: 85px;
height: 85px;
top: 10px;
left: 10px;
position: absolute;
background-color: transparent;
border-radius: 100%;
border: 2px solid #e60808;
-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: 0.5;
}
.hotline-phone-ring-circle-fill {
  width: 55px;
height: 55px;
top: 25px;
left: 25px;
position: absolute;
background-color: rgba(230, 8, 8, 0.7);
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: #e60808;
  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;
}
.hotline-bar {
  display: none;
position: absolute;
background: rgba(230, 8, 8, 0.75);
height: 40px;
width: 180px;
line-height: 40px;
border-radius: 3px;
padding: 0 10px;
background-size: 100%;
cursor: pointer;
transition: all 0.8s;
-webkit-transition: all 0.8s;
z-index: 9;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
border-radius: 50px !important;
/* width: 175px !important; */
left: 33px;
bottom: 37px;
}
.hotline-bar > a {
color: #fff;
text-decoration: none;
font-size: 15px;
font-weight: bold;
text-indent: 50px;
display: block;
letter-spacing: 1px;
line-height: 40px;
font-family: Arial;
}
.hotline-bar > a:hover,
.hotline-bar > a:active {
color: #fff;
}
@-webkit-keyframes phonering-alo-circle-anim {
0% {
  -webkit-transform: rotate(0) scale(0.5) skew(1deg);
  -webkit-opacity: 0.1;
}
30% {
  -webkit-transform: rotate(0) scale(0.7) skew(1deg);
  -webkit-opacity: 0.5;
}
100% {
  -webkit-transform: rotate(0) scale(1) skew(1deg);
  -webkit-opacity: 0.1;
}
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
0% {
  -webkit-transform: rotate(0) scale(0.7) skew(1deg);
  opacity: 0.6;
}
50% {
  -webkit-transform: rotate(0) scale(1) skew(1deg);
  opacity: 0.6;
}
100% {
  -webkit-transform: rotate(0) scale(0.7) skew(1deg);
  opacity: 0.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);
}
}
@media (max-width: 768px) {
.hotline-bar {
  display: none;
}
}
@media(min-width:575px){
  #footerBar{
    display: none;
  }
}
@media(max-width:575px){
  .coppyright{
    margin-bottom: 50px;
  }
  .fixed_contact,.hotline-phone-ring-wrap{
    display: none;
  }
  .section-3__content__item__content__description{
    min-height: auto;
  }
  .carousel-title__chitiet i{
    padding-left: 5px;
  }
  .carousel-title__chitiet{
    flex-basis: 140px;
    font-size: 12px;
  }
  .carousel-title{
    padding: 30px 20px 10px 20px;
  }
  .carousel{
    padding-bottom: 40px;
  }
  .section-5__content__item{
    margin-bottom: 15px;
  }
  .section-2{
    padding-top: 0;
  }
  .post-related-list__item__content{
    padding: 10px;
  }
  .post-related-list__item__content__description p{
    font-size:14px;
    line-height: 1.2;
  }
  .post-related-list__item{
    margin-bottom: 20px;
  }
  
}

/*# sourceMappingURL=style.css.map */