/* SLIDER NHAN XET KHACH HANG */
.reviews-slider-custom,
.home-about,
.projects-custom,
.page-template-page-homepage .widget_media_gallery {
    background-color: #ffffff;
    padding: 15px;
}
.reviews-slider-custom .swiper-slide {
    display: flex;
    flex-direction: column;
}
.reviews-slider-custom .media-thumb {
    overflow: hidden;
}
.reviews-slider-custom .media-thumb img,
.reviews-slider-custom .media-thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.reviews-slider-custom .media-thumb::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}
.reviews-slider-custom .comment {
    text-align: justify;
    flex: auto;
    padding-right: 5px;
    margin: 15px 0;
    max-height: 200px;
    overflow-y: auto;
}
.reviews-slider-custom .info-customer {
    display: flex;
    align-items: center;
}
.reviews-slider-custom .info-customer .avt {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}
.reviews-slider-custom .info-customer .avt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviews-slider-custom .info-customer .info {
    padding-left: 12px;
    width: calc(100% - 80px);
}
.reviews-slider-custom .info .name {
    font-weight: 700;
    font-size: 14px;
}
.reviews-slider-custom .info .position {
    font-weight: 500;
    font-size: 12px;
    color: #3c3c3c;
}
.reviews-slider-custom .swiper-controls .swiper-button::before {
    color: #ff0022;
}
.reviews-slider-custom .swiper-controls .swiper-button {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.reviews-slider-custom:hover {
    opacity: 1;
    visibility: visible;
}
/* HOME ABOUT */
.home-about .grid-container {
    padding: 0;
    flex-direction: column;
}
.home-about .hb_aboutsdesign2_inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
}
.home-about .hb_aboutsdesign2_left {
    width: 50%;
    padding-left: 20px;
}
.home-about .hb_aboutsdesign2_right {
    width: 50%;
}
.home-about .hb_aboutsdesign2_right img {
    width: 100%;
}
.home-about .hb_button {
    margin-top: 15px;
}
.home-about .hb_button a {
    padding: 6px 24px;
    border-radius: 10px;
    font-size: 12px;
    border: 1px solid #9f9f9f8f;
}
/* PROJECT */
.projects-wrapper {
    display: flex;
}
.projects-wrapper .project-item {
    flex: 1;
    transition: flex 0.5s ease;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    margin: 0 1px;
    overflow: hidden;
}
.projects-wrapper .project-item.active {
    flex-grow: 4;
}
.projects-wrapper .project-item .inner {
    height: 400px;
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.projects-wrapper .project-item .inner::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    background: linear-gradient(0deg, #000 0, rgba(255, 255, 255, 0) 60%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
}
.projects-wrapper .project-item.active .inner::before {
    opacity: 1;
    top: 0;
}
.projects-wrapper .project-item .bg {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.projects-wrapper .project-item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.projects-wrapper .project-item .box-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #ffffff;
}
/* .projects-wrapper .project-item .box-content {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 92%;
  min-height: 150px;
  transform: translateX(-50%);
  transition: all 0.4s ease;
  z-index: 2;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
} */
.projects-wrapper .project-item.active .box-content {
    opacity: 1;
    visibility: visible;
}
.projects-wrapper .project-item .box-content .text-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
}
.projects-wrapper .project-item.active .box-content .text-inner {
    height: auto;
}
.projects-wrapper .box-content .text-inner .logo img {
    width: 80px;
    object-fit: contain;
}
.projects-wrapper .box-content .text-inner .text-info .title {
    margin-bottom: 5px;
    font-weight: 700;
}
.projects-wrapper .project-item .text-inner .text-info {
    opacity: 0;
    visibility: hidden;
    /* width: 0; */
    /* width: calc(100% - 80px);
    padding-left: 30px; */
    max-height: 0;
    overflow: hidden;
    /* transition:
      opacity 0.5s ease,
      visibility 0.5s ease,
      max-height 0.5s ease; */
    transition:
        width 0.4s ease,
        opacity 0.3s ease,
        padding-left 0.4s ease;
}
.projects-wrapper .project-item.active .text-inner .text-info {
    opacity: 1;
    visibility: visible;
    width: calc(100% - 20px);
    padding-left: 0px;
    max-height: 500px;
    transition-delay: 0.4s;
}
.projects-wrapper .text-inner .text-info .desc p {
    margin-bottom: 6px;
}
.projects-wrapper .text-inner .text-info .desc p:last-child {
    margin-bottom: 0;
}
.projects-wrapper .text-inner .text-info .desc strong {
    color: #fed400;
}
/* HOME DOI TAC */
.page-template-page-homepage .widget_media_gallery .widget-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}
.page-template-page-homepage .widget_media_gallery .gallery-item img {
    width: 85% !important;
    height: 80px !important;
    object-fit: contain !important;
    margin: 0 auto;
}

