.page__title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #343a40;
  padding: 12px 16px;
  position: relative;
  background: #a9200f;
  color: #fff;
}


/*Phone ring*/

.phone {
  position: fixed;
  z-index: 200;
  bottom: 35px;
  left: 15px;
  display: block;
  margin: 0;
  width: 1em;
  height: 1em;
  font-size: 80px;
  background-color: #76b51b;
  border-radius: 0.5em;
  box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 0, 0) scale(1);
}

.phone::before,
.phone::after {
  content: "";
  position: absolute;
}

.phone::before {
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #b4e079;
  border-radius: 100%;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(0);
}

.phone::after {
  content: '\f095';
  font-family: 'fontawesome';
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: .5em;
  transform: translate3d(0, 0, 0);
}

.phone.is-animating {
  animation: phone-outer 3000ms infinite;
}

.phone.is-animating::before {
  animation: phone-inner 3000ms infinite;
}

.phone.is-animating::after {
  animation: phone-icon 3000ms infinite;
}

@keyframes phone-outer {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }

  33.3333% {
    transform: translate3d(0, 0, 0) scale(1.1);
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.4), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5);
  }

  66.6666% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
}

@keyframes phone-inner {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0);
  }

  33.3333% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.9);
  }

  66.6666% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }
}

@keyframes phone-icon {
  0% {
    transform: translate3d(0em, 0, 0);
  }

  2% {
    transform: translate3d(0.05em, 0, 0);
  }

  4% {
    transform: translate3d(-0.05em, 0, 0);
  }

  6% {
    transform: translate3d(0.05em, 0, 0);
  }

  8% {
    transform: translate3d(-0.05em, 0, 0);
  }

  10% {
    transform: translate3d(0.05em, 0, 0);
  }

  12% {
    transform: translate3d(-0.05em, 0, 0);
  }

  14% {
    transform: translate3d(0.05em, 0, 0);
  }

  16% {
    transform: translate3d(-0.05em, 0, 0);
  }

  18% {
    transform: translate3d(0.05em, 0, 0);
  }

  20% {
    transform: translate3d(-0.05em, 0, 0);
  }

  22% {
    transform: translate3d(0.05em, 0, 0);
  }

  24% {
    transform: translate3d(-0.05em, 0, 0);
  }

  26% {
    transform: translate3d(0.05em, 0, 0);
  }

  28% {
    transform: translate3d(-0.05em, 0, 0);
  }

  30% {
    transform: translate3d(0.05em, 0, 0);
  }

  32% {
    transform: translate3d(-0.05em, 0, 0);
  }

  34% {
    transform: translate3d(0.05em, 0, 0);
  }

  36% {
    transform: translate3d(-0.05em, 0, 0);
  }

  38% {
    transform: translate3d(0.05em, 0, 0);
  }

  40% {
    transform: translate3d(-0.05em, 0, 0);
  }

  42% {
    transform: translate3d(0.05em, 0, 0);
  }

  44% {
    transform: translate3d(-0.05em, 0, 0);
  }

  46% {
    transform: translate3d(0em, 0, 0);
  }
}

.img-zoom {
  display: block;
  overflow: hidden;
}

.img-zoom img {
  width: 100%;
  transition: .3s;
}

.img-zoom:hover img {
  transform: scale(1.2);
}

.img-slide {
  display: block;
  overflow: hidden;
  position: relative;
}

.img-slide img:first-child {
  position: relative;
  width: 100%;
  left: 0;
  transition: .3s linear;
}

.img-slide img:nth-child(2) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 100%;
  transition: .3s linear;
}

.img-slide:hover img:first-child {
  left: -100%;
}

.img-slide:hover img:nth-child(2) {
  left: 0;
}

/****/
.effect_img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.4s;
  -khtml-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.effect_img:hover {
  background-color: rgba(0, 0, 0, 0);
}

@media (max-width: 576px) {
  .detail_me .video_sidebar {
    display: none;
  }
}

#ctdmmenu1.fixed {
  position: fixed;
  z-index: 1000;
  top: 0;
}

/*sua tieu de*/
.title_home {
  font-size: 16px;
  font-weight: bold;
  background: #8CC63F;
  padding: 10px 20px 10px 10px;
  display: inline;
}

.name_product {
  font-size: 14px;
}

.name_product a {
  display: block;
  text-decoration: none;
  color: black;
}

