@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes shake-anim {
  0%,
  100%,
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
}
/* Main */
:root {
  --color-main: #31397c;
  --color-phone: #24bacc;
  --color-hover: #d00;
  --color-active: rgb(145, 5, 5);
  --f-regular: "SVN-Gilroy";
  --f-medium: "SVN-Gilroy";
  --f-bold: "SVN-Gilroy";
  --f-helvet: "SVN-Gilroy";
  --fontSub: "Oswald", sans-serif;
}
.font-sub{
  font-family: var(--fontSub);
}
img{height: auto !important;}
body {
  font-family: var(--f-regular), -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
}
.wrap-container {
  position: relative;
}
@media only screen and (max-width: 850px) {
  .wrap-container {
    position: relative;
    overflow: hidden;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a,
input,
textarea {
  outline: none;
  padding: 0px;
}
a:hover {
  text-decoration: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.w-clear:after {
  display: block;
  content: "";
  clear: both;
}
.hidden {
  display: none;
}
.clear {
  clear: both;
}
.none {
  display: none;
}
.hidden-seoh {
  visibility: hidden;
  height: 0px;
  margin: 0px;
  overflow: hidden;
}
.wrap-main,
.wrap-content {
  max-width: 1230px;
  margin: 40px auto;
  padding: 0px 15px;
}
.wrap-home {
  max-width: 100%;
  padding: 0px;
}
.wrap-content {
  margin: auto;
}
.wrap-content1 {
  max-width: 1396px;
  padding: 0px 15px;
  margin: auto;
}

/*Style custom*/
.py50 {
  padding: 50px 0px;
}
@media only screen and (max-width: 850px) {
  .py50 {
    padding: 30px 0px;
  }
}
.py30 {
  padding: 30px 0px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 850px) {
  .mb-50 {
    margin-bottom: 30px;
  }
}
.mt-50 {
  margin-top: 50px;
}
@media only screen and (max-width: 850px) {
  .mt-50 {
    margin-top: 30px;
  }
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
@media only screen and (max-width: 850px) {
  .mgb-res {
    margin-bottom: 30px !important;
  }
}
.btn-outline-custom {
  border: solid 1px var(--color-main);
  color: var(--color-main);
}
.btn-outline-custom.active,
.btn-outline-custom:hover {
  border: solid 1px var(--color-main);
  background-color: var(--color-main);
  color: #ffffff !important;
}
.btn-custom {
  border: solid 1px var(--color-main);
  color: #fff;
  background-color: var(--color-main);
}
.btn-custom.active,
.btn-custom:hover {
  border: solid 1px var(--color-active);
  background-color: var(--color-active);
  color: #ffffff !important;
}

/* General */
.title-main {
  margin-bottom: 1.5rem;
  text-align: center;
}
.content-main *{
  font-family:inter !important;
}
.title-main span {
  text-transform: uppercase;
  color: var(--color-main);
  font-family: var(--fontSub);
  font-size: clamp(24px, 3.5vw, 30px);
  padding: 0px 40px;
  font-weight: 900;
  font-family: inter !important;
}
.time-main {
  margin-bottom: 0.75rem;
  color: #999999;
}
.time-main i {
  vertical-align: top;
  margin: 3px 7px 0px 0px;
}
.time-main span {
  vertical-align: top;
  display: inline-block;
}
.share {
  padding: 17px 15px 10px 15px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  margin-top: 15px;
  border-radius: 5px;
}
.share b {
  display: block;
  margin-bottom: 5px;
}
.control-owl {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0px;
  top: calc(50% - 45px / 2);
}
.control-owl button {
  opacity: 0.3;
  top: 0px;
  position: absolute;
  outline: none;
  border: 0px;
  padding: 0px;
  margin: 0px;
  display: block;
  cursor: pointer;
  color: #ffffff;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 25px;
  margin: 0px;
  background-color: #000000;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}
.control-owl button:hover {
  opacity: 1;
}
.control-owl button.owl-prev {
  left: 20px;
}
.control-owl button.owl-next {
  right: 20px;
}
.form-control,
.form-control-plaintext:not(textarea),
.custom-select {
  height: calc(1em + 1.25rem + 8px);
}
.custom-form-row {
  margin-right: -10px;
  margin-left: -10px;
}
.custom-form-row > .col,
.custom-form-row > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
.text-sm {
  font-size: 0.875rem !important;
}
.social-plugin iframe {
  z-index: 1 !important;
}
.a2a_kit .a2a_svg {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
/* Lazyload */
img.lazy {
  opacity: 0;
}
img:not(.initial) {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
img.initial,
img.loaded,
img.error {
  opacity: 1;
}
img:not([src]) {
  visibility: hidden;
}
/* User */
.wrap-user {
  width: 100%;
  max-width: 550px;
  margin: auto;
  border: 1px solid #bce8f1;
  border-radius: 5px;
}
.title-user {
  background-color: #d9edf7;
  padding: 12px 15px;
  border-radius: 5px 5px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.title-user span {
  color: #31708f;
}
.title-user a {
  color: #0056b3;
  font-size: 12px;
}
.form-user {
  padding: 20px 15px;
}
.input-user {
  margin-bottom: 0.75rem;
}
.input-user input {
  font-size: 14px;
}
.button-user {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.button-user input {
  font-size: 14px;
}
.checkbox-user,
.radio-user {
  cursor: pointer;
}
.checkbox-user input {
  top: calc(50% - 1.25rem / 2);
  height: auto;
}
.checkbox-user label {
  font-size: 14px;
  cursor: pointer;
}
.checkbox-user label::before,
.checkbox-user label::after {
  top: calc(50% - 1rem / 2);
}
.radio-user {
  margin-right: 1rem;
}
.radio-user:last-child {
  margin-right: 0px;
}
.radio-user label::before,
.radio-user label::after {
  top: calc(50% - 1rem / 2);
}
.note-user {
  font-size: 14px;
  border-top: 1px solid #ddd;
  padding-top: 0.5rem;
}
/* Cart */
#popup-cart .modal-title {
  text-transform: uppercase;
}
#popup-cart .modal-body .wrap-cart {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0px;
}
#popup-cart .modal-footer {
  padding: 0.75rem 0 0 0;
  border-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.buymore-cart {
  color: var(--color-main);
  cursor: pointer;
  margin: 0px;
}
.buymore-cart i {
  margin-right: 2px;
  margin-top: 5px;
  vertical-align: top;
  font-size: 12px;
}
.wrap-cart {
  padding: 20px 15px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.top-cart {
  border-right: 1px solid #eee;
}
@media only screen and (max-width: 991px) {
  .top-cart {
    margin-bottom: 2rem;
  }
}
.procart {
  padding: 20px 10px;
  border: 1px solid #eee;
  border-top: 0px;
}
.pic-procart {
  text-align: center;
}
.pic-procart img {
  max-height: 100px;
  height: inherit;
}
.pic-procart .del-procart {
  color: #999;
  font-size: 12px;
  display: block;
  margin-top: 5px;
  cursor: pointer;
}
.pic-procart .del-procart:hover {
  color: red;
}
.name-procart a {
  font-size: 14px;
  color: #000;
  display: block;
}
@media only screen and (max-width: 575px) {
  .name-procart a {
    font-size: 13px;
  }
}
.name-procart a:hover {
  color: var(--color-main);
}
.properties-procart {
  display: block;
}
.properties-procart p {
  display: inline-block;
  margin-bottom: 0px;
}
.properties-procart p:first-child {
  margin-right: 10px;
}
.properties-procart p strong {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .quantity-procart {
    text-align: right;
  }
}
.quantity-procart p {
  margin-bottom: 0px;
}
.quantity-counter-procart {
  border: 1px solid #dfdfdf;
  width: 100%;
  height: 30px;
  line-height: normal;
  text-align: center;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.counter-procart {
  background-color: transparent;
  border: 0px;
  width: 30%;
  color: #333;
  outline: none;
  cursor: pointer;
  font-size: 23px;
}
.counter-procart:hover,
.counter-procart:focus {
  color: var(--color-main);
}
.counter-procart:disabled {
  color: #ccc;
  cursor: not-allowed;
}
.counter-procart:disabled:hover {
  color: #ccc;
  cursor: not-allowed;
}
.counter-procart-minus {
  line-height: 26px;
}
.counter-procart-plus {
  line-height: 24px;
}
.quantity-counter-procart .quantity-procart {
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0px;
  border-right: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0px;
  color: #333;
  text-align: center;
}
.price-procart {
  width: 20%;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .price-procart {
    display: none;
  }
}
.price-procart-rp {
  display: none;
  width: 100%;
  margin-bottom: 10px;
  font-size: 13.5px;
}
@media only screen and (max-width: 767px) {
  .price-procart-rp {
    display: block;
  }
}
.price-new-cart {
  color: var(--color-main);
  margin-bottom: 0px;
}
.price-old-cart {
  color: #999;
  text-decoration: line-through;
}
.procart-label {
  border: 0px;
  background: #eee;
  padding: 10px;
  margin: 0px;
  text-transform: capitalize;
}
@media only screen and (max-width: 575px) {
  .procart-label {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) {
  .procart-label .quantity-procart p:first-child {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .procart-label .quantity-procart p:first-child {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .procart-label .quantity-procart p:last-child {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .procart-label .quantity-procart p:last-child {
    display: block;
  }
}
.money-procart {
  margin-top: 15px;
}
.total-procart {
  background: #eee;
  padding: 7px 10px;
  border: 1px solid #dddfe2;
  margin-bottom: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.total-procart p {
  margin-bottom: 0px;
  font-size: 15px;
}
.total-procart p:last-child {
  color: var(--color-main);
}
.section-cart {
  position: -webkit-sticky;
  position: sticky;
  top: 15px;
}
.title-cart {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--color-main);
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.information-cart {
  margin-bottom: 1.5rem;
}
.input-cart {
  margin-bottom: 0.5rem;
  position: relative;
}
.input-cart textarea {
  resize: none;
  height: 100px;
}
.input-cart select {
  cursor: pointer;
}
.payments-cart {
  text-align: left;
  margin-bottom: 5px;
  min-height: auto;
}
.payments-cart:last-child {
  margin-bottom: 0px;
}
.payments-cart input {
  top: calc(50% - 1.25rem / 2);
}
.payments-label {
  cursor: pointer;
  background: #eee;
  display: block;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 0px;
  color: #313131 !important;
}
.payments-label::before,
.payments-label::after {
  top: calc(50% - 1rem / 2);
}
.payments-label.active {
  background: var(--color-main);
  color: #ffffff !important;
}
.payments-info {
  opacity: 0;
  visibility: hidden;
  height: 0px;
  overflow: hidden;
  background: #f5efef;
  border-radius: 5px;
}
.payments-info p {
  margin-bottom: 1em;
}
.payments-info.active {
  padding: 10px 15px;
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
  height: auto;
}
.btn-cart {
  text-transform: capitalize;
}
.empty-cart {
  padding: 25px 30px;
  display: block;
  text-align: center;
  color: #23527c !important;
  width: 100%;
}
.empty-cart i {
  color: red;
  font-size: 70px;
}
.empty-cart p {
  margin: 15px 0px;
  color: #333;
  font-size: 18px;
}
/* Comment */
.comment-title {
  font-size: 18px;
}
.comment-show {
  display: block !important;
}
.comment-point {
  font-size: 47px;
  color: #fe302e;
}
.comment-star {
  font-size: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0.5rem;
}
.comment-star span {
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
}
.comment-star i {
  display: inline-block;
  margin: 0.1rem;
  color: #b8b8b8;
  text-rendering: auto;
  font-size: 20px;
}
.comment-star i:nth-child(1) {
  margin-left: 0;
}
.comment-star span i {
  color: #ffc120;
}
.comment-progress {
  width: 100%;
  margin-bottom: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.comment-progress:last-child {
  margin-bottom: 0px;
}
.comment-progress .progress {
  height: 12px;
  margin-right: 10px;
  margin-left: 5px;
  width: calc(100% - 90px);
  border-radius: 10px;
}
.comment-progress .progress-bar#has-rate {
  background-color: #23b445;
}
.comment-progress .progress-num {
  font-size: 15px;
  width: 25px;
  text-align: center;
  color: #787878;
}
.comment-progress .progress-total {
  font-weight: 600;
  text-align: left;
  color: #787878;
  width: 50px;
}
.comment-write {
  display: none;
}
.review-rating-star {
  font-size: 0;
}
.review-rating-star-icon .fa {
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  margin: 0.1rem;
  font-size: 21px;
  cursor: pointer;
  color: #f0c808;
}
.review-rating-star-icon .fa.star-empty {
  color: #dedddc;
}
.review-rating-star-icon .fa.star-not-empty {
  color: #f0c808;
}
.review-rating-star-icon .fa:nth-child(1) {
  margin-left: 0;
}
.review-fileuploader {
  padding: 20px 15px;
  text-align: center;
  background-color: #ffffff;
  cursor: pointer;
  border: 2px dashed #c2cdda;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.review-fileuploader .review-fileuploader-text {
  color: #90a0bc;
}
.review-file-uploader .fileuploader {
  padding: 0px;
  margin: 0px;
  background: transparent;
}
.review-file-uploader .fileuploader-items .fileuploader-items-list {
  margin: 1rem -5px 0 -5px;
}
.review-file-uploader .fileuploader-items .fileuploader-items-list:after {
  display: block;
  content: "";
  clear: both;
}
.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item {
  padding: 0px;
  width: calc(100% / 7 - 10px);
  float: left;
  margin: 0 5px 5px 5px;
  border-bottom: 0px;
}
.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .columns {
  display: block;
}
.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-thumbnail {
  width: auto;
  height: auto;
}
.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-thumbnail
  .fileuploader-item-image {
  height: auto;
  padding: 50% 0;
}
.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-thumbnail
  .fileuploader-item-image
  img {
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: none;
  transform: none;
}
.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-title {
  padding: 0px;
  margin-top: 0.5rem;
  text-align: center;
  display: none;
}
.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-actions {
  margin: 0px;
  position: absolute;
  top: 0px;
  right: -5px;
}
.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-infos
  input {
  border: 1px solid #dddddd;
  border-radius: 0.25rem;
}
.review-poster-video-avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.review-poster-video-avatar .avatar-detail {
  width: 95px;
  height: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.review-poster-video-avatar .avatar-detail img {
  max-width: 95px;
  max-height: 95px;
}
#review-content {
  height: 350px;
}
.carousel-comment-media .carousel-control a {
  opacity: 1;
  width: 45px;
  height: 45px;
  top: calc(50% - 45px / 2);
  bottom: inherit;
}
.carousel-comment-media .carousel-control a span {
  display: block;
  cursor: pointer;
  color: #222222;
  width: 45px;
  height: 45px;
  padding: 5px;
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.carousel-comment-media .carousel-control a.carousel-control-prev {
  left: 20px;
}
.carousel-comment-media .carousel-control a.carousel-control-prev span {
  padding-right: 9px;
}
.carousel-comment-media .carousel-control a.carousel-control-next {
  right: 20px;
}
.carousel-comment-media .carousel-control a.carousel-control-next span {
  padding-left: 8px;
}
.carousel-comment-media .carousel-indicators {
  position: static;
  margin: 0px 0px 0.75rem 0px;
  text-align: left;
  display: block;
}
.carousel-comment-media .carousel-indicators li {
  width: auto;
  max-width: 60px;
  height: auto;
  text-indent: inherit;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin: 0px 0px 3px 0px;
  border: 2px solid transparent;
  opacity: 1;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.carousel-comment-media .carousel-indicators li.active {
  border-color: #ffc120;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.carousel-comment-media .carousel-inner {
  max-width: 550px;
  -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
}
.carousel-comment-media
  .carousel-inner
  .carousel-lists
  .carousel-comment-media-item-video
  #file-video {
  max-width: 100%;
  width: 100%;
  height: 500px;
  vertical-align: top;
  display: inline-block;
  background-color: #000000;
}
#form-reply {
  display: none;
}
.comment-item {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 992px) {
  .comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.comment-item-poster {
  width: 200px;
  margin-right: 30px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .comment-item-poster {
    width: auto;
    margin-right: 0px;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.comment-item-letter {
  border-radius: 50%;
  background-color: #d3d2d3;
  color: #919090;
  width: 65px;
  height: 65px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  line-height: 67px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 991px) {
  .comment-item-letter {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    margin-bottom: 0;
  }
}
.comment-item-name {
  margin-bottom: 0.25rem;
  text-transform: capitalize;
}
@media only screen and (max-width: 991px) {
  .comment-item-name {
    margin-bottom: 0px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.comment-item-posttime {
  font-size: 12px;
  color: #999999;
}
.comment-item-information {
  width: calc(100% - 230px);
}
@media only screen and (max-width: 991px) {
  .comment-item-information {
    width: 100%;
  }
}
.comment-item-star {
  float: left;
  margin-right: 10px;
}
.comment-item-star i {
  font-size: 17px;
}
.comment-item-title {
  font-size: 15px;
  font-weight: 500;
}
.comment-replies {
  position: relative;
  background: #f8f9fa;
  border: 1px solid #dfdfdf;
  padding: 1.75rem 1.5rem;
}
.comment-replies:after {
  content: "";
  position: absolute;
}
.comment-replies:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -13px;
  left: 10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid #f8f9fa;
}
.comment-replies:after {
  top: -14px;
  left: 9px;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 14px solid #dfdfdf;
}
.comment-replies-item {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.comment-replies-item:last-child {
  margin-bottom: 0px;
}
.comment-replies-letter {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  line-height: 45px;
  padding-left: 1px;
  font-size: 14px;
  border-radius: 50%;
  background-color: #e5e3e5;
  color: #919090;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  text-align: center;
  margin-top: 0.125rem;
}
.comment-replies-letter.admin {
  position: relative;
  background-color: #189eff;
  text-indent: 9999px;
  overflow: hidden;
}
.comment-replies-letter.admin:before {
  content: "QTV";
  text-indent: 0px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.comment-replies-info {
  width: calc(100% - 55px);
}
.comment-replies-name {
  font-weight: 500;
  margin-bottom: 0.125rem;
}
.comment-replies [class*="btn-load-more-"] {
  border: 0px;
  outline: none;
  padding: 0px;
  background: transparent;
}
.comment-media-play {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.comment-media-play svg {
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}
.comment-media-play svg .comment-media-play-stroke-dotted {
  opacity: 0;
  stroke-dasharray: 4, 5;
  stroke-width: 1px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: spin 4s infinite linear;
  animation: spin 4s infinite linear;
  -webkit-transition: opacity 1s ease, stroke-width 1s ease;
  transition: opacity 1s ease, stroke-width 1s ease;
}
.comment-media-play svg .comment-media-play-stroke-solid {
  stroke-dashoffset: 0;
  stroke-dasharray: 300;
  stroke-width: 4px;
  -webkit-transition: stroke-dashoffset 1s ease, opacity 1s ease;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
.comment-media-play svg .comment-media-play-icon {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}
.comment-media-play:hover svg .comment-media-play-stroke-dotted {
  stroke-width: 4px;
  opacity: 1;
}
.comment-media-play:hover svg .comment-media-play-stroke-solid {
  opacity: 0;
  stroke-dashoffset: 300;
}
.comment-media-play:hover svg .comment-media-play-icon {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
/* Header */
.header {
  /* background-color: #ffffff; */
  position: sticky;
  top: 0;
  z-index: 123;
}
.header .header-top {
  color: #000;
  background-color: var(--color-main);
}
.header .header-top .wrap-content {
  padding: 9px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .header-top .wrap-content .info-header {
  margin-bottom: 0px;
}
.header .header-top .wrap-content .info-header i {
  vertical-align: top;
  margin: 3px 5px 0px 0px;
  font-size: 16px;
}
.header .header-bottom .wrap-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-bottom .wrap-content {
  padding: 5px 15px;
}
.hotline-header {
  display: inline-flex;
  justify-content: start;
  align-items: center;
}
.hotline-header p {
  font-weight: bold;
  margin-bottom: -2px;
  text-transform: capitalize;
}
.hotline-header span {
  font-weight: bold;
  color: #000;
  font-size: 20px;
  display: block;
}

.user-header a {
  color: #ffffff;
  padding-right: 9px;
  margin-right: 7px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
}
.user-header a:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 8px;
  background-color: #ffffff;
  top: calc(50% - 7px / 2);
  right: 0px;
  opacity: 0.7;
}
.user-header a:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.user-header a:last-child:after {
  display: none;
}

@media only screen and (max-width: 991px) {
  .hotline-header {
    display: none;
  }
  .logo-header {
    margin-right: 20px;
  }
}

/* Menu */
.menu {
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 991px) {
  .menu {
    display: none;
  }
}
.menu ul {
  width: 100%;
  padding: 0px;
  margin: auto;
  list-style: none;
}
.menu ul.menu-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.menu ul li {
  position: relative;
  z-index: 1;
  margin: 8.5px 7px;
}
.menu ul li.contact-us {
}
.menu ul li.contact-us a:before {
  display: none !important;
}
.menu ul li.contact-us a {
  background: var(--color-main);
  padding: 6px 10px;
  color: #fff;
  border-radius: 3px;
}
.menu ul li.contact-us:hover a {
  background: #bf1414;
  color: #fff;
}
.menu ul li.menu-line {
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.1);
}
.menu ul li a {
  display: block;
  position: relative;
  font-size: 16px;
  color: #3b3b3b;
  padding: 3px 3px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  /* font-family: 'Montserrat_sm'; */
}
.menu ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #bf1414;
  border-radius: 5px;
  left: 0px;
  bottom: 0px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s;
}
.menu ul > li > a.active::before,
.menu ul > li:hover > a::before {
  transform-origin: left;
  transform: scaleX(1);
}
.menu ul li a.has-child {
  padding-right: 16px;
  margin-right: 8px;
}
.menu ul li a.has-child:after {
  content: "";
  position: absolute;
  bottom: calc(50% - 4px / 2);
  right: 5px;
  width: 5px;
  height: 5px;
  border: 1px solid #000;
  border-top: 0px;
  border-left: 0px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu ul li ul {
  position: absolute;
  min-width: 250px;
  margin-top: -5px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: #fafafa;
  border-radius: 0.25rem;
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: perspective(600px) rotateX(-90deg);
  transform: perspective(600px) rotateX(-90deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
}
.menu ul li:hover > ul {
  -webkit-transform: perspective(600px) rotateX(0);
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
}
.menu ul li ul li {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin: 0px;
}
.menu ul li ul li a {
  font-size: 14px;
  color: #313131;
  border-bottom: 1px solid #ececec;
  padding: 10px 0px 9px 0px;
  text-transform: capitalize;
}
.menu ul li ul li a.has-child {
  margin-right: 0px;
}
.menu ul li ul li a.has-child:after {
  border-color: #313131;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu ul li ul li a.active {
  color: var(--color-main);
}
.menu ul li ul li a.active.has-child:after {
  border-color: var(--color-main);
}
.menu ul li ul li:last-child > a {
  border-bottom: 0px;
}
.menu ul li ul li:hover > a {
  color: var(--color-main);
}
.menu ul li ul li:hover > a.has-child:after {
  border-color: var(--color-main);
}
.menu ul li ul li ul {
  top: -0.75rem;
  left: 100%;
  margin-top: 0px;
}
.menu ul li a.active,
.menu ul li a:hover {
  color: #bf1414;
  transition: all 0.3s;
}

/* Search */
.search {
  width: 335px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
}
.search p {
  float: left;
  width: 45px;
  height: 45px;
  line-height: 45px;
  cursor: pointer;
  text-align: center;
  margin: 0px;
  color: #6c757d;
  font-size: 16px;
  background-color: #ffd75c;
  border-radius: 5px;
}
.search input {
  width: calc(100% - 45px);
  height: 45px;
  float: left;
  outline: none;
  padding: 0px;
  border: 0px;
  background: transparent;
  text-indent: 10px;
  font-size: 12px;
}
.search input::-webkit-input-placeholder {
  color: #313131;
}
.search input:-moz-placeholder {
  color: #313131;
}
.search input::-moz-placeholder {
  color: #313131;
}
.search input:-ms-input-placeholder {
  color: #313131;
}
/* Mmenu */
.menu-res {
  z-index: 501;
  background: #fff;
  position: relative;
  display: none;
}
@media only screen and (max-width: 991px) {
  .menu-res {
    display: block;
  }
}
.menu-bar-res {
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#menu {
  display: none;
}
#hamburger {
  display: block;
  width: 35px;
  height: 23px;
  position: relative;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
  background: #000;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0px;
}
#hamburger:before {
  top: 0px;
}
#hamburger span {
  top: 10px;
}
#hamburger:after {
  top: 20px;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
  -webkit-transition: none 0.5s ease 0.5s;
  transition: none 0.5s ease 0.5s;
  -webkit-transition-property: transform, top, bottom, left, opacity;
  -webkit-transition-property: top, bottom, left, opacity, -webkit-transform;
  transition-property: top, bottom, left, opacity, -webkit-transform;
  transition-property: transform, top, bottom, left, opacity;
  transition-property: transform, top, bottom, left, opacity, -webkit-transform;
}
.search-res-w100 {
  width: calc(100% - 45px);
  border-radius: 0.25rem;
}
.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
  top: 10px;
}
.mm-wrapper_opening #hamburger span {
  left: -50px;
  opacity: 0;
}
.mm-wrapper_opening #hamburger:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-wrapper_opening #hamburger:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mm-menu_opened {
  display: block !important;
}
.mm-slideout {
  z-index: unset;
}
/* Search Responsive */
.search-res {
  position: relative;
}
.search-res .icon-search {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  line-height: 42px;
  color: #fff;
  font-size: 17px;
  margin: 0px;
}
.search-res .icon-search.active {
  color: var(--color-main);
  background: #ffffff;
  border-radius: 100%;
}
.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-main);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
}
.search-res .search-grid p {
  float: left;
  width: 35px;
  height: 38px;
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 17px;
  display: block;
  color: var(--color-main);
  line-height: 40px;
  text-align: center;
}
.search-res .search-grid input {
  width: calc(100% - 35px);
  float: right;
  line-height: 38px;
  outline: none;
  border: none;
  color: var(--color-main);
}
.search-res .search-grid input::-webkit-input-placeholder {
  color: #313131;
}
.search-res .search-grid input:-moz-placeholder {
  color: #313131;
}
.search-res .search-grid input::-moz-placeholder {
  color: #313131;
}
.search-res .search-grid input:-ms-input-placeholder {
  color: #313131;
}
/* Slideshow */
.slideshow {
  position: relative;
}
.slideshow-item {
  display: block;
  cursor: pointer;
}
.slideshow:hover .control-slideshow {
  opacity: 1;
}
.control-slideshow {
  opacity: 0;
}
/* Partner */
/* .wrap-partner { padding: 0px 15px; } */
.wrap-partner .wrap-content {
  position: relative;
}
.partner {
  display: block;
  max-width: 175px;
  margin: 0px auto;
}
/* Breadcrumb */
.breadCrumbs {
  background-color: #eee;
}
.breadCrumbs .wrap-content {
  padding: 0.75rem 15px;
}
.breadCrumbs .wrap-content .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0;
}
.breadCrumbs .wrap-content .breadcrumb-item a {
  color: #212529;
}
.breadCrumbs .wrap-content .breadcrumb-item.active a {
  color: #6c757d;
}

/*TiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªu chiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â*/
.criteria {
  padding: 10px 20px;
}
.criteria-name {
  margin-bottom: 0.25rem;
}
.criteria-name a {
  font-family: var(--f-bold);
  font-size: 14px;
  color: #eb3e52;
  line-height: 1.5;
}
.criteria-name a.text-split {
  -webkit-line-clamp: 2;
}
.criteria-desc {
  color: #8a8888;
  line-height: 1.6;
  font-size: 13px;
}
.criteria .criteria-image {
  transition: all linear 0.3s;
}
.criteria:hover .criteria-image {
  transform: rotateY(180deg);
  transition: all linear 0.3s;
  -webkit-transition: ;
  -moz-transition: ;
  -ms-transition: ;
  -o-transition: ;
}

/* Intro */
.wrap-intro {
  background-color: #eeeadd;
}
.news-intro:before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 50px);
  top: 10px;
  left: 90px;
  background-color: #cacaca;
}
.news-scroll:before,
.news-scroll:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 85px;
  border-radius: 100%;
  background-color: #cacaca;
}
.news-scroll:before {
  top: 10px;
}
.news-scroll:after {
  bottom: 40px;
}
.news-control {
  left: 85px;
  font-size: 13px;
  opacity: 0.5;
  z-index: 1;
  cursor: pointer;
}
.news-control:hover {
  opacity: 1;
  color: var(--color-main);
}
.news-control#up {
  top: -10px;
}
.news-control#down {
  bottom: 20px;
}
.news-shadow {
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.news-shadow .news-shadow-time {
  font-size: 13px;
  width: 75px;
  margin-right: 45px;
}
.news-shadow .news-shadow-time:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 20px / 2);
  right: -26px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/pattern-news.png);
}
.news-shadow .news-shadow-article {
  width: calc(100% - 120px);
  padding: 14px 15px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #cecabb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.news-shadow .news-shadow-article:before {
  content: "";
  position: absolute;
  top: calc(50% - 26px / 2);
  left: -13px;
  z-index: 0;
  border-top: 13px solid transparent;
  border-right: 13px solid #cecabb;
  border-bottom: 13px solid transparent;
}
.news-shadow .news-shadow-article:after {
  content: "";
  position: absolute;
  top: calc(50% - 24px / 2);
  left: -11px;
  z-index: 1;
  border-top: 12px solid transparent;
  border-right: 11px solid #ffffff;
  border-bottom: 12px solid transparent;
}
.news-shadow .news-shadow-article .news-shadow-image {
  margin-right: 10px;
  width: 90px;
}
.news-shadow .news-shadow-article .news-shadow-info {
  width: calc(100% - 100px);
}
.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name {
  height: 36px;
  font-size: 15px;
  font-weight: 700;
}
.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a {
  color: #222222;
}
.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a:hover {
  color: var(--color-main);
}
.news-shadow
  .news-shadow-article
  .news-shadow-info
  .news-shadow-name
  a
  .text-split {
  -webkit-line-clamp: 2;
}
.news-shadow .news-shadow-article .news-shadow-info .news-shadow-desc {
  height: 38px;
  font-size: 13px;
}
.news-shadow
  .news-shadow-article
  .news-shadow-info
  .news-shadow-desc.text-split {
  -webkit-line-clamp: 2;
}
/* Video */
.video {
  cursor: pointer;
  margin-bottom: 1rem;
}
.video .video-image {
  position: relative;
  margin-bottom: 0.75rem;
}
.video .video-image:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-repeat: no-repeat;
  background-image: url(../images/play.png);
}
.video .video-name {
  text-align: center;
  font-size: 16px;
  color: #212529;
  margin-bottom: 0px;
  font-weight: bold;
  text-transform: uppercase;
}
/* .listvideos{width:100%;height:40px;padding:0px 10px;border:1px solid #ccc;color:var(--color-black);margin-top:10px;cursor:pointer;} */
/* .video-main{position:relative;height:320px;}
.video-main iframe{position:absolute;width:100%;height:100%;top:0px;left:0px;}
.subvideo{width: 100%;height:320px;overflow: hidden;}
.runvideo{margin: -5px 0px;}
.asubvideo{margin: 5px 0px;} */
/* Album */
.album {
  cursor: pointer;
}
.album .album-image {
  margin-bottom: 0.75rem;
  position: relative;
}
.album-expand {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: #00000033;
  opacity: 0;
}
.album-expand i {
  font-size: 35px;
  color: #fff;
}
.album:hover .album-expand {
  opacity: 1;
}
.album .album-name {
  margin-bottom: 0px;
  text-align: center;
}
.album .album-name a {
  display: block;
  font-size: 16px;
  color: #212529;
  margin-bottom: 0px;
  font-weight: bold;
}
/* Brand */
.wrap-brand {
  margin-bottom: 50px;
  padding: 0px 15px;
}
.wrap-brand .wrap-content {
  position: relative;
}
.brand {
  display: block;
  border: 1px solid #eee;
  max-width: 160px;
  margin: 0px auto;
}
/* Product */
.grid-product {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .grid-product {
    gap: 15px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 575px) {
  .grid-product {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gr-100 {
  grid-column: 4 span !important;
}

/* .product { float: left; width: 23.5%; margin: 0 2% 2% 0; }
.product:nth-child(4n + 1) { clear: both; }
.product:nth-child(4n) { margin-right: 0px; } */
.box-product {
  position: relative;
  display: block;
}
.pic-product {
  background: #ffffff;
}
.pic-product img {
  width: 100%;
  border-radius: 0px;
}
.name-product {
  margin-bottom: 0.25rem;
}
.name-product a.text-split {
  -webkit-line-clamp: 1;
}
.name-product a:hover {
  color: var(--color-hover);
}
.price-product {
  margin-bottom: 0px;
}
/* .price-product span { font-weight: 700; } */
.price-new {
  font-size: 16px;
  color: #000;
  color: #bf1414;
  font-family: "Mulish_ext";
}
.price-old {
  padding-left: 10px;
  font-size: 13px;
  color: #6c757d;
  text-decoration: line-through;
}
.price-per {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ffffff;
  background: var(--color-main);
  font-size: 11px;
  border-radius: 2px;
  width: 45px;
  height: 25px;
  text-align: center;
  line-height: 25px;
}
.cart-product {
  margin-bottom: 0px;
}
.cart-product span {
  cursor: pointer;
  color: #ffffff;
  text-transform: capitalize;
  text-align: center;
}

/*Xem nhanh*/
#popup-quickview .modal-dialog {
  max-width: 1140px;
}
.box-quickview {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(150%, -50%);
  display: grid;
  opacity: 1;
  z-index: 2;
}
.product-quick-view {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.product-quick-view i {
  color: #fff;
  font-size: 14px;
}
.box-product:hover .box-quickview {
  opacity: 1;
  transform: translate(0%, -50%);
}
.product-quick-view:hover {
  background-color: var(--color-active);
}
/* Product Detail */
/* .grid-pro-detail { margin-bottom: 3rem; } */
.left-pro-detail {
  position: relative;
  text-align: center;
}
.left-pro-detail .MagicZoom {
  border: 1px solid #ccc;
  padding: 7px;
  border-radius: 5px;
  background-color: #ffffff;
}
.gallery-thumb-pro {
  position: relative;
  margin-top: 10px;
}
.owl-pro-detail {
  padding: 0px 30px;
}
.control-pro-detail {
  top: calc(50% - 15px / 2);
}
.control-pro-detail button {
  background-color: #eee;
  color: #222222;
  opacity: 1;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 16px;
}
.control-pro-detail button:hover {
  opacity: 0.7;
}
.control-pro-detail button.owl-prev {
  left: 0px;
}
.control-pro-detail button.owl-next {
  right: 0px;
}
.thumb-pro-detail {
  display: block !important;
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
  background-color: #ffffff;
}
.thumb-pro-detail.mz-thumb.mz-thumb-selected {
  border-color: #cecfd2;
}
.thumb-pro-detail img {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-filter: brightness(100%) !important;
  filter: brightness(100%) !important;
  border-bottom: 0px !important;
  padding-bottom: 0px !important;
}
.title-pro-detail {
  text-transform: capitalize;
  font-size: 20px;
  display: block;
  font-weight: 700;
}
.comment-pro-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.social-plugin-pro-detail {
  margin-bottom: 1rem;
  margin-top: 0px !important;
}
.desc-pro-detail {
  margin-bottom: 1rem;
}
.attr-pro-detail {
  list-style: none;
  padding: 0px;
}
.attr-pro-detail li {
  margin-bottom: 0.5rem;
}
.attr-label-pro-detail {
  margin: 0px 5px 0px 0px;
}
.attr-label-pro-detail.d-block {
  display: block;
  margin: 0px 0px 5px 0px;
}
.attr-content-pro-detail {
  display: inline-block;
  margin-bottom: 0px;
}
.price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-main);
}
.price-old-pro-detail {
  font-weight: 500;
  color: #6c757d;
  text-decoration: line-through;
  padding-left: 10px;
}
.color-pro-detail {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 35px;
  height: 30px;
  margin: 0px 0px 3px 0px;
  border: 1px solid #eee;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.size-pro-detail {
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 3px 10px 4px 10px;
  display: inline-block;
  position: relative;
}
.size-pro-detail.active {
  border-color: #e5101d;
  color: #e5101d;
}
.color-pro-detail.active {
  border-color: #e5101d;
  color: #e5101d;
}
.size-pro-detail.active:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-image: url(../images/check-cart.png);
}
.color-pro-detail.active:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-image: url(../images/check-cart.png);
}
.color-pro-detail input[type="radio"] {
  display: none;
}
.size-pro-detail input[type="radio"] {
  display: none;
}
.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.quantity-pro-detail span {
  line-height: 25px;
  padding: 0px;
  width: 30px;
  height: 30px;
  color: #5f5f5f;
  cursor: pointer;
  font-size: 22px;
  border: 1px solid #cccccc;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0px;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0px;
}
.quantity-pro-detail input {
  height: 30px;
  border: 1px solid #cccccc;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 14px;
  padding: 5px;
}
.cart-pro-detail {
  margin-bottom: 1rem;
}
.cart-pro-detail a {
  font-size: 14px;
  color: #ffffff !important;
  text-transform: uppercase;
}
.btn-cart-main {
  background-color: var(--color-main);
  border-color: var(--color-main);
  color: #ffffff !important;
}
.btn-cart-main:hover {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
}
@media only screen and (max-width: 767px) {
  .cart-pro-detail a {
    width: 100%;
  }
  .cart-pro-detail a:first-child {
    margin-right: 0px;
    margin-bottom: 0.5rem;
  }
  .cart-pro-detail a i {
    display: none;
  }
}
.tags-pro-detail a {
  float: left;
  font-size: 13px;
  padding-bottom: 0.375rem;
  margin: 0px 5px 5px 0px;
}
.tags-pro-detail a i {
  font-size: 11px;
  margin: 5px 5px 0px 0px;
}
.tabs-pro-detail {
  margin-top: 2rem;
}
.tabs-pro-detail .nav-tabs .nav-link {
  border-top-width: 3px;
  font-size: 13px;
}
.tabs-pro-detail .nav-tabs .nav-link.active {
  border-top-color: #555555;
}
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  border-top-color: #555555;
}
/*Xem thÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªm*/
.content_product {
  overflow: hidden;
  max-height: 450px;
}
.content_product.h-full {
  height: 100% !important;
  max-height: 100%;
}
.show-more {
  font-size: 14px;
}
.show-more::before {
  height: 55px;
  margin-top: -45px;
  content: -webkit-gradient(
    linear,
    0% 100%,
    0% 0%,
    from(#fff),
    color-stop(0.2, #fff),
    to(rgba(255, 255, 255, 0))
  );
  display: block;
}

/* News */
.news {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 575px) {
  .news .news-image {
    margin-bottom: 1rem;
  }
}
.news .news-name {
  margin-bottom: 0.5rem;
}
.news .news-name a {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}
.news .news-name a.text-split {
  -webkit-line-clamp: 2;
}
.news .news-name a:hover {
  color: var(--color-hover);
}
.news .news-time {
  color: #84878a;
  margin-bottom: 0.25rem;
}
.news .news-desc {
  color: #333333;
  margin-top: 5px;
  line-height: 22px;
}
.othernews b {
  margin-bottom: 10px;
}
.list-news-other {
  padding-left: 17px;
  list-style: disc;
}
.list-news-other li {
  margin-bottom: 10px;
}
.list-news-other li a {
  text-transform: none;
  color: #333333;
}
.list-news-other li a:hover {
  color: var(--color-hover);
}
@media only screen and (max-width: 991px) {
  .img-auto img {
    width: auto !important;
    height: auto !important;
  }
}
/* Contact */
.contact-article {
  margin-bottom: 3rem;
}
.contact-input {
  position: relative;
  margin-bottom: 15px;
}
.contact-input textarea {
  resize: none;
  height: 150px;
}
.contact-input .custom-file-label::after {
  content: attr(title);
}
.contact-map {
  position: relative;
  height: 500px;
}
.contact-map iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100% !important;
  height: 100% !important;
}
/* Toc */
.box-readmore {
  padding: 8px 15px;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}
.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}
.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}
.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0px;
  padding-left: 0px !important;
  margin-top: 8px;
}
.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}
.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}
.box-readmore ul li a {
  color: #333333;
  cursor: pointer;
  font-weight: 600;
}
.box-readmore ul li a:hover {
  color: #767676;
}
/* Newsletter */
.mw-booking .modal-dialog {
  max-width: 500px;
  margin: 1.75rem auto;
}
.btn-booking {
  position: fixed;
  right: 15px;
  bottom: 560px;
  z-index: 999;
  transform: translateX(78%);
}
.btn-booking:hover {
  transform: translateX(0%);
}

