/*
Theme Name: Alo Ve Sinh
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/** CSS Khối Quy Trình **/
.quy-trinh {
    margin: 20px 0;
    padding: 0;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.quy-trinh::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #bf9b30, #00956f, #bf9b30);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

.quy-trinh-header {
    background: linear-gradient(135deg, #036d19 0%, #00402f 100%);
    color: white;
    padding: 12px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quy-trinh-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 6s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        transform: rotate(45deg) translate(-10%, -10%);
    }
    50% {
        transform: rotate(45deg) translate(10%, 10%);
    }
}

.quy-trinh-badge {
    display: inline-block;
    background: #036d19;
    color: #ffffff;
    backdrop-filter: blur(15px);
    padding: 3px 12px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quy-trinh-main-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.quy-trinh-content {
    padding: 15px;
}

.quy-trinh .quy-trinh-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px;
    margin: 5px 0;
}

.quy-trinh .quy-trinh-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all .3s ease;
    position: relative;
}

.quy-trinh .quy-trinh-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #036d19, #00956f);
    opacity: 0;
    transition: all .3s ease;
}

.quy-trinh .quy-trinh-step:hover::before {
    opacity: 1;
}

.quy-trinh .quy-trinh-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border-color: #00956f;
}

.quy-trinh .quy-trinh-step-number {
    font-size: 1.05rem;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #036d19 0%, #00956f 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 3px 8px rgba(0,103,75,.2);
    transition: all .3s ease;
}

.quy-trinh .quy-trinh-step:hover .quy-trinh-step-number {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0,103,75,.3);
}

.quy-trinh .quy-trinh-step-text {
    flex: 1;
    color: #1f2937;
    line-height: 1.5;
    font-size: 1rem;
}

.quy-trinh .quy-trinh-step-text strong {
    color: #036d19;
    font-weight: 750;
    font-size: 1.08rem;
}

.quy-trinh-footer {
    background: linear-gradient(135deg, #036d19 0%, #00402f 100%);
    color: white;
    padding: 15px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quy-trinh-footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: rotate(-45deg);
    animation: footerShine 8s ease-in-out infinite;
}

@keyframes footerShine {
    0%, 100% {
        transform: rotate(-45deg) translate(-5%, -5%);
    }
    50% {
        transform: rotate(-45deg) translate(5%, 5%);
    }
}

.quy-trinh-footer-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
    font-style: normal;
}

.quy-trinh-footer-subtext {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 8px;
    position: relative;
    z-index: 2;
    font-style: normal;
}

@media (max-width: 768px) {
    .quy-trinh-header {
        padding: 25px 20px;
    }
    
    .quy-trinh-main-title {
        font-size: 1.4rem;
    }
    
    .quy-trinh-content {
        padding: 15px;
    }

    .quy-trinh .quy-trinh-steps {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }

    .quy-trinh .quy-trinh-step {
        padding: 16px;
    }

    .quy-trinh .quy-trinh-step-text {
        font-size: 1rem;
    }

    .quy-trinh .quy-trinh-step-text strong {
        font-size: 1.05rem;
    }
    
    .quy-trinh-footer {
        padding: 22px 25px;
    }
    
    .quy-trinh-footer-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .quy-trinh-header {
        padding: 22px 18px;
    }
    
    .quy-trinh-main-title {
        font-size: 1.3rem;
    }
    
    .quy-trinh-content {
        padding: 20px;
    }

    .quy-trinh .quy-trinh-step {
        padding: 14px;
        gap: 12px;
    }

    .quy-trinh .quy-trinh-step-number {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .quy-trinh-footer {
        padding: 20px 22px;
    }
    
    .quy-trinh-footer-text {
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quy-trinh::before,
    .quy-trinh-header::before,
    .quy-trinh-footer::before {
        animation: none;
    }
}

.quy-trinh .quy-trinh-step-text strong {
    display: block;
    margin-bottom: 2px;
}

.quy-trinh,
.quy-trinh em,
.quy-trinh i,
.quy-trinh cite,
.quy-trinh dfn,
.quy-trinh var {
    font-style: normal !important;
}

.quy-trinh .quy-trinh-step {
    --qt-step-radius: 10px;
    border-radius: var(--qt-step-radius);
    overflow: hidden;
}

.quy-trinh .quy-trinh-step::before {
    top: 0;
    bottom: 0;
    height: auto;
    border-radius: var(--qt-step-radius) 0 0 var(--qt-step-radius);
}

/** End CSS Khối Quy Trình **/

/** CSS Khối Liên Hệ **/
.lien-he {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
    padding: 7px;
}

.lien-he .lien-he-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px 0;
    position: relative;
}

.lien-he .lien-he-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00674b;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    text-wrap: balance;
}