.home-about,.home .hb_partners_desginer,.reviews-slider-custom,.projects-custom{
    border-radius: 10px;
}

.hb_aboutsdesign_images{
    position: relative;
}
.hb_aboutsdesign_images a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.hb_aboutsdesign_images a::before{
    z-index: -1;
    position: absolute;
    content: '';
    width: 40;
    height: 40;
    border-radius: 100%;
    background-color: #ff0022a8;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    transform-origin: 50% 50%;
    animation: zoom 1.8s infinite;
    top: 44%;
    left: 46.2%;
}
.hb_aboutsdesign_images a svg{
    width: 45px;
    height: 45px;
    fill: red;
}
.hb_aboutsdesign_images a svg path{
    background: #fff;
    border-radius: 100%;
}
.projects-wrapper .project-item{
    position: relative;
}
.project_links{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    z-index: 2;
}

.term-description{
    position: relative;
    margin-bottom: 0 !important;
}
.term-description .viewmore-wrappers{
    position: absolute;
    z-index: 9;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(248, 248, 248, 0.4) 0%, rgba(248, 248, 248, 0.8) 10%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 10px;
}
.term-description .viewmore-wrappers .btn-viewmore{
    position: relative;
    display: inline-flex;
    align-items: center;
    background: red;
    border-radius: 30px;
    padding: 20px;
    color: #ffffff;
    font-weight: 500;
    transition: 0.4s;
    line-height: 1px;
    font-size: 16px;
}
.term-description .viewmore-wrappers .btn-viewmore:hover{
    transform: translateY(-5px)
}

.archive .faq-section .swiper-wrapper{
    gap: 10px;
    grid-gap: 10px;
}
.archive .faq-section .swiper-slide{
    width: calc(100% / 6 - 8.5px) !important;
}
.faq-section .swiper-slide .faq_inner{
    transition: .4s;
    cursor: pointer;
}
.faq-section .swiper-slide .faq_inner:hover{
    border: 1px solid red;
}
.faq-section .swiper-slide .faq_inner:hover a{
    color: red;
}