.newsletter-input {
  position: relative;
}
.newsletter-input input {
  height: 45px;
  font-size: 14px;
  color: #333;
}
.newsletter-input .label {
  position: absolute;
  top: 13px;
  left: 12px;
  font-size: 13px;
  color: #888;
  transform-origin: 0 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
  pointer-events: none;
}
.newsletter-input input:not(:-moz-placeholder-shown) + .label {
  transform: translate3d(0, -22px, 0) scale(0.85);
  background-color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  left: 5px;
}
.newsletter-input input:not(:-ms-input-placeholder) + .label {
  transform: translate3d(0, -22px, 0) scale(0.85);
  background-color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  left: 5px;
}
.newsletter-input input:not(:placeholder-shown) + .label {
  transform: translate3d(0, -22px, 0) scale(0.85);
  background-color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  left: 5px;
}
.newsletter-input input:focus + .label {
  transform: translate3d(0, -22px, 0) scale(0.85);
  background-color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  left: 5px;
}
.newsletter-textarea {
  position: relative;
}
.newsletter-textarea .label {
  position: absolute;
  top: 13px;
  left: 12px;
  font-size: 13px;
  color: #888;
  transform-origin: 0 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
  pointer-events: none;
}
.newsletter-textarea textarea:not(:-moz-placeholder-shown) + .label {
  transform: translate3d(0, -22px, 0) scale(0.85);
  background-color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  left: 5px;
}
.newsletter-textarea textarea:not(:-ms-textarea-placeholder) + .label {
  transform: translate3d(0, -22px, 0) scale(0.85);
  background-color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  left: 5px;
}
.newsletter-textarea textarea:not(:placeholder-shown) + .label {
  transform: translate3d(0, -22px, 0) scale(0.85);
  background-color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  left: 5px;
}
.newsletter-textarea textarea:focus + .label {
  transform: translate3d(0, -22px, 0) scale(0.85);
  background-color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  left: 5px;
}

