<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.brace-top {
  display: block;
  min-width: 35px;
  padding-bottom: 20px;
  position: relative;
  margin: 0 15px 15px;
  background-image: radial-gradient(
      circle at 0 0,
      rgba(255, 255, 255, 0) 15px,
      #fff 15.5px,
      #fff 19px,
      rgba(255, 255, 255, 0) 19.5px
    ),
    radial-gradient(
      circle at 35px 0,
      rgba(255, 255, 255, 0) 15px,
      #fff 15.5px,
      #fff 19px,
      rgba(255, 255, 255, 0) 19.5px
    );
  background-size: 35px 20px;
  background-position: center top;
  background-repeat: no-repeat;

  &amp;:before {
    content: '';
    width: 50%;
    height: 70%;
    border-top: 4px solid #fff;
    border-left: 1px solid #fff;
    border-top-left-radius: 30px;
    position: absolute;
    top: 100%;
    left: -15px;
    box-sizing: border-box;
    margin-top: -5px;
  }

  &amp;:after {
    content: '';
    width: 50%;
    height: 70%;
    border-top: 4px solid #fff;
    border-right: 1px solid #fff;
    border-top-right-radius: 30px;
    position: absolute;
    top: 100%;
    right: -15px;
    box-sizing: border-box;
    margin-top: -5px;
  }
}


