.data-container {
    padding-top: 0;
    width: 100vw;
    min-width: unset;
    height: auto;
    min-height: unset;
    margin: 0 auto;
    position: relative;
}

.contact-info {
    background-color: #ffffff;
    color: #000;
    padding: 8px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    width: 491px;
    height: 39px;
    margin-left: 17px;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 20px;
    height: 16px;
}

.phone-icon {
    width: 16px;
    height: 16px;
}

.main-content {
    padding: 20px;
}

/* Frame A styles */
.frame-a {
    width: 1440px;
    height: auto;
    margin: 150px auto 0 auto;
    position: relative;
    background: #fff;
    border-radius: 16px;
    /* box-shadow: 0 2px 16px rgba(0,0,0,0.08); */
    /* Không hiệu ứng, không shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Frame A1 styles */
.frame-a1 {
    width: 1346px;
    height: 54px;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-a1 h1 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 54px;
}

/* Logo container */
.logo-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.logo-image {
    width: 484px;
    height: 239px;
    object-fit: contain;
}

/* Frame A2 styles */
.frame-a2 {
    position: relative;
    width: 967px;
    height: 261px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    box-sizing: border-box;
}

.frame-a21 {
    position: absolute;
    left: 0;
    top: 0;
    width: 708px;
    height: 488px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.frame-a22 {
    position: absolute;
    left: 759px;
    top: 0;
    width: 587px;
    height: 488px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.a21-image,
.a22-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff;
    margin: 0;
    padding: 0;
}

/* Sub-frames A21, A22, A23 */
.solution-card {
    width: 309px;
    height: 261px;
    background-color: #d9d9d9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.solution-card:hover {
    background-color: #ffffff;
    /* Removed box-shadow */
}

.solution-card-image {
    width: 309px;
    height: 186px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Text frames below images */
.text-frame {
    width: 100%;
    height: 75px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.text-frame span {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    transition: color 0.3s ease-in-out;
    margin-left: 30px;
    width: 168px;
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.solution-card:hover .text-frame span {
    color: #D72323;
}

/* Forward Arrow Button */
.forward-arrow-button {
    width: 32px;
    height: 32px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 0;
    z-index: 1;
    margin-left: -50px;
}

.forward-arrow-button img {
    width: 100%;
    height: 100%;
    margin-left: -50px;
    object-fit: contain;
    transition: filter 0.3s ease-in-out;
    /* Add transition for image filter */
}

.solution-card:hover .forward-arrow-button img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(93%) saturate(7400%) hue-rotate(352deg) brightness(100%) contrast(92%);
    /* Change to red color */
}

/* Frame A3 styles */
.frame-a3 {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    height: 261px;
}

/* Sub-frames A31, A32, A33, A34 (similar to A2x but adjusted for 4 items) */
.frame-a3-item {
    width: 309px;
    height: 261px;
    background-color: #d9d9d9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.frame-a3-item img {
    width: 309px;
    height: 186px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Footer positioning for Data page */
.data-footer-wrapper {
    position: relative;
    left: 0;
    width: 100%;
    margin-top: 0;
}

/* Frame A4 styles */
.frame-a4 {
    width: 1108px;
    height: 54px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame-a4 h1 {
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin: 0;
}

/* Sửa lại layout cho phần Giá trị các nhóm giải pháp */
.frame-c {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 128px;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
}

.frame-c .column {
    display: contents;
}

.data-solution-card {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .frame-c {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .frame-c .column {
        align-items: center;
    }
}

/* Individual Data Solution Card styles (C1-C7) */
.data-solution-card {
    width: 500px;
    /* Adjusted width */
    height: 500px;
    /* Adjusted height */
    background-color: #ffffff;
    border: none;
    /* Keep none here as we are using specific borders */
    border-bottom: 1px solid #D72323;
    border-right: 1px solid #D72323;
    border-radius: 20px;
    /* Applied to all four corners */
    box-shadow: 4px 4px 10px #D72323;
    /* Horizontal offset, Vertical offset, Blur radius, Color */
    overflow: hidden;
    position: relative;
    /* Changed to relative so parent height works */
    display: flex;
    flex-direction: column;
}

.data-solution-image {
    width: 100%;
    /* Image fills the card width */
    height: 233px;
    /* Adjusted height */
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.data-solution-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.data-solution-title {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-solution-title img {
    margin-right: 5px;
    /* Space between icon and title text */
}

.data-solution-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    flex-grow: 1;
}

.data-solution-readmore {
    font-size: 14px;
    color: #D72323;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-end;
    margin-top: auto;
}

/* Positioning for each card within frame-c */
.data-solution-card:nth-child(1) {
    top: unset;
    left: unset;
    right: unset;
}

.data-solution-card:nth-child(2) {
    top: unset;
    left: unset;
    right: unset;
}

.data-solution-card:nth-child(3) {
    top: unset;
    left: unset;
    right: unset;
}

.data-solution-card:nth-child(4) {
    top: unset;
    left: unset;
    right: unset;
}

.data-solution-card:nth-child(5) {
    top: unset;
    left: unset;
    right: unset;
}

.data-solution-card:nth-child(6) {
    top: unset;
    left: unset;
    right: unset;
}

.data-solution-card:nth-child(7) {
    margin: 0 auto;
    /* Center horizontally when it's the only item in the row */
    /* Remove previous absolute positioning properties as flexbox handles flow */
    top: unset;
    left: unset;
    right: unset;
    transform: unset;
}

.card-overlay-icon {
    position: absolute;
    width: 97px;
    height: 97px;
    top: 184px;
    left: 18px;
    object-fit: contain;
    z-index: 2;
    /* Ensure it's above the main image */
}

.card-text-frame {
    position: static;
    width: 328px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D72323;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    margin: 8px 60px 0 auto;
}

.card-description-frame {
    position: static;
    width: 407px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    left: unset;
    top: unset;
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    text-align: justify;
    z-index: 2;
}

.card-description-frame strong, .card-description-frame a {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    text-decoration: none;
    cursor: pointer;
}

.frame-b2 {
    width: 1346px;
    height: 488px;
    margin-top: 32px;
    display: flex;
    gap: 51px;
    justify-content: flex-start;
    align-items: flex-start;
}

.frame-b21 {
    width: 708px;
    height: 488px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.frame-b22 {
    width: 587px;
    height: 488px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.b21-image,
.b22-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff;
    margin: 0;
    padding: 0;
}

.frame-c-custom {
    width: 1132px;
    height: 356px;
    position: absolute;
    bottom: -50px;
    /* top: 20px; */
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.frame-c1 {
    width: 282px;
    height: 356px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.frame-c2 {
    width: 669px;
    height: 214px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
}

.c1-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff;
    margin: 0;
    padding: 0;
}

.c2-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff;
    margin: 0;
    padding: 0;
}

.frame-d {
    width: 1112px;
    height: 449px;
    margin: 370px auto 0 auto;
    position: relative;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.frame-d1 {
    width: 1112px;
    height: 54px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-d1 h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 54px;
}

.frame-d2 {
    width: 1112px;
    height: 363px;
    margin-top: 82px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.frame-d21 {
    width: 659px;
    height: 363px;
    display: flex;
    align-items: center;
}

.d21-text {
    font-size: 20px;
    text-align: justify;
    font-weight: bold;
    line-height: 2;
}

.frame-d22 {
    width: 433px;
    height: 381px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.d22-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff;
    margin: 0;
    padding: 0;
}

.frame-e {
    width: 1112px;
    height: 443px;
    margin: 20px auto 0 auto;
    position: relative;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.frame-e1 {
    width: 1112px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-e1 h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 54px;
}

.frame-ape2 {
    width: 1112px !important;
    height: 357px;
    margin-top: 32px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.frame-ee2 {
    width: 828px;
    height: 357px;
    margin-top: 32px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

.frame-eee2 {
    width: 1395px;
    height: 357px;
    margin-top: 32px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.frame-e21,
.frame-e22,
.frame-e23,
.frame-e24,
.frame-e25 {
    width: 263px;
    height: 357px;
    border-radius: 20px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    transition: background 600ms, box-shadow 600ms;
}

.e2-inner {
    width: 225px;
    height: 247px;
    margin: -50px auto 0 auto;
    border-radius: 20px;
    background: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: background 600ms, color 600ms, filter 600ms;
}

.e2-inner-img {
    width: 111px;
    height: 111px;
    border-radius: 20px;
    margin-top: 0;
    object-fit: cover;
    display: block;
    transition: background 600ms, color 600ms, filter 600ms;
}

.e2-inner-label {
    width: 225px;
    height: 24px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 27px;
    text-align: center;
    transition: background 600ms, color 600ms, filter 600ms;
}

.e2-inner-desc {
    width: 255px;
    height: 94px;
    font-size: 16px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    text-align: center;
    line-height: 1.5;
    color: #333;
    transition: background 600ms, color 600ms, filter 600ms;
}

.frame-e21:hover,
.frame-e22:hover,
.frame-e23:hover,
.frame-e24:hover,
.frame-e25:hover {
    box-shadow: 10px 10px 12.8px rgba(0, 0, 0, 0.25);
    background: #d72323;
}

.frame-e21:hover .e2-inner,
.frame-e22:hover .e2-inner,
.frame-e23:hover .e2-inner,
.frame-e24:hover .e2-inner,
.frame-e25:hover .e2-inner {
    background: #d72323;
}

.frame-e21:hover .e2-inner-label,
.frame-e22:hover .e2-inner-label,
.frame-e23:hover .e2-inner-label,
.frame-e24:hover .e2-inner-label,
.frame-e25:hover .e2-inner-label {
    color: #fff;
}

.frame-e21:hover .e2-inner-desc,
.frame-e22:hover .e2-inner-desc,
.frame-e23:hover .e2-inner-desc,
.frame-e24:hover .e2-inner-desc,
.frame-e25:hover .e2-inner-desc {
    color: #fff;
    font-style: italic;
}

.frame-f {
    width: 1112px;
    height: 379px;
    margin: 32px auto 0 auto;
    position: relative;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.frame-f1 {
    width: 1112px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-f1 h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 54px;
}

.f2-image {
    width: 1112px;
    height: 293px;
    margin-top: 32px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    background: #fff;
}

.ap7f7-image {
    width: 1112px;
    height: 136.18px;
    margin-top: 32px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    background: #fff;
}

.f21-image {
    width: 1112px;
    height: 190.18px !important;
    margin-top: 32px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    background: #fff;
}

img.f21-image {
    height: 190.18px !important;
}

.f22-image {
    width: 1112px;
    height: 220.18px;
    margin-top: 32px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    background: #fff;
}

img.f22-image {
    height: 220.18px !important;
}

.frame-g {
    width: 1112px;
    height: 493px;
    margin: 32px auto 0 auto;
    position: relative;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.frame-g1 {
    width: 1112px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-g1 h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 54px;
}

.frame-g2 {
    width: 1112px;
    height: 407px;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame-g3 {
    width: 938px;
    height: 407px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.frame-g31,
.frame-g32,
.frame-g33 {
    width: 302px;
    height: 407px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: #fff;
    box-sizing: border-box;
}

.g3-image {
    width: 299px;
    height: 330px;
    border-top-left-radius: 40px;
    object-fit: cover;
    display: block;
    background: #fff;
}

.g-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.g-arrow-left {
    left: 0;
}

.g-arrow-right {
    right: 0;
}

.g-arrow-img {
    width: 30px;
    height: 30px;
    display: block;
}

.g3-label {
    width: 264px;
    height: 44px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border-radius: 12px;
}

.g-arrow-left .g-arrow-img {
    transform: none;
}

.g-arrow-right .g-arrow-img {
    transform: none;
}

.frame-g31:hover,
.frame-g32:hover,
.frame-g33:hover {
    background: #d72323;
    outline: 2.5px solid #d72323;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.frame-g31:hover .g3-label,
.frame-g32:hover .g3-label,
.frame-g33:hover .g3-label {
    background: #d72323;
    color: #fff;
}

.frame-g34,
.frame-g35,
.frame-g36 {
    width: 302px;
    height: 407px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: #fff;
    box-sizing: border-box;
}

.g-arrow.g-arrow-active .g-arrow-img,
.g-arrow:hover .g-arrow-img {
    background: #f1f1f1;
    border-radius: 50%;
}

.frame-g34:hover,
.frame-g35:hover,
.frame-g36:hover {
    background: #d72323;
    outline: 2.5px solid #d72323;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.frame-g34:hover .g3-label,
.frame-g35:hover .g3-label,
.frame-g36:hover .g3-label {
    background: #d72323;
    color: #fff;
}

.frame-h {
    width: 1250px;
    height: 647px;
    margin: 32px auto 0 auto;
    position: relative;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.frame-h1 {
    width: 1250px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-h1 h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 54px;
}

.frame-h2 {
    width: 1250px;
    height: 561px;
    margin-top: 32px;
    border-radius: 20px;
    border: 5px solid #d72323;
    background: #fff;
}

.frame-h21 {
    width: 544px;
    height: 158px;
    position: absolute;
    left: 52px;
    top: 45px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.frame-h211 {
    width: 544px;
    height: 36px;
    margin-top: 0;
    margin-left: 0;
    color: #d72323;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: left;
    padding-left: 0;
}

.frame-h212 {
    width: 544px;
    height: 108px;
    margin-top: 14px;
    margin-left: 0;
    color: #000;
    font-size: 36px;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    line-height: 1.4;
}

.frame-h2 {
    position: relative;
}

/* Xoay tất cả ảnh .muitenden1-img 180 độ, không ảnh hưởng .muitenxam-img */
.muitenden1-img {
    transform: rotate(0deg) !important;
}

/* Nhóm các khung nhỏ H31-H34 */
.frame-h3-group {
    position: absolute;
    left: 52px;
    top: 222px;
    /* 45px (top H21) + 158px (height H21) + 20px (cách top) */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.frame-h31,
.frame-h32,
.frame-h33,
.frame-h34 {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 0;
}

.frame-h31 {
    width: 650px;
    height: 44px;
    margin-top: 20px;
}

.frame-h32 {
    width: 489px;
    height: 44px;
    margin-top: 0;
}

.frame-h33 {
    width: 324px;
    height: 44px;
    margin-top: 0;
}

.frame-h34 {
    width: 519px;
    height: 44px;
    margin-top: 0;
}

.h3-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.h3-text {
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Frame H4: Giá chính */
.frame-h4 {
    position: absolute;
    width: 392px;
    height: 120px;
    top: 72px;
    left: 737px;
    display: flex;
    align-items: flex-start;
    background: none;
}

.h4-text {
    color: #d72323;
    font-size: 40px;
    font-weight: bold;
    text-align: left;
    line-height: 1.2;
    width: 100%;
    display: block;
}

/* Frame H5: Thông tin phụ */
.frame-h5 {
    position: absolute;
    width: 501px;
    display: flex;
    align-items: flex-start;
    background: none;
}

.frame-h5-1 {
    height: 68px;
    top: 244px;
    left: 737px;
}

.frame-h5-2 {
    height: 44px;
    top: 330px;
    left: 737px;
    display: flex;
    align-items: center;
}

.h5-icon {
    width: 20px;
    height: 21px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 23px;
}

.frame-h5-2 .h5-icon {
    margin-top: 3px;
}

.h5-text {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    height: 100%;
}

.frame-h6 {
    position: absolute;
    width: 315px;
    height: 50px;
    left: 461px;
    top: 467px;
    background: #fff;
    border-radius: 60px;
    box-shadow: 2px 4px 7.3px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    z-index: 2;
}

.h6-text {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-align: center;
    width: 100%;
}

.frame-h6:hover {
    background: #D72323;
    box-shadow: none;
}

.frame-h6:hover .h6-text {
    color: #fff;
}