/* Quy trình */
.quy-trinh-eb5 {
    display: flex;
    justify-content: space-between;
}
.eb5-section{
    display:flex;
    justify-content:space-between;
    gap:80px;
    align-items:flex-start;
}

.eb5-timeline {
    width: 50%;
    position: relative;
    max-height: 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.eb5-noidung {
    width: 50%;
}


.eb5-timeline::before {
    content: "";
    position: absolute;
    right: 7px;
    top: 78px;
    width: 620px;
    height: 180px;
    border: 2px solid #2d6cff;
    border-left: none;
    border-radius: 0 110px 110px 0;
    z-index: 1;
}

.eb5-timeline::after {
    content: "";
    position: absolute;
    left: -55px;
    top: 256px;
    width: 620px;
    height: 177px;
    border: 2px solid #2d6cff;
    border-right: none;
    border-radius: 80px 0 0 80px;
    z-index: 1;
}
.eb5-step {
    width: 200px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
    transition: .35s;
}

.eb5-step.active .eb5-number {
    color: #c9a25d;
}
.eb5-step .eb5-number {
    font-size: 56px;
    font-weight: 700;
    color: #d8d8d8;
    line-height: 1;
    transition: .35s;
}

.eb5-step.active .eb5-dot {
    background: #c9a25d;
}
.eb5-step .eb5-dot {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    border-radius: 50%;
    margin: 18px auto;
    position: relative;
}

.eb5-step.active .eb5-dot::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #c9a25d;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.eb5-step.active .eb5-title {
    color: #0b274c;
    font-weight: 600;
}
.eb5-title {
    font-size: 16px;
    line-height: 1.35;
    color: #3f3f3f;
}

.eb5-step:hover .eb5-number{
    color:#c9a25d;
}

.eb5-step:hover .eb5-dot{
    background:#c9a25d;
}

.eb5-content::-webkit-scrollbar{
    display:none;
}
.eb5-content-inner h1 {
    font-size: 56px;
    color: #173866;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    margin: 0;
    text-align: center;
}
.eb5-content {
    position: sticky;
    top: 100px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    height: 500px;
    padding: 0 22px;
}
.eb5-content>h1{
    font-size:64px;
    line-height:1.1;
    color:#0b274c;
    margin:0 0 50px;
    font-weight:600;
}

.eb5-panel.active {
    opacity: 1;
    transform: scale(1);
}
/* .eb5-panel {
    min-height:80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: .18;
    transform: scale(.92);
    transition: .45s ease;
} */
.eb5-panel{
    min-height:320px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.35s;
}
.eb5-content{
    scroll-behavior:smooth;
    scroll-padding-top:80px;
}

.eb5-panel.active{
    opacity:1;
    transform:scale(1);
}

.eb5-panel:not(.active){
    opacity:.15;
    transform:scale(.95);
}
.eb5-space{
    height:220px;
    flex-shrink:0;
}



.eb5-panel h2 {
    margin: 0;
    font-size: 75px;
    line-height: 1;
    color: #0b274c;
    font-weight: 700;
}

.eb5-panel h3 {
    font-size: 31px;
    line-height: 1.3;
    color: #18375d;
    font-weight: 500;
    margin-bottom: 0px;
}

.eb5-panel p {
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.eb5-panel::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 560px;
    height: 1px;
    background: #e7e7e7;
}

.eb5-panel:last-child::after{
    display:none;
}

.eb5-panel:not(.active){
    filter:blur(.5px);
}

@media(max-width:1200px){

.eb5-section{
    gap:40px;
}

.eb5-content{
    width:48%;
}

.eb5-panel h2{
    font-size:64px;
}

.eb5-panel h3{
    font-size:32px;
}

.eb5-panel p{
    font-size:18px;
}

}

@media(max-width:991px){

.eb5-section{
    display:block;
}

.eb5-timeline{
    width:100%;
    margin-bottom:60px;
}

.eb5-content{
    width:100%;
    position:relative;
    top:auto;
    height:auto;
    overflow:visible;
}

.eb5-panel{
    min-height:auto;
    opacity:1;
    transform:none;
    padding:70px 0;
}

.eb5-panel::after{
    margin-top:35px;
}

}