.brace-bottom {
  display: block;
    min-width: 35px;
    padding-top: 20px;
    position: relative;
    margin: 15px 15px 0;
    background-image: radial-gradient(circle at 0 20px, rgba(255, 255, 255, 0) 15px, #000000 15.5px, #000000 19px, rgba(255, 255, 255, 0) 19.5px), radial-gradient(circle at 35px 20px, rgba(255, 255, 255, 0) 15px, #000000 15.5px, #000000 19px, rgba(255, 255, 255, 0) 19.5px);
    background-size: 35px 20px;
    background-position: center bottom;
    background-repeat: no-repeat;

  &amp;:before {
    content: '';
    width: 50%;
    height: 70%;
    border-bottom: 4px solid #000000;
    border-left: 1px solid #000000;
    border-bottom-left-radius: 30px;
    position: absolute;
    top: 0;
    left: -15px;
    box-sizing: border-box;
    margin-top: -9px;
  }

  &amp;:after {
    content: '';
    width: 50%;
    height: 70%;
    border-bottom: 4px solid #000000;
    border-right: 1px solid #000000;
    border-bottom-right-radius: 30px;
    position: absolute;
    top: 0;
    right: -15px;
    box-sizing: border-box;
    margin-top: -9px;
  }
}

.brace-left {
  display: block;
  min-height: 35px;
  width: 0;
  padding-right: 20px;
  position: relative;
  margin: 15px 15px 15px 0;
  background-image: radial-gradient(
      circle at -0.2px 0,
      rgba(255, 255, 255, 0) 15px,
      #fff 15.5px,
      #fff 19px,
      rgba(255, 255, 255, 0) 19.5px
    ),
    radial-gradient(
      circle at -0.2px 35px,
      rgba(255, 255, 255, 0) 15px,
      #fff 15.5px,
      #fff 19px,
      rgba(255, 255, 255, 0) 19.5px
    );
  background-size: 20px 35px;
  background-position: right center;
  background-repeat: no-repeat;

  &amp;:before {
    content: '';
    width: 70%;
    height: 50%;
    border-left: 4px solid #fff;
    border-top: 1px solid #fff;
    border-top-left-radius: 30px;
    position: absolute;
    top: -15px;
    left: 100%;
    box-sizing: border-box;
    margin-left: -5px;
  }

  &amp;:after {
    content: '';
    width: 70%;
    height: 50%;
    border-left: 4px solid #fff;
    border-bottom: 1px solid #fff;
    border-bottom-left-radius: 30px;
    position: absolute;
    bottom: -15px;
    left: 100%;
    box-sizing: border-box;
    margin-left: -5px;
  }
}


.brace-right {
  display: block;
  min-height: 35px;
  width: 0;
  padding-left: 20px;
  position: relative;
  margin: 15px 0 15px 15px;
  background-image: radial-gradient(
      circle at 20px 0,
      rgba(255, 255, 255, 0) 15px,
      #fff 15.5px,
      #fff 19px,
      rgba(255, 255, 255, 0) 19.5px
    ),
    radial-gradient(
      circle at 20px 35px,
      rgba(255, 255, 255, 0) 15px,
      #fff 15.5px,
      #fff 19px,
      rgba(255, 255, 255, 0) 19.5px
    );
  background-size: 20px 35px;
  background-position: right center;
  background-repeat: no-repeat;

  &amp;:before {
    content: '';
    width: 70%;
    height: 50%;
    border-right: 4px solid #fff;
    border-top: 1px solid #fff;
    border-top-right-radius: 30px;
    position: absolute;
    top: -15px;
    left: 0;
    box-sizing: border-box;
    margin-left: -9px;
  }

  &amp;:after {
    content: '';
    width: 70%;
    height: 50%;
    border-right: 4px solid #fff;
    border-bottom: 1px solid #fff;
    border-bottom-right-radius: 30px;
    position: absolute;
    bottom: -15px;
    left: 0;
    box-sizing: border-box;
    margin-left: -9px;
  }
}



.scaling-text {
            font-size: 20px;
            font-weight: bold;
            color: white;
            background-color: red;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            display: inline-block;
  			margin-bottom: 15px;
            animation: scaleAnimation 1.5s infinite alternate ease-in-out;
        }

        @keyframes scaleAnimation {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }	

.accordion-button::after {
    color: white; /* Äá»•i mĂ&nbsp;u biá»ƒu tÆ°á»£ng thĂ&nbsp;nh tráº¯ng */
}

.circle-wrapper {
    position: relative;
    /* Äá»ƒ Ä‘á»‹nh vá»‹ chĂ­nh xĂ¡c hĂ¬nh trĂ²n */
}

.circle-wrapper {
    position: relative;
    /* Äá»‹nh vá»‹ lĂ&nbsp;m cha cho pseudo-element (::before) */
}

.circle-wrapper::before {
    content: '';
    position: absolute;
    top: 62%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background-color: #f8c5096e;
    border-radius: 72% 28% 40% 60% / 100% 67% 33% 0%;
    z-index: 0;

    /* HĂ¬nh trĂ²n Ä‘áº·t á»Ÿ lá»›p dÆ°á»›i */
}

.circle-wrapper img {
    position: relative;
    /* Äáº£m báº£o hĂ¬nh áº£nh náº±m trĂªn hĂ¬nh trĂ²n */
    z-index: 1;
    /* HĂ¬nh áº£nh Ä‘áº·t á»Ÿ lá»›p trĂªn */
}


/* SECTION 1 */

.section1 {
    background-image: url('../images/home/hinhanhmau.jpg');
    background-repeat: no-repeat;
    /* KhĂ´ng láº·p láº¡i hĂ¬nh ná»n */
    background-size: cover;
    /* CÄƒng hĂ¬nh ná»n Ä‘á»ƒ bao phá»§ toĂ&nbsp;n bá»™ mĂ&nbsp;n hĂ¬nh */
    background-position: center;
    /* CÄƒn giá»¯a hĂ¬nh ná»n */
    width: 100%;
    padding: 50px 0px;
}

/* END SECTION 1 */

/* SECTION 2 */

.carousel-cell-section2 {
    padding-right: 15px;
    /* Khoáº£ng cĂ¡ch giá»¯a cĂ¡c carousel-cell */
    box-sizing: border-box;
    /* Äáº£m báº£o padding vĂ&nbsp; border khĂ´ng áº£nh hÆ°á»Ÿng kĂ­ch thÆ°á»›c */
}

.section2 {
    padding: 50px 0;
}

.section2 .container {
    max-width: 1200px;
}

.section2-item {
    border-radius: 15px;
    /* Bo gĂ³c cho cĂ¡c pháº§n tá»­ */
    overflow: hidden;
    /* Äáº£m báº£o áº£nh khĂ´ng bá»‹ trĂ&nbsp;n ra ngoĂ&nbsp;i */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Táº¡o bĂ³ng cho pháº§n tá»­ */
    transition: transform 0.3s ease;
    /* ThĂªm hiá»‡u á»©ng khi hover */
    background-color: #fff;
    display: flex;
    /* Sá»­ dá»¥ng flex Ä‘á»ƒ cÄƒn giá»¯a ná»™i dung */
    flex-direction: column;
    /* Äáº·t cĂ¡c thĂ&nbsp;nh pháº§n theo cá»™t */
    justify-content: space-between;
    height: 500px;
    /* Äáº£m báº£o táº¥t cáº£ cĂ¡c card cĂ³ chiá»u cao báº±ng nhau */
}

.section2-item:hover {
    background-color: rgb(255 249 171);
}

.section2-item-img {
    width: 100%;
    height: 250px;
    /* Viá»n dÆ°á»›i cá»§a áº£nh */
}

.section2-item-body {
    padding: 20px;
    text-align: center;
}

.section2-item-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section2-item-text {
    font-size: 1rem;
    color: #666;
}

/* END SECTION 2 */

/* SECTION 3 */

.section3-content {
    background: #fff9b8;
    background-repeat: no-repeat;
    /* KhĂ´ng láº·p láº¡i hĂ¬nh ná»n */
    background-size: cover;
    /* CÄƒng hĂ¬nh ná»n Ä‘á»ƒ bao phá»§ toĂ&nbsp;n bá»™ mĂ&nbsp;n hĂ¬nh */
    background-position: center;
    /* CÄƒn giá»¯a hĂ¬nh ná»n */
    width: 100%;
    padding: 50px;
}

.img-section3 {
    max-height: 480px;
}

.tab-section3 {
    display: none;
}

.tab-section3.active {
    display: block;
}

.tab-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.tab-nav li {
    cursor: pointer;
    padding: 10px 20px;
    color: grey;
    font-size: 18px;
    font-weight: 800;
    border-bottom: 1px solid var(--default-border-color);
}

.tab-nav li:hover {
    border-bottom: 3px solid #f8c509;
}

.tab-nav li.active {
    color: #f8c509;
    border-bottom: 3px solid #f8c509;
}


/* END SECTION 3 */

/* SECTION 4 */
.section4 {
    padding: 100px;
}

.section4-item-img {
    padding: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.section4 .col-md-3 .text-center {
    height: 80px;
}

/* END SECTION 4 */

/* SECTION 5 */

.section5 .container {
    max-width: 1200px;
}

.section5-item {
    transition: transform 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section5-item-img {
    width: 100%;
    height: 500px !important;
    object-fit: contain;
}

.section5-item-body {
    padding: 20px;
    text-align: center;
}

.section5-item-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section5-item-text {
    font-size: 1rem;
    color: #666;
}

/* END SECTION 5 */


/* SECTION 18 */

.section18 .container {
    max-width: 1200px;
}

.section18-item {
    transition: transform 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section18-item-img {
    width: 100%;
    height: 500px !important;
    object-fit: contain;
}

.section18-item-body {
    padding: 20px;
    text-align: center;
}

.section18-item-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section18-item-text {
    font-size: 1rem;
    color: #666;
}

.section18 {
    padding-top: 100px;
}

/* END SECTION 18 */

/* SECTION 6 */
.section6 {
    padding: 100px 0px;
}

.tab-section6 {
    display: none;
}

.tab-section6.active {
    display: block;
}

.img-section6 {
    max-height: 480px;
}

/* END SECTION 6 */

/* SECTION 7 */
.section7 {
    padding: 50px 0px;
}

.tab-nav-section7 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* Äáº·t cĂ¡c tab theo hĂ&nbsp;ng dá»c */
    gap: 10px;
    /* Khoáº£ng cĂ¡ch giá»¯a cĂ¡c tab */
}

.tab-nav-section7 li.active {
    color: #f7c409;
}

.tab-link-section7 {
    cursor: pointer;
    padding: 15px 15px 0px 15px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.tab-link-section7 .description {
    display: none;
    /* áº¨n mĂ´ táº£ ban Ä‘áº§u */
}

.tab-link-section7.active .description {
    display: block;
    /* Hiá»ƒn thá»‹ mĂ´ táº£ khi tab active */
    margin-top: 5px;
}

.tab-section7 {
    display: none;
    /* áº¨n táº¥t cáº£ ná»™i dung tab ban Ä‘áº§u */
}

.tab-section7.active {
    display: block;
    /* Hiá»ƒn thá»‹ ná»™i dung tab Ä‘Æ°á»£c chá»n */
}

.img-section7 {
    max-height: 480px;
    max-width: 100%;
    object-fit: contain;
}

/* END SECTION 7 */

/* SECTION 8 */
.section8 {
    padding: 50px;
    max-width: 1500px;
    margin: 0 auto;
}

.section8 p {
    letter-spacing: 0px;
}

.section8 .carousel {
    max-width: 250px;
}

.carousel-cell-section8 img {
    height: auto;
}

.slider-section8 {
    visibility: hidden;
    opacity: 0;
    height: 0;
    position: absolute;
    left: 42%;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.slider-section8.active {
    visibility: visible;
    opacity: 1;
    height: auto;
}


.section8 .col-md-2 {
    padding: 0px !important;
}

.carousel-cell-section8 {
    width: 100%;
    border-radius: 15px;
}


.tab-nav-section8 {
    list-style: none;
    background-color: rgb(255 249 184);
    border-radius: 15px;
    padding-top: 30px;
    display: none !important;
}

.tab-title-section8 {
    margin-bottom: -5px;
}

.tab-nav-section8.active {
    display: flex !important;
}


.tab-nav-section8 li.active {
    color: #ffa41b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;

}

.tab-link-section8 {
    cursor: pointer;
    padding: 30px 15px 5px 15px !important;
    border-radius: 15px;
    margin-left: 15px !important;
    transition: background-color 0.3s ease;
}

.tab-link-section8-right {
    cursor: pointer;
    padding: 30px 15px 5px 15px !important;
    border-radius: 15px;
    margin-right: 15px !important;
    transition: background-color 0.3s ease;
}

.img-section8 {
    max-height: 550px;
    max-width: 100%;
    object-fit: contain;
    padding: 8px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* END SECTION 8 */

/* SECTION 9 */
.section9 {
    padding: 50px 0px;
}

.tab-nav-section9 {
    list-style: none;
    display: none !important;
}

.tab-nav-section9.active {
    display: flex !important;
}

.tab-nav-section9 li.active {
    color: #ffa41b;
}

.tab-link-section9 {
    cursor: pointer;
    padding: 30px 15px 5px 15px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.tab-link-section9 .description {
    display: none;
    /* áº¨n mĂ´ táº£ ban Ä‘áº§u */
}

.tab-link-section9.active .description {
    display: block;
    /* Hiá»ƒn thá»‹ mĂ´ táº£ khi tab active */
    margin-top: 5px;
}

.tab-section9 {
    display: none;
    /* áº¨n táº¥t cáº£ ná»™i dung tab ban Ä‘áº§u */
}

.tab-section9.active {
    display: block;
    /* Hiá»ƒn thá»‹ ná»™i dung tab Ä‘Æ°á»£c chá»n */
}

.img-section9 {
    max-height: 480px;
    max-width: 100%;
    object-fit: contain;
}

/* END SECTION 9 */

/* SECTION 10 */
.section10 {
    padding: 50px 0px;
    background-image: url('../images/home/sec10-bg1.png');
    background-repeat: no-repeat;
    /* KhĂ´ng láº·p láº¡i hĂ¬nh ná»n */
    background-size: cover;
    /* CÄƒng hĂ¬nh ná»n Ä‘á»ƒ bao phá»§ toĂ&nbsp;n bá»™ mĂ&nbsp;n hĂ¬nh */
    background-position: center;
    /* CÄƒn giá»¯a hĂ¬nh ná»n */
    width: 100%;
}

.section10 .container {
    max-width: 1200px;
}

.mobile-hidden {
    display: none !important;
}

/* END SECTION 10 */
.carousel {
    margin: 0;
    /* Loáº¡i bá» margin auto */
    width: 100%;
    /* Äáº£m báº£o carousel trĂ&nbsp;n toĂ&nbsp;n bá»™ chiá»u rá»™ng */
    max-width: none;
    /* Loáº¡i bá» giá»›i háº¡n chiá»u rá»™ng */
}

/* SECTION 11 */

.carousel-cell-section11 {
    width: 20%;
    /* TĂ¹y chá»‰nh chiá»u rá»™ng má»—i áº£nh */
    margin: 5px;
    overflow: hidden;
    border-radius: 8px;
    /* TĂ¹y chá»‰nh bo gĂ³c náº¿u cáº§n */
}


/* END SECTION 11 */

/* SECTION 12 */

.section12-item {
    position: relative;
    overflow: hidden;
}

.img-template-detail {
    height: 50px;
}

/* Äáº£m báº£o hĂ¬nh áº£nh khĂ´ng bá»‹ di chuyá»ƒn */
.section12-item-img {
    display: block;
    width: 100%;
    height: auto;
}

.section12-item img {
    transition: transform 3s ease-in-out;
}

.section12-item:hover img {
    transform: translateY(-30%);
}


.carousel-cell-section12 {
    padding-right: 15px;
    padding-left: 1px;

    /* Khoáº£ng cĂ¡ch giá»¯a cĂ¡c carousel-cell */
    box-sizing: border-box;
    /* Äáº£m báº£o padding vĂ&nbsp; border khĂ´ng áº£nh hÆ°á»Ÿng kĂ­ch thÆ°á»›c */
}

.section12 {
    padding: 50px 0;
}

.section12 .container {
    max-width: 1200px;
}

.section12-item {
    border-radius: 15px !important;
    /* Bo gĂ³c cho cĂ¡c pháº§n tá»­ */
    overflow: hidden;
    /* Äáº£m báº£o áº£nh khĂ´ng bá»‹ trĂ&nbsp;n ra ngoĂ&nbsp;i */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Táº¡o bĂ³ng cho pháº§n tá»­ */
    transition: transform 0.3s ease;
    /* ThĂªm hiá»‡u á»©ng khi hover */
    background-color: #fff;
    display: flex;
    /* Sá»­ dá»¥ng flex Ä‘á»ƒ cÄƒn giá»¯a ná»™i dung */
    flex-direction: column;
    /* Äáº·t cĂ¡c thĂ&nbsp;nh pháº§n theo cá»™t */
    justify-content: space-between;
    height: 100%;
    /* Äáº£m báº£o táº¥t cáº£ cĂ¡c card cĂ³ chiá»u cao báº±ng nhau */
}

.section12-item-img {
    width: 100%;
}

.section12-item-body {
    padding: 20px;
    text-align: center;
    position: absolute;
    z-index: 999;
    top: 80%;
    border-radius: 15px;
    box-shadow: 0px 3px 20px 0px #14142B0D;
}

.section12-item-body2 {
    padding: 20px;
    text-align: center;
    position: absolute;
    z-index: 999;
    top: 80%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 3px 20px 0px #14142B0D;
}

.carousel-cell-section12 {
    position: relative;
    /* Make the container relative */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.template-item-body {
    /* Make sure they take the full width of the parent */
    padding: 20px;
    width: 92%;
    text-align: center;
    position: absolute;
    bottom: 0%;
    /* Position at the bottom of the card */
    z-index: 10;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 3px 20px 0px #14142B0D;
    /* Add some transparency if needed */
}

.section12-item-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section12-item-text {
    font-size: 1rem;
    color: #666;
    overflow: hidden;
    /* áº¨n ná»™i dung trĂ&nbsp;n */
    display: -webkit-box;
    /* Sá»­ dá»¥ng flexbox cho viá»‡c cáº¯t dĂ²ng */
    -webkit-line-clamp: 3;
    /* Hiá»ƒn thá»‹ tá»‘i Ä‘a 3 dĂ²ng */
    -webkit-box-orient: vertical;
    /* Thiáº¿t láº­p hÆ°á»›ng dá»c cho box */
    text-overflow: ellipsis;
    /* ThĂªm dáº¥u "..." khi trĂ&nbsp;n */
}

/* END SECTION 12 */

/* SECTION 13 */

.section13-item {
    position: relative;
    overflow: hidden;
}

.carousel-cell-section13 {
    padding-right: 15px;
    height: 16rem;
    /* Khoáº£ng cĂ¡ch giá»¯a cĂ¡c carousel-cell */
    box-sizing: border-box;
    /* Äáº£m báº£o padding vĂ&nbsp; border khĂ´ng áº£nh hÆ°á»Ÿng kĂ­ch thÆ°á»›c */
}

.section13 {
    padding: 50px 0;
}

.section13 .container {
    max-width: 1200px;
}

.section13-item {
    border-radius: 15px;
    /* Bo gĂ³c cho cĂ¡c pháº§n tá»­ */
    overflow: hidden;
    /* Äáº£m báº£o áº£nh khĂ´ng bá»‹ trĂ&nbsp;n ra ngoĂ&nbsp;i */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Táº¡o bĂ³ng cho pháº§n tá»­ */
    transition: transform 0.3s ease;
    /* ThĂªm hiá»‡u á»©ng khi hover */
    background-color: #fff;
    display: flex;
    /* Sá»­ dá»¥ng flex Ä‘á»ƒ cÄƒn giá»¯a ná»™i dung */
    flex-direction: column;
    /* Äáº·t cĂ¡c thĂ&nbsp;nh pháº§n theo cá»™t */
    justify-content: space-between;
    height: 100%;
    /* Äáº£m báº£o táº¥t cáº£ cĂ¡c card cĂ³ chiá»u cao báº±ng nhau */
}

.section13-item-body {
    padding: 20px;
    text-align: center;
}

.section13-item-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section13-item-text {
    font-size: 1rem;
    color: #666;
}

/* END SECTION 13 */

/* SECTION 14 */

.section14 .container {
    max-width: 1200px;
}

.carousel-cell-section14 {
    padding-right: 15px;
    height: 450px;
    /* Khoáº£ng cĂ¡ch giá»¯a cĂ¡c carousel-cell */
    box-sizing: border-box;
    /* Äáº£m báº£o padding vĂ&nbsp; border khĂ´ng áº£nh hÆ°á»Ÿng kĂ­ch thÆ°á»›c */
}

.section14-item {
    border-radius: 15px;
    /* Bo gĂ³c cho cĂ¡c pháº§n tá»­ */
    overflow: hidden;
    /* Táº¡o bĂ³ng cho pháº§n tá»­ */
    transition: transform 0.3s ease;
    /* ThĂªm hiá»‡u á»©ng khi hover */
    background-color: #fff;
    display: flex;
    /* Sá»­ dá»¥ng flex Ä‘á»ƒ cÄƒn giá»¯a ná»™i dung */
    flex-direction: column;
    height: 100%;
    /* Äáº£m báº£o táº¥t cáº£ cĂ¡c card cĂ³ chiá»u cao báº±ng nhau */
}

.section14-item-img {
    width: 100%;
    height: 212px;
    object-fit: contain;
}

.section14-item-body {
    text-align: center;
}

.section14-item-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #f67c98;
}

.section14-post-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: left;
    color: #333;
    margin-bottom: 15px;
}

.section14-item-text {
    font-size: 1rem;
    color: #666;
    overflow: hidden;
    /* áº¨n ná»™i dung trĂ&nbsp;n */
    display: -webkit-box;
    /* Sá»­ dá»¥ng flexbox cho viá»‡c cáº¯t dĂ²ng */
    -webkit-line-clamp: 4;
    /* Hiá»ƒn thá»‹ tá»‘i Ä‘a 3 dĂ²ng */
    -webkit-box-orient: vertical;
    /* Thiáº¿t láº­p hÆ°á»›ng dá»c cho box */
    text-overflow: ellipsis;
    /* ThĂªm dáº¥u "..." khi trĂ&nbsp;n */
}

/* END SECTION 14 */

/* SECTION 15 */

.carousel-cell-section15 {
    padding-right: 15px;
    /* Khoáº£ng cĂ¡ch giá»¯a cĂ¡c carousel-cell */
    box-sizing: border-box;
    /* Äáº£m báº£o padding vĂ&nbsp; border khĂ´ng áº£nh hÆ°á»Ÿng kĂ­ch thÆ°á»›c */
}

.section15 {
    padding: 50px 0;
}

.section15 .container {
    max-width: 1200px;
}

.section15-item {
    border-radius: 15px;
    /* Bo gĂ³c cho cĂ¡c pháº§n tá»­ */
    overflow: hidden;
    /* Äáº£m báº£o áº£nh khĂ´ng bá»‹ trĂ&nbsp;n ra ngoĂ&nbsp;i */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Táº¡o bĂ³ng cho pháº§n tá»­ */
    transition: transform 0.3s ease;
    /* ThĂªm hiá»‡u á»©ng khi hover */
    background-color: #fff;
    display: flex;
    /* Sá»­ dá»¥ng flex Ä‘á»ƒ cÄƒn giá»¯a ná»™i dung */
    flex-direction: column;
    /* Äáº·t cĂ¡c thĂ&nbsp;nh pháº§n theo cá»™t */
    justify-content: space-between;
    height: auto;
    min-height: 460px;
    box-sizing: border-box;
    border: 2px solid #fff;
    /* Äáº£m báº£o táº¥t cáº£ cĂ¡c card cĂ³ chiá»u cao báº±ng nhau */
}

.section15-item:hover {
    border: 2px solid rgb(178, 8, 44);
}

.btn-design-package {
    /* Äáº·t nĂºt cháº¡m Ä‘Ă¡y */
    background-color: rgb(255, 164, 27) !important;
    color: #fff !important;
    padding: 10px 15px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: transform 0.3s ease-in-out !important;
}

.btn-design-package:hover {
    transform: translateY(-10px);
}


.section15-item:hover .section15-item-title {
    color: rgb(178, 8, 44);
}

.bg-dark-red {
    background: linear-gradient(135deg, rgb(216, 14, 39), rgb(177, 29, 49));
}

.special-text {
    background: linear-gradient(135deg, #901C1A, #E05021);
    /* Gradient cho ná»n */
    -webkit-background-clip: text;
    /* Chá»‰ Ă¡p dá»¥ng gradient cho pháº§n chá»¯ */
    -webkit-text-fill-color: transparent;
    /* LĂ&nbsp;m cho pháº§n ná»n trong suá»‘t, chá»‰ hiá»ƒn thá»‹ gradient */
    font-weight: bold;
    /* Äáº­m chá»¯ */
}


.section15-item-body {
    padding: 20px;
    text-align: center;
}

.section15-item-title {
    font-size: 1.7rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section15-item-text {
    font-size: 1rem;
}

/* END SECTION 15 */

/* SECTION 16 */

.section16 {
    padding: 50px 0px;
    margin: 0 auto;
}

.section16-content {
    margin-right: 5px;
    overflow-y: hidden !important;
    max-height: 500px;
    /* Adjust the height as needed */
    overflow-y: auto;
}

.carousel-cell-section16 {
    position: relative;
    opacity: 1;
}

.carousel-cell-section16 h4 {
    position: absolute;
    z-index: 3;
    top: 42%;
    padding: 32px;
    width: 88.5%;
    background: #fff !important;
}

.carousel-cell-section16 h5 {
    position: absolute;
    z-index: 4;
    top: 43%;
    width: 88.5%;
}

.carousel-cell-section16 {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
}

.section16-item img {
    transition: transform 3s ease-in-out;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section16-item:hover img {
    transform: translateY(-30%);
}

.slideDown {
    animation: slideDown 3s ease-in-out;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-70%);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-70%);
    }

    100% {
        transform: translateY(0);
    }
}

.tab-section16 {
    display: none;
}

.tab-section16.active {
    display: block;
}


/* END SECTION 16 */

/* SECTION 17 */
.section17 {
    background-image: url('../images/nenvang.jpg');
    background-repeat: no-repeat;
    /* KhĂ´ng láº·p láº¡i hĂ¬nh ná»n */
    background-size: cover;
    /* CÄƒng hĂ¬nh ná»n Ä‘á»ƒ bao phá»§ toĂ&nbsp;n bá»™ mĂ&nbsp;n hĂ¬nh */
    background-position: center;
    /* CÄƒn giá»¯a hĂ¬nh ná»n */
    width: 100%;
    height: 400px;
}

.section17 img {
    height: 25rem;
    justify-content: left;
    margin-right: 400px;
}

.section17-right-container {
    padding-top: 2rem;
}

/* END SECTION 17 */

/* CSS Phone Screen */
.contain-phone {
    position: relative;
    width: 100%;
}

.phonebody-external {
    margin: 0 auto;
    position: relative;
    background: black;
    min-width: 224px;
    max-width: 350px;
    width: 45vh;
    height: 88vh;
    max-height: 700px;
    border-radius: 6vh;
    padding: 1.5vh;
    border: 0.3vh solid #444;
    box-shadow: inset 0 0 2vh #888;
}

.phonebody-external-item {
    height: 83vh;
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.14);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.14);
    margin-bottom: 25px;

}

.phonebody-internal {
    margin: 0 auto;
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 4vh;
    overflow: hidden;
    /* Äáº£m báº£o áº£nh khĂ´ng trĂ&nbsp;n ra ngoĂ&nbsp;i */
    position: relative;
}

/* áº¢nh ná»n mĂ&nbsp;n hĂ¬nh */
.screen-image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* Äáº·t áº£nh dÆ°á»›i */
    transition: transform 3s ease;
    /* Chá»‰nh thá»i gian 3s Ä‘á»ƒ áº£nh lÆ°á»›t cháº­m */
}

/* Khi hover, áº£nh di chuyá»ƒn */
.phonebody-internal:hover .screen-image {
    transform: translateY(calc(-100% + 91vh));
    /* Di chuyá»ƒn áº£nh lĂªn vá»«a khĂ­t mĂ&nbsp;n hĂ¬nh */
}

/* Pháº§n phĂ­a trĂªn Ä‘iá»‡n thoáº¡i */
.top-phone {
    width: 26vh;
    background: black;
    height: 3.5vh;
    border-radius: 0vh 0vh 2vh 2vh;
    margin: 0 auto;
    position: absolute;
    top: 0;
    /* Gáº¯n phĂ­a trĂªn mĂ&nbsp;n hĂ¬nh */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    /* Äáº·t pháº§n nĂ&nbsp;y ná»•i trĂªn áº£nh */
}

/* Camera trÆ°á»›c hoáº·c cáº£m biáº¿n */
.circle-phone {
    background: blue;
    width: 0.6vh;
    height: 0.6vh;
    float: right;
    margin: 1.2vh 6vh;
    border-radius: 100%;
}

.bottom-phone {
    height: 0.5vh;
    background: rgba(255, 255, 255, 0.2);
    position: inherit;
    bottom: 2vh;
    width: 17vh;
    margin: 0 auto !important;
}


/* Container cho text giá»›i thiá»‡u */
.intro-text {
    position: absolute;
    bottom: 0vh;
    /* Äáº·t text sĂ¡t Ä‘Ă¡y mĂ&nbsp;n hĂ¬nh */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* Chiá»u rá»™ng giá»›i háº¡n */
    z-index: 2;
    /* Äáº·t text trĂªn áº£nh */
    text-align: center;
    /* CÄƒn giá»¯a ná»™i dung */
    color: #333;
    /* MĂ&nbsp;u chá»¯ */
    background: white;
    /* Ná»n má» */
    padding: 1.5vh;
    border-radius: 0vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.2);
}

.intro-text h1 {
    font-size: 18px;
    margin: 7px 0 7px 0;
    color: #000;
}

.intro-text p {
    font-size: 1rem;
    /* KĂ­ch thÆ°á»›c mĂ´ táº£ */
    margin: 0;
    color: #555;
    /* MĂ&nbsp;u chá»¯ mĂ´ táº£ */
}


.title-word {
    animation: color-animation 4s linear infinite;
}

.title-word-1 {
    --color-1: #DF8453;
    --color-2: #3D8DAE;
    --color-3: #E4A9A8;
}

.title-word-2 {
    --color-1: #DBAD4A;
    --color-2: #ACCFCB;
    --color-3: #17494D;
}

.title-word-3 {
    --color-1: #ACCFCB;
    --color-2: #E4A9A8;
    --color-3: #ACCFCB;
}

.title-word-4 {
    --color-1: #3D8DAE;
    --color-2: #DF8453;
    --color-3: #E4A9A8;
}

@keyframes color-animation {
    0% {
        color: var(--color-1)
    }

    32% {
        color: var(--color-1)
    }

    33% {
        color: var(--color-2)
    }

    65% {
        color: var(--color-2)
    }

    66% {
        color: var(--color-3)
    }

    99% {
        color: var(--color-3)
    }

    100% {
        color: var(--color-1)
    }
}

#goiydanhchoban {
    text-align: center;
    font-size: 75px;
    margin-top: 45px;
}


.macbook {
    padding: 4% 6%;
    margin: 0 auto;
    max-width: 800px;
}

.screen {
    background: #000;
    border-radius: 3% 3% 0.5% 0.5% / 5%;
    margin: 0 auto;
    /* for aspect ratio */
    position: relative;
    width: 80%;
}

.screen:before {
    border: 2px solid #cacacc;
    border-radius: 3% 3% 0.5% 0.5% / 5%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8) inset, 0 0 1px 2px rgba(255, 255, 255, 0.3) inset;
    content: "";
    display: block;
    /* for aspect ratio ~67:100 */
    padding-top: 67%;
}