.homepage-center-design .homepage-center-left .widget_nav_menu{
    box-shadow: unset;
}
.homepage-center-design .homepage-center-left .widget_nav_menu .sidebar-title{
    padding: 10px 10px 0;
    margin-bottom: 0;
}
.section.archive-products .archive-products-inner .hb_product_title{
    margin-bottom: 0;
}
.section.archive-products .archive-products-inner .cat_slides_design .cat_parent_title{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive */

@media (max-width: 1024px) {
    .reviews-slider-custom .swiper-controls .swiper-button {
        opacity: 1;
        visibility: visible;
    }
    .reviews-slider-custom .swiper-controls .swiper-button.swiper-button-prev {
        left: -5px !important;
    }
    .reviews-slider-custom .swiper-controls .swiper-button.swiper-button-next {
        right: -5px !important;
    }
    .home-about .hb_aboutsdesign2_left {
        width: 100%;
        padding-left: 0px;
        padding-bottom: 15px;
    }
    .home-about .hb_aboutsdesign2_right {
        width: 100%;
    }
    .page-template-page-homepage .widget_media_gallery .gallery-item {
        width: calc(31% - 0.5rem) !important;
        flex: none;
    }
    .archive .faq-section .swiper-slide{
        width: calc(100% / 4 - 8.5px) !important;
    }
}
@media (max-width: 768px) {
    .projects-wrapper {
        flex-direction: column;
    }
    .projects-wrapper .project-item {
        margin: 1px 0;
        border-radius: 12px;
    }
    .projects-wrapper .project-item .inner {
        height: 100px;
    }
    .projects-wrapper .project-item.active .inner {
        height: 250px;
    }
    .projects-wrapper .project-item .box-content .text-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .projects-wrapper .project-item.active .text-inner .text-info {
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }
    .archive .faq-section .swiper-slide{
        width: calc(100% / 4 - 8.5px) !important;
    }
}
@media (max-width: 640px) {
    .reviews-slider-custom .comment {
        max-height: 170px;
    }
    .page-template-page-homepage .widget_media_gallery .gallery-item {
        width: calc(50% - 0.5rem) !important;
    }
    .page-template-page-homepage .widget_media_gallery .gallery-item img {
        width: 75% !important;
        height: 72px !important;
    }
    .archive .faq-section .swiper-slide{
        width: calc(100% / 2 - 8.5px) !important;
    }
}

.coupon-reveal-btn {
    border: 2px solid #ff0000;
    background-color: #f2f2f2;
    color: #000000;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}
.coupon-reveal-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
div[id*='ajaxsearchlitesettings'].searchsettings .asl_option_inner label {
    font-size: 0px !important;
    color: rgba(0, 0, 0, 0);
}
div[id*='ajaxsearchlitesettings'].searchsettings .asl_option_inner label:after {
    font-size: 11px !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.asl_w_container {
    width: 100%;
    margin: 0px 0px 0px 0px;
    min-width: 200px;
}
div[id*='ajaxsearchlite'].asl_m {
    width: 100%;
}
div[id*='ajaxsearchliteres'].wpdreams_asl_results div.resdrg span.highlighted {
    font-weight: bold;
    color: rgba(217, 49, 43, 1);
    background-color: rgba(238, 238, 238, 1);
}
div[id*='ajaxsearchliteres'].wpdreams_asl_results .results img.asl_image {
    width: 70px;
    height: 70px;
    object-fit: cover;
}
div[id*='ajaxsearchlite'].asl_r .results {
    max-height: none;
}
div[id*='ajaxsearchlite'].asl_r {
    position: absolute;
}

div.asl_m.asl_w {
    border:0.5px solid rgba(0, 0, 0, 0.6) !important;border-radius:0px 0px 0px 0px !important;
    box-shadow: none !important;
}
div.asl_m.asl_w .probox {border: none !important;}

div.asl_r.asl_w.vertical .results .item::after {
    display: block;
    position: absolute;
    bottom: 0;
    content: '';
    height: 1px;
    width: 100%;
    background: #D8D8D8;
}
div.asl_r.asl_w.vertical .results .item.asl_last_item::after {
    display: none;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;display=swap');
body{
    font-family: "Inter", sans-serif;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    font-family: "Inter", sans-serif;
}
.inside-header{
    top:0 !important;
}
.grid-products article.product .woocommerce-loop-product__title,.inside-header .header-inner .right .widget-group .widget_nav_menu ul li a,.woocommerce div.product .product_title,.product-desc-inner .tab-heading-title{
    font-weight:700 !important;
}
.inside-header .header-inner .right .widget-group .widget_nav_menu ul li a {
    text-transform: unset;
}
.section.single.single-post .single-content {
    width: 100%;
}
.section.single.single-post .single-content .meta{
    display:none;
}
.section.single.single-post .single-content .single-title {
    padding: 10px;
}
.hb_relate_post ul li article.item .cover-content .meta {
    grid-gap: 5px !important;
    gap: 5px !important;
}
.hb_relate_post ul li article.item .cover-content .meta .time i {
    margin-right: 5px;
}
.page-template-page-contact .site-outer.site-page .section.section-title{
    display:none !important;
}
.section.archives.archive-posts .grid-posts{
    justify-content: unset;
}
.hb_footer_design{
    position:relative;
    z-index:1;
}
.hb_partners_desginer{
    padding-top: 15px;
    margin-top: 0;
    border-top: unset;
    background: #fff !important;
}
.home .hb_partners_desginer{
    padding-bottom: 15px;
}
.hb_partners_desginer .widget-title{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    padding-left: 15px;
    display:none;
}
.home .hb_partners_desginer .widget-title{
    display:block;
}
.site-outer.site-page .site-footer {
    display: flex;
    flex-direction: column;
}
.hb_footer_design{
    order:-1;
}
.home .hb_footer_design{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(235, 235, 240);
}
.hb_footer_design .widget_custom_html {
    width: 100%;
}
.hb_footer_design .widget_custom_html:last-child{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(235, 235, 240);
}
.home .hb_footer_design .widget_custom_html:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: unset;
}
.home .hb_footer_design .widget_custom_html:first-child{
    padding-top: 0;
    margin-top: 0;
    border-top: unset;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a{
    display: inline-block;
}
.woo-description .term-description .eztoc-hide {
    display: none;
}

.woo-description .term-description .ez-toc-icon-toggle-span {
    position: relative;
}

.woo-description .term-description .ez-toc-icon-toggle-span:before {
    display: inline-block;
    content: '\f03a';
    font-family: "Font Awesome 6 Pro";
}
.footer-before.before-footer{
    overflow: hidden;
}
img.aligncenter {
    /*  	display: inline-block; */
}
.hb_danhmuc_design .grid-productcat .item .cover-content .desc{
    display:none;
}
#page_404 .site-content{
    margin-top: 100px;
    margin-bottom: 100px;
    background: #fff;
    padding: 30px;
    text-align: center;
}
#page_404 .page-subtitle{
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}
#page_404 .page-title{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
#page_404 .page-button a{
    background: red;
    display: inline-flex;
    padding: 10px 30px;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
}
#page_404 .page-button a:hover{
    background: #dc0505;
}
.hb-text-center{
    text-align:center;
    width:100%;
}
.woo-description .term-description {
    width: 100%;
}
.sticky-wrapper.is-sticky{
    position: relative;
    z-index: 999;
    box-shadow: 0 0 1px #000;
}
/*Box author sinlge post design*/
.hb_author_design{
    padding:30px 0;
}
.hb_author_design .linkbox-inner{
    display: flex;
    flex-flow: row wrap;
}
.hb_author_design .linkbox-inner ._images{
    width: 150px;
    height: 150px;
    border-radius: 100%;
    padding: 15px;
    box-shadow: 0 0 1px #000;
    overflow: hidden;
}
.hb_author_design .linkbox-inner ._images img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hb_author_design .linkbox-inner .inner{
    flex: 1;
    padding-left: 20px;
}
.hb_author_design .linkbox-inner .inner ._sub_title{
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.hb_author_design .linkbox-inner .inner .desc{
    font-size: 14px;
}
.hb_author_design .linkbox-inner .inner .desc p{
    line-height:26px;
}
.hb_author_design .linkbox-inner .inner .hb_lists_social_networks{
    display: flex;
    align-items: center;
    padding-top: 10px;
}
.hb_author_design .linkbox-inner .inner .hb_lists_social_networks a{
    flex:0 0 35px;
    max-width: 35px;
    width: 35px;
    height: 35px;
    margin-right:10px;
}
.hb_author_design .linkbox-inner .inner .hb_lists_social_networks a:last-child{
    margin-right:0;
}
.hb_author_design .linkbox-inner .inner .hb_lists_social_networks a figure{
    width: 100%;
    height: 100%;
}
.hb_author_design .linkbox-inner .inner .hb_lists_social_networks a figure img{
    width: 100%;
    height: 100%;
    object-fit:contain;
}


.author-info{
    display: flex;
    align-items: center;
    gap: 20px;
    grid-gap: 20px;
    padding: 20px;
    margin-top: 40px;
    border: 1px solid;
    border-radius: 10px;
}
.author-avatar{
    flex-grow: 1;
    flex-shrink: 0;
    max-width: 200px;
    width: 200px;
    height: 200px;
    max-height: 200px;
    border-radius: 100%;
}
.author-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius: 100%;
    box-shadow: 0 0 2px #000;
}
.author-content{

}
.author-title-network{
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.2;
    margin-bottom: 10px;
}
.author-title-network .author-title span{
    display: block;
}
.author-title-network .author-title span:first-child{
    font-style: italic;
    font-weight:500;
}
.author-title-network .author-title span:last-child{
    font-size: 18px;
    font-weight:700;
    text-transform:capitalize;
}
.author-title-network .author-network{
    display: flex;
    align-items: center;
    gap:10px;
    grid-gap:10px;
}
.author-title-network .author-network p{
    margin-bottom:0;
}
.author-title-network .author-network p a{
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: red;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    transition:.4s;
}
.author-title-network .author-network p a:hover{
    transform:translatey(-5px)
}
.author-title-network .author-network p.author-linkedin a{
    background: #0077B5;
}
.author-title-network .author-network p.author-facebook a{
    background: #3B5998;
}
.author-title-network .author-network p.author-myspace a{
    background: #030303;
}
.author-title-network .author-network p.author-pinterest a{
    background: #E60023;
}
.author-title-network .author-network p.author-soundcloud a{
    background: #FF3300;
}
.author-title-network .author-network p.author-tumblr a{
    background: #36465D;
}
.author-title-network .author-network p.author-wikipedia a{
    background: #006699;
}
.author-title-network .author-network p.author-twitter a{
    background: #1DA1F2
}
.author-title-network .author-network p.author-youtube a{
    background: #FF0000
}
/*End box author*/