/* Footer */
.footer-article {
  background-color: var(--color-main);
}
.footer-article .wrap-content {
  padding: 60px 15px;
}
.footer-title {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer-ul li {
  margin-bottom: 10px;
}
.footer-ul li:last-child {
  margin-bottom: 0px;
}
.footer-ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-ul li a:hover {
  text-decoration: underline;
}
.footer-tags {
  background: #eee;
}
.footer-tags .wrap-content {
  padding: 30px 15px;
}
.footer-tags-lists {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer-tags-lists li {
  float: left;
}
.footer-tags-lists li a {
  padding-bottom: 0.375rem;
}
.footer-powered {
  color: #111;
  /* border-top: 1px solid #d9d9d987; */
}
.footer-powered .wrap-content {
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-statistic {
  text-align: right;
}
.footer-statistic span {
  padding-right: 10px;
}
.footer-statistic span:last-child {
  padding-right: 0px;
}
#footer-map {
  position: relative;
  height: 500px;
}
#footer-map iframe {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0px !important;
  left: 0px !important;
}
@media only screen and (max-width: 991px) {
  .footer-powered,
  .footer-statistic {
    text-align: center !important;
  }
}
/* FOOTER MAPS TAB */
.footer_map_tab {
  width: 100%;
  height: 500px;
  clear: both;
  position: relative;
}
.map_frame {
  width: 100%;
  height: 100%;
}
.map_frame iframe {
  width: 100%;
  height: 100%;
}
.wrap_map {
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
}

/* Like Share */
.social-plugin {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.social-plugin .at-share-btn {
  margin-bottom: 0px !important;
}
.social-plugin .zalo-share-button {
  margin-left: 3px;
}
/* Paging */
.pagination-home .pagination .page-item .page-link {
  color: #555555;
  font-size: 0.875rem;
}
.pagination-home .pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: #555555;
  border-color: #555555;
}
/* Paging Ajax */
.pagination-ajax {
  text-align: center;
}
.pagination-ajax a {
  display: inline-block;
  vertical-align: top;
  margin: 0px 3px 3px 3px;
  width: 35px;
  height: 35px;
  line-height: 33px;
  color: #666 !important;
  border: 1px solid #e6e6e6;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none !important;
  background-color: #ffffff;
}
.pagination-ajax a.current,
.pagination-ajax a:hover {
  color: #ffffff !important;
  border-color: var(--color-main);
  background-color: var(--color-main);
}
.pagination-ajax a.first,
.pagination-ajax a.last,
.pagination-ajax a.prev,
.pagination-ajax a.next {
  text-indent: -9999px;
  position: relative;
  background-color: #ffffff !important;
}
.pagination-ajax a.first:before,
.pagination-ajax a.last:before,
.pagination-ajax a.prev:before,
.pagination-ajax a.next:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
}
.pagination-ajax a.first:before {
  background-image: url(../images/page-first.png);
}
.pagination-ajax a.last:before {
  background-image: url(../images/page-last.png);
}
.pagination-ajax a.prev:before {
  background-image: url(../images/page-prev.png);
}
.pagination-ajax a.next:before {
  background-image: url(../images/page-next.png);
}
/* Popup */
#popup .modal-body {
  padding: 0px;
}
/* Hidden Google Captcha */
.grecaptcha-badge {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  overflow: hidden;
}
/* Hidden Check Grammar Coccoc */
coccocgrammar {
  display: none;
}
/* Scroll Top */
/* .scrollToTop { width: 41px; height: 41px; text-align: center; font-weight: bold; color: #444; text-decoration: none; position: fixed; bottom: 65px; right: 25px; display: none; z-index: 10; cursor: pointer; } */
.scrollToTop {
  position: fixed;
  bottom: 35px;
  left: 10px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 1001010;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.scrollToTop.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.scrollToTop::before {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f102";
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--color-main);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.scrollToTop svg path {
  fill: none;
}
.scrollToTop svg.progress-circle path {
  stroke: var(--color-main);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

/* Text Hide */
.text-split {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.line1 {
  -webkit-line-clamp: 1;
}
.line2 {
  -webkit-line-clamp: 2;
}
.line3 {
  -webkit-line-clamp: 3;
}
.line4 {
  -webkit-line-clamp: 4;
}
.line5 {
  -webkit-line-clamp: 5;
}

/* Transition All */
.transition,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover > ul,
.scale-img img,
.scale-img:hover > img,
.btn-frame .kenit-alo-circle-fill,
.support-online .kenit-alo-circle-fill {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
/* Scale IMG */
.scale-img {
  overflow: hidden;
  display: block;
}
.scale-img img {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.scale-img:hover > img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
/* Blink */
.blink {
  -webkit-animation-name: blink;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blink;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
/* Button Frame */
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-phone);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}
.btn-frame .animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: var(--color-phone);
  opacity: 0.5;
}
.btn-frame .zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
.btn-frame .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
/* Zalo */
.btn-zalo {
  bottom: 122px;
}
/* Phone */
.btn-phone {
  bottom: 40px;
}
/* Messenger */
.js-facebook-messenger-container.closed {
  display: none !important;
}
.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
  color: #404040;
  background: #fff;
}
.js-facebook-messenger-tooltip.closed {
  display: none !important;
}
.js-facebook-messenger-box,
.js-facebook-messenger-button {
  z-index: 999;
}
.js-facebook-messenger-tooltip {
  z-index: 999;
  display: none;
  position: fixed;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
  box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
  z-index: 1000000000000000019884624838656;
}
.js-facebook-messenger-close-tooltip {
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
}
.js-facebook-messenger-box {
  z-index: 999;
}
.js-facebook-messenger-box.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
.js-facebook-messenger-box.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}
.js-facebook-messenger-box {
  display: block;
  position: fixed;
  cursor: pointer;
  bottom: 150px;
  right: 17px;
  width: 56px;
  height: 56px;
  text-align: center;
  background: var(--color-phone);
  border-radius: 100%;
  overflow: hidden;
  z-index: 99;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}
.js-facebook-messenger-box.rotate svg#fb-msng-icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js-facebook-messenger-box svg#fb-msng-icon {
  width: 32px;
  height: 33px;
  position: absolute;
  top: 13px;
  left: 12px;
  opacity: 1;
  overflow: hidden;
  -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  -webkit-transition: opacity 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
}
.js-facebook-messenger-box.rotate svg#close-icon {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.js-facebook-messenger-box svg#close-icon {
  opacity: 0;
  width: 19px;
  height: 20px;
  position: absolute;
  top: 19px;
  left: 19px;
  -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,    -webkit-transform 160ms ease-in-out;
  -webkit-transition: opacity 160ms ease-in-out,    -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,    -webkit-transform 160ms ease-in-out;
  -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,    -webkit-transform 160ms ease-in-out;
  -ms-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,    -webkit-transform 160ms ease-in-out;
  -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,    -webkit-transform 160ms ease-in-out;
}
.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
  z-index: 1000;
}
.js-facebook-messenger-container {
  position: fixed;
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  bottom: 110px;
  right: 90px;
  border-radius: 10px;
  pointer-events: none;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06),
    0 2px 32px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
  -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
  -webkit-transition: opacity 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
  transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
  transition: transform 160ms ease-in-out, opacity 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
}
.js-facebook-messenger-top-header {
  width: 220px;
  color: #ffffff;
  background: var(--color-phone);
  display: block;
  position: relative;
  width: 220px;
  background: var(--color-phone);
  color: #ffffff;
  text-align: center;
  line-height: 1;
  padding: 10px;
  font-size: 14px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}
.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
  z-index: 1000;
}
.js-facebook-messenger-top-header {
  color: #ffffff;
  background: var(--color-phone);
  width: 220px;
}
.js-facebook-messenger-tooltip {
  color: #404040;
  background: #fff;
}
.js-facebook-messenger-container.open {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  pointer-events: all;
}
.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
}
.js-facebook-messenger-box.open svg#fb-msng-icon {
  opacity: 0;
}
.js-facebook-messenger-box.rotate.open svg#close-icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js-facebook-messenger-box.open svg#close-icon {
  opacity: 1;
}
/* Cart Fix */
.cart-fixed {
  position: fixed;
  right: 20px;
  bottom: 480px;
  z-index: 10;
  background: var(--color-phone);
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff !important;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cart-fixed i {
  font-size: 20px;
}
.cart-fixed span {
  position: absolute;
  top: 0px;
  right: -5px;
  color: #ffffff;
  width: 25px;
  height: 25px;
  background: var(--color-main);
  text-align: center;
  line-height: 25px;
  font-size: 11px;
  border-radius: 100%;
}
@media only screen and (max-width: 991px) {
  .cart-fixed {
    bottom: 320px !important;
  }
}
/* Toolbar */
.toolbar {
  background: var(--color-main);
  padding: 2vw;
  bottom: 5px;
  position: fixed;
  z-index: 500;
  height: auto;
  left: 5px;
  right: 5px;
  border-radius: 0.5rem;
}
.toolbar ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.toolbar ul li {
  text-align: center;
  width: 25%;
}
.toolbar ul li a {
  display: block;
  width: 100%;
  cursor: pointer;
}
.toolbar ul li a img {
  height: 6vw;
  width: auto;
}
.toolbar ul li a span {
  font-weight: 400;
  color: #ffffff;
  font-size: 3vw;
  display: block;
}
/* Fixbar */
.fixbar {
  bottom: 0;
  display: block;
  background: #f0eff4;
  border-top: 1px solid #ddd;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  margin: 0;
  z-index: 500;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 50px;
}
.fixbar ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.fixbar ul li {
  margin: 0 auto 10px;
  text-align: center;
  width: 25%;
  float: left;
}
.fixbar .icon-cart-mobile,
.fixbar .icon-cart-new,
.fixbar .icon-home-new,
.fixbar .icon-hotdeal-new {
  width: 20px;
  height: 20px;
  display: block;
  margin: 8px auto 0;
}
.fixbar .icon-cart-mobile {
  background: url(../images/cart-mobile.png) no-repeat;
}
.cart-total-header-mobile {
  font-size: 10px;
  position: absolute;
  background: red;
  color: #fff !important;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  line-height: 15px;
  top: 5px;
  margin-left: 5px;
}
.fixbar ul li a {
  font-size: 11px;
  text-decoration: none;
  color: #333;
}
.fixbar ul li a i {
  font-size: 20px;
}
/* Plugbar */
.plugbar {
  position: fixed;
  bottom: 0;
  left: 0;
  border-top: 1px solid #eae6e6;
  width: 100%;
  right: 0;
  max-width: 767px;
  margin: 0 auto;
  background: #ffffff;
  padding: 9px 10px 10px 7px;
  z-index: 10;
}
.plugbar ul {
  list-style: none;
  padding: 0;
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.plugbar ul li {
  width: 20%;
  float: left;
}
.plugbar ul li a {
  display: block;
  color: #696969;
  font-size: 12px;
  text-align: center;
  position: relative;
}
.plugbar ul li a i {
  font-size: 20px;
  color: #696969;
}
.plugbar ul li a span {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -40px;
  left: calc(50% - 50px / 2);
  font-size: 14px;
  display: block;
  border: 1px solid rgba(234, 230, 230, 0.5);
  border-radius: 100%;
}
/* Combo Phone */
.support-online {
  position: fixed;
  z-index: 999;
  left: 10px;
  bottom: 0px;
}
.support-online a {
  position: relative;
  margin: 20px 10px;
  text-align: left;
  width: 40px;
  height: 40px;
}
.support-online i {
  width: 40px;
  height: 40px;
  background: #43a1f3;
  color: #ffffff;
  border-radius: 100%;
  font-size: 20px;
  text-align: center;
  line-height: 1.9;
  position: relative;
  z-index: 999;
}
.support-online a {
  display: block;
}
.support-online a span {
  border-radius: 2px;
  text-align: center;
  background: #67b634;
  padding: 9px;
  display: none;
  width: 180px;
  margin-left: 10px;
  position: absolute;
  color: #ffffff;
  z-index: 999;
  top: 0px;
  left: 40px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -webkit-animation: headerAnimation 0.7s 1;
  animation: headerAnimation 0.7s 1;
}
.support-online a:hover span {
  display: block;
}
.support-online a span:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #67b634 transparent transparent;
  position: absolute;
  left: -10px;
  top: 10px;
}
.support-online .kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(0, 175, 242, 0.5);
  opacity: 0.75;
  right: -10px;
}
.support-online .kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  border-color: #0089b9;
  opacity: 0.5;
}
.support-online .support-online .btn-support {
  cursor: pointer;
}
.support-online .mes i {
  background: orange;
}
.support-online .sms i {
  background: red;
}
.support-online .call-now i {
  background: green;
}
/* .support-online .animated.infinite{animation-iteration-count:infinite;}
.support-online .zoomIn{animation-name:zoomIn;}
.support-online .animated{animation-duration:1s;animation-fill-mode:both;}
.support-online .pulse{animation-name:pulse;}  */

