/*
Theme Name: itsg
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* Product List Template Styles */
.product-list-header {
    margin-bottom: 30px;
    padding: 20px 0;
}

.product-list-header h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.product-list-container {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 0 15px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8eef5;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.product-card-inner {
    display: flex;
    align-items: stretch;
    min-height: 180px;
}

.product-image {
    flex: 0 0 240px;
    position: relative;
    background: linear-gradient(135deg, #032b91 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 12px 0 0 12px;
}

.image-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-image img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Download Section Styles */
.download-section {
    width: 100%;
    margin-top: 15px;
}

.download-btn {
    width: 100%;
    background: rgba(255,255,255,0.9);
    color: #2c5aa0;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.download-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #1e4a78;
}

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

.download-icon {
    width: 16px;
    height: 16px;
    position: relative;
}

.download-icon::before {
    content: '⬇';
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.download-btn:hover .download-icon::before {
    animation: bounce-down 0.6s ease;
}

@keyframes bounce-down {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -30%); }
}

/* Download button loading state */
.download-btn.downloading {
    background: rgba(255,255,255,0.7);
    cursor: not-allowed;
}

.download-icon.loading::before {
    content: '↻';
    animation: spin 1s linear infinite;
}

/* Card hover effects enhancement */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Enhanced pricing animations */
.pricing-row {
    transform: translateX(0);
}

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

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

.product-card.animate-in .pricing-row {
    animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pricing number formatting */
.pricing-price::before {
    content: '';
    font-size: 10px;
    color: #64748b;
}

.pricing-row.highlighted .pricing-price::before {
    color: rgba(255,255,255,0.7);
}

/* Improved responsive design */
@media (max-width: 768px) {
    .product-image {
        flex: none;
        height: 200px;
        border-radius: 12px 12px 0 0;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
    
    .image-container {
        flex: none;
    }
    
    .download-section {
        margin-top: 0;
    }
}

.product-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e4a78;
    margin: 0 0 20px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.product-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.checkmark-icon {
    width: 16px;
    height: 16px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    flex-shrink: 0;
}

.checkmark-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.pricing-options {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pricing-row {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: all 0.3s ease;
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
    min-height: 40px;
}

.pricing-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.pricing-row:hover::before {
    left: 100%;
}

.pricing-row.highlighted {
    background: linear-gradient(135deg, #032b91 0%, #764ba2 100%);
    color: white;
    border-color: #5a6fd8;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
    position: relative;
    z-index: 2;
}

.pricing-row:hover:not(.highlighted) {
    background: #f8fafc;
    border-color: #cbd5e0;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.pricing-duration {
    flex: 1.2;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
}

.pricing-row.highlighted .pricing-duration {
    color: rgba(255,255,255,0.9);
}

.pricing-price {
    flex: 1;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    color: #1e293b;
}

.pricing-row.highlighted .pricing-price {
    color: white;
}

.pricing-actions {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.discount-badge {
    background: #ef4444;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    min-width: 25px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.discount-badge:empty {
    display: none;
}

.pricing-row.highlighted .discount-badge {
    background: rgba(255,255,255,0.25);
    color: white;
}

.buy-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    line-height: 1;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.buy-btn:hover::before {
    left: 100%;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.buy-btn:active {
    transform: translateY(0) scale(1);
}

.pricing-row.highlighted .buy-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    color: #1e40af;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pricing-row.highlighted .buy-btn:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-1px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-card-inner {
        flex-direction: column;
        min-height: auto;
    }
    
    .product-image {
        flex: none;
        height: 150px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .pricing-row {
        padding: 8px 10px;
        min-height: 35px;
    }
    
    .pricing-actions {
        flex: 0 0 70px;
    }
    
    .pricing-duration {
        font-size: 10px;
    }
    
    .pricing-price {
        font-size: 12px;
    }
    
    .buy-btn {
        padding: 5px 10px;
        font-size: 10px;
        min-width: 40px;
    }
    
    .product-list-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .pricing-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .pricing-duration,
    .pricing-price {
        flex: 1 1 100%;
        text-align: left;
    }
    
    .pricing-actions {
        flex: 1 1 100%;
        justify-content: space-between;
    }
    
    .product-title {
        font-size: 16px;
    }
}

/* Notifications */
.product-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    border-left: 4px solid #2196f3;
}

.product-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.product-notification.notification-success {
    border-left-color: #4caf50;
}

.product-notification.notification-error {
    border-left-color: #f44336;
}

.product-notification.notification-warning {
    border-left-color: #ff9800;
}

.notification-content {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon::before {
    content: 'ℹ';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #2196f3;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
}

.notification-success .notification-icon::before {
    content: '✓';
    background: #4caf50;
}

.notification-error .notification-icon::before {
    content: '✕';
    background: #f44336;
}

.notification-warning .notification-icon::before {
    content: '⚠';
    background: #ff9800;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.notification-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #666;
}

/* Loading and Animation Effects */
.buy-btn.loading {
    position: relative;
    color: transparent;
}

.buy-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pricing-row.pulse {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1.02);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-row.hover-effect {
    background: #f0f4f8;
    border-color: #cbd5e0;
    transform: scale(1.01);
}

/* Touch feedback for mobile */
.touch-active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Additional hover effects */
.product-card:hover .product-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.product-image {
    transition: transform 0.3s ease;
}

/* Smooth transitions for all interactive elements */
.buy-btn,
.pricing-row,
.product-card,
.discount-badge {
    transition: all 0.2s ease;
}

/* Enhanced mobile experience */
@media (max-width: 768px) {
    .product-notification {
        left: 10px;
        right: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .product-notification.show {
        transform: translateY(0);
    }
    
    .mobile-card .pricing-row {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .mobile-card .buy-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Print styles */
@media print {
    .product-notification,
    .buy-btn {
        display: none;
    }
    
    .product-card {
        break-inside: avoid;
        margin-bottom: 20px;
    }
}

@font-face {
    font-family: Helvetica Neue;
    src: url("assets/fonts/HelveticaNeue-BoldItalic.eot");
    src: url("assets/fonts/HelveticaNeue-BoldItalic.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue-BoldItalic.woff") format("woff"), url("assets/fonts/HelveticaNeue-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic
}

@font-face {
    font-family: Helvetica Neue;
    src: url("assets/fonts/HelveticaNeue-Light.eot");
    src: url("assets/fonts/HelveticaNeue-Light.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue-Light.woff") format("woff"), url("assets/fonts/HelveticaNeue-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: Helvetica Neue Bold;
    src: url("assets/fonts/HelveticaNeue-CondensedBold.eot");
    src: url("assets/fonts/HelveticaNeue-CondensedBold.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue-CondensedBold.woff") format("woff"), url("assets/fonts/HelveticaNeue-CondensedBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Helvetica Neue;
    src: url("assets/fonts/HelveticaNeue-Italic.eot");
    src: url("assets/fonts/HelveticaNeue-Italic.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue-Italic.woff") format("woff"), url("assets/fonts/HelveticaNeue-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: Helvetica Neue;
    src: url("assets/fonts/HelveticaNeue-Bold.eot");
    src: url("assets/fonts/HelveticaNeue-Bold.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue-Bold.woff") format("woff"), url("assets/fonts/HelveticaNeue-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Helvetica Neue;
    src: url("assets/fonts/HelveticaNeue-UltraLight.eot");
    src: url("assets/fonts/HelveticaNeue-UltraLight.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue-UltraLight.woff") format("woff"), url("assets/fonts/HelveticaNeue-UltraLight.ttf") format("truetype");
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: Helvetica Neue;
    src: url("assets/fonts/HelveticaNeue-LightItalic.eot");
    src: url("assets/fonts/HelveticaNeue-LightItalic.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue-LightItalic.woff") format("woff"), url("assets/fonts/HelveticaNeue-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic
}

@font-face {
    font-family: Helvetica Neue;
    src: url("assets/fonts/HelveticaNeue-Medium.eot");
    src: url("assets/fonts/HelveticaNeue-Medium.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue-Medium.woff") format("woff"), url("assets/fonts/HelveticaNeue-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Helvetica Neue;
    src: url("assets/fonts/HelveticaNeue-UltraLightItalic.eot");
    src: url("assets/fonts/HelveticaNeue-UltraLightItalic.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue-UltraLightItalic.woff") format("woff"), url("assets/fonts/HelveticaNeue-UltraLightItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic
}

@font-face {
    font-family: Helvetica Neue;
    src: url("assets/fonts/HelveticaNeue.eot");
    src: url("assets/fonts/HelveticaNeue.eot") format("embedded-opentype"), url("assets/fonts/HelveticaNeue.woff") format("woff"), url("assets/fonts/HelveticaNeue.ttf") format("truetype");
    font-weight: 400;
    font-style: normal
}

body *,
h1,
h2,
h3,
h4,
h5,
h6,
.heading-font,
.banner h1,
.banner h2,
body .nav>li>a {font-family: "Helvetica Neue";}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
.bai-viet-lien-quan ul li {
    width: 50%;
}

.bai-viet-lien-quan ul li .box-image img {
    height: 90px;
}.blog-featured-title+#main .post-sidebar, .page-right-sidebar .large-3{padding-left:15px}
.slider-section .col{padding:15px !important}
.doc-thu-section h1{font-size:110% !important}.form-nghe-thu select, .form-nghe-thu textarea, .form-nghe-thu input{font-size:14px}
.form-nghe-thu textarea{min-height:230px}.form-nghe-thu .row-info .cot{width:100%; padding:0; margin-bottom:7px}.dich-vu-section h2, .gioi-thieu-section h2, .khach-hang-section h2, .tin-tuc-section h2, .bang-gia-section h2, .so-lieu-section h2 {
    font-weight: 600;
		font-size: 23px;}.lam-gi-section .large-4{padding: 0 4px 8px;flex-basis:50%; max-width:50%}.lam-gi-section .icon-box {
    padding: 20px 5px !important;
    border-radius: 10px !important;
}.lam-gi-section .icon-box h3 {
		font-size: 16px;}.lien-he-section .col{text-align:center}.lien-he-section .nut-xem-them2{margin-bottom:15px}.form-tu-van .row-info .right,.form-tu-van .row-info .left{width:100%; padding-left:0;padding-right:0}
.bang-gia-section .flickity-viewport .large-12 .col-inner{box-shadow: 0px 0px 30px 0px rgb(177 89 105 / 10%);
    border-radius: 10px;
    background: white;
		padding: 55px 30px;background-image: url(/wp-content/uploads/2021/04/pricing-table-background.png);
    background-position-y: bottom;
    background-position-x: center;
}
.bang-gia-section .flickity-page-dots {
    margin-bottom: -40px;
}.bang-gia-section .nav li a{margin-bottom:15px}.tin-tuc-section .col{padding-bottom:15px}.list-post .post-item .post-title{font-size:17px}.footer-section .col{flex-basis:100%; max-width:100%}.gioi-thieu-section2 .col{padding:0 5px 33px}.so-lieu-section h3 {
    text-align: center;
		font-size: 23px;}.so-lieu-section .col.medium-3 .col-inner{padding:10px}
.so-lieu-section p{font-size:15px; margin-bottom:0}
.so-lieu-section .img {
    margin-bottom: -58px;
}.single-post .entry-title {
		font-size: 23px;}
#breadcrumbs {
		font-size: 14px;}

}

.slider-section .col{padding-bottom:0}
.nut-xem-them{    border-radius: 6px;background:linear-gradient(90deg, rgb(30 255 255) 0%, rgb(0 126 204) 100%) transparent; font-weight:normal; font-size:15px;
margin:0; padding:6px 15px}
.nut-xem-them:hover{box-shadow: 0px 8px 25px rgb(0 0 0 / 25%)}
.slider-section h3{margin-bottom: 0;
    font-size: 21px;
		font-weight: 500;}.nav > li > a{font-weight:normal}
.nav-dropdown{min-width:350px}.nav-dropdown>li>a{
    display: block;
    color: #2b2b2b;
}.nav-dropdown>li>a:hover{padding-left:7px; color:#2196f3}
.doc-thu-section .col{padding-bottom:0}
.form-nghe-thu select, .form-nghe-thu textarea, .form-nghe-thu input{margin-bottom:0;    border-radius: 5px;
    box-shadow: none;
    font-size: 15px;}
.form-nghe-thu .row-info{    display: inline-block;
    width: 100%;
    clear: both;
		margin-top: 15px;}form{margin-bottom:0}
.form-nghe-thu .row-info .cot{width:25%; padding-left:7px; padding-right:7px; display:inline-block; float:left}
.form-nghe-thu .row-info .cot:first-child{padding-left:0}
.form-nghe-thu .row-info .cot:last-child{padding-right:0}
.form-nghe-thu button{width: 100%;
    background: #2f4684;
    border-radius: 5px;
    text-transform: none;
    letter-spacing: 0;
    color: white;
    background: linear-gradient( 
90deg
 , rgb(10 169 221) 0%, #2196f3 100%) transparent;}
.form-nghe-thu
.doc-thu-section .col.large-12{margin-top:-60px}
.doc-thu-section .col.large-12 .col-inner{background:white; box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);padding:25px;padding-top:35px;border-radius:10px}
.nut-lam-gi{ background-color:white;   margin: 0;
    padding: 10px 20px 10px 44px;
    background-image: url(/wp-content/uploads/2021/04/icon-lam-gi.png);
    background-position: 7px 6px;
    background-repeat: no-repeat;
    border-radius: 35px;
    box-shadow: 0 0 30px rgb(0 0 0 / 13%);
    text-transform: uppercase;
    color:#1f98f1;}
.dich-vu-section h2, .gioi-thieu-section h2, .khach-hang-section h2, .tin-tuc-section h2, .bang-gia-section h2, .so-lieu-section h2{font-weight:600;
    font-size: 30px;
    color: #153980;}.list-post .post-item .box-text {
    background: white;
    padding: 15px;
}.box-blog-post .is-divider{display:none}
.list-post .post-item .post-title{margin: 0;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 600;
		color: #2f4684;}
.nut-xem-them2{margin-bottom:0}
.list-post .post-item a:hover{color:#424242}
.list-post .post-item .box-text{border-bottom-left-radius:10px; border-bottom-right-radius:10px}
.list-post .post-item .box-image{border-top-left-radius:10px; border-top-right-radius:10px}
.tin-tuc-section .col{padding-bottom:0}.list-post .post-item:hover .col-inner {
    box-shadow: rgb(0 0 0 / 7%) 0px 0px 55px 0px;
}
.lien-he-section .section-bg{background-attachment: fixed;}
.lien-he-section h2{font-weight:600; font-size:30px}
.dich-vu-section{padding-bottom:10px !important}
.stuck .header-main{background:white}.lam-gi-section .cot1 .icon-box, .lam-gi-section .cot4 .icon-box {
    padding: 55px 20px 70px 10px;
    background-color: #fdf8e3;
    border-radius: 40px 0 0;
}.lam-gi-section .icon-box h3 {
   font-size: 19px;
    font-weight: 600;
    color: #153980;
}.lam-gi-section .img-plus {
    margin-top: -68px;
}
.lam-gi-section .icon-box .icon-box-text p{font-size: 15px;
    color: #5a5a5a;}.lam-gi-section .cot2 .icon-box, .lam-gi-section .cot5 .icon-box {
    padding: 55px 20px 70px 10px;
    background-color: #f0f3fa;
    border-radius: 40px;
}.lam-gi-section .cot3 .icon-box, .lam-gi-section .cot6 .icon-box {
    padding: 55px 20px 70px 10px;
    background-color: #feeff0;
    border-radius: 0 0 40px;
}.lam-gi-section .large-4 {
    padding-bottom: 0;
}.nut-xem-them2 {
    padding: 4px 27px;
    font-weight: normal;
    letter-spacing: 0;
    font-size: 15px;
}
.form-tu-van .row-info .right{display:inline-block; width:50%; float:right; padding-left:6px}
.form-tu-van .row-info .left{padding-right:6px; display:inline-block; width:50%; float:left}
.form-tu-van .row-info{display:inline-block;width:100%; clear:both}
.fomr-tu-van input[type='submit']{margin-bottom:0}
.lien-he-section .col{padding-bottom:0}
.form-tu-van input, .form-tu-van textarea{    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-size: 15px;
    background: #ececec;}
.form-tu-van .row-info input{margin-bottom:8px}
.khach-hang-section .ux-logo img {
    border-radius: 5px;
    height: 70px;
    box-shadow: 3px 5px 1px #00000014;
}.off-canvas .nav-vertical>li>a {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
    color: #404040;
    text-transform: none;
}
.khach-hang-section .col.large-12{padding-bottom:0}
.form-tu-van{box-shadow: 0px 0 20px #00000014;padding: 30px;
    border-radius: 10px;
    background: white;}
.bang-gia-section .nav li.active a{font-size: 15px;
    text-transform: none;
    font-weight: 600;
    background: #33baf4;
    border: 2px solid #33baf4;
    padding: 1px 20px;
    color: white;}
.bang-gia-section .nav li a{margin-right:10px; font-size: 15px;
    text-transform: none;
    font-weight: 600;
    background:white;
    padding: 1px 20px;
color: #4a4a4a;
    border: 2px solid #dadada;}
.bang-gia-section .large-4 .col-inner{    box-shadow: 0px 0px 30px 0px rgb(177 89 105 / 10%);
    border-radius: 10px;background:white;    padding: 55px 30px;}
.bang-gia-section h3{    font-size: 25px;
		color: #33baf4}
.bang-gia-section .nut-xem-them{ background: #ff5722 !important;
    font-weight: normal;
    font-size: 15px;
    margin: 0;margin-top:20px;
		padding: 3px 27px;}.secondary.is-outline:hover{background:#ff5722; color:white !important; border:2px solid #ff5722}
.bang-gia-section .col{padding-bottom:0}
.bang-gia-section .price{font-size: 35px;
    font-weight: bold;
    color: #2f4684;margin-bottom:20px}
.bang-gia-section p{color: #6a7c92;font-weight:normal; font-size:15px}
.bang-gia-section .cot-giua .col-inner{background-image: url(/wp-content/uploads/2021/04/pricing-table-background.png);
    background-position-y: bottom;
    background-position-x: center;}
.bang-gia-section .nut-xem-them2{margin-top:20px}
.bang-gia-section .secondary.is-outline{color: #ff5722;}
.bang-gia-section .col.large-4{padding-top:30px; padding-bottom:20px}.tab-panels {
    padding-top: 0;
}
.footer-section .col{padding-bottom:0}
a.back-to-top{    background: #2196f3 !important;
    color: white !important;
    border: none !important;}
.footer-section .social-icons a:last-child{
    margin-bottom: 12px;
}
.gioi-thieu-section2 .col{padding-bottom:0}
.so-lieu-section .col.medium-3 .col-inner{    background: white;
    padding: 20px;
    box-shadow: 2px 2px 40px #00000017;
    border-radius: 10px;
}
.so-lieu-section h3{text-align: center;
    font-size: 50px;
    margin-bottom: 0;
    color: #2f4684;}
.so-lieu-section .img{    margin-bottom: -90px;}
.blog-featured-title .title-overlay{background-color:#00000000!important;}
.blog-featured-title{background-image:url(/wp-content/uploads/2021/04/345.jpg)}
.blog-archive{background-image: url(/wp-content/uploads/2021/04/curve-bg.png);}
.blog-archive .page-title{    font-size: 35px;
    text-transform: none;
    letter-spacing: 0;
		color: #2f4684;}#breadcrumbs{font-size:16px; margin-bottom:10px}
.blog-archive .large-12{padding-bottom:15px}
.blog-archive .post-item .box-image{border-radius:10px}
.blog-archive .post-item .post-title{font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2f4684;}
.blog-archive .post-item a:hover{color:black}
.blog-archive a.page-number{background: white;
    box-shadow: 2px 2px 20px #00000017;
    border: none;
    color: gray;
    border: 2px solid white;
}.nav-pagination>li>a {
    font-size: 19px;
    display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: auto;
    min-width: 50px;
		padding: 0 15px;}
.nav-pagination>li>.current{box-shadow: 2px 2px 20px #00000017; min-width: 50px;  height: 50px;
    line-height: 50px;font-size:18px}
.single-post .entry-title{font-size: 35px;
    font-weight: 600;}
.single-post .blog-share{text-align:left}.xem-them .tieu-de-xem-them {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-size: 19px;
    color: black;
}
.xem-them ul li {
    margin-bottom: 3px;
}
.xem-them ul li a {
 font-weight: 600;
    font-size: 16px;
    color: #2196f3;
}
.xem-them ul li a:hover {
    text-decoration: underline;
}
.blog-single .entry-meta {
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0;
    color: gray;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px;
    background: #f9f9f9;
}
.danh-muc {
    margin-bottom: 15px;
}
.danh-muc span.title, .the-tim-kiem span.title {
    border-radius: 4px;
    background: #2f4684;
    padding: 4px 10px;
    color: white;
    margin-right: 5px;
}
.danh-muc a, .the-tim-kiem a {line-height:32px;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 4px 10px;
    background: #dedede;
    color: #464646;
}
.danh-muc a:hover, .the-tim-kiem a:hover {
    background: #2196f3;
    color: white;
}
.bai-viet-lien-quan {
    margin-top: 15px;
}
.bai-viet-lien-quan h3 {
    font-size: 19px;
    color: black;
}
.bai-viet-lien-quan ul {
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
}
.bai-viet-lien-quan ul li {
    list-style: none;
    width: 33.33%;
    color: graytext;
    float: left;
    padding-left: 4px;
    padding-right: 5px;
}.bai-viet-lien-quan h4:hover{color:#2196f3}.is-divider{display:none}
.single-post .entry-content h2{font-size:20px; font-weight:600}
.single-post .entry-content h3{font-size:19px; font-weight:600}
.single-post .entry-content h4{font-size:18px; font-weight:600}
.single-post .entry-content h5{font-size:17px; font-weight:600}
span.widget-title {
    font-size: 23px;
    text-transform: none;
    font-weight: bold;
    letter-spacing: 0;
    color: #2f4684;
}.recent-blog-posts a {
    line-height: 1.2;
    display: block;
    margin-bottom: 0;
    font-size: 15px;
}
.recent-blog-posts .badge-inner{border-radius:99%}.blog-featured-title+#main .post-sidebar{padding-left:0}
.page-right-sidebar .page-inner ul{margin-left:20px}h1.entry-title.mb {
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 35px;
    color: #2f4684;
}
.page-right-sidebar .large-3{padding-left:0}
.page-right-sidebar .large-9{border-right:none !important}
.bai-viet-lien-quan ul li .box-image img {
    height: 150px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
}
.bai-viet-lien-quan h4 {font-weight:normal;
    font-size: 15px;
    color: black;
    line-height: 19px;
    padding-top: 7px;
    height: 64px;
    overflow: hidden;
}.float-contact {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
}.chat-zalo {
    background: #8eb22b;
    border-radius: 20px;
    padding: 0 18px;
    color: white;
    display: block;
    margin-bottom: 6px;
}.chat-face {
    background: #125c9e;
    border-radius: 20px;
    padding: 0 18px;
    color: white;
    display: block;
    margin-bottom: 6px;
}.float-contact .hotline {
    background: #d11a59!important;
    border-radius: 20px;
    padding: 0 18px;
    color: white;
    display: block;
    margin-bottom: 6px;
}.chat-zalo a, .chat-face a, .hotline a {
    font-size: 14px;
    color: white;
    font-weight: 400;
    text-transform: none;
    line-height: 0;
}