.section.archive-products .archive-products-inner .hb_product_title{
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.product-desc-inner .woocommerce-tabs-panel a,.section.single.single-post .single-content .content a{
    font-weight: 600;
    color: var(--color1) !important;
}
.product-desc-inner .woocommerce-tabs-panel a:hover,.section.single.single-post .single-content .content a:hover{
    color: var(--color2) !important;
}
.section.single.single-post .single-content .content img.aligncenter,.section.single.single-post .single-content .content figure img{
    width:70%;
    height:auto;
    object-fit:contain;
}
.section.single.single-post .single-content .content figure{
    width: 100% !important;
}
.section.single-product .product-detail-inner .summary.entry-summary {
    width: calc(100% - 420px);
}
.toTop {
    bottom: 15px;
}
@media only screen and (max-width: 39.96875rem){
    .section.single-product .product-detail-inner .summary.entry-summary {
        width: 100%;
    }
    .section.single-product .product-detail-inner .summary.entry-summary {
        max-width: 100%;
    }
    .section.single.single-post .single-content .content img.aligncenter,.section.single.single-post .single-content .content figure img{
        width:100%;
        height:100%;
    }
    .section.archive-products .archive-products-inner .hb_product_title{
        font-size: 18px;
    }

    /*Box author sinlge post design*/

    .hb_author_design .linkbox-inner ._images {
        margin: 0 auto 20px;
    }
    .hb_author_design .linkbox-inner .inner {
        padding-left: 0;
        text-align: center;
    }
    .hb_author_design .linkbox-inner .inner .hb_lists_social_networks {
        justify-content: center;
    }

    /*End box author*/

    .hb_add_text {
        display: none !important;
    }
    .home .grid-products article.product .woocommerce-loop-product__title{
        min-height:34px;
    }
    .grid-products article.product span.price {
        display: block;
    }
    .hb_relate_post ul li article.item .cover-content .h6 a{
        min-height:unset;
    }
    .faq-section .swiper-slide .faq_inner,.faq-section .swiper-slide .faq_inner a{
        width:100%;
    }
    .w-bottom .section.add_this-section{
        display:none;
    }
}

.zalo-container {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 110px;
    right: 15px;
    z-index: 9999999;
}

.zalo-container.zalo1{
    bottom: 270px;
}
.zalo-container.zalo2{
    bottom: 205px;
}
.zalo-container.right.call {
    bottom: 140px;
}
.zalo-container.right.call1 {
    bottom: 75px;
}
.zalo-container.right.call span,.zalo-container.right.call1 span{
    background: #fe4632;
}

.zalo-container.right.call span,.zalo-container.right.call1 span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.zalo-container span {
    display: flex;
    -ms-align-items: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1182FC;
    position: relative;
}
.zalo-container.call img,
.zalo-container.call1 img{
    width: 20px;
}

.animated_zalo.infinite {
    animation-iteration-count: infinite;
}
.cmoz-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;

    opacity: .1;
    border-color: #1182fc;
    background-color: #1182fc;
    opacity: .5;
}

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


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

