* {
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Helvetica, sans-serif;
}

body.intro-active{
    overflow: hidden;
}

.intro-scroll{
    opacity:1;
    transition:opacity .4s ease;
}

.intro-scroll.hide{
    opacity:0;
    pointer-events:none;
}

img{
    display: block;
    max-width: 100%;
}

.container{
    max-width:1200px;
    margin: 0px auto;
    position: relative;
}

.ctas{
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

.cta-register{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 8px 20px;
    border-radius:50px;
    color:#fff;
    font-size: 16px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
    border: 4px solid rgb(224 231 255 / 20%);
    background: linear-gradient(180deg, #0A79D5 0%, #0A79D5 100%);
}

.glowing-button-outstroke {
    background-color: #6fa1e033;
    border-radius: 62.5rem;
    padding: 1.5px;
    display: inline-flex;
}

.glowing-button {
    border-radius: 10em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1px;
    text-decoration: none;
    transition: all .4s;
    display: none;
    position: relative;
    overflow: hidden;
}

.glowing-button.home {
    padding: 2.5px;
    display: inline-flex;
    box-shadow: inset 0 -7px 24px #ffffff80, 0 3px 12px #0057f280;
}

.glowing-button.home:hover {
    box-shadow: inset 0 -7px 24px #ffffff80, 0 3px 12px 3px #0057f280;
}

.button-background {
    z-index: 1;
    background-color: #151515;
    background-image: linear-gradient(270deg, #0057f2, #1e88e5);
    border-radius: 10em;
    position: relative;
    box-shadow: inset 0 -7px 24px #ffffff80;
}

.button-inside {
    z-index: 2;
    color: #fff;
    white-space: nowrap;
    padding: .75rem 1.5rem;
    font-weight: 600;
    display: flex;
    position: static;
    inset: 1%;
}

.stroke-border-gradient {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 160%;
    min-height: 16rem;
    position: absolute;
    transform: rotate(-55deg);
}

.stroke-border-gradient {
    animation: spin 3s linear infinite;
    background: conic-gradient(from 0 at 50% 50%, rgba(255, 255, 255, .5) 0deg, rgba(255, 255, 255, 0) 60deg, rgba(255, 255, 255, 0) 310deg, rgba(255, 255, 255, .5) 360deg);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stroke-border-gradient {
    animation: spin 3s linear infinite;
    background: conic-gradient(from 0 at 50% 50%,rgba(255,255,255,.5) 0deg,rgba(255,255,255,0) 60deg,rgba(255,255,255,0) 310deg,rgba(255,255,255,.5) 360deg);
}

.glowing-button-:hover .stroke-border-gradient {
    animation-duration: 3s;
    animation-play-state: running;
}

.header{
    width:100%;
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 999;
    background-color: #031454;
    padding: 10px 0px;
}

.header .container{
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.header .logo img{
    height:42px;
    display:block;
}

/* Menu */

.header .nav{
    display:flex;
    align-items:center;
    gap: 30px;
    flex:1;
    justify-content: center;
}

.header .nav a{
    color:#fff;
    text-decoration:none;
    font-size: 16px;
    font-weight:600;
    transition:.25s;
}

.header .nav a:hover{
    color:#0176d3;
}

/* Button */

.header .btn-register{
    padding: 8px 20px;
    background:#0176d3;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-size:16px;
    font-weight:600;
    transition:.25s;
    border-radius:50px;
}

.header .btn-register:hover{
    background:#025fb1;
}

/* Responsive */

@media(max-width:992px){
    .header .container{
        height:auto;
        padding: 0px 15px;
    }

    .header .nav{
        display: none;
    }

    .header .btn-register{
        text-align:center;
    }

}

.hero-banner {
    height: 880px;
    position: relative;
}

.hero-banner .cover {
    height: 100%;
    text-align: center;
}

.hero-banner .cover video{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-banner .hero-text{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: 9;
    text-align: center;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}

.hero-banner .hero-text p{
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
}

.hero-banner .hero-text h1{
    color: #fff;
    font-size: 52px;
    margin-bottom: 24px;
}

.hero-banner .hero-text h4{
    color: #fff;
    font-size: 32px;
    margin-bottom: 24px;
}

.hero-banner .hero-text .hero-actions{
    text-align: center;
}


.hero-banner .cover img {
    max-width: 100%;
}

@media(max-width: 991px){
    .hero-banner{
        height: auto;
    }
    .hero-banner .hero-text{
        display: none;
    }
}

.event-section {
    background-image: url(images/vector-1.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #030213;
}

.event-video{
    position: relative;
}

.video-container{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 450px;
    max-width: 1550px;
    margin: 0px auto;
}

/* Sóng trên */
.video-container::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -5%;
    width: 110%;
    height: 180px;
    z-index: 9;
    background: #030213;
    border-radius:0 0 100% 100%;
}

/* Sóng dưới */
.video-container::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -5%;
    width: 110%;
    height: 180px;
    z-index: 9;
    background: #030213;
    border-radius: 100% 100% 0 0;
}

.video-container .cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    padding-bottom: 55%;
    border-radius: 18px;
}

.event-video iframe{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 18px;
}

.event-overlay{
    position:absolute;
    inset:0;
    background: #030213b5;
}

.event-heading {
    text-align: center;
    color: #fff;
    margin-bottom: -130px;
    position: relative;
    z-index: 99;
}

.event-section .event-wrapper{
    position: absolute;
    bottom: 110px;
    width: 100%;
    z-index: 9;
}

.event-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(88, 214, 106, 0.14);
    color: #040e4b;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-heading h2 {
    font-size: 34px;
    line-height: 1.15;
    color: #E2E8FF;
    font-weight: 500;
}

.event-heading h2 span{
    display: inline-flex;
    background-image: url(images/bg-title.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: -17px 5px;
    padding: 40px 0px;
    padding-left: 15px;
    position: relative;
}

.event-heading h2 span:before{
    content: '';
    width: 2px;
    height: 25px;
    position: absolute;
    left: 3px;
    top: 48px;
    background-color: #fff;
}

.event-heading p {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: -20px;
}

.event-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0px auto;
}

.event-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    width: calc(100%/3 - 16px);
    padding: 10px;
    background-color: #06124973;
    border-radius: 12px;
}

.event-card img{
    max-width: 100%;
}

.event-region {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #e7f3fd;
    color: #040e4b;
    font-size: 15px;
    font-weight: 500;
}

.event-card h3 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

.event-info {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.event-address{
    color: #fff;
    font-size: 16px;
}

.event-section .stats{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:70px;
    flex-wrap:wrap;
}

.event-section .stat-item{
    text-align:center;
    color:#fff;
}

.event-section .stat-number{
    padding: 10px 25px;
    margin:0 auto 12px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 36px;
    font-weight:700;
    color:#dce9ff;
    background-image: url(images/frame.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.event-section .stat-item p{
    margin:0;
    font-size: 16px;
    line-height:1.4;
    color:#d7d7e2;
}

@media (max-width: 992px) {
    .event-grid {
        margin-top: 16px;
    }
    .event-section .event-wrapper{
        position: static;
    }
    .event-card {
        width: 100%;
    }
    .event-section .stat-item{
        width: 33.33333%;
    }
    .event-heading{
        margin-bottom: 16px;
    }
}

@media (max-width:767px){
    .event-section .stats{
        gap: 20px;
        margin-top: 20px;
    }

    .event-section .stat-number{
        width:100px;
        height:42px;
        font-size:20px;
        background-image: none;
    }

    .event-section .stat-item{
        width:calc(50% - 15px);
    }

    .event-section .stat-item p{
        font-size:12px;
    }
}


@media(max-width: 767px){
    .video-container{
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .event-section {
        padding: 40px 16px;
    }

    .event-heading h2 {
        font-size: 24px;
    }

    .event-heading h2 span{
        background-position: -13px 5px;
    }

    .event-heading h2 span:before{
        top: 42px;
    }

    .event-heading p {
        font-size: 17px;
    }
}

.dreamforce-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 15px 80px;
    background-color: #030213;
}

.dreamforce-slider .swiper {
    width: 100%;
    overflow: visible;
}

.dreamforce-slider .swiper-wrapper {
    align-items: center;
}

.dreamforce-slider .swiper-slide {
    max-width: 980px;
    transition: all .45s ease;
    transform: scale(.82);
    opacity: .35;
    filter: blur(6px);
}

.dreamforce-slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
    z-index: 10;
}

.dreamforce-slider .card {
    display: flex;
    align-items: center;
    gap: 50px;
    border-radius: 34px;
    padding: 20px;
    background: linear-gradient(90deg, #10264c 0%, #0b0d22 55%, #070615 100%);
    border: 1px solid rgba(126, 118, 160, 0.6);
}

.dreamforce-slider .card-image {
    width: 40%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 24px;
}

.dreamforce-slider .card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.dreamforce-slider .card-content {
    position: relative;
    flex: 1;
    padding-right: 70px;
}

.dreamforce-slider .card-content h2 {
    font-size: 20px;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 15px;
    font-weight: bold;
}

.dreamforce-slider .card-content p {
    color: #fff;
    font-size: 14px;
    line-height: 150%;
    text-align: justify;
}

.dreamforce-slider .ctas{
    margin-top: 30px;
}


.dreamforce-slider .slider-pagination{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-top:30px;
    background:#fff;
    border-radius:999px;
    padding:8px 18px;
    width:fit-content;
    margin-inline:auto;
}

.dreamforce-slider .swiper-pagination{
    position:static;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap:10px;
}

.dreamforce-slider .swiper-pagination-bullet{
    width:8px;
    height:8px;
    background:#bfc5d2;
    opacity:1;
    margin:0 !important;
    transition:.3s;
}

.dreamforce-slider .swiper-pagination-bullet-active{
    background: #132a8e;
}

.dreamforce-slider .custom-prev,
.dreamforce-slider .custom-next{
    position:static;
    margin:0;
    width:16px;
    height:16px;
    color:#132a8e;
}

.dreamforce-slider .custom-prev::after,
.dreamforce-slider .custom-next::after{
    font-size:12px;
    font-weight:bold;
}

@media(max-width: 767px){
    .dreamforce-slider .swiper{
        padding: 0px 15px;
    }
}

.agenda-section{
    padding: 60px 15px;
    color: #fff;
    padding-bottom: 100px;
    background-image: url(images/vector.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #030213;
}

.agenda-section .container{
    width: 100%;
    max-width: 1044px;
    margin-left: auto;
    margin-right: auto;
}

.agenda-section .sub-title{
    display:block;
    text-align:center;
    font-size: 24px;
    font-weight:700;
}

.agenda-section .agenda-heading{
    text-align: center;
    margin-bottom: 30px;
}

.agenda-section h2{
    text-align:center;
    font-size: 34px;
    margin: 0px 0;
    margin-bottom: 10px;
    background: linear-gradient(
        90deg,
        #D9ECFF 0%,
        #B9D8FF 30%,
        #8EC0FF 60%,
        #3D9BFF 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.agenda-section .desc{
    max-width:760px;
    margin:0 auto;
    text-align:center;
    font-size: 18px;
}

.agenda-section .cta-register{
    
    margin: 15px 0px;
}

.agenda-section .tabs{
    display:flex;
    gap:12px;
    margin-bottom:50px;
}

.agenda-section .tabs button{
    flex:1;
    border:none;
    cursor:pointer;
    color:#fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    border: 1px solid #fff;
    background: transparent;
}

.agenda-section .tabs button.-color{
    background: linear-gradient(180deg, #0A79D5 0%, #0A79D5 100%);
}

.agenda-section .tabs button:hover{
    background: linear-gradient(180deg, #0A79D5 0%, #0A79D5 100%);
}

.agenda-section .tabs .active,
.agenda-section .tabs button:focus{
    color: #fff;
    background: linear-gradient(180deg, #0A79D5 0%, #0A79D5 100%);
}

.agenda-section .agenda-content{
    display:none;
}

.agenda-section .agenda-content.active{
    display: block;
}

.agenda-content .agenda-container{
    margin-bottom: 35px;
    display: flex;
    gap: 60px;
}

.agenda-content .agenda-container:last-child{
    margin-bottom: 0px;
}

.agenda-content .agenda-head{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    padding: 15px 30px;
    border-radius:999px;
    border:2px solid rgba(255,255,255,.45);
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(49,147,255,.45) 0%,
            rgba(49,147,255,.20) 25%,
            rgba(49,147,255,0) 60%
        ),
        linear-gradient(
            90deg,
            #1B233A 0%,
            #274D79 35%,
            #2D6DB0 50%,
            #274D79 65%,
            #1B233A 100%
        );
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,.15),
        0 8px 24px rgba(0,0,0,.25);
}

.agenda-content .agenda-head .text-left{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.agenda-content .agenda-head .text-right{
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(
        90deg,
        #D9ECFF 0%,
        #B9D8FF 30%,
        #8EC0FF 60%,
        #3D9BFF 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.agenda-content .card-wrap{
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.agenda-content .agenda-card{
    width: 100%;
    height: 100%;
    display:flex;
    overflow:hidden;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    border-radius:30px;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 20%);
}

.agenda-content .agenda-card h3{
    color:#fff;
    font-size: 18px;
    width: 100%;
    line-height: 150%;
}

.agenda-content .agenda-card .main{
    display:flex;
    gap: 40px;
    align-items:center;
    justify-content: space-between;
}

.agenda-content .image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.agenda-content .content{
    flex:1;
}

.agenda-content .content p,
.agenda-content .content li{
    color: #fff;
    font-size: 12px;
    line-height: 180%;
    margin-bottom: 10px;
    text-align: justify;
}

.agenda-content .content li{
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.agenda-content .content li .icon{
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.agenda-content .content li .icon svg{
    width: 16px;
    height: 16px;
}

.agenda-content .content ul{
    padding-left: 0px;
    list-style: none;
}

.agenda-content .content .agenda-info{
    font-size: 12px;
    margin-top: 20px;
    padding-bottom: 0px;
}

.agenda-content .content .agenda-info .name{
    color: #fff;
    font-weight: bold;
    margin-bottom: 3px;
}

.agenda-content .content .agenda-info .position{
    font-style: italic;
}

@media(max-width:991px){
    .video-container::before,
    .video-container::after{
        display: none;
    }

    .agenda-section .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .agenda-content .agenda-card,
    .agenda-content .reverse{
        width: 100%;
        gap: 16px;
        flex-direction:column;
    }

    .agenda-content .agenda-card .main{
        width: 100%;
        gap: 20px;
        flex-direction:column;
    }

    .agenda-content .content .agenda-info{
        margin-bottom: 16px;
    }

    .agenda-content .image{
        width:100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .agenda-content .image img{
        width: 108px;
    }

    .agenda-content .agenda-card h3{
        font-size: 16px;
    }

    .agenda-content .desc{
        width:100%;
    }

    .agenda-content .agenda-container{
        gap: 30px;
    }

    .agenda-content .agenda-head{
        gap: 30px;
    }

    .agenda-content .agenda-head .text-left{
        font-size: 18px;
    }

    .agenda-content .agenda-head .text-right{
        font-size: 18px;
    }

    .agenda-section .tabs{
        position: relative;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        justify-content: unset;
        width: 100%;
    }

    .agenda-section .tabs button{
        flex: none;
    }

    .agenda-section .item span{
        font-size: 32px;
    }

    .agenda-section .item p{
        font-size: 16px;
    }

    .agenda-content .content{
        width: 100%;
    }

    .dreamforce-slider{
        padding-bottom: 0px;
    }

    .dreamforce-slider .card{
        flex-direction: column;
    }

    .dreamforce-slider .card-image,
    .dreamforce-slider .card-content{
        width: 100%;
        padding-right: 0px;
    }

    .dreamforce-slider .card-content h2{
        font-size: 18px;
    }

    .dreamforce-slider .card-content p{
        font-size: 12px;
    }

}

@media(max-width: 767px){
    .agenda-content .card-wrap{
        width: 100%;
        flex-direction: column;
    }

    .agenda-content .agenda-head{
        gap: 10px;
        flex-direction: column;
    }

    .agenda-content .agenda-card h3{
        font-size: 15px;
        text-align: center;
    }

    .agenda-section{
        padding-bottom: 100px;
    }

    .agenda-content .agenda-container{
        flex-direction: column;
    }

    .agenda-section h2{
        font-size: 24px;
    }

    .agenda-section .desc{
        font-size: 15px;
    }
    .agenda-content .content p, .agenda-content .content li{
        font-size: 13px;
    }
    
}
.convince-section{
    position: relative;
    padding: 60px 20px;
}

.speaker-section{
    padding: 60px 15px;
    background-color: #030213;
    border-radius: 0px 0px 50px 50px;
}

.speaker-section .container{
    
}

.speaker-section .speaker-head{
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 45px;
}

.speaker-section .speaker-head h2{
    color: #ffffff26;
    font-size: 34px;
    margin-bottom: 8px;
    background: linear-gradient(
        90deg,
        #D9ECFF 0%,
        #B9D8FF 30%,
        #8EC0FF 60%,
        #3D9BFF 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.speaker-section .speaker-head .head-mobile{
    display: none;
}

.speaker-section .speaker-head p{
    color: #fff;
    font-size: 18px;
}

.speaker-section .speaker-head .speaker-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 12px 38px;
    border-radius:50px;
    background:#fff;
    color:#0b33d8;
    font-size: 16px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.speaker-section .speaker-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:24px;
    margin:0 auto;
}

.speaker-section .speaker-card{
    position:relative;
    padding:15px;
    border-radius:18px;
    overflow:hidden;
    background: linear-gradient(90deg, #10264c 0%, #0b0d22 55%, #070615 100%);
    border: 1px solid rgba(126, 118, 160, 0.6);
}

.speaker-section .speaker-card .image{
    height: 270px;
    border-radius:12px;
    padding: 10px 10px 0px 10px;
    background-color: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 20%);
}

.speaker-section .speaker-card img{
  width:100%;
  height: 100%;
  display:block;
  object-fit:cover;
  border-radius:12px;
}

.speaker-section .plus{
  position:absolute;
  top:22px;
  right:20px;
  z-index:5;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#075cff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.speaker-section .speaker-info{
    color:#fff;
  position:relative;
  z-index:2;
  padding: 20px 0px 0px;
  text-align:center;
}


.speaker-section .speaker-info h3{
  margin:0 0 8px;
  font-size: 18px;
  line-height: 150%;
  font-weight: bold;
      background: linear-gradient(90deg, #fff 0%, #fff 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.speaker-section .speaker-info p,
.speaker-section .speaker-info h5{
  margin:0 auto;
  font-size:11px;
  line-height:1.35;
  font-weight: normal;
}

.speaker-section .speaker-front{
    opacity:1;
    visibility:visible;
}

.speaker-section .speaker-back{
    padding:20px;
    opacity:0;
    visibility:hidden;
    position:absolute;
    inset:0;
    transition:.45s ease;
}

.speaker-section .speaker-back ul{
    padding-left: 15px;
}

.speaker-section .speaker-back ul li{
    color: #fff;
    font-size: 12px;
    padding: 5px 0px;
    line-height: 150%;
    text-align: justify;
}

.speaker-section .speaker-card:hover .speaker-front{
    opacity:0;
    visibility:hidden;
}

.speaker-section .speaker-card:hover .speaker-back{
    opacity:1;
    visibility:visible;
}

.speaker-section .speaker-card .speaker-back h3{
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
}

.speaker-section .speaker-card .speaker-back h5,
.speaker-section .speaker-card .speaker-back p{
    color: #fff;
    font-size: 12px;
    margin-bottom: 12px;
}

@media(max-width:991px){
    .speaker-section .speaker-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width: 767px){
    .speaker-section .speaker-grid{
        grid-template-columns:repeat(1,1fr);
    }
    .speaker-section .speaker-card .image{
        height: auto;
    }
    .speaker-section .speaker-head h2{
        font-size: 23px;
    }
    .speaker-section .speaker-head .head-desktop{
        display: none;
    }
    .speaker-section .speaker-head .head-mobile{
        display: block;
    }
    .speaker-section .speaker-head p{
        font-size: 15px;
    }
    .speaker-section .speaker-info h5{
        font-size: 13px;
    }
}

.pricing-section{
    padding: 60px 15px;
    background-color: #040e4b;
}

.pricing-section .container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;
    align-items:start;
}

.pricing-section .pricing-left{
    position: sticky;
    top: 50px;
}

.pricing-section .sub-title{
    color: #fff;
    display:block;
    margin-bottom:16px;
    font-size: 24px;
    font-weight:700;
}

.pricing-section .pricing-left h2{
    color: #fff;
    font-size: 52px;
    line-height: 130%;
    font-weight: bold;
    margin-bottom:16px;
}

.pricing-section .pricing-left p{
    color: #fff;
    font-size: 16px;
    line-height:1.6;
    margin-bottom: 30px;
}

.pricing-section .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    color: #040e4b;
    background:#fff;
}

.pricing-section .price-card{
    margin-bottom:18px;
    padding:22px;
    border-radius:16px;
    border:1px solid #dfe7f5;
    background:#fff;
}

.pricing-section .price-card small{
    display:block;
    font-size: 16px;
    margin-bottom:16px;
    color: #040e4b;
}

.pricing-section .price-card h3{
    margin:0;
    font-size: 52px;
    color: #040e4b;
    margin-bottom:16px;
}

.pricing-section .price-card p{
    margin:0;
    font-size: 20px;
    color: #040e4b;
}


.pricing-section .price-card.disabled{
    background: #ffffff80;
}

.pricing-section .pricing-right h4{
    color: #fff;
    margin:36px 0 18px;
    font-size: 24px;
}

.pricing-section .info-card{
    margin-bottom:18px;
    padding:24px;
    border-radius:16px;
    border:1px solid #dfe7f5;
    background:#fff;
}

.pricing-section .info-card h5{
    margin:0 0 14px;
    font-size:24px;
}

.pricing-section .info-card p{
    margin:0;
    line-height:1.6;
}

@media(max-width:992px){
    .pricing-section .container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .pricing-section .pricing-left{
        position: static;
    }

    .pricing-section .pricing-left h2{
        font-size:42px;
    }

    .pricing-section .pricing-right{
        max-width:500px;
    }

}


.cta-content{
    padding: 60px 0px 0px;
    text-align:center;
}

.sponsor-section .cta-content h2{
    margin:0;
    color:#fff;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 19px;
    line-height: 130%;
}

.sponsor-section .cta-content p{
    color:#fff;
    font-size: 18px;
    font-weight:500;
}

@media(max-width:768px){

    .cta-section{
        padding:80px 20px;
    }


    .cta-content p{
        font-size:18px;
    }

    .sponsor-section .cta-content h2{
        font-size: 24px;
    }

}

.sponsor-section{
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    color: #fff;
    background-color: #030213;
}

.sponsor-section h2{
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #D9ECFF 0%, #B9D8FF 30%, #8EC0FF 60%, #3D9BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.sponsor-section .sign_up_layout{
    display: flex;
    gap: 30px;
    align-items: center;
}

.sign_up_layout .sign_text{
    width: 50%;
}

.sign_up_layout .sign_text h3{
    color: #e2e8ff;
    font-size: 18px;
    margin-bottom: 24px;
}

.sign_up_layout .sign_text h3 span{
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(260deg, #1e88e5, #74baf6);
    -webkit-background-clip: text;
    background-clip: text;
}

.sign_up_layout .sign_text p{
    color: #fff;
    font-size: 16px;
}

.sign_up_layout .sign_text ul{
    display: flex;
    gap: 16px;
    margin: 0px;
    margin-top: 30px;
    padding-left: 0px;
    flex-direction: column;
}

.sign_up_layout .sign_text ul li{
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 150%;
}

.sign_up_layout .sign_text ul li .icon{
    display: block;
    width: 24px;
    height: 24px;
}

.sign_up_layout .sign_text ul li svg{
    width: 24px;
    height: 24px;
}

.sign_up_logo{
    margin-top: 30px;
}

.sign_up_logo > div{
    font-size: 14px;
    color: #fff9;
    font-weight: 500;
    margin-bottom: 16px;
}

.sign_up_logo .marquee {
    overflow: hidden;
    width: 100%;
}

.sign_up_logo .marquee-track {
    display: flex;
    width: max-content;
}

.sign_up_logo .marquee_logo_wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
}

.sign_up_logo .logo-image img {
    max-height: 48px;
    display: block;
}

.sign_up_layout .sign_form{
    width: 50%;
}

.recap-form{
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    background-color: #ffffff0d;
}

.recap-form .form-group{
    margin-bottom: 24px;
}

.recap-form .form-group label{
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.recap-form .row{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.recap-form .row .form-group{
    flex: 1;
}

.recap-form .form-control{
    width:100%;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 16px;
    border-radius:30px;
    font-size: 16px;
    background-color: #e2e8ff1a;
    border: 1px solid #e2e8ff1a;
}

.recap-form .form-control::placeholder{
    color: rgba(255, 255, 255, 0.6);
}

.recap-form .form-control:focus{
    outline:none;
    border-color:#0176d3;
}

.recap-form .form-control option{
    color: rgba(255, 255, 255, 0.6);
    background: #13182B;
}

.btn-submit{
    width:100%;
    padding:14px;
    background:#0176d3;
    color:#fff;
    border:none;
    border-radius:30px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    display: block;
}

.btn-submit:hover{
    background:#025fb1;
}

.recap-form .checkbox-field{
    color:#fff;
    font-size: 13px;
    margin-top: 15px;
    display: block;
}

.recap-form .checkbox-field input{
    margin-right: 5px;
}

.recap-form .checkbox-field a{
    color: #1e88e5;
}

.sign_up_light_top {
    filter: blur(400px);
    pointer-events: none;
    background-color: #1e88e5;
    border-radius: 999px;
    width: 695px;
    height: 320px;
    position: absolute;
    inset: 67% auto auto -16%;
    transform: rotate(24deg);
}

.sign_up_light_bottom {
    z-index: 1;
    opacity: .4;
    filter: blur(300px);
    pointer-events: none;
    background-color: #1e88e5;
    border-radius: 999px;
    width: 60vw;
    height: 600px;
    position: absolute;
    inset: auto 0% 0% auto;
    transform: rotate(24deg);
}

@media(max-width: 767px){
    .sponsor-section .sign_up_layout{
        flex-direction: column;
    }
    .sign_up_layout .sign_text,
    .sign_up_layout .sign_form{
        width: 100%;
    }
    .sponsor-section h2{
        font-size: 24px;
    }
    .sign_up_layout .sign_text ul li{
        font-size: 12px;
    }
}

.prize-logo-section {
    padding: 40px 0;
    overflow: hidden;
    background-color: #fff;
}

.prize-logo-section .mask-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.logo-slider .slick-track {
    margin: 0px -15px;
}

.logo-slider .slick-slide {
    margin: 0 15px;
}

.logo-slider .slick-slide img {
    display: block;
    max-width: 100%;
    height: auto;
    width: auto;
}

.customer-section{
    position: relative;
    padding: 32px 0px;
}

.customer-section .marquee_header{
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
}

.customer-section .marquee_header .text-span{
    color: #1e88e5;
    position: relative;
    overflow: hidden;
    margin-left: 4px;
    margin-right: 4px;
}

.customer-section .marquee_header .highlight-text {
    color: #1e88e5;
    font-size: 18px;
    font-weight: 600;
}

.customer-slider{
    max-width: 960px;
    margin: 0px auto;
}

.customer-slider .slick-track{
    margin: 0px -15px;
}

.customer-slider .slick-slide {
    margin: 0 15px;
}

#liquidCanvas{
    width: 100%;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
    padding: 20px;
}

.hero-logo {
    width: 100%;
    max-width: 180px;
    margin-bottom: 32px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #212121;
    margin-bottom: 40px;
}

.hero-content h1 span {
    display: block;
    color: #212121;
}

.intro-scroll {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.35s ease;
}

.intro-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background: #f7f9fc;
}

.intro-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(
            circle at 50% 52%,
            rgba(145, 192, 255, 0.17) 0,
            rgba(200, 222, 255, 0.08) 22%,
            rgba(247, 249, 252, 0) 58%
        ),
        #f7f9fc;
}

/* Ánh sáng phía dưới mô hình */
.intro-background::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 7%;
    width: min(65vw, 1000px);
    height: 23vh;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(120, 177, 255, 0.13);
    filter: blur(50px);
}

/* Vùng chứa 3 ảnh */
.intro-visual {
    position: absolute;
    left: 50%;
    top: 49%;
    width: min(78vw, 1040px);
    height: min(69vh, 680px);
    transform: translate(-50%, -50%);
    transform-origin: center;
    will-change: transform, opacity, filter;
}

/* Cấu hình chung */
.intro-piece {
    position: absolute;
    display: block;
    max-width: none;
    user-select: none;
    pointer-events: none;
    transform-origin: center;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    -webkit-user-drag: none;
}

/*
 * Các giá trị top, left, width có thể tinh chỉnh
 * tùy khoảng trắng thực tế bên trong file PNG.
 */

/* Mảnh bên trái */
.intro-piece-left {
    left: 11%;
    top: 22%;
    width: 32%;
    z-index: 1;
}

/* Mảnh trung tâm */
.intro-piece-center {
    left: 50%;
    top: 55%;
    width: 77%;
    z-index: 3;
    transform: translate3d(-50%, -50%, 0);
}

/* Mảnh bên phải */
.intro-piece-right {
    right: 11%;
    top: 22%;
    width: 32%;
    z-index: 2;
}


@media(max-width: 991px){
    .intro-piece-left {
        left: 0%;
        top: 28%;
        width: 40%;
        z-index: 1;
    }
    .intro-piece-center {
        width: 100%;
    }
    .intro-piece-right {
        right: 0%;
        top: 28%;
        width: 40%;
        z-index: 2;
    }
}

@media(max-width: 767px){
    .intro-piece-left {
        top: 41%;
    }
    .intro-piece-right {
        top: 41%;
    }
}

.intro-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    will-change: transform, opacity;
    background: linear-gradient(90deg, #006EDB 0%, #006EDB 30%, #3D9BFF 60%, #3D9BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.intro-mouse {
    position: relative;
    display: block;
    width: 31px;
    height: 48px;
    border: 1.5px solid rgba(76, 88, 105, 0.45);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
}

.intro-mouse-arrow {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #7a8492;
    border-bottom: 1.5px solid #7a8492;
    transform: translateX(-50%) rotate(45deg);
    animation: introArrow 1.5s ease-in-out infinite;
}

.story-section{
    padding: 60px 15px;
    position: relative;
    background-color: #fff;
}

.story-section .story-head{
    margin-bottom: 60px;
    text-align: center;
}

.story-section .story-head h2{
    font-size: 34px;
    font-weight: bold;
    background: linear-gradient(90deg, #000000 0%, #000000 30%, #0080FF 60%, #0080FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.story-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 24px;
}

.story-swiper .slick-track {
    margin: 0px -15px;
}

.story-swiper .slick-slide {
    margin: 0 15px;
}

.story-swiper .slick-slide img {
    display: block;
    max-width: 100%;
    height: auto;
    width: auto;
}

.story-swiper .swiper-pagination{
    bottom: 0px;
}

.story-swiper .swiper-button-prev,
.story-swiper .swiper-button-next {
    color: #0080FF ;
}

.story-swiper .swiper-pagination-bullet-active {
    background: #0080FF ;
}

.ten-year{
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.ten-year img{
    max-width: 100%;
}


@media(max-width: 991px) and (min-width: 768px){
    .story-section .story-wrap{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media(max-width: 767px){
    .intro-scroll-indicator{
        font-size: 24px;
    }

    .story-section .story-wrap{
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .story-section .story-head h2{
        font-size: 24px;
    }
}

.builders-section{
    padding: 60px 15px;
    background:#fff;
}

.builders-section .section-heading{
    text-align:center;
    margin-bottom:70px;
}

.builders-section .section-heading span{
    display:block;
    color:#666;
    font-size:18px;
    margin-bottom:12px;
}

.builders-section .section-heading h2{
    font-size: 34px;
    color:#0f4ea5;
    font-weight:700;
}

.builders-section .builders-wrapper{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:80px;
    align-items:center;
}

/* Left */

.builders-section .builders-image{
    position:relative;
}

.builders-section .image-box{
    border-radius:20px;
}

.builders-section .image-box img{
    width:100%;
    display:block;
}

.builders-section .image-tag{
    position:absolute;
    left:-30px;
    top:30px;
}

.builders-section .image-tag span{
    display:flex;
    align-items:center;
    gap:8px;
    padding:14px 24px;
    border-radius:999px;
    color:#fff;
    font-weight:600;
    background:linear-gradient(90deg,#5fb3ff,#196cff);
    box-shadow:0 12px 30px rgba(41,118,255,.35);
}

/* Right */

.builders-section .builders-content{
    display:flex;
    flex-direction:column;
    gap:42px;
}

.builders-section .builder-item{
    display:flex;
    gap:24px;
    align-items:flex-start;
}

.builders-section .number{
    width:50px;
    height:50px;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:16px;
    flex-shrink:0;
    background:linear-gradient(180deg,#49a0ff,#0d63ff);
    box-shadow:0 10px 22px rgba(40,117,255,.35);
}

.builders-section .text h3{
    font-size:22px;
    margin-bottom:10px;
    color:#333;
}

.builders-section .text p{
    color:#666;
    line-height:1.7;
    font-size:14px;
}

/* Tablet */

@media(max-width:991px){
    .builders-section .builders-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .builders-section .image-tag{
        left:20px;
        top:20px;
    }

    .builders-section .section-heading h2{
        font-size: 26px;
    }

    .builders-section .text h3{
        font-size:22px;
    }

}

/* Mobile */

@media(max-width:767px){

    .builders-section .builders-section{
        padding:60px 0;
    }

    .builders-section .section-heading{
        margin-bottom:40px;
    }

    .builders-section .section-heading h2{
        font-size: 24px;
    }

    .builders-section .section-heading span{
        font-size: 15px;
    }

    .builders-section .image-tag{
        position:static;
        margin-bottom:20px;
    }

    .builders-section .image-tag span{
        width:fit-content;
    }

    .builders-section .builder-item{
        gap: 8px;
    }

    .builders-section .number{
        width:42px;
        height:42px;
        font-size:14px;
    }

    .builders-section .text h3{
        font-size: 20px;
    }

    .builders-section .text p{
        font-size: 13px;
    }

}

#footer{
    padding: 60px 15px 30px;
    background-color: #030213;
}

#footer .footer_container{
    flex-flow: column;
    align-items: center;
    max-width: 80rem;
    display: flex;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
}

.footer_grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.footer_links_layout {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.footer_links_header {
    color: #e2e8ff;
    font-size: 16px;
    font-weight: 600;
}

.footer_links_content {
    flex-flow: column;
    display: flex;
}

.footer_links {
    color: #e2e8ffbf;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease-in;
    display: inline-flex;
}

.footer_links:hover {
    color: #fff;
}

.dark_divider {
    background-color: #e2e8ff26;
    width: 100%;
    height: 1px;
}

.footer_locations_grid {
    width: 100%;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.footer_locations_card {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    flex: 1;
    align-items: flex-start;
    display: flex;
}

.footer_locations_header {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: row;
    align-items: center;
    display: flex;
}

.icon-1x1-12px {
    flex: none;
    width: 12px;
    height: 12px;
}

.icon-1x1-12px.center {
    display: flex;
}

.icon-1x1-20px {
    flex: none;
    width: 20px;
    height: 20px;
}

.text-color-secondary {
    color: #f0eefabf;
}

.text-size-small {
    font-size: 14px;
}

.footer_contact_input {
    color: #e2e8ff;
    width: 60%;
    font-size: 14px;
    text-decoration: none;
}

.footer_contact_input.phone {
    font-size: 14px;
    font-weight: 600;
}

.footer_contact_input.email {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: #ffffff0d;
    border-radius: 100vw;
    align-items: center;
    width: auto;
    padding: 8px 16px;
    transition: opacity .2s ease-in;
    display: inline-flex;
}

.spacer-tiny {
    width: 100%;
    padding-top: 2px;
}

.footer_location_text {
    color: #e2e8ff99;
    font-size: 14px;
    line-height: 150%;
}

.dark_divider.vertical {
    width: 1px;
    height: 4rem;
}

.footer_bottom {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
}

.footer_bottom_left {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    align-items: center;
    display: flex;
}

.footer_bottom_left._1 {
    flex-flow: column;
    align-items: flex-start;
}

.footer_bottom_right {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-items: center;
    display: flex;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.footer_logo {
    aspect-ratio: 116 / 36;
    height: 32px;
    position: static;
}

.u-visual-wrap {
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.u-visual {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.text-weight-semibold {
    font-weight: 600;
}

.text-size-medium {
    font-size: 18px;
}

.dark-text-color-primary {
    color: #e2e8ff;
}

.footer_contact_label {
    color: #e2e8ffbf;
    width: 20%;
    font-size: 14px;
}

.footer_contact_label.bottom {
    width: auto;
}

.footer_contact_label.copyright {
    flex: none;
    width: auto;
    font-size: 14px;
}

.footer_partner_icon_layout {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    display: flex;
}

.iso_image_wrap {
    aspect-ratio: 64 / 66;
    height: 32px;
}

.download_app_layout {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    align-items: center;
    display: flex;
}

.download_app_button {
    width: 120px;
    height: 40px;
}


.footer_bottom_links {
    flex-flow: row;
    flex: none;
    display: flex;
}

.footer_contact_input.text-underline {
    flex: none;
    width: auto;
    padding: 8px;
    text-decoration: underline;
    transition: opacity .2s ease-in;
    display: inline-flex;
}

.footer_contact_input.text-underline:hover {
    opacity: .8;
}

.footer_social {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: flex;
}

.icon-1x1-small {
    flex: none;
    width: 24px;
    height: 24px;
}

.icon-1x1-small.dark {
    color: #e2e8ffbf;
    transition: all .2s ease-in;
}

.call_buttons_wrapper {
    z-index: 1000;
    grid-row-gap: 24px;
    flex-flow: column;
    align-items: center;
    display: flex;
    position: fixed;
    inset: auto 20px 80px auto;
}

.call_buttons_top {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border: 1px #000;
    border-radius: 12px;
    flex-flow: column;
    width: 50px;
    display: flex;
    position: relative;
}

.zalo_button_wrap {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: #e2e8ff1a;
    border-radius: 16px;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
    position: relative;
}

.icon-1x1-medium {
    flex: none;
    width: 32px;
    height: 32px;
}

.zalo_button_wrap .icon-1x1-medium {
    animation: phone-ring 1s infinite ease-in-out;
    transform-origin: 50% 50%;
}

.call_button_light {
    z-index: -1;
    width: 64px;
    height: 96px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: absolute;
    inset: auto 0% -45%;
}

.svg_call_button {
    z-index: -1;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0%;
}

.svg_call_button svg{
    width: 50px;
    height: 50px;
}

.phone_button_wrap {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: #e2e8ff1a;
    border-radius: 16px;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.phone_button_wrap .icon-1x1-small {
    animation: phone-ring 1s infinite ease-in-out;
    transform-origin: 50% 50%;
}

@media(max-width: 991px){
    .footer_grid {
        grid-column-gap: 48px;
        grid-row-gap: 48px;
        flex-flow: column;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        display: grid;
    }
    .footer_links_layout {
        grid-column-gap: 8px;
        grid-row-gap: 8px;
    }
    .footer_bottom {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        flex-flow: column;    
    }

    .footer_logo {
        height: 48px;
    }
    .footer_bottom._2 {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
        grid-template-rows: auto auto;
        grid-auto-columns: 1fr;
        align-items: stretch;
        display: grid;
    }
}

@media(max-width: 767px){
    .footer_grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }
    .footer_locations_grid {
        flex-flow: column;
        align-items: flex-start;
    }
    .footer_bottom_left._2 {
        flex-flow: column;
        align-items: center;
    }
}


.countdown {
    text-align: center;
    padding: 20px;
    background: #061249c7;
    position: fixed;
    z-index: 99;
    right: 10px;
    bottom: 210px;
    border-radius: 12px;
    border: 1px solid rgba(80, 210, 255, 0.35);
}

.countdown__title {
  color: #fff;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.countdown__clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown__unit {
  min-width: 0;
}

.flip-card {
  position: relative;
  display: grid;
  padding: 15px;
  place-items: center;
  overflow: visible;
  border-radius: 12px;
  background: #102479;
  font-family: Anton;
}

.flip-card__value {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 30px;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.flip-card__value.is-changing {
  animation: digit-change 260ms ease-out;
}

.flip-card__line {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px rgba(255, 255, 255, 0.035);
}

.flip-card__hinge {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 5px;
  height: 16px;
  border-radius: 2px;
  background: #08090b;
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.flip-card__hinge--left {
  left: -3px;
}

.flip-card__hinge--right {
  right: -3px;
}

.countdown__label {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.countdown__button {
    margin-top: 12px;
    padding: 10px 20px;
    border: 0;
    border-radius: 999px;
    background: #2f9df4;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.countdown__button:hover {
  background: #168ce8;
  transform: translateY(-2px);
}

.countdown__button:active {
  transform: translateY(3px);
}

.countdown__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.88);
  outline-offset: 4px;
}

.countdown .glowing-button-outstroke{
    margin-top: 12px;
}

.countdown .glowing-button-outstroke,
.countdown .glowing-button.home{
    display: inline-flex;
}

@keyframes digit-change {
  0% {
    opacity: 0.45;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
    .page {
        padding-inline: 12px;
    }

    .countdown{
        padding: 10px;
    }

    .countdown__title{
        font-size: 14px;
        margin-bottom: 8px;
    }

    .flip-card__value{
        font-size: 20px;
    }

    .countdown__clock {
        gap: 7px;
    }

    .flip-card {
        padding: 10px;
        border-radius: 8px;
    }

    .flip-card__hinge {
        width: 4px;
        height: 12px;
    }

    .countdown__label {
        margin-top: 5px;
    }

    .countdown .button-inside{
        padding: 8px 15px;
        font-size: 14px;
    }

    .countdown .glowing-button-outstroke{
        margin-top: 6px;
    }
}