.lien-he .lien-he-title h1:focus-visible {
    outline: 3px solid #00674b;
    outline-offset: 2px;
}

.lien-he .lien-he-title h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #00674b, #d91e36);
    border-radius: 2px;
}

.lien-he .lien-he-title .lien-he-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.5;
}

.lien-he .lien-he-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.lien-he .lien-he-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
    animation: lien-he-fadeInUp 0.6s ease forwards;
}

.lien-he .lien-he-card:focus-within {
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 5px #00674b;
}

.lien-he .lien-he-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lien-he .lien-he-card--contact::before,
.lien-he .lien-he-card--services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.lien-he .lien-he-card--contact::before {
    background: linear-gradient(90deg, #00674b, #bf9b30);
}

.lien-he .lien-he-card--services::before {
    background: linear-gradient(90deg, #d91e36, #00956f);
}

.lien-he .lien-he-card--services {
    animation-delay: 0.2s;
    opacity: 0;
}

.lien-he .lien-he-card__header {
    padding: 22px 20px;
    text-align: center;
    background: rgba(0, 103, 75, 0.05);
    border-bottom: 1px solid #e5e7eb;
}

.lien-he .lien-he-card__title {
    font-size: 16px;
    color: #00674b;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.lien-he .lien-he-card--services .lien-he-card__title {
    color: #d91e36;
}

.lien-he .lien-he-card__content {
    padding: 18px;
}

.lien-he .lien-he-service-list,
.lien-he .lien-he-tip-list,
.lien-he .lien-he-contact-list {
    list-style: none;
    padding-left: 0;
    margin-left: -12px;
}

.lien-he .lien-he-service-list li,
.lien-he .lien-he-tip-list li,
.lien-he .lien-he-contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-radius: 6px;
    position: relative;
}

.lien-he .lien-he-service-list li:has(> a:focus-visible),
.lien-he .lien-he-contact-list li:has(> a:focus-visible) {
    background-color: rgba(0, 103, 75, 0.08);
}

.lien-he .lien-he-service-list li:hover,
.lien-he .lien-he-contact-list li:hover {
    background-color: rgba(0, 103, 75, 0.05);
    padding-left: 10px;
}

.lien-he .lien-he-service-check {
    color: #00674b;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(0, 103, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lien-he .lien-he-service-list li:hover .lien-he-service-check,
.lien-he .lien-he-service-list li:has(> a:focus-visible) .lien-he-service-check {
    background: #00674b;
    color: #ffffff;
    transform: scale(1.1);
}

.lien-he .lien-he-service-link {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    position: relative;
    word-break: break-word;
    line-height: 1.4;
    padding-right: 20px;
    border-radius: 4px;
    padding: 8px 12px;
    margin: -8px -12px -8px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.lien-he .lien-he-service-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 12px;
    width: 0;
    height: 2px;
    background: #00674b;
    transition: all 0.3s ease;
}

.lien-he .lien-he-service-link:hover::after {
    width: calc(100% - 24px);
}

.lien-he .lien-he-service-link:hover {
    color: #00674b;
}

.lien-he .lien-he-service-link:focus-visible {
    outline: 3px solid #00674b;
    outline-offset: 1px;
    background: rgba(0, 103, 75, 0.05);
}

.lien-he .lien-he-contact-icon {
    margin-right: 15px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 103, 75, 0.1);
    color: #00674b;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lien-he .lien-he-contact-list li:has(> a:focus-visible) .lien-he-contact-icon,
.lien-he .lien-he-contact-list li:hover .lien-he-contact-icon {
    background: #00674b;
    color: #ffffff;
    transform: scale(1.1);
}

.lien-he .lien-he-contact-icon--zalo {
    background: rgba(0, 104, 255, 0.1);
    color: #0068ff;
}

.lien-he .lien-he-contact-list li:has(> a:focus-visible) .lien-he-contact-icon--zalo,
.lien-he .lien-he-contact-list li:hover .lien-he-contact-icon--zalo {
    background: #0068ff;
    color: #ffffff;
    transform: scale(1.1);
}

.lien-he .lien-he-contact-icon--fb {
    background: rgba(59, 89, 152, 0.1);
    color: #3b5998;
}

.lien-he .lien-he-contact-list li:has(> a:focus-visible) .lien-he-contact-icon--fb,
.lien-he .lien-he-contact-list li:hover .lien-he-contact-icon--fb {
    background: #3b5998;
    color: #ffffff;
}

.lien-he .lien-he-contact-link {
    color: #1f2937;
    text-decoration: none;
    flex: 1;
    transition: all 0.3s ease;
    word-break: break-word;
    display: flex;
    align-items: center;
    min-height: 40px;
    padding-right: 20px;
    border-radius: 4px;
    padding: 8px 12px;
    margin: -8px -12px -8px 0;
    position: relative;
    line-height: 1.5;
}

.lien-he .lien-he-contact-link[href]:hover {
    color: #00674b;
}

.lien-he .lien-he-contact-link:focus-visible {
    outline: 3px solid #00674b;
    outline-offset: 1px;
    background: rgba(0, 103, 75, 0.05);
}

.lien-he address.lien-he-contact-link {
    font-style: normal;
}

.lien-he .lien-he-contact-badge {
    color: #00674b;
    font-weight: bold;
    margin-left: 8px;
    background: rgba(0, 103, 75, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.lien-he .lien-he-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 1.5rem 0;
}

.lien-he .lien-he-tip-section {
    margin-top: 1.5rem;
}

.lien-he .lien-he-tip-list--fancy li {
    background: rgba(128, 0, 32, 0.05);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 15px;
    border-left: 4px solid #d91e36;
    transition: all 0.3s ease;
    position: relative;
}

.lien-he .lien-he-tip-list--fancy li:has(> a:focus-visible) {
    background: rgba(128, 0, 32, 0.12);
    border-left-color: #00674b;
    box-shadow: inset 0 0 0 1px rgba(0, 103, 75, 0.2);
}

.lien-he .lien-he-tip-list--fancy li:hover {
    background: rgba(128, 0, 32, 0.1);
    transform: translateX(5px);
}

.lien-he .lien-he-tip-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    word-break: break-word;
    line-height: 1.4;
    padding-right: 20px;
    position: relative;
    width: 100%;
    border-radius: 4px;
    padding: 8px;
    margin: -8px;
    outline-offset: 2px;
}

.lien-he .lien-he-tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 0px;
    margin-left: -28px;
    transition: all 0.3s ease;
}

.lien-he .lien-he-tip-text {
    flex: 1;
    line-height: 1.4;
    margin-left: -18px;
    transition: all 0.3s ease;
}

.lien-he .lien-he-tip-link::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 20px;
    width: 0;
    height: 2px;
    background: #00674b;
    transition: all 0.3s ease;
}