.screen:after {
    content: "";
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    position: absolute;
    bottom: 0.75%;
    left: 0.5%;
    padding-top: 1%;
    width: 99%;
}

.viewport {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: 4.3% 3.2%;
    background: #333;
}

.base {
    /* for aspect ratio */
    position: relative;
    width: 100%;
}

.base:before {
    content: "";
    display: block;
    /* for aspect ratio ~33:1000*/
    padding-top: 3.3%;
    /* stylin */
    background: linear-gradient(#eaeced, #edeef0 55%, #fff 55%, #8a8b8f 56%, #999ba0 61%, #4B4B4F 84%, #262627 89%, rgba(0, 0, 0, .01) 98%);
    border-radius: 0 0 10% 10%/ 0 0 50% 50%;
}

.base::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.8) 0.5%, rgba(0, 0, 0, 0.4) 3.3%, transparent 15%, rgba(255, 255, 255, 0.8) 50%, transparent 85%, rgba(0, 0, 0, 0.4) 96.7%, rgba(255, 255, 255, 0.8) 99.5%, rgba(0, 0, 0, 0.5) 100%);
    content: "";
    height: 53%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.notch {
    background: #ddd;
    border-radius: 0 0 7% 7% / 0 0 95% 95%;
    box-shadow: -5px -1px 3px rgba(0, 0, 0, 0.2) inset, 5px -1px 3px rgba(0, 0, 0, 0.2) inset;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3.5%;
    z-index: 2;
    /* for aspect ratio */
    position: relative;
    width: 14%;
}