/* Phone Switch */
.widget-mobile {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 9999999;
}
#my-phone-circle {
  position: relative;
  width: 50px !important;
  height: 50px !important;
}
.wcircle-open .wcircle-icon i:before {
  content: "\f00d";
}
.wcircle-icon {
  background: #1282fc;
  border-radius: 50%;
  position: relative !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.wcircle-icon:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background: rgba(18, 130, 252, 0.5);
  border: 1px solid #ffffff;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  -webkit-animation: pulse 1s infinite ease-in-out;
  animation: pulse 1s infinite ease-in-out;
}
.wcircle-icon:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background: rgba(18, 130, 252, 0.5);
  border-radius: 50%;
  left: -15px;
  top: -15px;
  -webkit-animation: zoomIn 2s infinite ease-in-out;
  animation: zoomIn 2s infinite ease-in-out;
}
.wcircle-menu {
  position: absolute !important;
  left: 0;
  top: 0;
  display: none;
}
.wcircle-menu-item {
  width: 50px;
  height: 50px;
  background: #1282fc;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.wcircle-menu-item img {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
}
.wcircle-menu-item i {
  font-size: 25px;
  color: #ffffff;
  position: relative;
  z-index: 9999;
}
.wcircle-icon i {
  font-size: 25px;
  color: #ffffff;
  position: relative;
  z-index: 9999;
}
.shake-anim {
  -webkit-animation: shake-anim 1s infinite ease-in-out;
  animation: shake-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

/**/
.box-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 80px;
}
.category-box .title-category {
  margin: 0;
  text-align: left;
  padding: 8px 15px;
  background-color: var(--color-main);
  border-radius: 5px 5px 0px 0px;
}
.title-category span {
  color: #fff !important;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--f-bold);
}
.category-box ul {
  padding: 0px;
  margin: 0;
  list-style: none;
}
.category-box i {
  margin-right: 5px;
}
.box_category_list {
  max-height: 500px;
  overflow-y: auto;
  padding: 0;
  list-style: inside;
  background-color: #fff;
  border: solid 1px #eee;
  border-top: none;
  border-radius: 0px 0px 5px 5px;
}
.box_category_list li {
  /*border-top: solid 1px #ccc;*/
  position: relative;
  list-style: none;
}
.box_category_list > li:first-child {
  border-top: none;
}
.box_category_list li a {
  font-size: 14px;
  color: #666;
  text-transform: capitalize;
  line-height: 1.5;
  padding: 5px 15px;
}
.box_category_list li a:hover {
  color: var(--color-hover);
}
.box_category_list li span {
  margin-top: 5px;
}
.box_category_list li span i {
  color: #ccc !important;
}
.box_category_list li .toggle {
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  right: 5px;
  cursor: pointer;
}
.box_category_list li .toggle i {
  color: #ccc;
}
.box_category_list li ul {
  display: block;
}
.box_category_list li ul li {
  padding: 0px 15px;
}
.box_category_list li ul li a {
  text-transform: capitalize;
}
/* width */
.box-sticky ::-webkit-scrollbar {
  width: 3px;
}
/* Track */
.box-sticky ::-webkit-scrollbar-track {
  background: #ccc;
}
/* Handle */
.box-sticky ::-webkit-scrollbar-thumb {
  background: var(--color-main);
}
/* Handle on hover */
.box-sticky ::-webkit-scrollbar-thumb:hover {
  background: var(--color-hover);
}

/* //style */
.sologan {
  width: 40%;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.info-header1 {
  font-size: 16px;
  color: #fff;
}
.info-header1 span {
  font-family: "Mulish_ext";
  color: #fff;
}
.info-header1 img {
  padding-right: 5px;
}
/* gioithieu */
.box_gioithieu {
  justify-content: space-between;
  display: flex;
}

.box_gioithieu > div:nth-child(1) {
  width: 41%;
  text-align: center;
  position: relative;
}

.box_gioithieu > div:nth-child(2) {
  width: 52%;
}

.doinet {
  font-size: 45px;
  color: #272727;
  line-height: 1;
  font-family: "VL_Miss_Le_Gatees";
  margin-bottom: 5px;
}

.gioithieu_vi {
  font-size: 40px;
  color: var(--color-main);
  line-height: 1.5;
  font-family: var(--fontSub);
  font-weight: bold;
}

.gioithieu_mota {
  color: #000;
  text-align: justify;
  line-height: 2;
}

.xemthem {
  font-size: 14px;
  color: #fff !important;
  height: 50px;
  width: 170px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  margin-top: 20px;
  background-color: var(--color-main);
  margin-bottom: 45px;
  font-family: "MulishBold";
  border-radius: 15px;
}

.gt_txt {
  margin-bottom: 20px;
}

.img_ps {
  position: absolute;
  bottom: 0;
  right: 0px;
  transform: translateX(65%) translateY(-18%);
  padding: 10px;
  z-index: 11;
}

.gt_1_txt {
  padding-top: 30px;
  padding-right: 30%;
}

.gt_1_txt .gioithieu_vi {
  margin-bottom: 10px;
}

.gioithieu {
  padding: 60px 0px;
  height: 100vh;
  display: flex;
}
.xemthem:hover {
  background-color: #ae2512;
  transition: all 0.3s;
}
.hover_xam {
  cursor: pointer;
}
.noidung_top {
  text-align: center;
  margin-bottom: 30px;
}
.title_h2 {
  font-size: 36px;
  color: #000;
  font-family: var(--fontSub);
  text-transform: uppercase;
}
.slogan {
  color: #000;
  max-width: 690px;
  margin: auto;
  margin-top: 5px;
}
.title_h2.mau {
  color: #fff;
}
.slogan.mau {
  color: #fff;
}
.box_vidsao {
  text-align: center;
}
.name_vs {
  font-size: 18px;
  color: #fff;
  font-family: "Mulish_ext";
  margin-top: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.desc_vs {
  font-size: 15px;
  color: #fff;
}
.visaochon {
  background-color: var(--color-main);
  padding: 60px 0px;
}
.box_vidsao .vidsao-image img {
  transform: rotate(0deg);
  transition: all 0.3s;
}
.box_vidsao:hover .vidsao-image img {
  transform: rotate(360deg);
  transition: all 0.3s;
}
.header-bottom {
  position: relative;
  z-index: 11;
}

/* //sp_cap */
.dm1 li {
  list-style: none;
}
.dm1 li a {
  font-size: 14px;
  color: #000;
  display: inline-block;
  cursor: pointer;
  padding: 10px 30px;
  border-radius: 10px;
  text-transform: uppercase;
  background-color: #f4f4f4;
  font-family: "MulishBold";
}
.dm1 {
  justify-content: center;
}
.dm1 li a.active {
  background-color: var(--color-main);
  color: #fff;
}
.dm1 li a:hover {
  background-color: var(--color-main);
  transition: all 0.3s;
  color: #fff !important;
}
.li_a + .li_a {
  margin-left: 10px;
}
.noidung_top1 {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
.name-product {
  font-size: 18px;
  color: #000;
  margin-top: 15px;
  margin-bottom: 5px;
  line-height: 1.5;
  font-weight: 500;
  font-family: "MulishBold";
}
.name-product a {
  color: #000;
}
.info-product {
  text-align: center;
  padding-bottom: 5px;
}
.gia {
  font-size: 16px;
  color: #7b7b7b;
  font-family: "MulishMedium";
}
.product {
  padding: 10px;
  box-shadow: 0px 0px 10px #88888861;
}
.sanpham_index {
  padding-top: 80px;
  padding-bottom: 60px;
}

.noidung_top1 .title_h2 {
  color: var(--color-main);
}
.grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 26.67px 26.67px;
}

/* //box_banner */
.box_banner {
  margin: auto;
}
.banner {
  text-align: center;
}
dl,
ol,
ul {
  margin-bottom: 0;
  padding-left: 0px;
}

/* //TINTUC_VIDEO */
.tt_l {
  width: 64%;
}
.video_r {
  width: 34%;
}
.box_vd_tt {
  justify-content: space-between;
}
.td_tt {
  font-size: 36px;
  color: var(--color-main);
  font-family: var(--fontSub);
  position: relative;
  margin-bottom: 30px;
}
.td_tt::after {
  position: absolute;
  content: "";
  background-color: var(--color-main);
  bottom: 0px;
  left: 0px;
  width: 100px;
  height: 2px;
}
.flex1 {
  display: flex;
}
.tt_item_l {
  width: 48%;
}
.tt_item_r {
  width: 50%;
}
.tt_name {
  font-size: 16px;
  color: #000;
  font-family: "MulishBold";
  margin-top: 15px;
  margin-bottom: 6px;
}
.desc_name {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}
.btn_xt {
  width: 110px;
  line-height: 40px;
  height: 40px;
  color: var(--color-main);
  font-size: 14px;
  font-family: "MulishBold";
  border: 1px solid var(--color-main);
  text-align: center;
}
p {
  margin-bottom: 0px;
}
.img_tt_r {
  flex-shrink: 0;
}
.info_tt {
  flex: 1;
  padding-left: 20px;
}
.box_tt_main {
  justify-content: space-between;
}
.tt_name1 {
  font-size: 15px;
  color: #000;
  font-family: "MulishBold";
}
.desc_name2 {
  font-size: 13px;
  color: #000;
  margin: 5px 0px;
  text-align: justify;
}
.btn_xt1 {
  font-size: 13px;
  font-family: "Mulish_ext";
  color: #0056b3;
}
.box_tt_item {
  padding: 10px 0px;
}
.tt_item_r {
  margin: -10px 0px;
  overflow: hidden;
}
.btn_xt1:hover {
  color: red;
  transition: all 0.3s;
}
.tt_name1:hover,
.tt_name:hover {
  color: red;
  transition: all 0.3s;
}
.tt_video {
  padding: 60px 0px;
  background-color: #f7f7f7;
  transition: all 0.3s;
}

.btn_xt:hover {
  background-color: red;
  transition: all 0.3s;
  color: #fff;
  border: 1px solid #fff;
}
/* //FEEDBACK */
.fb_l {
  width: 50%;
  text-align: center;
}
.form_r {
  width: 40%;
  padding: 25px 30px 120px 30px;
  background: url(../images/image/bg_dk.png) no-repeat;
  background-size: 100% 100%;
  text-align: center;
}
.img_feedback.slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1, 1);
}
.img_feedback.slick-slide {
  transform: scale(0.7, 0.7);
}
.feedback_kh {
  padding: 50px 0px;
  background: url(../images/image/bg_fb.jpg) no-repeat;
  background-size: cover;
}
.img_feedback {
  border-radius: 50%;
  overflow: hidden;
}
.img_center img {
  text-align: center;
  margin: auto;
  text-transform: uppercase;
}
.fb_content {
  color: #fff;
  font-size: 15px;
  margin-top: 15px;
  line-height: 1.8;
}
.fb_name {
  font-size: 17px;
  color: #fff;
  font-family: "Mulish_ext";
  margin-bottom: 5px;
}
.fb_desc {
  font-size: 14px;
  color: #fff;
}
.img_center {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* //form */
/* //LIENHEBAOGIA */
.lienhe_baogia {
  background: url(../images/bck_lienhe.png) no-repeat;
  background-size: cover;
}
.form_lienhe {
  width: 48%;
  padding: 50px;
  background-color: #ffffffe3;
}
.box_baogia {
  justify-content: space-between;
}
.form_lienhe .input-contact {
  margin-top: 10px;
}
.form-contro1 {
  height: 45px;
}
.form-contro2 {
  padding: 1.375rem 0.75rem;
  height: 90px !important;
}
.btn1 {
  font-size: 15px;
  color: #ffffff;
  font-family: "SVN_Poppins_semibold";
  height: 50px;
  width: 190px;
  text-align: center;
  border-radius: 30px;
  background-color: #d50008;
  border: none;
  margin-top: 10px;
}
.lienhe_baogia {
  padding: 70px 0px;
}
.btn1:hover {
  background-color: #7c440a;
  transition: all 0.3s;
}
.nd_top {
  margin-bottom: 20px;
  text-align: center;
}
.dk_t1 {
  font-size: 36px;
  color: #ba0000;
  font-family: var(--fontSub);
}
.dk_t2 {
  font-size: 15px;
  color: #000f;
}
.form_lienhe .btn_xt {
  border: none;
  border-radius: 0px;
  margin-top: 20px;
}
.form_dangky {
  padding: 50px 0px;
  background: url(../images/image/bg_dk.jpg) no-repeat;
  background-size: cover;
}
.btn_xt2 {
  font-size: 17px;
  color: #fff;
  font-family: "Mulish_ext";
  padding: 12px 29px;
  border-radius: 30px;
  background-color: #ba0000;
  border: none;
}
.form_r .row {
  margin-bottom: 10px;
}
.box_fb_form {
  justify-content: space-between;
}
.ha_hd {
  padding-top: 80px;
  padding-bottom: 40px;
}

.ul_tk li span {
  list-style: none;
  color: #fff;
  font-size: 14px;
  position: relative;
  top: 10px;
}
.ul_tk li {
  list-style: none;
  margin: 10px 0px;
  display: block;
}
.name_city {
  font-size: 25px;
  color: #fff;
  font-family: var(--fontSub);
}
.footer_desc {
  font-size: 15px;
  color: #fff;
  line-height: 2;
  margin-top: 10px;
  margin-bottom: 10px;
}
.social span {
  color: #ffff;
  margin-right: 5px;
  position: relative;
  top: 5px;
}
.ul_tk li img {
  margin-right: 15px;
}
/* //footer */
.box_footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-news:nth-child(1) {
  width: 30%;
}
.footer-news:nth-child(2) {
  width: 17%;
}
.footer-news:nth-child(3) {
  width: 13%;
}
.footer-news:nth-child(4) {
  width: 18%;
}
.footer-copyright {
  text-align: center;
}

.chinh_sach {
  margin-bottom: 20px;
  font-family: "Mulish_ext";
  font-size: 15px;
  color: #fff;
  position: relative;
}
/* .chinh_sach::after {content: "";position: absolute;width: 50px;height: 1px;bottom: -10px;left: 0px;background-color: #FFD75C;} */
.row_top {
  padding-bottom: 20px;
}

/* bando */
.show_bando iframe {
  width: 100%;
  height: 500px;
}
.show_bando2 {
  display: none;
}
.show_bando2.active1 {
  display: block;
}
.footer-map {
  position: relative;
}
.show_bando ul li {
  list-style: none;
}
.show_bando ul {
  position: absolute;
  left: 40px;
  top: 20px;
  justify-content: center;
}
.show_bando ul li a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #fff;
  text-align: center;
  color: #000;
  cursor: pointer;
  font-family: "MontserratMedium";
  font-size: 14px;
  margin-bottom: 20px;
  width: 100%;
  background-color: #fffaeb;
  text-transform: uppercase;
}
.show_bando ul li a.active1 {
  background-color: #ffd75c;
  color: #000;
}
.box_tieuchi {
  transform: translateX(-20px);
  transition: all 0.3s;
}
.box_tieuchi:hover {
  transform: translateX(0px);
}
.list-news-other li {
  list-style: none;
}

.chinh-sach-bao-hanh ul {
  list-style: none;
}

.box_tieuchi_dt {
  align-items: center;
  margin-bottom: 10px;
}

.mota_tieuchi_dt {
  font-size: 14px;
  font-family: "QuicksandRegular";
}

.ten_tieuchi_dt {
  font-size: 20px;
  font-family: "QuicksandBold";
}

.hinh_tieuchi_dt {
  margin-right: 15px;
}

.box_color_detail {
  background: #1182fc;
  padding: 10px 20px;
  border-radius: 15px;
}

.box_zalo_detail {
  background: #ef6c00;
}

.box_zalo_detail a:hover {
  color: #fff600;
}
.box_phone_detail a:hover {
  color: black;
}
.box_color_detail a {
  color: white;
  font-family: "QuicksandSemiBold";
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
}

.box_color_detail i {
  margin-right: 10px;
}