.lien-he .lien-he-tip-link:hover::after {
    width: calc(100% - 36px);
}

.lien-he .lien-he-tip-link:hover {
    color: #00674b;
}

.lien-he .lien-he-tip-link:focus-visible {
    outline: 3px solid #00674b;
    background: rgba(0, 103, 75, 0.05);
    border-radius: 6px;
}

.lien-he .lien-he-actions {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.lien-he .lien-he-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-height: 48px;
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.lien-he .lien-he-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.3s ease;
    pointer-events: none;
}

.lien-he .lien-he-btn:hover::after {
    left: 100%;
}

.lien-he .lien-he-btn:focus-visible {
    outline: 3px solid #00674b;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(0, 103, 75, 0.1);
}

.lien-he .lien-he-btn--primary {
    background: #00674b;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 103, 75, 0.3);
}

.lien-he .lien-he-btn--primary:hover,
.lien-he .lien-he-btn--primary:focus {
    background: #00402f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 103, 75, 0.4);
}

.lien-he .lien-he-btn--primary:focus-visible {
    box-shadow: 0 0 0 4px rgba(0, 103, 75, 0.2), 0 6px 15px rgba(0, 103, 75, 0.4);
}

.lien-he .lien-he-btn--outline {
    background: transparent;
    color: #00674b;
    border-color: #00674b;
}

.lien-he .lien-he-btn--outline:hover,
.lien-he .lien-he-btn--outline:focus {
    background: #00674b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 103, 75, 0.3);
}

.lien-he .lien-he-btn--outline:focus-visible {
    box-shadow: 0 0 0 4px rgba(0, 103, 75, 0.2), 0 6px 15px rgba(0, 103, 75, 0.3);
}

.lien-he .lien-he-new-badge {
    background: #dc3545;
    color: #ffffff;
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 8px;
    font-weight: 600;
    line-height: 1.4;
    margin-left: 9px;
    white-space: nowrap;
    align-self: center;
}

