@font-face {
    font-family: 'Azuki';
    src: url('/bgtuvi/Azuki.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.bg_foot {
    background-image: url('/bgtuvi/bg_foot.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}

.patten {
    background-image: url('/bgtuvi/patten.jpg');
    background-repeat: repeat; /* Lặp đều */
    background-position: top left; /* Gốc bắt đầu */
    background-size: auto; /* Hoặc bạn có thể chỉnh kích thước */
    background-blend-mode: multiply; /* hoặc overlay, soft-light... */
}

.bg_first_ct {
    position: relative;
    background-image: url('/bgtuvi/bgct.jpg');
    background-repeat: repeat;
    background-size: contain;
    z-index: 1;
    overflow: visible;
}


.bg_form_xem_tu_vi {
    position: relative;
    background-image: url('/bgtuvi/lap_la_so.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    overflow: visible;
}

/* Viền bên trái và phải */
.bg_form_xem_tu_vi::before,
.bg_form_xem_tu_vi::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scaleY(1.3);
    width: 55px;
    height: 90%;
    background-image: url('/bgtuvi/truc.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 2;
}

@media (max-width: 768px) {
    .bg_form_xem_tu_vi::before,
    .bg_form_xem_tu_vi::after {

    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scaleY(1.3);
    width: 35px;
    height: 85%;
    background-image: url('/bgtuvi/truc.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    /* z-index: 2; */
    }
}


/* Trái */
.bg_form_xem_tu_vi::before {
    left: -25px;
}

/* Phải */
.bg_form_xem_tu_vi::after {
    right: -25px;
    transform: translateY(-50%) scaleX(-1) scaleY(1.3);
}

.bg_head_tuvi {
    position: relative;
    background-image: url('/bgtuvi/header-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.bg_head_lap_la_so {
    background-image: url('/bgtuvi/title.png');
    background-size: 200%;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0.5rem;
    z-index: 10;
}

/* Viền bên trái */
.bg_head_tuvi::before,
.bg_head_tuvi::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    background-image: url('/bgtuvi/yl.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}

/* Bên trái */
.bg_head_tuvi::before {
    left: 0;
}

/* Bên phải, lật gương hình */
.bg_head_tuvi::after {
    right: 0;
    transform: scaleX(-1);
}