.hinh_tieuchi_dt {
  flex-shrink: 0;
}
.box_zalo_detail {
  margin-left: 20px;
}
.ten_tieuchi_dt {
  color: #000;
}
.menu.menu1 {
  position: relative !important;
}
.menu.fixed {
  background-color: #fff;
  box-shadow: 0px 0px 10px #888888;
}
.header-bottom.fixed {
  transform: translateZ(0) !important;
  background-color: #fff;
  box-shadow: 0px 0px 10px #888888;
  z-index: 111;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: rgba(239, 239, 239, 0.50);
  backdrop-filter: blur(0.25rem);
  -webkit-transform: translateZ(0) !important;
  -moz-transform: translateZ(0) !important;
  -ms-transform: translateZ(0) !important;
  -o-transform: translateZ(0) !important;
  position: relative !important;
  transition: background-color .3s, opacity .3s;
}
#google_language_translator {
  display: none !important;
}
#flags a {
  font-size: 12px;
  color: #000;
  font-family: "Helvetica";
  padding: 0px 10px;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.gglang a {
  display: inline-block !important;
}
.gglang {
  padding-left: 20px;
}

/* // */

.name-newsnb a {
  font-family: "Mulish-Bold";
  font-size: 18px;
  color: #000;
}

.see-newsnb a {
  color: #138c3f;
  font-family: "Mulish-Bold";
}

.desc-newsnb {
  font-family: "Mulish-Regular";
  font-size: 14px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.time-newsnb {
  background: linear-gradient(
    90deg,
    rgba(19, 140, 63, 1) 0%,
    rgba(53, 214, 111, 1) 50%,
    rgba(19, 140, 63, 1) 100%
  );
  width: 15%;
  padding: 5px;
  position: absolute;
  left: 0;
  top: 17%;
  border-bottom-right-radius: 10px;
}

.day-newsnb {
  color: #fff;
  font-family: "Mulish-Bold";
  font-size: 23px;
  text-align: center;
}

.month-newsnb {
  color: #fff;
  font-family: "Mulish-Regular";
  font-size: 15px;
  text-align: center;
}

.info-newsnb {
  margin-top: 1rem;
}

.time-newsnb li {
  list-style: none;
  width: auto;
  height: 1px;
  background: #fff;
}

.row-pronb {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.row-pronb > div:nth-child(1) {
  width: 25%;
}

.row-pronb > div:nth-child(2) {
  width: 72%;
}

.buy-pronb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buy-productnb {
  border: solid 1px var(--color-main);
  padding: 6px 8px;
  border-radius: 30px !important;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

a.buy-productnb img {
  background: var(--color-main);
  padding: 3px;
  border-radius: 50%;
  overflow: inherit;
}

.buy-productnb span {
  color: var(--color-main);
  font-family: "Mulish-Bold";
  text-transform: capitalize;
}

.buy-productnb:hover > span {
  color: #f00;
  font-family: "Mulish-Bold";
  text-transform: capitalize;
}

.bg-pronb {
  padding: 40px 0px;
}

.box_dmsp_left {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 15px;
  background: var(--color-main);
  padding: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.box_dmsp_left .title_left {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  padding: 5px;
  background-image: linear-gradient(#fefefe, #e9e9e9, #d6d6d6);
  border-radius: 4px;
  font-family: VNBaiSau_B;
  font-size: 18px;
  color: #2e6039;
  line-height: 30px;
  padding-left: 45px;
  position: relative;
}

.box_dmsp_left .title_left:before {
  width: 20px;
  height: 13px;
  content: "";
  position: absolute;
  left: 15px;
  top: 14px;
  background: url(../images/icon-menu-dmsp.png) no-repeat center;
}

.menu_dmsp_left {
  width: 100%;
  padding: 0;
  margin: auto;
  list-style: none;
  /* padding:20px 0; */
}

.menu_dmsp_left li {
  position: relative;
  z-index: 99;
  display: inline-block;
  vertical-align: top;
  text-transform: capitalize;
  padding: 15px 10px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  border-bottom: solid 1px #d9d9d9;
}

.menu_dmsp_left li:first-child {
  border-top: none;
}

.menu_dmsp_left li:last-child {
  border-bottom: none;
}

.menu_dmsp_left li i {
  position: absolute;
  top: 5px;
  right: -10px;
}

.menu_dmsp_left li a {
  display: block;
  vertical-align: top;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #fff;
  margin: 0;
  line-height: 24px;
  font-family: "Mulish-Medium";
}

.menu_dmsp_left li a.active,
.menu_dmsp_left li:hover > a {
  text-decoration: underline;
}

.menu_dmsp_left li ul {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 250px;
  background: var(--color-main);
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
  transform: perspective(600px) rotateX(-90deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  margin: 0;
  padding: 0 10px;
}

.menu_dmsp_left li:hover > ul,
.menu_dmsp_left li.active > ul {
  -webkit-transform: perspective(600px) rotateX(0);
  transform: perspective(600px) rotateX(0);
  -webkit-transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.7s;
}

.menu_dmsp_left li ul li {
  width: 100%;
  display: inline-block;
  text-align: left;
  border-bottom: dashed 1px #ccc;
  text-transform: none;
}

.menu_dmsp_left li ul li a {
  font-size: 15px;
}

.menu_dmsp_left li ul li:last-child {
  border: none;
}

.title_left {
  display: flex;
  align-items: center;
  background: #e30613;
  gap: 5%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #fff;
  font-family: "Mulish-Bold";
  font-size: 16px;
}

.menu-main > div:nth-child(1) {
  width: 25%;
}

.menu-main > div:nth-child(2) {
  width: 72%;
}

.sticky {
  position: sticky;
  top: 100px;
  position: -webkit-sticky;
}

.retati {
  position: relative;
}

.flex1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.fle_r {
  width: 320px;
}

.fle_l {
  width: calc(100% - 350px);
}

.flex_detail {
  justify-content: space-between;
}

.block {
  margin-bottom: 20px;
}

.name_block {
  text-align: left;
  color: var(--color-main);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-main);
  text-transform: capitalize;
  font-size: 30px;
  font-family: var(--fontSub);
}

.news_block.slick-slide {
  display: flex;
  align-items: start;
  gap: 2%;
  margin-bottom: 0.5rem;
}

.news_block > div:nth-child(1) {
  width: 30%;
}

.news_block > div:nth-child(2) {
  width: 68%;
}

.name-newsnb_block a {
  color: #000;
  font-size: 13px;
}

.desc-newsnb_block {
  font-size: 12px;
}

.text-center {
  text-align: -webkit-center;
}

a.img-newsnb {
  border-top-left-radius: 60px;
}

.name-newsnb:hover > a {
  color: var(--color-main);
}

.see-newsnb:hover > a {
  color: #f00;
}

.pic-banners img {
  background: url("../images/image/bg-img_tieuchi.png") no-repeat;
  background-size: 100% 100%;
  height: 150px;
  padding: 40px;
}

.social2 {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.social2 li {
  display: inline-block;
  vertical-align: top;
}

.social2 li:last-child {
  margin-right: 0px;
}

.social-left {
  position: fixed;
  left: 10px;
  top: 40%;
  z-index: 99;
}

.social-left li {
  display: block;
  margin-bottom: 0.5rem;
  transition: 0.5s;
  position: relative;
  cursor: pointer;
}

.social-left li img {
  max-height: 40px;
  border-radius: 50%;
}

.name-newsnb_block a {
  font-size: 14px;
  color: #000;
  font-family: "MulishBold";
}
.social2 {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.social2 li {
  display: inline-block;
  vertical-align: top;
}

.social2 li:last-child {
  margin-right: 0px;
}

.social-left {
  position: fixed;
  left: 10px;
  top: 40%;
  z-index: 99;
}

.social-left li {
  display: block;
  margin-bottom: 0.5rem;
  transition: 0.5s;
  position: relative;
  cursor: pointer;
}

.social-left li img {
  max-height: 40px;
  border-radius: 50%;
}

/*test ring ring*/
@keyframes ring {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%,
  32%,
  44%,
  56%,
  68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%,
  35%,
  47%,
  59%,
  71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%,
  38%,
  50%,
  62%,
  74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%,
  41%,
  53%,
  65%,
  77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__tada {
  animation-name: ring;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.search-header {
  width: 100%;
  max-width: 350px;
}
.search-header form {
  position: relative;
}
.search-header input {
  width: 100%;
  padding: 7px 10px;
  border: 0;
  border-radius: 30px;
}
.search-header button {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  height: 100%;
  background: transparent;
  padding: 0 20px;
}

.grid-container {
  margin-left: -5px;
  margin-right: -5px;
}
.grid-container .grid-item {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}

.wrap__newsletter {
  /* background: url(../images/form_bg_2.jpg) no-repeat; */
  background-size: 100% 100%;
  /* min-height: 559px; */
  /* padding: 80px 0px; */
}
.bg__newsletter {
  max-width: 695px;
  margin: auto;
}
.title__newsletter {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.newsletter_name {
  font-family: "baloo";
  color: #fff;
  text-transform: uppercase;
  font-size: 36px;
}
.newsletter_name2 {
  min-width: max-content;
  color: #fff;
  margin: -3px 0px 10px 0px;
}

.newsletter__input {
  position: relative;
  border-radius: 5px;
  /* border: var(--color-main) solid 1px; */
  overflow: hidden;
  box-shadow: #00000030 2px 2px 3px;
}
.newsletter__input input {
  min-width: 290px;
  height: 46px;
  font-size: 15px;
  color: var(--color-main-2);
  border-radius: 0px;
  padding-left: 22px;
}
.newsletter__input textarea {
  height: 90px;
  font-size: 15px;
  color: #757575;
  border-radius: 5px;
}
.btn__submit {
  box-shadow: #0000005d 2px 2px 3px;
  border-radius: 30px;
  color: #111;
  font-size: 18px;
  text-transform: uppercase;
  padding: 7px 39px;
  background-color: #fff;
  transition: 0.3s;
  border: 0;
}
.btn__submit:hover {
  background-color: #fff;
  color: var(--color-main-4);
  transition: 0.3s;
}

.newsletter__input .label {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 15px;
  color: var(--color-main);
  transform-origin: 0 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
  pointer-events: none;
  display: none;
}

.title__newsletter .td_tt {
  margin: auto;
}
.title__newsletter .td_tt:after {
  display: none;
}



#section_710988505 {
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: 650px;
  background-color: rgb(0, 0, 0);
  height: 100vh;
}

#section_710988505 .section-bg-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

#section_710988505 .section-bg.bg-loaded {
  background-image: url(https://jppartnersvn.com/wp-content/uploads/2023/07/24E98194-75D9-4BB7-B811-B512C9C402E8_1_105_c.jpeg);
}

#section_710988505 .ux-shape-divider--top svg {
  height: 150px;
  --divider-top-width: 100%;
}

#section_710988505 .ux-shape-divider--bottom svg {
  height: 150px;
  --divider-width: 100%;
}

.fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  right: 0;
  bottom: 0;
  padding: 0 !important;
  margin: 0 !important;
}

.video-bg {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: center center;";
  position: absolute;
  width: 100%;
  height: 100%;
}

.section {
  padding: 30px 0;
  position: relative;
  min-height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.home-hero .row-hero {
  justify-content: flex-end;
}

.home-hero .hero-text-col {
  background-color: #405363;
  display: flex;
  flex-direction: column;
 
  justify-content: space-between;
  max-width: 614px;
  min-height: 470px;
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
  visibility: visible;
}

.home-hero .hero-text-col .text-wrapper {
  height: 100%;
  padding: 70px 70px 30px;
  color: #fff;
}

.home-hero .hero-text-col .text-wrapper h1 {
  color: #fff;
  font-size: 50px;
  line-height: 1.1333333333em;
  margin-bottom: 30px;
}
.explore-btn{
    margin: 10px 0;
}
.primary-btn {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff;
  border-radius: 0;
  font-size: 17px;
}

.home-hero {
  background-color: transparent;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}


#main-home .container-alt.alt-bg {
  background-color: #f7f7f7;
  margin-top: 0;
  padding-top: 100px;
  position: relative;
  padding-bottom: 100px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-accordion .grid-wrapper {
  display: flex
;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.desktop-accordion .grid-wrapper .grid-item-wrapper {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

#main-home #your-journey .grid-item-wrapper, #main-home .your-journey .grid-item-wrapper {
  border-bottom: 1px solid #c1c5c8;
}

#main-home #your-journey .grid-item-wrapper:first-child, #main-home .your-journey .grid-item-wrapper:first-child {
  margin-top: -15px;
}

#main-home #your-journey .grid-item-wrapper .grid-item.collapsed, #main-home .your-journey .grid-item-wrapper .grid-item.collapsed {
}

#main-home #your-journey .grid-item-wrapper .btn-wrapper, #main-home .your-journey .grid-item-wrapper .btn-wrapper {
  align-items: flex-start;
  border-bottom: none;
  justify-content: flex-start;
}
#main-home #your-journey .grid-item-wrapper .grid-item, #main-home .your-journey .grid-item-wrapper .grid-item {
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 18px;
}


.desktop-accordion .grid-wrapper .grid-item-wrapper .grid-item.collapsed {
}
.desktop-accordion .grid-wrapper .grid-item-wrapper .grid-item.collapse {
    padding-top: 0 !important;
}
.desktop-accordion .grid-wrapper .grid-item-wrapper .grid-item {
  margin-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
  padding-right: 20px;
  cursor: pointer;
}
.desktop-accordion .grid-wrapper .btn-wrapper {
 display: flex;
 position: relative;
}

.your-journey-counter {
  color: #405363;
  font-size: 1.3rem;
  height: 100%;
  letter-spacing: normal;
  line-height: 1.1764705882em;
  margin-right: 20px;
}

.your-journey-h3 {
  font-size: 1.3rem;
}

.desktop-accordion .grid-wrapper .btn-wrapper .icon-wrapper {
  position: absolute;
  right: 0;
  transition: all .2s ease-in-out;
}

.desktop-accordion .grid-wrapper .btn-wrapper .icon-wrapper {
  position: absolute;
  right: 0;
  transition: all .2s ease-in-out;
  width: 10px;
  top: 30px;
}

 .desktop-accordion .grid-wrapper .btn-wrapper:not(.collapsed) .plus {
  opacity: 0;
  visibility: hidden;
}

.your-journey-text {
  font-size: 1.2rem;
  margin-left: 30px;
  padding: 20px 0;
}



@media (min-width: 550px) {
  #section_1003449979 {
      padding-top: 5rem;
      padding-bottom: 5rem;
  }
}

.item_dc_home .box_img {
  height: 0;
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
}

.item_dc_home .box_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1);
  transition: .5s all;
}

.item_dc_home {
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  margin: 0 0.5rem;
  cursor: pointer;
}

.item_dc_home .box_img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 27.46%, #000 100%);
  Selection colors
  Hex;
  z-index: 2;
  opacity: 0.1;
}
a.style_center.max {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.item_dc_home .box_content {
  /* position: absolute; */
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 1.5rem;
  z-index: 2;
  color: #233E97;
  background: #fff;
}

.item_dc_home .box_content h3 {
  font-size: 1.7rem;
  line-height: 1.2;
  font-family: var(--fontSub);
}


.slider_dc_home {
  margin-left: -0.5rem;
  /* width: calc(100% + calc(100vw - 71.45rem)/2); */
  padding-right: calc(calc(100vw - 71.45rem)/2);
}

.item_dc_home .box_content .content {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 1.1rem;
}

.item_dc_home .box_img .icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9;
  transform: rotate(0deg);
  transition: .5s all;
}
.item_dc_home:hover .box_img .icon {
  z-index: 9;
  transform: rotate(-45deg);
}

.item_dc_home .box_img .icon svg {
  width: 4rem;
}

@media only screen and (max-width: 767px){

  .item_dc_home .box_content h3 {
    font-size: 1rem;
    line-height: 1.5;
}

.item_dc_home .box_content {
    padding: 1rem;
}

.item_dc_home .box_img {
    height: 17rem;
}

.item_dc_home .box_content .content {
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
}


.col-inner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1 0 auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}

.dark .heading_title h1, .dark .heading_title h2, .dark .heading_title h3 {
  color: #fff;
}
.home_sec_3 .heading_title {
  max-width: 24rem;
  margin-bottom: 1rem;
}
.center-vertical-horizontal{

  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);


}
#text-1553671422{}
#text-1553671422 h2{font-size: 3.1rem;font-family: var(--fontSub);}
.z-text a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 400;
    background: var(--ce-323-f, #EA2737);
    border-radius: 5rem !important;
    padding: 8px 20px;
    line-height: normal !important;
    min-height: unset !important;
    margin: 0;
    align-content: center;
    transition: .5s all;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
} 
.home_sec_3 .section-bg:before {
  background-image: url(../svg/ht_home_sec_3.svg);
  width: 19.65rem;
  height: 19.65rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  content: '';
  left: 2rem;
  top: 2rem;
}
@media screen and (min-width: 850px) {
  #text-1553671422 {
      margin-left: auto;
      margin-right: 0;
  }
}
.heading_title{}
.heading_title h2{
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--fontSub);
}
/* ===========================================
   TIN TÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨C CÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬P NHÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬P SECTION - NEW STYLES  
   =========================================== */

.tt_video {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.tt_video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.box_vd_tt {
    position: relative;
    z-index: 2;
}

/* TiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªu ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â chÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­nh */
.td_tt {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--fontSub, 'Arial', sans-serif);
}

.td_tt::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 2px;
}

.td_tt::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #60a5fa;
    border-radius: 1px;
}

/* Container chÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­nh */
.box_tt_main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Slick slider styles */
.slick_tt {
    position: relative;
}

.slick_tt .slick-list {
    padding: 0 !important;
}

.slick_tt .slick-track {
    display: flex !important;
}

.slick_tt .slick-slide {
    height: auto !important;
    padding: 0 15px;
}

/* Item tin tÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©c */
.box_tt_item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex !important;
    flex-direction: column;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.box_tt_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.box_tt_item:hover::before {
    transform: scaleX(1);
}

.box_tt_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

/* HÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬nh ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£nh tin tÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©c */
.img_tt {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f1f5f9;
}