@keyframes lien-he-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .lien-he .lien-he-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 12px;
        row-gap: 18px;
    }
    .lien-he .lien-he-card__header {
        padding: 28px 20px;
    }
    .lien-he .lien-he-card__content {
        padding: 18px;
    }
    .lien-he .lien-he-card__title {
        font-size: 1.75rem;
    }
    .lien-he .lien-he-btn {
        flex: none;
        min-width: 160px;
    }
    .lien-he .lien-he-title h1 {
        font-size: 3rem;
    }
}

@media (prefers-contrast: high) {
    .lien-he .lien-he-title h1,
    .lien-he .lien-he-card__title,
    .lien-he .lien-he-service-link,
    .lien-he .lien-he-tip-link,
    .lien-he .lien-he-contact-link {
        color: #000;
    }
    .lien-he .lien-he-card {
        border: 2px solid #000;
    }
    .lien-he .lien-he-service-check,
    .lien-he .lien-he-contact-badge {
        color: #000;
        background: #fff;
        border: 1px solid #000;
    }
    .lien-he .lien-he-service-link:focus-visible,
    .lien-he .lien-he-tip-link:focus-visible,
    .lien-he .lien-he-contact-link:focus-visible,
    .lien-he .lien-he-btn:focus-visible {
        outline: 4px solid #000;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lien-he .lien-he-card,
    .lien-he .lien-he-service-list li,
    .lien-he .lien-he-contact-list li,
    .lien-he .lien-he-tip-list--fancy li,
    .lien-he .lien-he-service-check,
    .lien-he .lien-he-contact-icon,
    .lien-he .lien-he-btn {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .lien-he .lien-he-service-link:focus-visible,
    .lien-he .lien-he-contact-link:focus-visible,
    .lien-he .lien-he-tip-link:focus-visible,
    .lien-he .lien-he-btn:focus-visible {
        outline-offset: 2px;
    }
    .lien-he .lien-he-card--services {
        opacity: 1;
    }
}

.lien-he .lien-he-actions {
    justify-content: center;
}

@media (min-width: 768px) {
    .lien-he .lien-he-btn {
        flex: 0 0 150px;
    }
}
/** End CSS Khối Liên Hệ **/

/** CSS Khối Cam Kết **/
.cam-ket {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin: 20px 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.cam-ket::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #bf9b30, #00956f, #bf9b30);
}

.cam-ket-header {
    background: linear-gradient(135deg, #036d19 0%, #00402f 100%);
    color: white;
    padding: 22px 20px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cam-ket-header::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.cam-ket-badge {
    display: inline-block;
    background: #fff;
    color: #111;
    backdrop-filter: blur(10px);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.cam-ket-main-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 5px 0 0 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    padding: 0 10px;
}

.cam-ket__content {
    padding: 10px 25px 25px;
}

.cam-ket-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 20px 0;
}

.cam-ket-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cam-ket-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #036d19, #00956f);
    opacity: 0;
    transition: all 0.3s ease;
}

.cam-ket-feature:hover::before {
    opacity: 1;
}

.cam-ket-feature:has(*:focus-visible) {
    border-color: #036d19;
    box-shadow: 0 0 0 2px rgba(0, 103, 75, 0.1);
}

.cam-ket-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #00956f;
}

.cam-ket-svg-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.cam-ket-feature-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #036d19 0%, #00956f 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 103, 75, 0.2);
    flex-shrink: 0;
}

.cam-ket-feature-icon-svg svg {
    width: 26px;
    height: 26px;
}

.cam-ket-feature:hover .cam-ket-feature-icon-svg {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 103, 75, 0.3);
}

.cam-ket-feature-content {
    flex: 1;
}

.cam-ket-feature-content h3 {
    color: #036d19;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.cam-ket-feature-content p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.cam-ket-hotline {
    color: #d91e36;
    font-weight: 700;
    font-size: 1em;
    background: rgba(220, 38, 38, 0.05);
    padding: 1px 4px;
    border-radius: 3px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.cam-ket-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 1.5rem 0;
}

.cam-ket-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #036d19 0%, #00402f 100%);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 103, 75, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.cam-ket-guarantee::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.cam-ket-guarantee:hover::before {
    transform: rotate(45deg) translate(15px, 15px);
}

.cam-ket-guarantee:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 103, 75, 0.3);
}

.cam-ket-guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.cam-ket-guarantee-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.cam-ket-guarantee-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-top: 9px;
}