/**/
.hb_add_text {
    position: absolute;
    left: -100%;
    transform: translateX(-48%);
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 45px 0 10px;
    background: #FD2036;
    z-index: -1;
    color: #fff;
    border-radius: 100px 0 0 100px;
    font-family: inherit;
    font-size: 14px;
    line-height: 16px;
}

.cmoz-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -9.5px;
    left: -9.5px;
    position: absolute;
    box-shadow: 0 0 0 0 rgba(17, 130, 252, 0.45);
    background-color: rgba(17, 130, 252, 0.45);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.8s infinite;
}

.zalo-container.right.call .cmoz-alo-circle-fill,
.zalo-container.right.call1 .cmoz-alo-circle-fill{

    box-shadow: 0 0 0 0 #ff00229c;
    background-color: #ff0022a8;
}

.zalo-container.right.call .cmoz-alo-circle,.zalo-container.right.call1 .cmoz-alo-circle {
    border-color: #ec1e24;
    background-color: #ec1e24;

}
figure.wp-caption .wp-caption-text, figure.wp-caption .caption-text, figure.caption .wp-caption-text, figure.caption .caption-text {
    padding: 10px 10px 5px;
    background: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    color: #2f2929;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
}

.swiper:not(.swiper-images) .swiper-slide {
    opacity: 1;
    width: auto;
}

.section.hb_banner_design .swiper .swiper-slide {
    width: 100%;
}

@media only screen and (min-width: 1024px) {
    .section.hb_banner_design .swiper .swiper-slide {
        width: calc(50% - 5px );
    }
}
section.section-title>.title-bg{background-image:url("wp-content/uploads/2024/03/red-gift-box-with-gold-ribbon-red-background-copy-space-min.jpg");}