body {
    overflow-x: hidden;
}

.pxl-contact {
    position: relative;
}

.pxl-contact__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: block;
    width: fit-content;
}

.pxl-contact__phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    height: 50px;
    width: 50px;
    display: block;
    width: fit-content;
}

.pxl-contact__phone-circle {
    background: linear-gradient(90deg, #d91d2b 0%, #c31a27 100%);
    width: 50px;
    height: 50px;
    line-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    border: 1px solid #fff;
    animation: ring-animation 1s ease-in-out infinite;
    position: relative;
    border-radius: 50%;
}

.pxl-contact-mb{
    position: fixed;
    width: 100%;
    height: 62px;
    bottom: 0px;
    left: 0;
    z-index: 200;
    border-radius: 20px 20px 0px 0px;
    align-items: center;
    -webkit-box-shadow: 0px 0px 20px 0px rgb(0 70 223 / 40%);
    border-color: rgb(9, 226, 181);
    border-width: 2px;
    background: rgb(25, 47, 100);
    display: flex;
    justify-content: space-around;
    display: none;
}

.pxl-contact-mb__btn{
    height: 45px;
    width: 45px;
    z-index: 99;
    border-radius: 50%;
}

.pxl-contact-mb__btn img{
      animation: ring-animation 1s ease-in-out infinite;
      width: 100%;
      height: 100%;
}

.pxl-contact-mb__btn.hotline_mobile{
    background: linear-gradient(90deg, #d91d2b 0%, #c31a27 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    border: 1px solid #fff;
    animation: ring-animation 1s ease-in-out infinite;
    position: relative;
    border-radius: 50%;
}

.pxl-contact-mb__btn.hotline_mobile img{
   width: 28px;
   height: 28px;
}

.pxl-contact-mb__btn{
    height: 45px;
    width: 45px;
    z-index: 99;
    border-radius: 50%;
    position: relative;
}

.pxl-contact-mb__btn:before, .pxl-contact-mb__btn:after{
    content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background-color: black;
  transition: transform 0.3s ease;
  transform-origin: center;
  background-color: #fff;
  opacity: 0;
}

.pxl-contact-mb__btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.pxl-contact-mb__btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pxl-contact__phone-circle img {
    width: 25px;
}

.pxl-contact__phone-bar {
    background: linear-gradient(90deg, #d91d2b 0%, #c31a27 100%);
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0px 10px 0px 35px;
    background-size: 100%;
    cursor: pointer;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    z-index: 9;
    border-radius: 5px;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 1;
    border: 1px solid #fff;
    font-weight: bold;
    position: absolute;
}

.pxl-contact__phone-text {
    font-size: 18px;
    letter-spacing: 3px;
    color: #fff;
    font-weight: bold;
    margin-left: 10px;
}

.pxl-contact__right {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.pxl-contact__zalo {
    position: fixed;
    bottom: 150px;
    right: 20px;
    order: 2;
}

.pxl-contact__facebook {
    position: fixed;
    bottom: 80px;
    right: 20px;
    order: 1;
}
.pxl-contact__item img{
    animation: ring-animation 1s ease-in-out infinite;
}

@keyframes ring-animation {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-12deg);
    }

    20% {
        transform: rotate(12deg);
    }

    30% {
        transform: rotate(-12deg);
    }

    40% {
        transform: rotate(12deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.pxl-contact__mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .pxl-contact {
        display: none;
    }
    .pxl-contact-mb {
        display: flex;
    }
    .pxl-contact__mobile {
        display: block;
        position: fixed;
        bottom: 100px;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .pxl-contact__mobile-item {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .pxl-contact__mobile-item a {
        font-weight:600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .pxl-contact__mobile-item.active {
        display: flex;
    }

    .pxl-contact__item.active img {
        display: none;
    }

    .pxl-contact-mb__btn.active {
        background-color: #F44336;
        background-size: contain;
        border: none;
    }

    .pxl-contact-mb__btn.active img {
        opacity: 0;
    }
    
     .pxl-contact-mb__btn.active:before, .pxl-contact-mb__btn.active:after {
        opacity: 1;
    }


    .pxl-contact__mobile-item--link {
        width: 252px;
        color: #fff;
    }

    .pxl-contact__mobile-item--link:hover {
        color: #fff;
    }

    .pxl-contact__mobile-item--link:first-child {
        margin-bottom: 20px;
        background: #b20000;
        padding: 10px;
        border: solid 1px #fff;
    }

    .pxl-contact__mobile-item--link:last-child {
        margin-bottom: 20px;
        background: #083a91;
        padding: 10px;
        border: solid 1px #fff;
    }

    .pxl-contact {
        position: fixed;
        width: 100%;
        height: 62px;
        bottom: 0px;
        left: 0;
        z-index: 200;
        border-radius: 20px 20px 0px 0px;
        align-items: center;
        -webkit-box-shadow: 0px 0px 20px 0px rgb(0 70 223 / 40%);
        border-color: rgb(9, 226, 181);
        border-width: 2px;
        background: rgb(25, 47, 100);
        display: flex;
        justify-content: space-around;
    }

    .pxl-contact a {
        pointer-events: none;
    }

    .pxl-contact__phone {
        position: unset !important;
        height: 45px;
        width: 45px;
        order: 3;
        z-index: 999 !important;
    }

    .pxl-contact__phone-circle {
        height: 45px;
        width: 45px;
    }

    .pxl-contact__phone-bar {
        display: none;
    }

    .pxl-contact__zalo {
        position: unset;
        width: 45px;
        height: 45px;
    }

    .pxl-contact__facebook {
        position: unset;
        width: 45px;
        height: 45px;
    }
}

/* Chat */
.chat-form-wrapper {
    font-family: Arial, sans-serif;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.chat-form-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.chat-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #007bff;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.chat-name {
    font-weight: bold;
    color: #333;
    font-size: 16px;
    margin: 0;
}

.chat-body {
    background: white;
    padding: 20px;
    min-height: auto;
    max-height: none;
    overflow: visible;
    min-height: 300px;
}

.message-agent {
    margin-bottom: 20px;
}

.contact-form-section,
.shortcode-form-section {
    border-radius: 10px;
}

.message-bubble,
.form-title {
    background: #083a91;
    text-align: left;
    font-weight: 400;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    width: 85%;
    margin-bottom: 15px;
}

.chat-contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-input {
    background: white;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
    margin: 0;
}

.send-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    font-family: Arial, sans-serif;
    transition: all 0.3s;
    margin: 0;
}

.form-input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.form-submit {
    background: #dc3545;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: all 0.3s;
    width: 100%;
    margin: 0;
}

.chat-input input:focus,
.form-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.send-btn:hover,
.form-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

/* Animation */
.slide-in {
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .chat-form-container {
        max-width: 100%;
    }

    .chat-input {
        flex-direction: column;
        gap: 10px;
    }

    .chat-input input {
        order: 1;
    }

    .send-btn {
        order: 2;
        width: 100%;
    }
}

.shortcode-form-wrapper .wpcf7 .wpcf7-form-control-wrap {
    display: block;
}

.shortcode-form-wrapper input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 0 .75em;
    height: 2.507em;
    font-size: .97em;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    background-color: #fff;
    color: #333;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    -webkit-transition: color .3s, border .3s, background .3s, opacity .3s;
    -o-transition: color .3s, border .3s, background .3s, opacity .3s;
    transition: color .3s, border .3s, background .3s, opacity .3s;
    margin-bottom: 15px;
}

.shortcode-form-wrapper br {
    height: 15px;
    display: none;
}

.shortcode-form-wrapper input[type='submit']:not(.is-form) {
    background-color: #ea0e03;
    width: fit-content;
    margin: 0 auto;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0px 20px;
}

.shortcode-form-wrapper p {
    text-align: center;
}

.shortcode-form-wrapper .wpcf7-spinner {
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin: 10px 0;
    animation: slideIn 0.3s ease-out;
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shortcode-form-wrapper form {
    margin: 0;
}

.shortcode-form-wrapper .wpcf7-response-output {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .tab-custom-mb.elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tabs-content>.e-con {
        order: 999 !important;
    }

    .tab-custom-mb.elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tabs-heading {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .tab-le .e-n-tab-title:last-child{
        grid-column: span 2;
        width: 50% !important;
    	margin: 0 auto;
    }
}

/* Custom html */
.pxl-box-image {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 5.5px 8.72px;
}

.pxl-box-image__inner {
    border: 1px solid #9C514C;
    position: relative;
}

.pxl-box-image img {
    width: 100%;
    height: 100%;
}

.pxl-box-image svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pxl-box-image__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #9C514C 0.13%, rgba(233, 146, 107, 0.00) 53.58%);
}

/* Pxl Box */

.pxl-box {
    position: relative;
    width: fit-content;
}

.pxl-box__feature-bg {}

.pxl-box__feature-inner {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.449%;
}

.pxl-box__feature-title {
    text-align: center;
    position: absolute;
    top: 33px;
    transform: translateX(-50%);
    left: 50%;
    color: #0D182C;
}

.pxl-box__style-1 .pxl-box__feature-title {
    background: url(./shape-box-1.svg) no-repeat center center;
    width: 184px;
    padding: 5px 15px 12px;
}

.pxl-box__style-2 .pxl-box__feature-title {
    background: url(./shape-box-2.svg) no-repeat center center;
    width: 316px;
    padding: 5px 15px 6px;
}

.pxl-box__feature-content {
    position: absolute;
    top: 79px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pxl-box__feature-st {
    color: #FFF;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.449%;
}

.pxl-box__feature-nd {
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 126.449%;
    background: linear-gradient(92deg, #9C514C 2.71%, #E9926B 41.27%, #9C514C 99.35%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pxl-box__feature-rd {
    color: #FFF;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.449%;
}


/* Pxl Step */

.pxl-step {
    position: relative;
    padding-left: 22px;
}

.pxl-step__title {
    position: absolute;
    color: #fff;
    background: url(./shape-top-stepbox.svg) no-repeat center center;
    width: 574px;
    padding: 14px 42px 33px;
    top: -38px;
    left: 0;
    background-size: contain;
}

.pxl-step__title-number {
    font-family: "Be Vietnam Pro";
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 41px;
}

.pxl-step__title-value {
    font-family: "Be Vietnam Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    padding-left: 24px;
}

.pxl-step__content {
    width: 100%;
    padding: 50px 20px 30px;
    border: 1px solid #9F544D;
    background: radial-gradient(319.41% 218.51% at 127.06% -73.56%, #315DA6 0%, #132440 100%), #FFF;
    color: #FFF;
    text-align: justify;
    font-family: "Be Vietnam Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 126.449%;
}

@media (max-width: 575px) {
    .pxl-step {
        padding-left: 11px;
    }

    .pxl-step__title {
        width: fit-content;
        padding: 8px 15px 22px;

    }

    .pxl-step__title-number {
        font-size: 24px;
    }

    .pxl-step__title-value {
        font-size: 16px;
        padding-left: 12px;
    }

    .pxl-step__content {
        font-size: 14px;
        padding: 30px 15px 15px;
    }

}

.btn.btn-primary {
    background: linear-gradient(92deg, #9C514C 2.71%, #E9926B 41.27%, #9C514C 99.35%), #132440;
    color: #FFF;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    border-radius: 0;
    padding: 10px 25px;
    border: none;
    outline: none;
    cursor: pointer;
}

.pxl-heading {
    background: linear-gradient(92deg, #9C514C 2.7%, #E9926B 41.07%, #9C514C 98.84%);
    position: relative;
    color: #FFF;
    text-align: center;
    text-shadow: 0px 2px 10px rgba(154, 59, 26, 0.50);
    font-family: "Be Vietnam Pro";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 126.449%;
    padding: 11.3px 27px 10.3px;
    margin: 0 34px;
    width: fit-content;
}



.pxl-heading::before {
    content: "";
    position: absolute;
    background: url(./shape-heading-left.svg) no-repeat center center;
    top: 15px;
    width: 50px;
    height: 48px;
    left: -34px;
    z-index: -1;
}


.pxl-heading::after {
    content: "";
    position: absolute;
    top: 15px;
    right: -34px;
    background: url(./shape-heading-right.svg) no-repeat center center;
    width: 50px;
    height: 48px;
    z-index: -1;
}

@media screen and (max-width: 575px) {
    .pxl-heading {
        font-size: 20px;
        padding: 11.3px 27px 10.3px;
        margin: 0 34px;
        width: fit-content;
    }

    .pxl-heading::before {
        content: "";
        position: absolute;
        background: url(./shape-heading-left.svg) no-repeat center center;
        top: 15px;
        width: 25px;
        height: 24px;
        left: -17px;
        z-index: -1;
    }


    .pxl-heading::after {
        content: "";
        position: absolute;
        top: 15px;
        right: -17px;
        background: url(./shape-heading-right.svg) no-repeat center center;
        width: 25px;
        height: 24px;
        z-index: -1;
    }
}

.anh-kieu-1 .wp-caption-text,
.anh-kieu-2 .wp-caption-text {
    color: #fff;
    position: absolute;
    left: 10%;
    width: 80%;
    bottom: 23px;
    padding: 8px 15px;
    background: url(./shape-caption-text.svg) no-repeat center center;
    background-size: contain;
}

.anh-kieu-1.bfnone .pxl-box-image__inner:before,
.anh-kieu-2.bfnone .pxl-box-image__inner:before {
    display: none;
}

.anh-kieu-3 .wp-caption-text {
    color: #fff;
    position: absolute;
    left: 50%;
    width: max-content;
    bottom: 0px;
    transform: translate(-50%, 50%);
    padding: 8px 15px;
    background: url('./shape-caption-text.svg') no-repeat center center;
    background-size: 100% 100%;
}

.anh-kieu-3 img {
    border: 1px solid #9C514C;
    width: 100%;
    height: auto;
}