@media (min-width: 1024px) {
    .cam-ket-header {
        padding: 25px 25px 28px;
    }
    
    .cam-ket-main-title {
        font-size: 1.3rem;
        margin: 12px 0 6px 0;
    }
    
    .cam-ket-badge {
        margin-bottom: 10px;
    }
    
    .cam-ket-header::after {
        bottom: -18px;
    }
    
    .cam-ket-features {
        gap: 16px;
        margin: 22px 0;
    }
    
    .cam-ket-feature {
        padding: 20px;
        gap: 18px;
    }
    
    .cam-ket-feature-icon-svg {
        width: 56px;
        height: 56px;
    }
    
    .cam-ket-feature-icon-svg svg {
        width: 28px;
        height: 28px;
    }
    
    .cam-ket-feature-content h3 {
        font-size: 1.15rem;
    }
    
    .cam-ket-feature-content p {
        font-size: 0.95rem;
    }
    
    .cam-ket-guarantee {
        gap: 14px;
        padding: 22px;
        font-size: 1.2rem;
        min-height: 65px;
    }
    
    .cam-ket-guarantee-icon {
        width: 42px;
        height: 42px;
    }
    
    .cam-ket-guarantee-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .cam-ket-header {
        padding: 22px 20px 24px;
    }
    
    .cam-ket-main-title {
        font-size: 1.3rem;
        margin: 12px 0 6px 0;
    }
    
    .cam-ket-badge {
        margin-bottom: 8px;
    }
    
    .cam-ket-header::after {
        bottom: -16px;
    }
    
    .cam-ket-features {
        gap: 16px;
        margin: 22px 0;
    }
    
    .cam-ket-feature {
        padding: 18px;
        gap: 16px;
    }
    
    .cam-ket-feature-icon-svg {
        width: 50px;
        height: 50px;
    }
    
    .cam-ket-feature-icon-svg svg {
        width: 26px;
        height: 26px;
    }
    
    .cam-ket-guarantee {
        gap: 12px;
        padding: 20px;
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .cam-ket-header {
        padding: 18px 15px 20px;
    }
    
    .cam-ket-main-title {
        font-size: 1.1rem;
        margin: 10px 0 0 0;
    }
    
    .cam-ket-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .cam-ket-header::after {
        bottom: -14px;
        width: 28px;
        height: 28px;
    }
    
    .cam-ket__content {
        padding: 18px 20px 20px;
    }
    
    .cam-ket-features {
        gap: 14px;
        margin: 18px 0;
    }
    
    .cam-ket-feature {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }
    
    .cam-ket-feature-icon-svg {
        width: 48px;
        height: 48px;
        align-self: center;
    }
    
    .cam-ket-feature-icon-svg svg {
        width: 24px;
        height: 24px;
    }
    
    .cam-ket-guarantee {
        flex-direction: row;
        gap: 10px;
        padding: 18px;
        font-size: 1.05rem;
        min-height: 56px;
    }
    
    .cam-ket-guarantee-icon {
        width: 38px;
        height: 38px;
    }
    
    .cam-ket-guarantee-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .cam-ket-header {
        padding: 16px 12px 18px;
    }
    
    .cam-ket-main-title {
        font-size: 1rem;
        margin: 8px 0 0 0;
    }
    
    .cam-ket__content {
        padding: 15px;
    }
    
    .cam-ket-feature {
        padding: 14px;
    }
    
    .cam-ket-guarantee {
        padding: 16px;
        font-size: 1rem;
        gap: 8px;
    }
    
    .cam-ket-guarantee-icon {
        width: 36px;
        height: 36px;
    }
    
    .cam-ket-guarantee-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (prefers-contrast: high) {
    .cam-ket-header {
        background: #00402f;
    }
    
    .cam-ket-feature {
        border: 2px solid #e5e7eb;
    }
    
    .cam-ket-guarantee {
        border: 2px solid #00402f;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cam-ket-feature,
    .cam-ket-guarantee,
    .cam-ket-feature-icon-svg {
        transition: none;
    }
    
    .cam-ket-feature:hover,
    .cam-ket-guarantee:hover {
        transform: none;
    }
}
/** End CSS Khối Cam Kết **/







































/*************** ADD CUSTOM CSS HERE.   ***************/
.entry-title {
    text-align: center !important;
    padding-bottom: 22px;
}

.header-button .button.icon.round {
    background-color: #036D19;
    border: 1px solid #036D19;
    color: #fff;
}

.nav-dropdown li a:hover {
    background-color: #036D19 !important;
}

.nav > li > a {
    color: #036D19;
}

.nav-outline > li.active > a {
    border-color: currentColor;
    color: #D91E36;
}

.main-header {
    text-align: center;
    font-size: 18px;
    color: #D91E36;
    padding-top: 12px;
}
.main-header::after{content:"";display:block;height:9px;background:url(https://alovesinh.com/wp-content/uploads/2023/05/line-1001.webp) no-repeat center bottom;background-size:auto 9px;margin-bottom:25px;margin-top:5px}

.main-header1 {
    font-size: 18px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #fff;
}

.main-header1:after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: #D91E36;
    margin: 2px auto 0;
}

.top-bar-nav > li > a {
    font-size: 14px;
}

.header-contact {
    color: #fff;
    font-size: 14px;
}

.header-main .nav > li > a {
    font-weight: 700;
}

.nav-line-bottom > li > a:before {
    background-color: #D91E36 !important;
}

.nav-uppercase > li > a {
    text-transform: none;
}

.nav-dark .nav > li > a {
    color: #fff;
}

.nav-size-large > li > a {
    font-size: .95em;
}

@media screen and (max-width: 480px) {
    .off-canvas .nav-vertical > li > a {
        font-size: 17px;
        padding: 15px;
        margin: 2px;
        min-width: 48px;
        min-height: 48px;
    }
}

.gallery-caption {
    display: block;
    display: none;
}

.button:not(.icon) > i {
    margin-left: -.15em;
    margin-right: .0em;
}

h3.widget-title,
span.widget-title {
    display: none;
}

.widget_calendar {
    padding-bottom: 30px;
}

.widget_media_gallery {
    margin-bottom: -10px;
}

.giat-sofa-banner .title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1;
}

.giat-sofa-banner .title_vp {
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1;
}

.giat-sofa-banner .subtitle1 {
    font-size: 30px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1;
}

.giat-sofa-banner .subtitle2 {
    font-size: 40px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1;
}

.table-container {
	margin: 20px 0 8px 0;
	overflow: hidden;
	border: 1px solid #00956f;
	border-radius: 6px;
}

table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
}

th,
td {
	border: 1px solid #00956f;
	padding: 18px 7px;
	text-align: left;
	vertical-align: middle;
}

th {
	background-color: #00674b;
	font-size:15px;
	color: #ffffff;
	font-weight: bold;
	height: 50px;
	text-align: center;
}

td {
	color: #000000;
	font-size:18px;
}

.table-container th:first-child,
.table-container td:first-child {
	padding: 12px 15px;
	text-align: center;
	vertical-align: middle;
}
td:first-child {
padding-left: 12px;
}

td:last-child {
	
}

th:last-child {
	padding-right: 12px;
}

tbody tr {
	transition: background-color 0.3s ease;
}

tbody tr:nth-child(odd) {
	background-color: rgba(3, 109, 25, 0.05);
}

tbody tr:nth-child(even) {
	background-color: #ffffff;
}

tbody tr:hover {
	background-color: rgba(0, 149, 111, 0.15);
}

tbody tr:active {
	background-color: rgba(191, 155, 48, 0.2);
}

.gop-bang {
	text-align: center;
	border-bottom: 5px solid #00956f;
	color: #d91e36;
}

.gop-bang td {
	color: #d91e36;
}

@media (max-width: 600px) {
	.table-container {
		overflow-x: auto;
	}

	th,
	td {
		padding: 8px 10px;
		box-sizing: border-box;
	}
}
@media (max-width: 600px) {
		td {
			font-size:15px;
		}
}

.phu-hinh {
    display: inline-block;
    margin-top: -10px;
}

@media screen and (max-width: 589px) {
    .row-company {
        margin-left: 12px;
    }

    .pull-left {
        display: none;
    }

    .absolute-footer.dark {
        padding-bottom: 70px !important;
    }
}

.box-blog-post .is-divider {
    display: none;
}

.is-divider {
    display: none;
}

.is-xsmall {
    display: none;
}

p {
    margin-bottom: 5px;
    line-height: 32px;
}

.entry-header-text {
    margin-bottom: -40px;
}

.box-text p {
    display: none;
}

.page-wrapper {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: -100px;
}

.star-rating span:before {
    color: green;
}

.entry-content > p {
    font-size: 18px;
    text-align: justify;
}

.entry-content ul li {
    font-size: 18px;
    text-align: justify;
}

.page-numbers {
    margin-bottom: 75px !important;
}

.text-center .more-link {
    margin-top: 0;
}

.entry-content strong {
    margin-bottom: 30px;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
ul {
    margin-bottom: 10px;
}

.ve-alo-ve-sinh {
    padding-left: 10px;
    padding-right: 10px;
}

@media screen and (max-width: 589px) {
    .qua-tang {
        margin-top: -50px;
    }
}

.entry-content p.video-h4p {
    text-align: center;
    font-size: 17px;
    margin-top: -15px;
    margin-bottom: -15px !important;
    padding-top: 20px;
}

.wp-caption .wp-caption-text {
    font-size: 17px;
    font-style: normal;
    padding: .2em;
    margin-bottom: 10px !important;
}

.footer2 a {
    display: inline-block;
    min-width: 48px;
    max-height: 48px;
}

@media only screen and (min-width: 768px) {
    .footer2 .cot2 {
        padding-left: 25px;
    }
}

.footer2 h4 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 10px;
}

.footer2 .is-divider {
    margin: 5px 0 15px;
}

.footer2 ul {
    margin-bottom: 0;
}

.footer2 ul li {
    margin-bottom: 6px;
    list-style: none;
    margin-left: 0;
}

.footer2 .cot2 .icon-box {
    background: #4d4d4d;
    padding: 10px;
    border-radius: 5px;
    margin-top: 25px;
    font-size: 13px;
    max-width: 240px;
}

.footer2 .cot4 .icon-box {
    border: 1px solid gray;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 13px;
}

.footer-secondary {
    padding: 0;
}

.absolute-footer.dark {
    padding: 20px 0;
    font-size: 13px;
    color: #fff;
    border-top: 1px solid #3f3f3f;
}

.footer2 .cot2 ul li a,
.footer2 .cot3 ul li a {
    font-size: 14px;
}

.footer2 ul li a:hover {
    text-decoration: underline;
}

.dark h4 {
    color: #fff !important;
    text-align: left !important;
}

footer.entry-meta {
    display: none;
}

@media screen and (max-width: 480px) {
    .footer2 a {
        display: inline-block;
        min-width: 48px;
        max-height: 48px;
    }
}

.xem-them {
    font-size: 6px;
    margin-top: -185px;
}

.xem-them a {
    display: inline-block;
    padding: 10px;
    margin: 5px;
    min-width: 48px;
    min-height: 48px;
}

@media screen and (min-width: 768px) {
    .xem-them {
        display: none;
    }
}

.phu-call-m {
    position: absolute;
    display: block;
}

.phu-call-cot {
    margin-top: -23px;
}

.phu-call-cot a {
    color: #FF0;
    font-weight: 600;
}

#myBtn:hover {
    color: #036D19;
    box-shadow: 0 0 0 1px #036D19;
    transform: scale(1.1);
}

#myBtn {
    display: none;
    color: rgba(0,0,0,.5);
    position: fixed;
    bottom: 50%;
    right: 0%;
    z-index: 99;
    font-size: 15px;
    background-color: rgb(255,255,255);
    cursor: pointer;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.3);
    transition: opacity 0.3s, transform 0.3s;
}