.name_product_2 {
  text-align: center;
  margin: 6px 0px;
  font-weight: 600
}

.title_home_2 {
  font-weight: bold;
  font-size: 25px;
  display: inline;
}

.title_sidebar1 {
  color: white;
  font-size: 16px;
  font-weight: bold;
  background: #8CC63F;
  padding: 10px 25px 10px 10px;
  display: inline;
}

.title_post {
  margin: 0;
  font-size: 14px;
  font-weight: inherit;
}

.title_post a {
  display: block;
  color: black;
  text-decoration: none;
}

.heading {
  display: inline;
  font-weight: inherit;
  margin: 0 0 0 5px;
  font-size: 14px;
}

.title_post_2 {
  margin-bottom: 5px;
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
}

.title_post_2 a {
  color: black;
  text-decoration: none;
}

.info_form {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.info_form i {
  margin-right: 4px;
}

.ctdm-bl3-form-text2 span {
  flex-basis: 100%;
}

.as-menu__item .active {
  color: #e36c0a;
}


/*quick-alo*/
.quick-alo-phone {
  position: fixed;
  visibility: hidden;
  background-color: transparent;
  height: 200px;
  width: 82px;
  height: 64px;
  cursor: pointer;
  z-index: 200000 !important;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-transition: visibility .5s;
  -moz-transition: visibility .5s;
  -o-transition: visibility .5s;
  transition: visibility .5s;
  left: -61px;
  top: 74%;
}

.quick-alo-phone.quick-alo-show {
  visibility: visible;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle {
  border-color: #0c67b5;
  opacity: .99;
}

.quick-alo-ph-circle {
  width: 160px;
  height: 160px;
  top: 20px;
  left: 20px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  border: 2px solid #76b51b;
  opacity: .1;
  -webkit-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  -moz-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  -ms-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  -o-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle-fill {
  background-color: rgb(12, 103, 181);
  background-color: #a6e3fa 9;
  opacity: .75 !important;
}

.quick-alo-ph-circle-fill {
  width: 100px;
  height: 100px;
  top: 50px;
  left: 50px;
  position: absolute;
  background-color: #000;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: .1;
  -webkit-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  -ms-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-img-circle {
  background-color: #0c67b5;
}

.quick-alo-ph-img-circle {
  width: 60px;
  height: 60px;
  top: 70px;
  left: 70px;
  position: absolute;
  background: rgba(30, 30, 30, 0.1) url(../images/circle-01-1.png) no-repeat center center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: .99;
  -webkit-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  -moz-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  -ms-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  -o-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

@keyframes quick-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;
  }
}

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

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

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

@keyframes quick-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: 400px) {
  .t-11-400 {
    font-size: 11px;
  }
}


.footer {
  background-color: #a9200f !important;
  padding-top: 20px;
}



.banner-slider__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4
}

.banner-slider__box {
  border: 1px solid #fff;
  width: 100%;
  max-width: 380px;
  padding: 20px;
  background-color: rgba(0, 0, 0, .5);
  text-shadow: 0 1px rgba(0, 0, 0, .6);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .15)
}

.banner-slider__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px
}

.banner-slider__desc {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
  text-align: justify;
}

.banner-slider__btn {
  display: inline-block;
  font-size: 14px;
  line-height: 40px;
  padding: 0 40px;
  border-radius: 20px;
  background-color: #fff;
  color: #333;
  font-weight: 700;
  text-transform: uppercase
}

.banner-slider__btn:hover {
  color: #333;
  background-color: #f5f5f5;
  text-decoration: none
}

@media (max-width: 767px) {
  .banner {
    display: block;
    border-bottom: 1px solid #eee;
    height: auto;
    padding-bottom: 10px;
  }

  .banner::before {
    display: none;
  }

  .banner__bg {
    position: static;
    height: auto;
    margin-bottom: 20px;
    min-height: 80px;
  }

  .banner__title {
    color: #555;
    font-size: 20px;
  }

  .banner__breadcrumb .breadcrumb-item,
  .banner__breadcrumb .breadcrumb-item a,
  .banner__breadcrumb .breadcrumb-item+.breadcrumb-item,
  .banner__breadcrumb .breadcrumb-item+.breadcrumb-item::before,
  .banner__breadcrumb .breadcrumb-item a {
    color: #444;
  }
}