.img_tt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img_tt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.box_tt_item:hover .img_tt img {
    transform: scale(1.08);
}

.box_tt_item:hover .img_tt::after {
    opacity: 1;
}

/* ThÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ng tin tin tÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©c */
.info_tt {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* TiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªu ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â tin tÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©c */
.tt_name1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box_tt_item:hover .tt_name1 {
    color: #3b82f6;
}

/* MÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ tÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£ tin tÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©c */
.desc_name2 {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* NÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºt xem thÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªm */
.btn_xt1 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn_xt1::after {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢';
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-weight: normal;
}

.btn_xt1:hover {
    color: #1e40af;
    transform: translateX(4px);
}

.btn_xt1:hover::after {
    transform: translateX(4px);
}

/* Slick Navigation */
.slick_tt .slick-dots {
    bottom: -60px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick_tt .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0;
}

.slick_tt .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 0;
    cursor: pointer;
    padding: 0;
}

.slick_tt .slick-dots li.slick-active button {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: scale(1.2);
}

/* Arrows */
.slick_tt .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-size: 18px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.slick_tt .slick-arrow:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slick_tt .slick-prev {
    left: -25px;
}

.slick_tt .slick-next {
    right: -25px;
}

.slick_tt .slick-arrow:before {
    content: '';
}

.slick_tt .slick-prev:after {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹';
}

.slick_tt .slick-next:after {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº';
}

/* Responsive Design */
@media (max-width: 1199px) {
    .slick_tt .slick-arrow {
        display: none !important;
    }
    
    .tt_video {
        padding: 60px 0;
    }
    
    .td_tt {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .tt_video {
        padding: 50px 0;
    }
    
    .td_tt {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .img_tt {
        height: 200px;
    }
    
    .info_tt {
        padding: 20px;
    }
    
    .tt_name1 {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .tt_video {
        padding: 40px 0;
    }
    
    .td_tt {
        font-size: 1.8rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .img_tt {
        height: 180px;
    }
    
    .info_tt {
        padding: 18px;
    }
    
    .tt_name1 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .desc_name2 {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .btn_xt1 {
        font-size: 0.85rem;
    }
    
    .slick_tt .slick-dots {
        bottom: -50px;
    }
}

@media (max-width: 575px) {
    .box_tt_main {
        padding: 0 10px;
    }
    
    .slick_tt .slick-slide {
        padding: 0 8px;
    }
    
    .img_tt {
        height: 160px;
    }
    
    .info_tt {
        padding: 16px;
    }
    
    .tt_name1 {
        font-size: 1rem;
    }
    
    .desc_name2 {
        font-size: 0.85rem;
    }
}

/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box_tt_item {
    animation: fadeInUp 0.6s ease forwards;
}

.box_tt_item:nth-child(2) {
    animation-delay: 0.1s;
}

.box_tt_item:nth-child(3) {
    animation-delay: 0.2s;
}

.box_tt_item:nth-child(4) {
    animation-delay: 0.3s;
}

/* Hover effects */
.box_tt_item {
    position: relative;
}

.box_tt_item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(30, 64, 175, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.box_tt_item:hover::after {
    opacity: 1;
}

/* Focus states for accessibility */
.box_tt_item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.btn_xt1:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading state */
.slick_tt.loading .box_tt_item {
    opacity: 0.7;
    pointer-events: none;
}

/* Grid fallback for no-js */
.no-js .slick_tt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Print styles */
@media print {
    .tt_video {
        background: none !important;
        padding: 20px 0 !important;
    }
    
    .box_tt_item {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .slick_tt .slick-dots,
    .slick_tt .slick-arrow {
        display: none !important;
    }
}

.item_post_nb {
  display: flex;
  cursor: pointer;
  position: relative;
}
.item_post_nb .box_img {
  width: 16.85rem;
  height: 10.75rem;
  margin-right: 2.2rem;
  flex: 0 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
}

.item_post_nb .box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s;
}
.item_post_nb .box_content {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.item_post_nb .box_content .top{
    flex:  0 0 100%;
}
.item_post_nb h3 {
  font-size: 1.3rem;
  color: var(--233-e-97, #233E97);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}

.item_post_nb .top span {
  color: var(--333333, #333);
}
.item_post_nb .box_content > span {
  color: var(--ce-323-f, #EA2737);
  display: flex;
  position: relative;
  align-items: center;
}

.item_post_nb .box_content > span::before {
  width: 2.15rem;
  height: 1px;
  display: inline-block;
  content: "";
  margin-right: 1rem;
  background: var(--ce-323-f, #EA2737);
}

.news-title{
    font-size: 3.5rem;
    font-family: var(--fontSub);
    color: #09206B;
    max-width: 370px;
    text-align: right;
}



#contact-us-component {
  overflow: hidden;
  position: relative;
}

#contact-us-component .bg-grey {
  background-color: #f7f7f7;
  margin-top: 1px;
  max-height: 380px;
  position: absolute;
}

#contact-us-component .container-contact-us {
  background-color: transparent;
  padding-bottom: 0 !important;
  position: relative;
}

#contact-us-component .container-contact-us .row-contact {
  padding: 80px 0 130px;
}

#contact-us-component h2 {
  color: #405363;
  font-size: 49px;
  letter-spacing: normal;
  line-height: 1.1428571429em;
  margin-bottom: 30px;
}

.tertiary-btn {
  background-color: #f7f7f7;
  border: 1px solid #405363;
  color: #405363;
  padding: 5px 10px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
.nmr {
  margin-right: calc(-50vw - -785px);
}

#contact-us-component .container-contact-us .img-wrapper .right-img {
  max-height: 400px;
}

[data-object-fit=cover] {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

#contact-us-component .container-contact-us .row-contact .lead {
  max-width: 340px;
  color: #75767a;
  font-size: 20px;
  letter-spacing: normal;
  line-height: 1.4em;
}

@media (max-width: 768px) {
  #text-1553671422 h2{
    font-size: 2.3rem;
}
  .home_sec_3 .heading_title{}
  .center-vertical-horizontal{
    position: static;
    transform: none;
  }
  .slider_dc_home{width: 100%;}
.item_post_nb{
    flex-direction: column;
}
  .item_post_nb .box_img{
    width: 100%;
    margin: 0;
}
  #contact-us-component .container-contact-us .row-contact{
    padding: 0;
}
  #contact-us-component h2{
    font-size: 2rem;
}
  #main-home .container-alt.alt-bg {padding-top:20px;padding-bottom:20px;height: auto;}
}
.skiptranslate{display: none !important;}
body{top:0 !important;}


.xheading_title h2{
  font-size: 2.7rem;
  font-family: var(--fontSub);
  color:#fff;
  text-align: center;
  text-transform: uppercase;
}
.custom-font{font-family: var(--fontSub);}
@media(max-width: 768px){
  .xheading_title h2{
    font-size: 1.8rem;
  }
}





/* Team Section Styles */
.team-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #233e97;
  margin-bottom: 3rem;
  text-align: center;
}

/* Main Expert Styles */
.xbg {
  align-items: center;

  
background: linear-gradient(0deg, #F0F4FF 0%, rgba(240, 244, 255, 0.00) 100%);
display: flex
;
align-items: center;
border-radius: 0.5rem;

}

.main-expert-image {
  position: relative;
  text-align: center;
}

.main-expert-image img {
  width: 100%;
  max-width: 400px;
  height: auto;


}

.main-expert-content {
  padding-left: 2rem;
}

.expert-name {
  font-size: 2rem;
  font-weight: 700;
  color: #233e97;
  margin-bottom: 0.5rem;
  border-left: 4px solid #dc3545;
  padding-left: 1rem;
}

.expert-position {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.expert-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.expert-description p {
  margin-bottom: 1rem;
}

/* Team Members Cards */
.other-experts-row {
  margin-top: 3rem;
}

.team-member-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background: #F0F4FF;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member-card:hover .member-image img {
  transform: scale(1.05);
}

.member-content {
  padding: 1.5rem;
  text-align: center;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #233e97;
  margin-bottom: 0.5rem;
}

.member-position {
  font-size: 1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 0;
  height: 50px;
}

.member-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  text-align: left;
}

.member-description p {
  margin-bottom: 0.8rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .main-expert-content {
      padding-left: 0;
      margin-top: 2rem;
      text-align: center;
  }
  
  .expert-name,
  .expert-position {
      text-align: center;
      border-left: none;
      padding-left: 0;
  }
  
  .expert-name {
      border-bottom: 3px solid #233e97;
      padding-bottom: 0.5rem;
      display: inline-block;
  }
}

@media (max-width: 768px) {
  .team-section {
      padding: 50px 0;
  }
  
  .team-main-title {
      font-size: 2rem;
      margin-bottom: 2rem;
  }
  
  .expert-name {
      font-size: 1.5rem;
  }
  
  .member-image {
      /* height: 250px; */
  }
  
  .main-expert-row {
      margin-bottom: 3rem;
  }
}
.title-service h2{font-size: 3rem;font-weight: bold;}
.title-service{
    font-family: var(--fontSub);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .title-service h2{font-size: 1.8rem}
  .news-title{font-size: 2rem;}
  .team-main-title {
      font-size: 1.8rem;
  }
  
  .expert-name {
      font-size: 1.3rem;
  }
  
  .member-content {
      padding: 10px 2px;
  }
  
  .member-name {
      font-size: 0.9rem;
  }
}



.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(rgba(35, 62, 151, 0.85), rgba(35, 62, 151, 0.85)), url('assets/images/family-background.jpg');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    color: white;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 62, 151, 0.1);
    z-index: 1;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-wrapper {
    padding: 2rem;
    background: rgb(35 62 151 / 50%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.contact-form textarea.form-control{height:200px}
.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
    height: 48px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: white;
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #999;
    font-style: italic;
}

.btn-submit {
    background: linear-gradient(45deg, #ffc107, #ffb300);
    border: none;
    color: #333;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(45deg, #ffb300, #ff8f00);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.contact-image {
    text-align: center;
    padding-left: 2rem;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-form-section {
      padding: 60px 0;
      background-attachment: scroll;
  }
  
  .contact-image {
      padding-left: 0;
      margin-top: 3rem;
  }
  
  .contact-title {
      font-size: 1.8rem;
      text-align: center;
  }
  
  .contact-description {
      text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
      padding: 40px 0;
  }
  
  .contact-form-wrapper {
      padding: 1.5rem;
      margin: 0 1rem;
  }
  
  .contact-title {
      font-size: 1.6rem;
  }
  
  .contact-image {
      margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
      padding: 1rem;
      margin: 0 0.5rem;
  }
  
  .contact-title {
      font-size: 1.4rem;
  }
  
  .btn-submit {
      width: 100%;
      padding: 15px;
  }
}


#search-lightbox {
  width: 37.5rem;
  max-width: 100%;
  margin: auto;
}
#search-lightbox .search-lightbox-title{
  margin-bottom: 1.667rem;
  font-size: 1.979rem;
  line-height: 1.2;
  font-weight: 700;
}
#search-lightbox .search-keywords{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.083rem;
  gap: 0.521rem;
}
#search-lightbox .search-keywords > a{
  -webkit-border-radius: 2.604rem;
  -moz-border-radius: 2.604rem;
  border-radius: 2.604rem;
  font-size: 0.833rem;
  line-height: 1.042rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.3125rem 0.833rem;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#search-lightbox .search-keywords > a:hover{
  background-color: #fff;
  color: #000
}
#search-lightbox .flex-row > div{
  flex-grow: 1;
  width: 100%;
  flex:  0 0 100%;
  position: relative;
}
#search-lightbox .flex-row{
  align-items: unset;
  display: flex;
  -webkit-border-radius: 2.604rem;
  -moz-border-radius: 2.604rem;
  border-radius: 2.604rem;
  overflow: hidden;
  width: 100%;
}
#search-lightbox input{
  height: 100%;
  border: none;
}
#search-lightbox .button.icon{
  line-height: normal;
  min-height: unset;
  height: 100%;
  border: none;
  min-width: unset;
  background-color: #FFF;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}
