* {
    font-family: "Raleway", sans-serif;
}

body {
    position: relative;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    background: #FFFFFF;
    width: 80%;
    left: 50%;
    /* Di chuyển phần tử tới giữa theo chiều ngang */
    transform: translateX(-50%);
    /* Dịch chuyển phần tử điều chỉnh tới vị trí giữa */
    margin-top: 25px;
    border-radius: 50px;
    display: flex;
    height: 90px;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 100;
}

.header i {
    display: none;
}

@media(max-width:1000px) {
    .bar a {
        display: none;
    }

    .header i {
        display: block;
        margin-right: 30px;
        font-size: 30px;
        cursor: pointer;
    }
}

.header .inner-logo {
    flex: 1;
    margin-left: 30px;
}

.header .bar {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.header .bar a {
    margin-right: 10px;
    color: #5C5C5C;
    font-size: 13px;
    font-weight: 500;
}

.header .bar a:hover {
    color: #FF589E;
    text-decoration: none;
}

/*END  HEADER */

/* BUTTON */

.button {
    background: #FF589E;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

.button:hover {
    background: #8261EE;
}

/* END BUTTON */

/* SECTION ONE */
.section-one {
    background-image: url(/asset/img/banner-bg.png);
    height: 100vh;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.section-one .wrap-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
    color: white;
}

.section-one .wrap-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.section-one .wrap-content p {
    margin-bottom: 20px;
}

/* END SECTION ONE */

/*  SECTION TWO */

.section-two .inner-wrap {
    text-align: center;
}

.section-two .inner-wrap i {
    font-size: 70px;
    color: white;
    padding: 20px;
    border-radius: 50%;
    background-color: #8160EE;
    margin-bottom: 20px;
}

.section-two .inner-wrap h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.section-two .inner-wrap i:hover {
    background-color: #FF589E;
}

.section-two .inner-wrap .box p {
    color: #A0A0A0;
    font-size: 15px;
}

.section-two .inner-wrap .box {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px;
    margin-bottom: 10px;
}

/* END SECTION TWO */

/* SECTION THREE */

.section-three {
    padding: 80px 0;
}

.section-three .inner-content .inner-image {
    margin-right: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.section-three .inner-content .inner-image img {
    max-width: 100%;
}

.section-three .inner-content .content {
    height: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.section-three .inner-content .content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.section-three .inner-content .content p {
    font-size: 16px;
}


/* END SECTION THREE */


/* SECTION FOUR */

.section-four {
    padding: 80px 0;
}

.section-four .content {
    text-align: center;
}

.section-four .content .inner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

/* END SECTION FIVE */

.section-five {
    text-align: center;
    background-image: url(/asset/img/work-process-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding: 100px 0;
    opacity: 0.95;
}

.section-five h3 {
    color: white;
    margin-bottom: 30px;
}

.section-five .desc {
    color: white;
}

.section-five .box {
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: white;
    margin-bottom: 30px;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease;
    /* Thêm transition */
}

.section-five .box:hover {
    transform: translateY(-20px);
    /* Di chuyển lên khi hover */
    cursor: pointer;
}

.section-five .box::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 18px;
    right: -15px;
    background-color: white;
    z-index: -100;
    border-radius: 15px;
    opacity: 0.15;
}

.section-five .box i {
    font-size: 20px;
    color: #8160EE;
}

/* SECTION FIVE */

/* SECTION SIX */

.section-six {
    text-align: center;
}

/* END SECTION SIX */

.section-six {
    padding: 100px 0;
}

.section-six .box {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px;
    border-radius: 15px;
}

.section-six h2 {
    margin-bottom: 50px;
}

.section-six .wrap-box .inner-image {
    margin-bottom: 20px;
}

.section-six .wrap-box .inner-image img {
    border-radius: 50%;
}

.section-six .wrap-box .inner-desc {
    display: flex;
}

.section-six .wrap-box .inner-desc .desc {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.section-six .wrap-box .inner-desc .desc .desc-1 {
    margin-bottom: 0;
}

.section-six .wrap-box .inner-desc .desc .desc-2 {
    color: #FF7DC7;
    font-weight: bolder;
}

/* END SECTION SIX */

/*  SECTION SEVEN */

.section-seven {
    background: #F2F2FE;
    text-align: center;
    padding: 100px 0;
}

.section-seven .inner-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.section-seven .inner-box .price {
    background: #8261EE;
    padding: 20px 40px;
    color: white;
    border-radius: 20px;
    margin: 20px 0;
    font-size: 30px;
}

.section-seven .button {
    border: none;
}

.section-seven .inner-box .price-2 {
    background: #FF589E;
    padding: 20px 40px;
    color: white;
    border-radius: 20px;
    margin: 20px 0;
}

.section-seven .top-desc {
    margin: 30px 0;
}

/* END SECTION SEVEN */

/* SECTION EIGHT */
.section-8 {
    background-image: url(/asset/img/fun-facts-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.section-8 img {
    object-fit: contain;
}


.section-8 .wrap-content {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.section-8 p {
    color: white;
    font-size: 30px;
}

/* END SECTION EIGHT */

/* SECTION NINE */

.section-nine {
    padding: 80px 0;
    text-align: center;
}

.section-nine h2 {
    margin-bottom: 20px;
}

.section-nine .sub-title {
    margin-bottom: 20px;
}

.section-nine .box {
    margin-bottom: 20px;
}

.section-nine img {
    width: 100%;
}

.section-nine button {
    border: none;
}

.section-nine .content-1 {
    margin-top: 20px;
    font-weight: 600;
    font-size: larger;
}

/*END SECTION NINE */

/* SECTION TEN */
.section-ten {
    padding: 130px 0;
    background: #F2F2FE;
}

.section-ten h2 {
    text-align: center;
}

.section-ten .sub-title {
    text-align: center;
}

.section-ten .form-control {
    border-radius: 15px;
}

.section-ten .desc {
    color: #969699;
}

.section-ten .wrap-content {
    margin-top: 20px;
}

.section-ten .wrap-content h3 {
    margin-bottom: 30px;
}

.section-ten .wrap-content .desc {
    margin-bottom: 30px;
}

/* END SECTION TEN */