#myBtn i {
    vertical-align: middle;
    font-size: 18px;
}

.icon-angle-up:before {
    content: "\f106";
    position: relative;
    top: -2px;
    left: -6px;
}

@media (max-width: 768px) {
    #myBtn {
        display: none;
        visibility: hidden;
    }
}

.phu-div {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.phu-do {
    color: #D91E36;
}

.phu-xanh-d {
    color: #0000ff;
}

.phu-xanh {
    color: #036D19;
}

.num {
    font-size: 18px;
    color: #D91E36;
    line-height: 40px;
    font-weight: bold;
    padding-left: 55px;
    margin: 0;
}

.tel {
    position: fixed;
    bottom: 75px;
    left: 18px;
    z-index: 999;
}

.link1 {
    text-decoration: none;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.link2 {
    text-decoration: none;
    display: block;
    color: inherit;
}

.tbox {
    background: #eee;
    width: 175px;
    height: 38px;
    position: relative;
    overflow: hidden;
    background-size: 40px;
    border-radius: 28px;
    border: none;
    margin-bottom: 9px;
}

.phone {
    background-color: transparent;
    cursor: pointer;
    height: 100px;
    width: 100px;
    position: absolute;
    right: 105px;
    bottom: -22px;
    transition: visibility 0.5s ease;
    visibility: hidden;
    z-index: 200000 !important;
    overflow: visible !important;
}

.phone.show {
    visibility: visible;
}

.circle1 {
    animation: anim1 1.2s ease-in-out infinite;
    background-color: transparent;
    border: 2px solid rgba(30,30,30,0.4);
    border-radius: 100%;
    height: 80px;
    width: 80px;
    position: absolute;
    left: 10px;
    top: 10px;
    transform-origin: center;
    will-change: transform, opacity;
}

.phone.green .circle1 {
    border-color: #036D19;
    opacity: 0.5;
}

.circle2 {
    animation: anim2 1.2s ease-out infinite;
    background: radial-gradient(circle, rgba(3,109,25,0.9) 0%, rgba(3,109,25,0.7) 30%, rgba(3,109,25,0.4) 60%, rgba(3,109,25,0) 85%);
    border-radius: 100%;
    height: 60px;
    width: 60px;
    position: absolute;
    left: 20px;
    top: 20px;
    transform-origin: center;
    will-change: transform, opacity;
    opacity: 0;
}

.phone.hover .circle2,
.phone:hover .circle2 {
    background: radial-gradient(circle, rgba(2,138,21,0.95) 0%, rgba(2,138,21,0.8) 30%, rgba(2,138,21,0.5) 60%, rgba(2,138,21,0) 85%);
}

.circle3 {
    animation: anim3 1.2s ease-in-out infinite;
    border: 2px solid transparent;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    position: absolute;
    left: 30px;
    top: 30px;
    transform-origin: center;
    will-change: transform;
    background: #036D19;
    z-index: 2;
}

.phone.hover .circle3,
.phone:hover .circle3 {
    background: #028a15;
}

.circle3 .icon-phone {
    color: white !important;
    font-size: 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@keyframes anim1 {
    0% {
        opacity: .1;
        transform: rotate(0deg) scale(.5) skew(1deg);
    }
    30% {
        opacity: .5;
        transform: rotate(0deg) scale(.7) skew(1deg);
    }
    100% {
        opacity: .6;
        transform: rotate(0deg) scale(1) skew(1deg);
    }
}

@keyframes anim2 {
    0% {
        opacity: .2;
        transform: rotate(0deg) scale(.7) skew(1deg);
    }
    50% {
        opacity: .2;
        transform: rotate(0deg) scale(1) skew(1deg);
    }
    100% {
        opacity: .2;
        transform: rotate(0deg) scale(.7) skew(1deg);
    }
}

@keyframes anim3 {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-17.5deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(17.5deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-17.5deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(17.5deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
}

@media screen and (max-width: 589px) {
    .tel {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .circle1,
    .circle2,
    .circle3 {
        animation: none;
    }
}

div.phone_mobi {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #036D19 none repeat scroll 0 0;
    color: #fff;
    line-height: 50px;
    z-index: 99999999;
}

div.phone_mobi ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

div.phone_mobi ul li {
    display: inline-block;
    width: 32%;
    text-align: center;
}

div.phone_mobi ul li a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

div.phone_mobi ul li a i {
    margin-right: 10px;
    margin-top: 3px;
    font-size: 22px;
}

.phone_mobi .icon-phone::before {
    font-size: 18px;
    margin-right: 5px;
}

.phone_mobi .icon-star::before {
    font-size: 16px;
    margin-right: 5px;
}

.icon-chat:before {
    font-size: 16px;
    margin-right: 3px;
}

.blink_me {
    animation-name: blinker;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

i.icon-phone::before,
i.icon-comment-line::before,
i.icon-map::before {
    margin-left: 1px;
    margin-right: 1px;
}

@keyframes blinker {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (min-width: 768px) {
    .phone_mobi {
        display: none !important;
    }
}

.slider-nav-circle.slider-nav-circle .flickity-prev-next-button:hover .flickity-button-icon path {
	fill: #0e7526 !important;
	stroke: #0e7526 !important;
}

.flickity-page-dots {
	bottom: auto;
	left: 25px;
	line-height: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 20px;
	text-align: left;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.flickity-page-dots .dot {
	display: block;
	margin: 8px 0;
}

.text-slider_anh {
	background: rgba(0, 0, 0, .05);
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	font-style: normal;
	padding: .2em;
	text-align: center !important;
}

@media screen and (max-width: 549px) {
	.flickity-page-dots {
		left: 5px;
	}
}

/*img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}*/

.wp-caption img,
.wp-block-image img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.wp-caption,
.wp-block-image,
figure.wp-caption {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	overflow: hidden;
}

.wp-caption .wp-caption-text {
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	font-size: 17px;
	font-style: normal;
	margin-bottom: 10px !important;
	padding: .2em;
}
