﻿/*Config*/
.header-pc {
    display: flex;
}

.header-mb {
    display: none;
}

@media screen and (max-width: 1024px) {
    .header-pc {
        display: none;
    }

    .header-mb {
        display: flex;
        flex-direction:column;
    }

}
/*PC*/

.header-pc {
    align-items: center;
    justify-content: center;
    flex-direction:column;
}

.top-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* đảm bảo nằm trên các phần tử khác */
    background-color: white; /* tránh bị trong suốt */
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/ /* đổ bóng nhẹ cho đẹp */
}


.top-fix-content{
    display:flex;
    justify-content:space-between;
}

    .top-fix-content .btn-group {
        display: flex;
        justify-content: space-around;
        gap: 22px;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        font-family: "SF Pro",sans-serif;
        text-transform: uppercase;
    }
.btn-group .btn-style-1 {
    /*background: linear-gradient(180deg, #F5FDFF 0%, #DDF8FF 47.12%, #F5FDFF 100%);*/
    border: 1px solid #6DDBFF;
    border-radius: 6px;
    border-width: 1px;
    padding-top: 8px;
    padding-right: 32px;
    padding-bottom: 8px;
    padding-left: 32px;

    color: #26A7DF;
    line-height: 100%;
    letter-spacing: 0;
}
.btn-group .btn-style-2 {
    background: #26a7df;
    /*background: linear-gradient(180deg, #36C0EC 0%, #0188A6 100%);*/
    /*background: linear-gradient(180deg, #36C0EC 0%, #125a6a 100%), linear-gradient(162.15deg, #2d434c -7.84%, #8CDEFF 7.82%, #051e29 36.91%, #00B4FF 48.96%, #00B4FF 56.5%, #8CDEFF 89.94%, #00B4FF 105.73%);*/
    border: 1px solid #6DDBFF;
    border-radius: 6px;
    border-width: 1px;
    padding-top: 8px;
    padding-right: 32px;
    padding-bottom: 8px;
    padding-left: 32px;
    color: #FFFFFF;
    line-height: 100%;
    letter-spacing: 0;
}
header .nav {
    margin-top: 56px;
    border-radius: 66.67px;
    border-width: 1px;
    padding: 17px 66.67px;
    gap: 80px;
    display: flex;
    justify-content: center;
    font-weight: 700;
    font-size: 21.33px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #26A7DF;
    border: 1px solid #7DD8FF;
    box-shadow: 0px 4px 0px 0px #7DD8FF99;
}


.top-container {
  
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    position:absolute;
    top:0;
    left:0;
}

/* Nav menu (ẩn mặc định) */
.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-top: 1px solid #ddd;
    /*margin-top: 10px;*/
    padding: 10px 0;
    text-transform: uppercase;
}

    .mobile-nav .nav-item {
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
    }

        .mobile-nav .nav-item a {
            color: #26A7DF;
            text-decoration: none;
            font-weight: bold;
        }

    /* Hiển thị khi toggle */
    .mobile-nav.show {
        display: flex;
    }



@media screen and (max-width: 1024px) {
  /*  .top-container {
        display: flex;
        flex-direction: column;
    }*/
}

/* Hiệu ứng chữ chạy */
@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}