.notch:before {
    content: "";
    display: block;
    /* for aspect ratio ~1:10 */
    padding-top: 10%;
}


/* Screenshot Hover Scroll Additions
-------------------------------------------------------------- */

.macbook .viewport {
    transition: background-position 3s ease;
    background-position: 0 0;
    background-size: 100% auto;
    overflow: hidden;
    cursor: pointer;
}

.macbook:hover .viewport {
    background-position: 0 100%;
}

.macbook .viewport:after {
    background: radial-gradient(circle at right bottom, transparent 75%, rgba(255, 255, 255, 0.05) 75%, transparent);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}


.myphone {
    width: 130px;
}

.myphoneios {
    width: 100px;
}


.floating-animated-image {
    display: inline-block;
    animation: shake 1s ease, bounce 1s infinite 0.5s ease;
}

@media (min-width: 1400px) {
    .section12 .container {
        max-width: 1630px;
    }
}

@media screen and (max-width: 767px) {
    #appdroidios {
        margin-top: 25px;
    }

    .contain-phone {
        margin-top: 30px;
    }

    .phonebody-external-detail {
        min-width: 30vh;
        width: 80%;
    }

    #goiydanhchoban {
        font-size: 55px;
    }

    .myphone {
        width: 150px;
    }

    .myphoneios {
        width: 80px;
    }

}

@media screen and (max-width: 600px) {

    .phonebody-external-detail {
        height: 74vh;
    }

    .phonebody-external-itemhome {
        height: 66vh;
    }

    #goiydanhchoban {
        font-size: 40px;
    }

    .phonebody-external-item {
        width: 36vh;
        height: 67vh;
    }

    .top-phone {
        width: 19vh;
    }

    .myphone {
        width: 80px;
    }

    .myphoneios {
        width: 60px;
    }
}
</pre></body></html>