#search-lightbox .button.icon i{
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #000
}
#search-lightbox input{
  font-size: 1.042rem;
  line-height: 1.25rem;
  padding-left: 1.5625rem;
  box-shadow: unset;
  height: 2.604rem;
  width: 100%;
}
.show-search .wrap-search-lightbox{
    opacity: 1;
    height: 100%;
    z-index: 12345;
    color: #fff;
}
.wrap-search-lightbox{
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: 0.5s ease;
    background: #111111bf;
    top: 0;
    left: 0;
    padding-top: 5%;
}
.close-search-lightbox{
  cursor:pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
@media(max-width: 768px){
  .wrap-search-lightbox{padding:20px;}
  #search-lightbox .search-lightbox-title{font-size:1.5rem;}
  #search-lightbox{padding-top:20%}
}







.big_title.big_title_main

 {
    background-image: linear-gradient(180deg, rgba(74, 29, 16, 0.2) -43.54%, rgba(74, 29, 16, 0) 147.27%);
    /* background-image: linear-gradient(180deg, #F7F3F2 0%, #FFFFFF 100%); */
}
.big_title.big_title_center {
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (min-width: 1536px) {
    .big_title {
        left: -100px;
    }
}
@media screen and (min-width: 1280px) {
    .big_title {
        left: -30px;
    }
}
.big_title {
    background: linear-gradient(180deg, #F7F3F2 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    left: -15px;
    bottom: 0;
    width: max-content;
}

.text-45 {
    font-size: 45px;
}

.faqs .item-faq {
    padding: 15px;
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    margin-bottom: 22px;
}


.faqs .question {
    position: relative;
    line-height: 29px;
    font-family: var(--fontSub);
}
@media screen and (max-width: 500px) {
    .text-150 {
        font-size: 55px;
    }
}
@media screen and (max-width: 500px) {
    .big_title {
        bottom: unset;
        top: -30px;
    }
}

@media screen and (max-width: 1535px) {
    .text-45 {
        font-size: 48px;
    }
}
.text-45 {
    font-size: 45px;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}


.faqs .num {
    display: inline-block;
    width: 55px;
    padding-right: 15px;
    margin-right: 20px;
    text-align: center;
    border-right: 1px solid rgba(102, 102, 102, 0.2);
}

@media screen and (max-width: 575px) {
    .faqs .num {
        width: 35px;
        padding-right: 5px;
        margin-right: 10px;
    }
}
.item-faq.active .question .icon {transform: rotate(180deg);}
.item-faq.active .answer{/* height:auto; *//* display: block; */}
.item-faq .question .icon {
    position: absolute;
    top: -2px;
    right: 0;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}
.group_title{font-family: var(--fontSub)}
.faqs .answer {
    display: none;
    padding-top: 30px;
    padding-left: 75px;
 
}

@media screen and (max-width: 1200px) {
    .faqs .answer {
        padding-top: 15px;
        padding-left: 5px;
    }
}

.swiper-cerx {
  width: 40px !important;
  height: 40px !important;
  background: #233e97;
  border-radius: 50%;
  color: #fff !important;
}
.swiper-cerx:after {
  font-size: 1rem !important;
}

.chaty *,.chaty-chat-view *,.chaty-outer-forms *{box-sizing:border-box}.chaty-agent-data,.chaty-whatsapp-field input[type=text],.chaty-whatsapp-message,.chaty-whatsapp-message p{font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif}.chaty-agent-header,.chaty-channel,.chaty-channels,.chaty-form-body,.chaty-tooltip{position:relative}.chaty-tooltip .on-hover-text,.chaty-tooltip .on-hover-text:before,.chaty-tooltip:after,.chaty-tooltip:before{text-transform:none;font-size:.9em;line-height:1;user-select:none;pointer-events:none;position:absolute;display:none;opacity:0}.on-hover-text{display:none}.on-hover-text p{white-space:nowrap}.on-hover-text img.emoji{max-width:none}.chaty-tooltip .on-hover-text:before,.chaty-tooltip:before{content:"";border:5px solid transparent;z-index:1001}.chaty-tooltip:after{content:attr(data-hover)}.chaty-tooltip .on-hover-text,.chaty-tooltip:after{text-align:center;min-width:1em;max-width:21em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:5px 15px;border-radius:10px;background:#fff;color:#333;z-index:1000;box-shadow:0 1.93465px 7.73859px rgb(0 0 0 / 15%);font-size:17px;line-height:21px}.chaty-animation-shockwave:after,.chaty-animation-shockwave:before{content:"";border-radius:50%;position:absolute;top:0;right:0;bottom:0}.chaty-tooltip .on-hover-text{overflow:visible;white-space:pre}.chaty-tooltip.active .on-hover-text,.chaty-tooltip.active .on-hover-text:before,.chaty-tooltip.active:after,.chaty-tooltip.active:before,.chaty-tooltip:hover .on-hover-text,.chaty-tooltip:hover .on-hover-text:before,.chaty-tooltip:hover:after,.chaty-tooltip:hover:before{display:block;opacity:1}.chaty-tooltip.active .on-hover-text,.chaty-tooltip.active .on-hover-text:before,.chaty-tooltip.active:after,.chaty-tooltip.active:before,.chaty-tooltip.pos-left:hover .on-hover-text,.chaty-tooltip.pos-left:hover .on-hover-text:before,.chaty-tooltip.pos-left:hover:after,.chaty-tooltip.pos-left:hover:before,.chaty-tooltip.pos-right:hover .on-hover-text,.chaty-tooltip.pos-right:hover .on-hover-text:before,.chaty-tooltip.pos-right:hover:after,.chaty-tooltip.pos-right:hover:before{animation:ease-out forwards tooltips-horz}.chaty-tooltip.has-on-hover:after,.chaty-tooltip.has-on-hover:before,.chaty-widget .chaty-i-trigger .chaty-cta-close.chaty-tooltip.chaty-tooltip:hover:after,.chaty-widget .chaty-i-trigger .chaty-cta-close.chaty-tooltip:hover:before,.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip:after,.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip:before,.chaty-widget.cssas-no-close-button.default-open .chaty-i-trigger,.on-hover-text:empty,[data-hover=""]:after,[data-hover=""]:before{display:none!important}.chaty-tooltip.pos-top .on-hover-text:before,.chaty-tooltip.pos-top:before{border-bottom-width:0;border-top-color:#fff;bottom:calc(100% + 5px)}.chaty-tooltip.pos-top .on-hover-text:after,.chaty-tooltip.pos-top:after{bottom:calc(100% + 10px)}.chaty-tooltip.pos-top .on-hover-text,.chaty-tooltip.pos-top:after,.chaty-tooltip.pos-top:before{left:50%;transform:translate(-50%,-.5em)}.chaty-tooltip.pos-down:before{top:100%;border-top-width:0;border-bottom-color:#fff}.chaty-tooltip.pos-down:after{top:calc(100% + 5px)}.chaty-tooltip.pos-down:after,.chaty-tooltip.pos-down:before{left:50%;transform:translate(-50%,.5em)}.chaty-tooltip.pos-left .on-hover-text:before,.chaty-tooltip.pos-left:before{top:50%;border-right-width:0;border-left-color:#fff;left:calc(0em - 10px);transform:translate(-.5em,-50%)}.chaty-tooltip.pos-left .on-hover-text:before{left:auto;right:calc(0em - 5px)}.chaty-tooltip.pos-left .on-hover-text,.chaty-tooltip.pos-left:after{top:50%;right:calc(100% + 10px);transform:translate(-.5em,-50%)}.chaty-tooltip.pos-right .on-hover-text:before,.chaty-tooltip.pos-right:before{top:50%;border-left-width:0;border-right-color:#fff;right:calc(0em - 10px);transform:translate(.5em,-50%)}.chaty-tooltip.pos-right .on-hover-text:before{left:calc(0em - 5px);right:auto}.chaty-tooltip.pos-right .on-hover-text,.chaty-tooltip.pos-right:after{top:50%;left:calc(100% + 10px);transform:translate(.5em,-50%)}@keyframes tooltips-vert{to{opacity:1;transform:translate(-50%,0)}}@keyframes tooltips-horz{to{opacity:1;transform:translate(0,-50%)}}.chaty-tooltip.pos-down:hover:after,.chaty-tooltip.pos-down:hover:before,.chaty-tooltip.pos-top:hover:after,.chaty-tooltip.pos-top:hover:before{animation:ease-out forwards tooltips-vert}@-webkit-keyframes chaty-animation-shockwave{0%{transform:scale(1);box-shadow:0 0 2px rgba(0,0,0,.3),inset 0 0 1px rgba(0,0,0,.3)}95%{box-shadow:0 0 50px transparent,inset 0 0 30px transparent}100%{transform:scale(2.25)}}@keyframes chaty-animation-shockwave{0%{transform:scale(1);box-shadow:0 0 2px rgba(0,0,0,.3),inset 0 0 1px rgba(0,0,0,.3)}95%{box-shadow:0 0 50px transparent,inset 0 0 30px transparent}100%{transform:scale(2.25)}}@-webkit-keyframes chaty-animation-blink{0%,100%{opacity:1}20%{opacity:.5}}@keyframes chaty-animation-blink{0%,100%{opacity:1}20%{opacity:.5}}@-webkit-keyframes chaty-animation-pulse{0%{transform:scale(1);box-shadow:0 2px 2px rgba(0,0,0,.2);border-radius:50%}100%{transform:scale(1.1);box-shadow:0 2px 2px rgba(0,0,0,.2);border-radius:45%}}@keyframes chaty-animation-pulse{0%{transform:scale(1);border-radius:50%}100%{transform:scale(1.1);border-radius:45%}}.chaty-animation-shockwave:after{left:0;-webkit-animation:2s ease-out 1.3s infinite chaty-animation-shockwave;animation:2s ease-out 1.3s infinite chaty-animation-shockwave}.chaty-animation-shockwave:before{left:0;-webkit-animation:2s ease-out .8s infinite chaty-animation-shockwave;animation:2s ease-out .8s infinite chaty-animation-shockwave}.chaty-animation-blink{-webkit-animation:1.33s ease-out infinite chaty-animation-blink;animation:1.33s ease-out infinite chaty-animation-blink}.chaty-animation-pulse,.chaty-animation-pulse-icon{-webkit-animation:.4s infinite alternate chaty-animation-pulse;animation:.4s infinite alternate chaty-animation-pulse}.chaty-animation-sheen{position:relative;overflow:hidden}.chaty-animation-sheen:after{animation:5s infinite chaty-animation-sheen;content:'';position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(to bottom,transparent,rgba(255,255,255,.5) 50%,transparent);transform:rotateZ(60deg) translate(0,5em)}@keyframes chaty-animation-sheen{100%,20%{transform:rotateZ(60deg) translate(0,-80px)}}.chaty-animation-fade{animation:5s infinite chaty-animation-fade}.chaty-animation-spin{animation:5s cubic-bezier(.56,-.35,.22,1.5) infinite chaty-animation-spin}@keyframes chaty-animation-fade{15%,5%{opacity:.25}10%,100%,20%{opacity:1}}@keyframes chaty-animation-spin{10%{transform:rotateZ(-20deg);animation-timing-function:ease}100%,20%{transform:rotateZ(360deg)}}.chaty-animation-bounce,.chaty-animation-jump{animation:5s cubic-bezier(.84,-.54,.31,1.19) infinite chaty-animation-bounce}@keyframes chaty-animation-bounce{0%,100%,20%{transform:none}10%{transform:translateY(-1em)}}@keyframes chaty-animation-waggle{0%{transform:none}10%{transform:rotateZ(-20deg) scale(1.2)}13%{transform:rotateZ(25deg) scale(1.2)}15%{transform:rotateZ(-15deg) scale(1.2)}17%{transform:rotateZ(15deg) scale(1.2)}20%{transform:rotateZ(-12deg) scale(1.2)}22%{transform:rotateZ(0) scale(1.2)}100%,24%{transform:rotateZ(0) scale(1)}}.chaty-animation-waggle{animation:5s infinite chaty-animation-waggle}.chaty-animation-floating{-webkit-animation:chaty-animation-floating 3s ease infinite;animation:chaty-animation-floating 3s ease infinite}@keyframes chaty-animation-floating{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}50%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.chaty{display:none;z-index:99999}.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close.chaty-tooltip.chaty-tooltip:hover:after,.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close.chaty-tooltip:hover:before,.chaty.active,.chaty.form-open .chaty-widget.cssas-no-close-button.default-open .chaty-i-trigger{display:block!important}.chaty *{margin:0;padding:0}.chaty .sr-only,.chaty-outer-forms .sr-only,.hide-cht-svg-bg{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;border:0!important;outline:0!important}.chaty a,.chaty a:focus,.chaty a:hover,.chaty button{border:none;text-decoration:none;outline:0;box-shadow:none}.chaty-widget{position:fixed;bottom:25px;right:25px;z-index:10001}.chaty-widget.left-position{left:25px;right:auto}.chaty-channel-list{display:flex;width:62px;height:124px;position:absolute;bottom:-4px;right:0;flex-direction:column;align-items:flex-start;pointer-events:none}.chaty-widget.left-position .chaty-channel-list{left:0;right:auto}.chaty-widget.chaty-open .chaty-channel-list,.chaty-widget.has-single .chaty-i-trigger .Phone-channel:after,.chaty-widget.has-single .chaty-i-trigger .Phone-channel:before{pointer-events:auto}.chaty-channel-list .chaty-channel,.chaty-channel.single .chaty-svg{display:inline-block;width:54px;height:54px;border-radius:50%;margin:4px;cursor:pointer;box-shadow:0 16px 24px 0 rgb(73 104 126 / 16%)}.chaty-channel-list .chaty-channel{position:absolute;bottom:0;opacity:0;transition:.5s;-webkit-transition:.5s}.chaty-channel.single .chaty-svg{margin:0}.chaty-widget.chaty-open .chaty-channel-list .chaty-channel{opacity:1}.chaty-channel a,.chaty-channel button,.chaty-svg{display:block;width:54px;height:54px;border-radius:50%;cursor:pointer;position:relative;outline:0;min-width:unset}* .chaty-channel button{min-width:unset;max-width:unset}.chaty-channel button{background:0 0;border-radius:50%}.chaty-channel a .chaty-custom-icon,.chaty-channel button .chaty-custom-icon,.chaty-svg .chaty-custom-icon{width:54px;height:54px;border-radius:50%;text-align:center;font-size:27px;line-height:54px;color:#fff}.chaty-channel a:focus,.chaty-channel button:focus,.chaty-contact-form-box button.chaty-submit-button{outline:0}.chaty-contact-form-box button.chaty-submit-button:disabled .chaty-loader{display:inline-block}.chaty-agent-icon svg,.chaty-channel svg,.chaty-view-channels .chaty-channel span svg{width:100%;height:100%}.chaty-channel img{width:54px;height:54px;object-fit:cover;border-radius:50%}.chaty-i-trigger .chaty-channel{position:absolute;bottom:0;right:4px;transition:.5s;border-radius:50%;cursor:pointer}.chaty-cta-button{transition:.5s;box-shadow:0 16px 24px 0 rgb(73 104 126 / 16%);border-radius:50%}.chaty-widget.left-position .chaty-i-trigger .chaty-channel{left:4px;right:auto}.chaty-widget .chaty-cta-main .chaty-cta-button{z-index:1099;opacity:1;position:relative}.chaty-widget.chaty-open .chaty-cta-main .chaty-cta-button{z-index:999;opacity:0;transform:rotate(540deg);visibility:hidden}.chaty-widget .chaty-i-trigger .chaty-cta-close{pointer-events:none}.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close{pointer-events:auto;z-index:101}.chaty-widget .chaty-i-trigger .chaty-cta-close .chaty-cta-button{z-index:999;opacity:0;visibility:hidden}.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close .chaty-cta-button{z-index:1099;opacity:1;transform:rotate(180deg);visibility:visible}.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip{z-index:91}.chaty-channel button.open-chaty-channel,.chaty-widget.chaty-no-close-button:not(.has-single) .chaty-i-trigger:not(.single-channel),.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip .on-hover-text,.chaty.form-open .chaty-channel button.open-chaty,.chaty.form-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip .on-hover-text,.chaty.form-open .chaty-i-trigger .chaty-tooltip:after,.chaty.form-open .chaty-i-trigger .chaty-tooltip:before,.chaty.form-open .chaty-widget.has-single .chaty-i-trigger .on-hover-text{display:none}.chaty.form-open.active .chaty-widget .chaty-i-trigger{display:block}.chaty.form-open.active .chaty-widget .chaty-i-trigger .chaty-cta-main{display:none}.chaty.form-open.active .chaty-widget .chaty-i-trigger .chaty-cta-close .chaty-cta-button{opacity:1;visibility:visible;pointer-events:auto}.chaty-widget .ch-pending-msg{position:absolute;right:-4px;top:-4px;width:16px;height:16px;text-align:center;background:red;color:#fff;font-size:10px;line-height:16px;border-radius:50%;z-index:1101}.chaty-widget.left-position.hor-mode .chaty-channel-list{width:136px;height:62px;left:0;bottom:0}.chaty-widget.right-position.hor-mode .chaty-channel-list{width:136px;height:62px;right:0;left:auto;bottom:0}.chaty-widget.hor-mode .chaty-channel-list .chaty-channel{margin-top:0;margin-bottom:0}.chaty-widget.hor-mode.left-position .chaty-channel-list .chaty-channel{left:0}.chaty-widget.hor-mode.right-position .chaty-channel-list .chaty-channel{right:0;left:auto}.chaty-chat-view,.chaty-outer-forms{vertical-align:bottom;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;position:fixed!important;bottom:-25px;left:25px;padding:0;width:320px;max-width:90%;-moz-transition:.5s linear;box-shadow:rgba(0,0,0,.16) 0 5px 40px;-webkit-box-shadow:rgba(0,0,0,.16) 0 5px 40px;-moz-box-shadow:rgba(0,0,0,.16) 0 5px 40px;opacity:0;visibility:hidden;pointer-events:none;z-index:-1;transition:.5s;-webkit-transition:.5s;animation-delay:-2s;-webkit-animation-delay:-2s}.chaty-chat-view.pos-left,.chaty-outer-forms.pos-left{left:25px}.chaty-chat-view.pos-right,.chaty-outer-forms.pos-right{right:25px;left:auto}.chaty-outer-forms.active,.chaty:not(.form-open) .chaty-widget.chaty-open+.chaty-chat-view{-webkit-transform:translateY(-93px);transform:translateY(-93px);opacity:1;z-index:999999;visibility:visible;bottom:0;pointer-events:auto}.chaty-whatsapp-body{padding:0;min-height:260px;position:relative;z-index:2}.chaty-whatsapp-content{padding:20px}.chaty-popup-whatsapp-form .chaty-whatsapp-body{height:260px;min-height:auto}.chaty-popup-whatsapp-form .chaty-whatsapp-content{display:flex;align-items:flex-start}.chaty-form-body{background:#fff;z-index:99999;min-height:75px;border-radius:10px}.chaty-form-body form{margin:0;padding:0}.qr-code-image{padding:10px;text-align:center;border:solid 1px silver;border-radius:4px}.qr-code-image img{max-width:100%;max-height:360px;margin:0 auto;display:block;width:100%;height:auto}.chaty-whatsapp-form{position:relative;background-color:#f0ede7;border-radius:8px;margin:0}.chaty-whatsapp-form:before{display:block;position:absolute;content:"";left:0;top:0;height:100%;width:100%;z-index:0;opacity:.035;background-image:url("../images/whatsapp.png")}.chaty-popup-whatsapp-form .chaty-whatsapp-body:before,.chaty-popup-whatsapp-form .chaty-whatsapp-footer:before{background-image:url("../images/whatsapp-welcome-popup.png");opacity:.7}.chaty-whatsapp-message{padding:7px 14px 6px;background-color:#fff;border-radius:0 10px 10px;position:relative;transform-origin:center top;z-index:2;margin-top:0;margin-left:0;max-width:calc(100% - 40px);font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif;font-size:14px;line-height:18px;border:1px solid rgba(34,17,71,.08)}.chaty-whatsapp-message:before{content:"";display:none;width:0;height:0;border-top:0 solid transparent;border-bottom:10px solid transparent;border-right:12px solid #fff;position:absolute;left:-12px;top:0}.wp-profile-img+.chaty-whatsapp-message:before{display:block}.chaty-whatsapp-message p{margin:0;padding:0;color:#111b21;font-weight:400;word-wrap:break-word}.chaty-whatsapp-footer{position:relative;padding:20px 15px}.whatsapp-chaty-form{display:flex;margin:0;padding:0}button.chaty-whatsapp-button-button,button.chaty-whatsapp-button-button:focus,button.chaty-whatsapp-button-button:hover{text-align:center!important;height:40px!important;width:40px!important;padding:0!important;background:#c6d7e3!important;border-radius:20px!important;outline:0!important;box-shadow:none!important;cursor:pointer!important;margin:0 0 0 10px!important;text-decoration:none!important;border:none!important;min-width:1px!important;flex:0 0 40px}button.chaty-whatsapp-button-button{background:#c6d7e3!important}button.chaty-whatsapp-button-button:focus,button.chaty-whatsapp-button-button:hover{background:#a8c5da!important}.chaty-whatsapp-input:not(:placeholder-shown)+button.chaty-whatsapp-button-button{background:#25d366!important}.chaty-whatsapp-input:not(:placeholder-shown)+button.chaty-whatsapp-button-button:focus,.chaty-whatsapp-input:not(:placeholder-shown)+button.chaty-whatsapp-button-button:hover{background:#22bf5b!important}.chaty-whatsapp-data{display:flex;flex:1;z-index:1}.chaty-whatsapp-field{padding-right:0;flex:1;position:relative;display:flex;align-items:center}.chaty-whatsapp-button{flex:0 0 48px}.chaty-whatsapp-button svg{width:100%;height:100%;margin:0;padding:0}.chaty-whatsapp-field input[type=text]{height:40px!important;line-height:normal;padding:0 10px 0 15px;font-size:16px;resize:none;width:100%;border:none!important;border-radius:24px;outline:0;box-shadow:none!important;background:#fff!important;margin:0;color:#111b21;flex:1}.chaty-whatsapp-field input[type=text]:focus{outline:0!important;border:none!important;margin:0;color:#111b21;box-shadow:none!important}.chaty-whatsapp-button-button:active,.chaty-whatsapp-button-button:focus,.chaty-whatsapp-button-button:hover{background:#a8c5da!important}.chaty.form-open .chaty-channel button.open-chaty-channel,.chaty.form-open .chaty-no-close-button.has-single .chaty-i-trigger{display:block}.chaty-agent-data{font-size:16px}.chaty-agent-header{font-size:18px;padding:20px 15px;background:#22bf5b;color:#fff;-webkit-border-top-left-radius:10px;-webkit-border-top-right-radius:10px;-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;border-top-left-radius:10px;border-top-right-radius:10px}.chaty-agent-data .close-chaty-form{right:10px;top:12px}.chaty-agent-data .chaty-agent{display:flex;align-items:center;padding:15px}.chaty-agent-data .chaty-agent a{color:#49687e;font-size:16px;text-decoration:none;display:flex;width:100%;align-items:center;outline:0;font-weight:400}.chaty-contact-input input.chaty-input-field,.chaty-contact-input input[type=email].chaty-input-field,.chaty-contact-input input[type=text].chaty-input-field,.chaty-contact-input select.chaty-input-field,.chaty-contact-input textarea.chaty-textarea-field{color:#28303d;font-family:BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-sans;margin:0;background:#fff;outline:0}.chaty-agent-data .chaty-agent+.chaty-agent{border-top:2px solid #f6f8f9}.chaty-agent-img{width:36px;height:36px;object-fit:cover;border-radius:50%}.chaty-agent-icon{width:48px;height:48px;margin:0 15px 0 0}.chaty-agent-data .chaty-custom-icon{width:48px;height:48px;text-align:center;display:block;line-height:48px;background:silver;border-radius:50%;color:#fff;font-size:28px}.chaty-close-agent-list{position:absolute;right:15px;top:10px;width:26px;height:26px;cursor:pointer;z-index:10;padding:0 0 10px 10px}.chaty-agent-icon img{width:48px;height:48px;object-fit:cover}.chaty-close-agent-list svg{fill:#ffffff}.agent-sub-header{font-size:14px;line-height:20px;font-weight:400}.agent-main-header{font-size:20px;line-height:32px;font-weight:700;position:relative}.chaty-agent-header:before,.chaty-view-header:before{content:"";background:url(../images/header-top.png) no-repeat;width:215px;height:41px;position:absolute;top:0;left:0;z-index:1}.chaty-agent-header:after,.chaty-view-header:after{content:"";background:url(../images/header-bottom.png) no-repeat;width:44px;height:41px;position:absolute;bottom:0;right:0;z-index:1}.chaty-custom-channel-icon{display:block;border-radius:50%;color:#fff;text-align:center;line-height:54px}.chaty-contact-form-title{padding:10px 15px;text-align:left;font-size:18px;color:#fff;border-radius:8px 8px 0 0;justify-content:space-between;display:flex}.chaty-contact-inputs{padding:15px}.chaty-contact-input{display:block}.chaty-contact-input label.chaty-form-label{font-size:14px;margin:0;padding:0 0 4px 0;line-height:20px;display:flex;color:#28303d}.chaty-contact-input+.chaty-contact-input{margin:10px 0 0}.chaty-contact-input input.chaty-input-field,.chaty-contact-input input[type=email].chaty-input-field,.chaty-contact-input input[type=text].chaty-input-field,.chaty-contact-input select.chaty-input-field{width:100%;height:36px;line-height:36px;font-size:16px;padding:0 10px;border:1px solid #ccc;border-radius:4px}.chaty-contact-input .has-chaty-error:focus,.chaty-contact-input input.chaty-input-field:focus,.chaty-contact-input input[type=email].chaty-input-field:focus,.chaty-contact-input input[type=tel].chaty-input-field:focus,.chaty-contact-input input[type=text].chaty-input-field:focus,.chaty-contact-input select.chaty-input-field:focus,.chaty-contact-input textarea.chaty-textarea-field:focus{outline:0;box-shadow:none;border-color:#898989;background-color:#fff}.chaty-contact-input textarea.chaty-textarea-field{width:100%;height:100px;line-height:20px;font-size:16px;padding:10px;border:1px solid #ccc;border-radius:4px;display:block}.chaty-contact-form-box .close-chaty-form{right:9px;top:9px}.chaty-contact-form-box button.chaty-submit-button[type=submit],button#chaty-submit-button-0{border:none;border-radius:4px;color:#fff;background:#a886cd;width:100%;height:36px;line-height:36px;font-size:18px;padding:0;margin:0;cursor:pointer;text-align:center;display:block}.chaty-contact-input input.chaty-input-field.has-chaty-error,.chaty-contact-input select.chaty-input-field.has-chaty-error,.chaty-contact-input textarea.has-chaty-error{border:1px solid #d20000}.chaty-contact-form-button{padding:15px}.chaty-ajax-error-message,.chaty-ajax-success-message{color:#00a700;padding:10px 0 0;text-align:center;font-size:16px}.chaty-ajax-error-message{color:#da0000}.chaty-view-header,.chaty-view-header a,.chaty-view-header a:focus,.chaty-view-header a:hover{font-weight:500;color:#fff;font-size:24px}.chaty-exit-intent{position:fixed;z-index:-1}.chaty-exit-intent:before{display:block;position:fixed;top:0;left:0;content:'';width:100vw;height:100vh;background:rgba(0,0,0,.8);visibility:hidden;z-index:100;transition:.5s ease-in-out;-webkit-transition:.5s ease-in-out;-moz-transition:.5s ease-in-out}.chaty .chaty-widget.left-position .chaty-exit-intent:before{clip-path:circle(15px at 60px calc(100% - 60px))}.chaty .chaty-widget.right-position .chaty-exit-intent:before{clip-path:circle(15px at calc(100% - 60px) calc(100% - 60px))}.chaty .chaty-widget .chaty-exit-intent.animate:before{visibility:visible;clip-path:circle(100%)}.chaty-widget.has-single .chaty-i-trigger .chaty-channel:not(.chaty-agent-button).Phone-channel .chaty-tooltip:after,.chaty-widget.has-single .chaty-i-trigger .chaty-channel:not(.chaty-agent-button).Phone-channel .chaty-tooltip:before{pointer-events:inherit}body.cht-in-mobile .chaty-outer-forms.chaty-agent-data.custom-cht-pos,body.cht-in-mobile .chaty-outer-forms.chaty-contact-form-box.custom-cht-pos,body.cht-in-mobile .chaty-outer-forms.chaty-wechat-form.custom-cht-pos,body.cht-in-mobile .chaty-outer-forms.chaty-whatsapp-form.custom-cht-pos{top:50%;left:0;right:0;margin:0 auto;transform:translate(0,-50%);bottom:auto}body.cht-in-mobile .chaty-outer-forms.chaty-agent-data.custom-cht-pos .chaty-agent-body{max-height:calc(100vh - 164px)!important}.chaty-whatsapp-message p+p{margin-top:10px}body.cht-in-mobile .chaty-outer-forms.chaty-whatsapp-form.custom-cht-pos .chaty-whatsapp-content{max-height:calc(100vh - 122px)!important;overflow-y:auto}body.cht-in-mobile .chaty-outer-forms.chaty-whatsapp-form:not(.custom-cht-pos) .chaty-whatsapp-content{overflow-y:auto}.chaty.has-custom-pos.form-open .chaty-i-trigger{opacity:0;visibility:hidden}body.cht-in-mobile .chaty-outer-forms.chaty-contact-form-box.custom-cht-pos .chaty-contact-inputs{max-height:calc(100vh - 150px)!important;overflow-y:auto}body.cht-in-mobile .chaty-outer-forms{max-width:calc(100vw - 50px)!important}.chaty-view-body{background:#fff;border-radius:8px}.chaty-view-header{background:#b78deb;border-radius:7px 7px 0 0;padding:10px 15px;position:relative;word-break:break-word}.chaty-top-content{padding:15px 15px 0;font-size:16px}.chaty-view-content p,.chaty-view-content p a,.chaty-view-content p a:focus,.chaty-view-content p a:hover{margin:0;padding:0;font-size:16px;line-height:150%;color:#49687e;word-break:break-word}.chaty-view-content p a{display:inline-block}.chaty-view-content p a:focus,.chaty-view-content p a:hover,.chaty-view-header a:focus,.chaty-view-header a:hover{outline:0;text-decoration:none}.chaty-view-content p+p{margin-top:10px}.chaty-close-view-list{position:absolute;right:15px;top:10px;width:12px;cursor:pointer;z-index:11}.chaty-close-view-list svg{fill:#ffffff;display:inline-block;width:100%}.chaty-view-channels .chaty-channel{height:48px;display:inline-block;margin:6px 0;width:20%;text-align:center;vertical-align:top}.chaty-view-channels .chaty-channel a,.chaty-view-channels .chaty-channel img,.chaty-view-channels .chaty-channel span:not(.on-hover-text){display:block;width:48px;height:48px;margin:0 auto}.chaty-view-channels{padding:10px 8px}.chaty-view-channels .chaty-custom-channel-icon{font-size:24px}.front-google-captcha{width:100%!important;overflow:hidden}.front-google-captcha>div{width:100%}.front-google-captcha iframe{transform:scaleX(.9);position:relative;left:-15px}.widget-fa-icon{width:100%;height:100%;display:inline-block;vertical-align:middle;color:#fff}span.chaty-loader{display:none;vertical-align:middle;color:#fff;animation:rotation 1s infinite linear;width:24px;height:24px;text-align:center;line-height:24px;margin-left:5px}span.chaty-loader span.dashicons{width:24px;height:24px;text-align:center;line-height:24px;font-size:24px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}span.chaty-loader.active{display:inline-block;vertical-align:baseline}.chaty-i-trigger.single-channel>.chaty-channel>.on-hover-text{display:none!important}html[dir=rtl] .chaty-input-field,html[dir=rtl] .chaty-submit-button,html[dir=rtl] .chaty-tooltip,html[dir=rtl] .chaty-tooltip:after,html[dir=rtl] .chaty-whatsapp-message,html[dir=rtl] .on-hover-text{direction:rtl}.add-bg-blur-effect{background-color:rgba(0,0,0,.4);overflow-x:hidden}.add-bg-blur-effect>:not(.chaty,.chaty-outer-forms,.picmo__popupContainer){filter:blur(6px)}.email_suggestion,.wp_email_suggestion{margin:0;padding:0;font-size:14px;color:#970029}.email_suggestion i,.wp_email_suggestion i{color:#2596be;font-weight:700;cursor:pointer}.chaty-custom-whatsapp-form .eac-sugg,.chaty-form .eac-sugg{color:#c1c1c1;line-height:34px!important}.chaty-form .eac-input-wrap{width:100%;overflow:hidden}.chaty-custom-whatsapp-form .chaty-whatsapp-body:before{opacity:.05}.chaty-custom-whatsapp-form .chaty-whatsapp-body{border-radius:0}.chaty-custom-whatsapp-form .chaty-whatsapp-footer{border-top:1px solid #e1e1e1;min-height:70px}.chaty-custom-whatsapp-form .chaty-whatsapp-data{display:block;z-index:1}.chaty-custom-whatsapp-form .chaty-whatsapp-button-button{width:100%!important;z-index:1;position:relative}.chaty-custom-whatsapp-form .header-text{display:flex;align-items:center}.chaty-custom-whatsapp-form .header-text span{display:inline-block;vertical-align:super;padding-left:5px}.chaty-custom-whatsapp-form .chaty-whatsapp-button svg{width:26px;height:26px;fill:#ffffff;margin-right:3px}.chaty-custom-whatsapp-form .chaty-whatsapp-button span{font-size:15px;padding-left:5px}.chaty-custom-whatsapp-form .chaty-whatsapp-button{display:flex;align-items:center;justify-content:center;border-radius:6px!important}.chaty-custom-whatsapp-form .chaty-whatsapp-content{padding:15px;z-index:101111;position:relative}.chaty-custom-whatsapp-form .chaty-whatsapp-body{min-height:auto}.chaty-outer-forms input[type=number]::-webkit-inner-spin-button,.chaty-outer-forms input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}.chaty-whatsapp-header{display:flex;align-items:center;background-color:#4aa485;border-top-left-radius:6px;border-top-right-radius:6px;padding:10px 15px;position:relative;justify-content:space-between;box-shadow:0 16px 32px 0 #1a0E3529}.chaty-whatsapp-header .header-wp-icon{height:30px;width:30px;margin-right:7px}.chaty-whatsapp-header .header-wp-title{color:#fff;font-size:15px;flex:1;padding-right:8px}.whatsapp-form-close-btn{flex:0 0 16px;cursor:pointer}.whatsapp-form-close-btn svg{width:16px;height:16px}.chaty-form,.chaty-whatsapp-form{font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif}.chaty-whatsapp-body .wp-profile-img{height:30px;width:30px;margin-right:15px}.chaty-whatsapp-body .wp-profile-img img{height:30px;width:30px;border-radius:50%;object-fit:cover}.chaty-whatsapp-message-nickname{color:#489d81;font-size:10px;font-weight:500;line-height:14px}.chaty-whatsapp-message-time{color:#a1a1a9;font-size:10px;line-height:12px}.chaty-whatsapp-input::placeholder{color:#83a1b7;opacity:40%}.chaty-whatsapp-input::-ms-input-placeholder{color:#83a1b7;opacity:40%}button[type=button].chaty-wp-emoji-input,button[type=button].chaty-wp-emoji-input:focus,button[type=button].chaty-wp-emoji-input:hover{position:absolute!important;top:9px;left:8px;background:0 0!important;border:none!important;cursor:pointer;height:24px!important;width:24px!important;padding:0!important;min-width:1px!important;margin:0!important;outline:0!important}.chaty-whatsapp-field:not(.has_emoji) .chaty-wp-emoji-input{display:none!important}.chaty-whatsapp-input{padding-left:38px!important}.chaty-whatsapp-field:not(.has_emoji) .chaty-whatsapp-input{padding-left:15px!important}.picmo__popupContainer{z-index:1000000}body .picmo__emojiButton span{font-size:24px;line-height:24px;display:inline-block;vertical-align:middle}body .picmo__picker .picmo__categoryButtons .picmo__categoryTab button.picmo__categoryButton{color:#8f8f8f;border:solid 1px transparent}body .picmo__picker .picmo__categoryButtons .picmo__categoryTab.picmo__categoryTabActive .picmo__categoryButton{border:1px solid #a886cd;color:#a071d3;background:#fff}body .picmo__picker .picmo__emojiCategory .picmo__categoryName{display:flex;height:auto;padding:10px 17px;border-bottom:solid 1px #e2e8f0;font-weight:700;background:#f3f3f3}body .picmo__picker .picmo__categoryButtons .picmo__categoryTab button.picmo__categoryButton:hover{background:#fff}body .picmo__emojiButton{border-radius:4px}body .picmo__emojiButton:focus{outline:0;border-radius:5px}.chaty-channel span.chaty-icon{display:block}.chaty.form-open .chaty-widget.has-single .chaty-cta-close .chaty-cta-button{opacity:1;visibility:visible;transform:rotate(360deg);z-index:999}.chaty-custom-whatsapp-form .eac-input-wrap{width:100%;overflow:hidden}.chaty-custom-whatsapp-form .chaty-whatsapp-button button{width:100%;border:none;border-radius:6px;padding:8px;display:flex;align-items:center;justify-content:center;cursor:pointer}.chaty-contact-input input[type=file].chaty-input-field{line-height:32px}.eac-cval:empty,.eac-sugg:empty{display:none!important}.qr-code-header{display:flex;align-items:center;background-color:#a886cd;border-top-left-radius:6px;border-top-right-radius:6px;padding:10px 15px;position:relative;justify-content:space-between;color:#fff;box-shadow:0 16px 32px 0 #1a0E3529;z-index:999999}.chaty-close-button{cursor:pointer}.qr-code-title{line-height:1;padding:15px 15px 0;font-size:14px;color:#83a1b7}.qr-code-box{margin-top:10px;padding:0 15px 15px}.qr-code-head-title{display:inline-flex;align-items:center}.qr-code-head-title svg{margin-right:5px}.mce-error{border:1px solid #d00!important}.required_indicate{color:red;font-size:18px;margin-left:2px}.chaty-whatsapp-button-button svg{display:inline-block;vertical-align:sub}.chaty-wp-emoji-input:hover{background-color:transparent;border-color:transparent}.chaty-wp-emoji-input:focus{outline:0}.chaty-whatsapp-input[placeholder]:focus::-webkit-input-placeholder{-webkit-transition:opacity .5s .5s ease;transition:opacity .5s .5s ease;opacity:40%!important}[placeholder]:focus::-webkit-input-placeholder{-webkit-transition:opacity .5s .5s ease;transition:opacity .5s .5s ease;opacity:1!important}.chaty-outer-forms form{margin:0}.chaty,.chaty *,.chaty-form,.chaty-form *,.chaty-whatsapp-form,.chaty-whatsapp-form *{-webkit-tap-highlight-color:transparent}body.csaas-has-chatway:not(.chatway-is-open) .chatway--trigger-container{display:none!important}body.csaas-has-chatway:not(.chatway-is-open) .chatway--frame-container{opacity:0;visibility:hidden}body.csaas-has-chatway.chatway-is-open .chaty{display:none!important}.chaty-widget.has-chatway .Chatway-channel-link{opacity:1;visibility:visible;pointer-events:auto}.has-chat-view.active .chaty-widget.has-chatway.chaty-open .chaty-channel-list{display:none!important}.chaty-channel.Chatway-channel-link.has-unread-message:after,.chaty-widget:not(.has-chatway):not(.chaty-open) .csaas-widget-trigger.has-unread-message:after{content:attr(data-unread-message);width:20px;height:20px;background:#ff4545;position:absolute;border-radius:50%;font-size:12px;font-weight:600;color:#fff;display:inline-flex;align-items:center;justify-content:center;bottom:44px;z-index:1111;right:-4px}body:not(.chatway--active) .chaty-widget.has-chatway.above-chaty .Chatway-channel-link{display:none!important}body:not(.chatway--active) .chaty-widget.inside-chaty .chaty-channels .Chatway-channel-link{display:none!important}body.csaas-has-chatway.has--chaty.chatway--active:not(.chatway--visible) .chatway--container{display:block}.chaty.chaty-has-chat-view .has-chatway.chaty-open .Chatway-channel-link{display:none!important}.chaty-view-channels .chaty-channel.Chatway-channel.has-unread-message:after{right:0;top:-8px;bottom:auto}


#footer{
    padding-top: 40px;
}
#footer .section-title-main{
    font-weight: bold;
    font-size: 25px;
}

.menu_footer{}
.menu_footer ul{
    text-decoration: none;
    list-style: none;
}
.menu_footer ul li{}
.menu_footer ul li a{
    color: #111;
    font-size: 16px;
    text-decoration: none;
}
.form-newsletter{
    position: relative;
}
.form-newsletter input{
    background: transparent !important;
    border: none;
    box-shadow: none;
    font-size: 0.9rem;
    color: #fff;
    border-bottom: 1px solid #4C6BD3;
    padding: 0;
    width: 100%;
    margin: 0;
    height: 2.5rem;
    padding: 0 10px;
}
.form-newsletter button{
    position: absolute;
    top: 0;
    right: 0;
}

.form-newsletter input::placeholder {
  color: #fff;
}

/* For older versions of Firefox */
.form-newsletter input:-moz-placeholder {
  color: #fff;
}

/* For Internet Explorer and Microsoft Edge */
.form-newsletter input::-ms-input-placeholder {
  color: #fff;
}