
/*================= HEADER & NAV =================*/

header {
    position: fixed;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    z-index: var(--z-fixed);
    transition: all .2s ease-in-out;
}
.header.active{
    padding: 50px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    height: 100%;
}
header .logo {
    width: 100px;
    cursor: pointer;
}
.color-logo{
    display: none;
    margin-bottom:20px;
}
.logo-box  .logo.white-logo{
    display: block;
}
.menu-box{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.header-active {
    background: white;
    box-shadow: var(--active-box-shadow);
}
#open_logout {
    padding: 8px 13px;
    min-width: 80px;
    margin-left: 10px;
}
.header-active #open_login, .header-active #open_logout {
    color:white;
    background: var(--primary-color);
}
.header-active .menu-btn{
    color:var(--text-color);
}
.header-active .white-logo{
    display: none;
    height: 0;
}
.header-active .color-logo{
    display: block;
}
.header-active .nav-link{
    color:var(--text-color);
}
.header-active .nav-link:hover{
    color:var(--orange-color);
}
.menu {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    padding:0;
    /*background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);*/
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all .5s ease-in-out;
}
.menu-active {
    background:#ffffff;
    right: 0;
}
.menu.menu-active .main-nav .nav-link{
    color:white;
}
.menu.menu-active .main-nav .nav-link:hover {
    color:var(--yellow-color);
}
.menu .logo-box{
    padding:20px 0;
}
.main-nav{
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-link{
    color:white;
    width: 100%;
    padding:0.5rem 5px;
    min-width:100px;
    font-size: 14px;
}
.nav-link .block, .nav-link .small-none {
     display: inline-block;
}
.main-nav:nth-child(2) {
    background: #74D3DC;
}
.main-nav:nth-child(3) {
    background: #70C2DF;
}
.main-nav:nth-child(4){
    background: #77ADE6;
}
.main-nav:nth-child(5) {
    background: #7D99ED;
}
.main-nav:nth-child(6) {
    background: #7E84F3;
}
.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size:15px;
    cursor: pointer;
    opacity: 0.6;
}
.menu-btn {
    margin: 10px 10px;
    display: block;
    color: white;
    font-size: var(--h2-font-size);   
}
.header-btns {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 359px) {
   .header .container {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0px 5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
   }
   .header .menu-btn {
        font-size: 1.2rem;
        margin-right: 0;
    }
    .close-btn {
        top: 5%;
        right: 15%;
        font-size: 1.2rem;
    }   
}

@media only screen and (min-width: 769px) {
    .close-btn i,
    .menu-btn i,
    .menu-box .logo-box {
        display: none;
    }
    .menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: static;
        height: auto;
        background: transparent;   
        box-shadow: none;
    }
    .menu button:hover {
        color: var(--yellow-color);
    }
    .nav-link .small-none{
        display: none;
    }
    .main-nav:nth-child(1),.main-nav:nth-child(2),.main-nav:nth-child(3),.main-nav:nth-child(4),.main-nav:nth-child(5),.main-nav:nth-child(6) {
        background: transparent;
    }
}
@media only screen and (min-width: 1200px) {
    .nav-link {
        margin: 10px 0px;
        min-width: 120px;
        width: 100%;
        font-size: 15px;
    }
   .nav-link .block,
   .nav-link .small-none {
       display: inline-block;
   }
}


/* Animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
    }
}
@keyframes slideInFromHalfLeft {
    0% {
        transform: translateX(-20%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
         30% {
             opacity: 0;
         }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/*=============== Showcase ===============*/
.showcase {
    padding-top: 90px;
    background: #047AED;
    background-image:
            radial-gradient(circle at 80% 90%,
                rgba(235, 235, 235, 0.05) 0%,
                rgba(235, 235, 235, 0.05) 50%,
                rgba(40, 40, 40, 0.05) 50%,
                rgba(40, 40, 40, 0.05) 100%),
            radial-gradient(circle at 80% 13%,
                rgba(99, 99, 99, 0.05) 0%,
                rgba(99, 99, 99, 0.05) 50%,
                rgba(45, 45, 45, 0.05) 50%,
                rgba(45, 45, 45, 0.05) 100%),
            radial-gradient(circle at 20% 18%,
                rgba(95, 95, 95, 0.05) 0%,
                rgba(95, 95, 95, 0.05) 50%,
                rgba(55, 55, 55, 0.05) 50%,
                rgba(55, 55, 55, 0.05) 100%),
            linear-gradient(90deg,
                rgb(102, 217, 232), rgb(126, 132, 243));
    overflow: auto;  
}
.showcase .container{
    overflow: visible;
}
.showcase::before,
.showcase::after {
    display: block;
    content: '';
    position: absolute;
    height: 500px;
    top: 350px;
    right: 0;
    left: 0;
    z-index: 0;
    background: white;
    transform: skewY(-20deg) ;
    -webkit-transform: skewY(-20deg) ;
    -moz-transform: skewY(-20deg);
    -ms-transform: skewY(-20deg);
}
.showcase h1 {
    font-size: var(--h1-font-size);
    color:white;
}
.showcase-text h2 {
   display: none;
   color: white;
}
.showcase-text {
    text-align: center;
    animation: slideInFromLeft 1s ease-in;
}
.showcase-text .strong {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}
.showcase-text .custom-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.showcase-img {
   margin-top: -40px;
   z-index:5;
   animation: slideInFromRight 1s ease-in;
}
.showcase-img img {  
    z-index: 5;
}
 #logo {
     animation: fill 0.5s ease forwards 2.4s;
     margin-top: 16px;
 }
 #logo path:nth-child(1) {
     stroke-dasharray: 91.71229553222656;
     stroke-dashoffset: 91.71229553222656;
     animation: line-animation 2s ease forwards;
     animation-delay: 0.3s;
 }
 #logo path:nth-child(2) {
     stroke-dasharray: 117.2070541381836;
     stroke-dashoffset: 117.2070541381836;
     animation: line-animation 2s ease forwards;
     animation-delay: 0.7s;
 }
 #logo path:nth-child(3) {
     stroke-dasharray: 175.35696411132812;
     stroke-dashoffset: 175.356964111328125;
     animation: line-animation 2s ease forwards;
     animation-delay: .9s;
 }
 #logo path:nth-child(4) {
     stroke-dasharray: 180.46649169921875;
     stroke-dashoffset: 180.46649169921875;
     animation: line-animation 2s ease forwards;
     animation-delay: 1.1s;
 }
 #logo path:nth-child(5) {
     stroke-dasharray: 137.572998046875;
     stroke-dashoffset: 137.572998046875;
     animation: line-animation 2s ease forwards;
     animation-delay: 1.3s;
 }
 #logo path:nth-child(6) {
     stroke-dasharray: 138.69395446777344;
     stroke-dashoffset: 138.69395446777344;
     animation: line-animation 2s ease forwards;
     animation-delay: 1.5s;
 }
 #logo path:nth-child(7) {
     stroke-dasharray: 138.69386291503906;
     stroke-dashoffset: 138.69386291503906;
     animation: line-animation 2s ease forwards;
     animation-delay: 1.7s;
 }
 #logo path:nth-child(8) {
     stroke-dasharray: 138.694091796875;
     stroke-dashoffset: 138.694091796875;
     animation: line-animation 2s ease forwards;
     animation-delay: 1.9s;
 }
 #logo2 {
     display: none;
 }

@keyframes line-animation{
    to{
        stroke-dashoffset: 0;
    }
}
@keyframes fill{
    0% {
        opacity: 0;
        fill: transparent;
    }
    100% {
         opacity: 1;
         fill: white;
    }  
}
@media only screen and (min-width: 500px) {
    .showcase::before,
    .showcase::after {
        top:400px;
        display: block;
        height: 470px;
        transform: skewY(-8deg);
        -webkit-transform: skewY(-8deg);
        -moz-transform: skewY(-8deg);
        -ms-transform: skewY(-8deg);
    }
}
@media only screen and (min-width: 769px){
    .showcase .container{
        display: flex;
        justify-content: space-around;
    }
   .showcase::before,
   .showcase::after {
      top:300px;
       height: 550px;
       -ms-transform: skewY(-20deg)  ;
       -webkit-transform: skewY(-8deg);
       transform:  skewY(-8deg) ;
   }
    .showcase-text h2 {
        display: block;
    }
    .showcase-text{
        text-align: start;
        align-self: center;
        padding-bottom: 50px;
        padding-left: 30px;
    }
    .showcase-text .small-none{
        display: none;
    }
    .showcase-img {
        width: 60%;
        margin-top: -70px;
        z-index: 5;
    } 
}
@media only screen and (min-width: 992px) {
    .showcase {
          min-height: 800px;
    }
    .showcase .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .showcase::before,
    .showcase::after {
        top:470px;
        height: 500px;
        transform: skewY(-4deg);
        -webkit-transform: skewY(-4deg);
        -moz-transform: skewY(-4deg);
        -ms-transform: skewY(-4deg);
    }
    .showcase-text {
        flex-basis: 40%;
        text-align: start;
        padding-left: 2%;
        padding-top: 80px;
    }
    .showcase-text h1 {
        font-size: 1.9rem;
    }
    .showcase-text h2 {
        font-size: 1.5rem;
    }
    .showcase-img {
        margin-top: -20px;
        width: calc(100% + 10%);
        flex-basis: 65%;
        margin-right: -5%;
        margin-left: -30px;
    }
    .showcase::before,
    .showcase::after {
        display: block;
    }
    .showcase-text .small-none {
         display: inline-block;
    }
}
@media only screen and (min-width: 1200px) {
    .showcase-text {
        flex-basis: 45%;
        padding-left: 3%;
        padding-bottom:60px;
    }
    .showcase-text h1 {
        font-size: 2.2rem;
    }
    .showcase-text h2 {
        font-size: 1.9rem;
    }
    .showcase-img {
        width: calc(100% + 30%);
        flex-basis: 73%;
        margin-right: -6%;
    }
    .showcase::before,
    .showcase::after {
        top:500px;
        height: 450px;
        transform: skewY(-4deg);
        -webkit-transform: skewY(-4deg);
        -moz-transform: skewY(-4deg);
        -ms-transform: skewY(-6deg);
    }
    #logo{
        display: none;
    }
    #logo2 {
        display: block;
        animation: fill 0.5s ease forwards 2.4s;
        margin-top: 16px;
    }  
    #logo2 path:nth-child(1) {
        stroke-dasharray: 115.23149108886719;
        stroke-dashoffset: 115.23149108886719;
        animation: line-animation 2s ease forwards;
        animation-delay: 0.3s;
    }  
    #logo2 path:nth-child(2) {
        stroke-dasharray: 134.3380126953125;
        stroke-dashoffset: 134.3380126953125;
        animation: line-animation 2s ease forwards;
        animation-delay: 0.7s;
    }  
    #logo2 path:nth-child(3) {
        stroke-dasharray: 199.71400451660156;
        stroke-dashoffset: 199.71400451660156;
        animation: line-animation 2s ease forwards;
        animation-delay: .9s;
    }  
    #logo2 path:nth-child(4) {
        stroke-dasharray: 146.83529663085938;
        stroke-dashoffset: 146.83529663085938;
        animation: line-animation 2s ease forwards;
        animation-delay: 1.1s;
    }  
    #logo2 path:nth-child(5) {
        stroke-dasharray: 156.92947387695312;
        stroke-dashoffset: 156.92947387695312;
        animation: line-animation 2s ease forwards;
        animation-delay: 1.3s;
    }  
    #logo2 path:nth-child(6) {
        stroke-dasharray: 144.66554260253906;
        stroke-dashoffset: 144.66554260253906;
        animation: line-animation 2s ease forwards;
        animation-delay: 1.5s;
    }  
    #logo2 path:nth-child(7) {
        stroke-dasharray: 144.6653594970703;
        stroke-dashoffset: 144.6653594970703;
        animation: line-animation 2s ease forwards;
        animation-delay: 1.7s;
    }  
    #logo2 path:nth-child(8) {
        stroke-dasharray: 144.66531372070312;
        stroke-dashoffset: 144.66531372070312;
        animation: line-animation 2s ease forwards;
        animation-delay: 1.9s;
    }
}
@media only screen and (min-width: 1400px) {
    .showcase-text {
        flex-basis: 45%;
        padding-left: 0;
        padding-bottom: 130px;
    }
    .showcase-img {
        margin-top:-30px;
        width: calc(100% + 20%);
        flex-basis: 75%;
        margin-right: -140px;
    }
}

/*=============== Section2 Choice ===============*/
.choice {
    width: 100%;
    z-index: 100;
    margin-top: 0;
}
.choice-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.choice-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    padding: 0 20px 25px;
    box-shadow: var(--box-shadow-top);
    border-radius: 16px;
    transition: all .2s ease-in-out;
}
.choice-box:hover {
    box-shadow: 0 30px 40px rgba(0, 0, 0, .2);
    transform: scale(1.05);
}
.choice-title {
    padding: 10px 20px;
    color: var(--primary-color);
    border-radius: 2rem;
}
.choice-detail {
    font-size: var(--small-font-size);
}
.choice-detail.strong {
    margin-bottom: 10px;
}
.choice-box img {
    margin: 16px auto;
}
@media only screen and (max-width: 359px) {
    .choice-box {
        margin: 10px 5px;
        padding: 16px;
    }
    .choice-box img {
        max-width: 280px;
    }
}
@media only screen and (min-width: 600px) {
    .choice-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 769px) {
    .choice-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .choice-box {
        margin: 15px 8px;
        width: 95%;
    }
    .choice-box img {
        width: 95%;
    }
}
@media only screen and (min-width: 992px) {
    .choice {
        margin-top: -200px;
    }
    .choice .title {
        font-size: 2rem;
    } 
    .choice-box img {
        width: 100%;
    }
    .choice-box .choice-none {
        display: inline-block;
    }
}
@media only screen and (min-width: 1200px) {
    .choice {
        margin-top: -120px;
    }
    .choice .container {
        padding: 20px 0;
    }
    .choice-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}
/*================= Section3 Customer =================*/
.customer{
    background: white;
}
.customer .container{
    z-index: 100;
}
.customer-main {
    padding: 20px 0;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.customer-box {
    min-height: 150px;
    box-shadow: var(--box-shadow-top);
    border-radius: 30px;
    margin: 30px 40px;
    position: relative;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .2s ease-in-out;
}
.customer-box:hover {
    box-shadow: 0 30px 40px rgba(0, 0, 0, .2);
    transform: scale(1.05);
}
.customer-box::before {
    content: 'since';
    width: 100px;
    height: 34px;
    background: var(--primary-color);
    border-radius: 3rem;
    position: absolute;
    top: -1rem;
    left: -3rem;
    color: white;
    font-size: 11px;
    padding: 2px 0px 0 10px;
}
.customer-box::after {
    content: '2007';
    width: 100px;
    height: 34px;
    background: transparent;
    border-radius: 3rem;
    position: absolute;
    top: -1rem;
    left: -3rem;
    color: white;
    font-weight: 600;
    padding: 6px 0px 0 45px;
}
.customer-box:nth-child(2)::after {
    content: '2009';
}
.customer-box:nth-child(3)::after {
    content: '2022';
}
.customer-box:nth-child(4)::after {
    content: '2008';
}
.customer-box:nth-child(5)::after {
    content: '2014';
}
.customer-box:nth-child(6)::after {
    content: '2012';
}
.customer-box p {
    font-size: var(--small-font-size);
    padding: 1.5rem;
}
.customer-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10%;
}
@media only screen and (max-width: 359px) {
    .customer-box::before {
        width: 65px;
        height: 30px;
        border-radius: 15px;
        left: -2rem;
        font-size: 10px;
        padding: 2px 8px 0 10px;
    }
    .customer-box::after {
        width: 65px;
        height: 30px;
        border-radius: 15px;
        left: -2rem;
        font-size:var(--small-font-size);
        font-weight: 600;
        padding: 6px 8px 0 45px;
    }
}
@media only screen and (min-width: 769px) {
    .customer-main {
        padding: 20px 30px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        place-items: center;
        gap: 1rem;
    }
}
@media only screen and (min-width: 992px) {
    .customer-main {
        padding: 20px 10px;
        gap: 0.5rem;
    }
}
@media only screen and (min-width: 1200px) {
    .customer .container {
        padding: 20px 2%;
    }
    .customer-main {
        padding: 20px 30px;
        gap: 1rem;
    }
    .customer-box {
        margin: 30px 30px;
    }
}
/*===============Section4 Attendance ===============*/
.attendance {
    background: var(--primary-background);
}
.attendance-container {
    padding: 20px 0 30px;
}
.attendance-box {
    width: 100%;
    padding: 20px 15px;
    margin: 10px auto;
    border-radius: 16px;
    box-shadow: var(--box-shadow-top);
    transition: 0.4s linear;
    display: flex;
    flex-direction: column;
    position: relative;
    background: white;
    border: 3px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}
.attendance-box:hover {
    scale: 1.02;
    box-shadow: 0 10px 10px rgba(69, 95, 200, 0.1);
}
.attendance-img {
    width: 100%;
    aspect-ratio: 16 /9;
    object-fit: contain;
    display: flex;
    justify-content: center;
}
.attendance-img img {
    height: 100%;
    border-radius: 10px;
}
.badge {
    color: var(--pink-dark-color);
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: var(--pink-light-color);
    width: fit-content;
    border-radius: 50px;
}
.badge.badge-2 {
    color: var(--purple-dark-color);
    background: var(--purple-light-color);
}
.badge.badge-3 {
    color: #1EB4C8;
    background: var(--turquoise-light-color);
}
.badge.badge-4 {
    color: #8AC81D;
    background: var(--green-light-color);
}
.attendance-text {
    display: flex;
    flex-direction: column;
}
@media only screen and (min-width: 600px) {
    .attendance-box {
        flex-direction: row;
        max-height: 220px;
        justify-content: space-around;
    }
    .attendance-img {
        flex-basis: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .attendance-img img {
        max-height: 90%;
    }
    .attendance-text {
        flex-basis: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0;
    }
    .badge {
        margin: 0 0 24px 0;
    }
    .attendance-text h3 {
        margin: 10px auto 20px;
    }
}
@media only screen and (min-width: 769px) {
    .attendance-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .attendance-box {
        margin: 10px auto;
        width: 95%;
    }
    .attendance-img {
        flex-basis: 60%;
        max-width: 60%;
        object-fit: cover;
        margin-right: 10px;
    }
    .attendance-text {
        flex-basis: 50%;
    }
}
@media only screen and (min-width: 1200px) {
    .attendance .container{
        padding:20px 0;
    }
    .attendance-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .attendance-box {
        flex-direction: column;
        min-height: 350px;
    }
    .attendance-img {
        width: 100%;
        display: flex;
        object-fit: cover;
        justify-content: center;
        flex-basis: 100%;
        max-width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
        height: auto;
    }
    .attendance-img img {
        width: 100%;
        border-radius: 10px;
    }
}

/*==========Section5 Payment==========*/
.payment {
    background: white;
}
.payment-top {
    display: flex;
    flex-direction: column;
}
.payment-text .title {
    text-align: center;
    margin: 0 0 10px;
}
.payment-text .second-title {
    text-align: center;
    margin-bottom: 10px;
}
.payment-text .title-detail {
    text-align: center;
}
.hand {
    margin-top: 40px;
    width: 90%;
    animation: slideUpDown 5s ease-in-out infinite;
    position: relative;
}
.payment-bottom {
    margin-top: -30px;
    display: flex;
    justify-content: space-between;
    height: 240px;
    overflow: visible;
}
.payment-ball {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-weight: var(--font-semi-bold);
    box-shadow: var(--box-shadow);
    position: relative;
    font-size: var(--h3-font-size);
}
.payment-ball small {
    display: none;
}
.ball-1 {
    background: var(--pink-light-color);
    margin: 0px -30px -30px 0;
}
.ball-2 {
    background: var(--blue-light-color);
    align-self: flex-end;
    flex-direction: column;
    margin: -30px -15px 0px -15px;
}
.ball-3 {
    background: var(--yellow-light-color);
    margin: 0px -30px -30px -30px;
}
.ball-4 {
    background: var(--purple-light-color);
    align-self: flex-end;
    flex-direction: column;
    margin: -30px -15px 0px -15px;
}
.ball-5 {
    background: var(--green-light-color);
    margin: 0px 0px 30px -30px;
}
.payment-ball:hover {
    animation: slideUpDown 2s ease-in-out infinite;
}
@media only screen and (max-width: 360px) {
    .payment-ball {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    .payment-bottom {
        height: 150px;
    }
}
@media only screen and (max-width: 500px) {
    .payment-ball {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }
    .payment .small-none {
        display: none;
    }
}
@media only screen and (min-width: 769px) {
    .payment-img {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .hand {
        margin-top: 0;
        width: 70%;
    }
    .payment-bottom {
        height: 300px;
    }
    .payment-ball {
        width: 170px;
        height: 170px;
    }
    .payment-ball small {
        display: block;
    }
    .ball-1,
    .ball-2,
    .ball-3,
    .ball-4,
    .ball-5 {
        margin: 0;
    }
    .payment-text .small-none {
        display: block;
    }
}
@media only screen and (min-width: 992px) {
    .payment-top {
        justify-content: space-between;
        flex-direction: row;
    }
    .payment-text {
        flex-basis: 60%;
        padding-top: 65px;
    }
    .payment-text .title {
        text-align: left;
    }
    .payment-text .title-detail {
        text-align: left;
    }
    .payment-bottom {
        margin-top: -20px;
        padding: 0 7% 0 5%;
    }
}
/*===============Section6 Need===============*/ 
.need {
    background: var(--primary-background);
}
.need .container {
    width: 100%;
}
.need-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
}
.need-img {
    width: 100%;
    margin: 0px auto 20px;
    display: flex;
    align-items: center;
}
.need-img>img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}
.need-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.need-detail-box {
    display: flex;
    padding: 1.5rem 1.5rem;
    align-items: center;
    box-shadow: var(--box-shadow-top);
    border-radius: 1rem;
    margin-bottom: 15px;
    background: white;
}
.need-detail-box:last-child {
    margin-bottom: 0;
}
.need-detail-box small {
    font-size: 14px;
}
.need-icon-box.threeD-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-right: 1rem;
}
.need-detail-box .need-icon {
    font-size: 2rem;
}
.need-detail-box:nth-child(1) .need-icon {
    color: var(--blue-color);
}
.need-detail-box:nth-child(2) .need-icon {
    font-size: 1.7rem;
    color: var(--yellow-color);
}
.need-detail-box:nth-child(3) .need-icon {
    color: var(--purple-color);
}
.need-detail-box:nth-child(4) .need-icon {
    color: var(--green-color);
    font-size: 2.1rem;
}
.need-detail-text h3 {
    font-size: 0.96rem;
}
@media only screen and (min-width: 600px) {
    .need-img {
        display: none;
    }
}
@media only screen and (min-width: 769px) {
    .need .container {
        padding: 20px 2%;
    }
    .need .title {
        margin-top: 0px
    }
    .need .small-none {
        text-align: center;
        display: block;
        margin-bottom: 0px;
        margin-top: 20px;
    }
    .need-main {
        align-items: center;
        padding: 0 30px
    }
    .need-detail-text h3 {
        font-size: var(--h3-font-size);
    }
}
@media only screen and (min-width: 992px) {
    .second-title {
        margin-top: -50px;
    }
    .need-main {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .need-img {
        display: flex;
        flex-basis: 48%;
        margin: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
    }
    .need-img img {
        height: 100%;
    }
    .need-detail {
        flex-basis: 48%;
        height: 100%;
    }
    .need-detail-box {
        padding: 1rem 1.2rem;
    }
}

/*===============Section7 Level ===============*/
.level{
    background: white;
}
.level .title>span {
    color: var(--primary-color)
}
.level .title-detail {
    text-align: center;
}
.level-container {
    padding: 20px 0; 
}
/* level-main */
.level-box {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 30px 15px;
    margin: 10px auto;
    border-radius: 16px;
    box-shadow: var(--box-shadow-top);
    transition: 0.4s linear;
    display: flex;
    position: relative;
}
.level-box .icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius);
}
.level-box i {
    color: white;
    font-size: 1.5rem;
}
.icon-box1 {
    background: var(--blue-color);
}
.icon-box2 {
    background: var(--yellow-color);
}
.icon-box3 {
    background: var(--purple-color);
}
.icon-box4 {
    background: var(--green-color);
}
.level-box-title {
    margin: 10px 0;
}
.level-box small {
    display: block;
    overflow: auto;
    white-space: normal;
}
.level-box-detail {
    height: 50px;
    display: flex;
    align-items: flex-end;
}
.level-container .more {
    display: none;
}
/*== level-expand ==*/
.level-detail {
   display: none;
   color: var(--text-color);
}
.level-feature {
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: 10px 0px 10px 5px;
}
.level-feature i {
    display: block;
    margin-right: 3px;
    font-size: 13px;
}
.price-box {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    margin-bottom: 20px;
}
.level-price {
    width: 60%;
    height: 1.6rem;
    border-radius: 20px;
    color: white;
    font-weight: var(--font-medium);
    margin: 20px auto 5px;
    text-align: center;
    line-height: 1.6;
    font-size: 14px;
}
.price-box small {
    display: block;
    font-size: 10px;
    color: var(--grey-text-color);
}
.level-1 .level-feature i {
    color: var(--blue-color);
}
.level-1 .level-price {
    background: var(--blue-color);
}
.level-2 .level-feature i {
    color: var(--yellow-color);
}
.level-2 .level-price {
    background: var(--yellow-color);
}
.level-3 .level-feature i {
    color: var(--purple-color);
}
.level-3 .level-price {
    background: var(--purple-color);
}
.level-4 .level-feature i {
    color: var(--green-color);
}
.level-4 .level-price {
    background: var(--green-color);
}
@media only screen and (min-width: 360px){
/*==level-expand==*/
    .level-detail {
        display: block;
        background: white;
        width: 50%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border-radius: 0 15px 15px 0;
        padding-top: 20px;
    }
}
@media only screen and (min-width: 769px) {
    .level-container {
        padding: 20px 0;
        display: flex;
        flex-wrap: wrap;
    }
    .level-detail {
        display: none;
    }
    .level-box {
        flex: 1;
        padding: 30px;
        margin-right: 15px;
        min-width: 310px;
        cursor: pointer;
    }
    .level-box:last-child {
        margin-right: 0;
    }    
    /*==level-box Hover==*/
    .level-box:hover {
        flex: 4;
        color: white;
        padding-left: 16px;
        overflow: auto;
    }
    .level-box:hover .level-box-title {
        color: white;
    }
    .level-box:hover>.level-detail {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: #002240;
    }
   .level-1:hover {
       background: var(--blue-dark-color);
    }
   .level-2:hover {
       background: var(--yellow-dark-color);
    }
   .level-3:hover {
       background: var(--purple-dark-color);
   }
    .level-4:hover {
        background: var(--green-dark-color);
    }
    .level-container .more {
        display: flex;
        align-items: center;
        text-align: center;
        color: var(--primary-color);
        font-weight: var(--font-medium);
        font-size:var(--small-font-size);
        padding: 8px 0;
        cursor: pointer;
    }
   .more-btn {
       display: flex;
       height: 16px;
       width: 16px;
       border-radius: 50%;
       margin: 2px 0 0 5px;
       cursor: pointer;
       background: none;
       border: 2px solid #5372F0; 
    } 
   .more-btn i {
       font-size: 0.7rem;
       color: var(--primary-color);
    }
    .level-box:hover .more {
        display: none;
    }
    .level-feature {
        font-size: var(--small-font-size);
        padding: 10px 00px 10px 16px;
    }    
    .level-feature i {
        margin-right: 4px;
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) {
    .level-title-box {
        text-align: center;
    }
    .level .inline {
        display: inline;
        padding: 0;
        margin: 3px;
        margin-bottom: 5px;
    }
    .level-container {
        flex-wrap: nowrap;
    }
    .level-box {
        min-width: 100px;
    }
}
@media only screen and (min-width: 1200px) {
    .level-detail {
        width: 60%;
    }
    .level-feature i {
        display: block;
        margin-right: 8px;
        font-size: 20px;
    }
    .level-price {
        min-width: 50%;
        height: 2rem;
        border-radius: 20px;
        padding: 0 1rem;
        color: white;
        font-weight: var(--font-semi-bold);
        margin: 10px auto 5px;
        text-align: center;
        line-height: 2;
    }
}

/*==========Sectiion8 Service==========*/
.service {
    background: var(--primary-background);
}
.service-main {
    flex-direction: column;
    display: flex;
    background: #F7F7F7;
    margin-top: 30px;
    border-radius: 30px;
    min-width: 90%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    align-items: center;
}
.service-menu {
    display: flex;
}
.service-menu li {
    min-width: 70px;
    min-height: 50px;
    padding: 5px 10px;
    background: var(--blue-color);
    color: white;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    cursor: pointer;
}
.service-tab-btn button {
    color: white;
    transition: 0.5s;
    font-size: 14px;
    min-width: 5rem;
    padding:0;
}
.service-tab-btn button .large-text {
    display: none;
}
.service-tab-btn button .service-icon i{
    margin-right: 4px;
}
.service-menu li:nth-child(1),
.service-menu li:nth-child(1):before {
    background: #74D3DC;
}
.service-menu li:nth-child(2),
.service-menu li:nth-child(2):before,
.service-menu li:nth-child(2)::after {
    background: #70C2DF;
}
.service-menu li:nth-child(3),
.service-menu li:nth-child(3):before {
    background: #77ADE6;
}
.service-menu li:nth-child(4),
.service-menu li:nth-child(4):before {
    background: #7D99ED;
}
.service-menu li:nth-child(1)::after {
    background: #C2ECF0;
}
.service-menu li:nth-child(2)::after {
    background: #C0E4F1;
}
.service-menu li:nth-child(3):after {
    background: #BED8F3;
}
.service-menu li:nth-child(4):after {
    background: #BCCAF6;
}
.service-menu li:last-child::after {
    box-shadow: -125px 125px 20px rgba(0, 0, 0, 0.25);
}
.service-menu li:hover,
.service-menu li.active {
    transform:scale(1.1);
}
.service-detail {
    min-height: 380px;
    padding: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-width: 80%;
}
.service-content {
    display: none;
    animation: moving .5s ease;
}
.service-content.active {
    display: block;
    width: 100%;
}
@media only screen and (max-width: 500px) {
    .service-menu li {
        max-width: 90px;
        padding: 0;
    }
    .service-tab-btn button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        padding-top: 10px;
        font-size: 12px;
    }
    .service-tab-btn button .service-icon i {
        display: block;
        color: white;
        font-size: 20px;
        height: 2rem;
    }
    .service-tab-btn button .small-text {
        display: block;
        font-size: 10px;
        height: 1rem;
        min-width: 5rem;
    }
    .service-tab-btn button .large-text {
        display: none;
    }
    .service-tab-btn button .service-icon i {
        display: block;
    }
}
@media only screen and (min-width: 769px) {
    .service-main {
        display: flex;
        flex-direction: row;
        background: #F7F7F7;
        margin-top: 30px;
        margin-left: 40px;
        border-radius: 30px;
        min-width: 90%;
        position: relative;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
        align-items: center;
        padding:0;
    }
    .service-menu {
        position: relative;
        transform: skewY(-15deg);
        margin-top: 30px;
        margin-right: 15px;
        flex-direction: column;
    }
    .service-menu li {
        position: relative;
        width: 100px;
        padding: 10px 0;
        z-index: calc(1 * var(--i));
        transition: 0.5s;
        color: white;
    }
    .service-menu li:hover,
    .service-menu li.active {
        transform: translate(40px, 40px);
        transform: scale(1);
    }
    .service-menu li::before {
        content: "";
        position: absolute;
        top: 0;
        left: -40px;
        width: 40px;
        height: 100%;
        background: var(--blue-color);
        filter: brightness(0.9);
        transform-origin: right;
        transform: skewY(45deg);
        transition: 0.5s;
    }
    .service-menu li::after {
        content: attr(data-text);
        position: absolute;
        top: -40px;
        left: 0;
        width: calc(100% - 20px);
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 20px;
        font-size: 15px;
        background-color: #AEE5EA;
        transform-origin: bottom;
        transform: skewX(45deg);
        transition: 0.6s;
        cursor: pointer;
    }
   .service-tab-btn button span {
        font-size: 15px ;
    }
    .service-tab-btn button .service-icon i,
    .service-tab-btn button .small-text {
        display: block;
    }
    .service-tab-btn button .service-icon i {
        margin-right: 0px;
    }
    .service-menu li button .service-icon {
        position: absolute;
        top: 0px;
        left: -40px;
        width: 40px;
        text-align: center;
        height: 100%;
        transform-origin: right;
        transform: skewY(45deg);
        transition: 0.5s;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 01rem;
        opacity: 0.6;
    }
    .service-menu li:hover,
    .service-menu li.active {
        transform: translate(40px, 40px);
    }
    .service-menu li:hover button span,
    .service-menu li.active button span {
        opacity: 1;
    }
    .service-menu li button .small-none {
        display: none;
    }
    .service-detail {
        padding: 0px;
        flex-grow: 2;
    }
}
@media only screen and (min-width: 992px) {
    .service-menu li {
        padding: 15px;
        width: 160px;
    }
    .service-tab-btn button .small-text {
        display: none;
    }
    .service-tab-btn button .large-text {
        display: block;
    }
    .service-detail {
        padding: 20px;
    }
}
@media only screen and (min-width: 1200px) {
    .service-menu li button .small-none {
        display: inline;
    }
    .service-menu li {
        width: 200px;
        padding: 15px;
    }
}

/*==Service App==*/
.app {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

}
.app-box {
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow-top);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin: 1rem;
    min-height: 300px;
}
.app-title {
    color: #5CCBD6;
    margin-bottom: 10px;
    margin-top: 10px;
}
.app-box .label {
    display: block;
}
.app-img {
    box-shadow: var(--box-shadow);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}
.app-img img {
    border-radius: 16px;
    overflow: hidden;
}
.app-video{
    display: none;
}
.app-text {
    display: block;
    width: 100%;
}
.app-detail {
    display: flex;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: var(--secondary-background);
    margin: 10px 0;
    padding: 10px;
    flex-grow: 3;
}
.app-text-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-grow: 1.5;
}
.app-menu {
    flex-grow: 2;
    padding: 10px;
}
.app-menu-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}
.app-menu-item i {
    color: var(--orange-color);
    font-size: 1rem;
    margin-right: 5px;
}
.app-text-left .threeD-box {
    color: #5CCBD6;
    height: 40px;
    width: 40px;
    border-radius: 20px;
}
@media only screen and (min-width: 600px) {
    .app-text {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
}
@media only screen and (min-width: 769px) {
    .service-content .app {
        display: flex;
        gap: 20px;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        margin-left: -30px;
    }
    .app-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: var(--box-shadow-top);
        border-radius: 15px;
        padding: 20px 5px;
        text-align: center;
        font-size: 0.9rem;
        margin: 0.5rem;
        min-height: 280px;
        flex-basis: 30%;
        margin: 16px 5px;
    }
    .app-img {
        display:none;
    }
   .app-video-box{
       width: 220px;
       height: 360px;
       position: relative;
       overflow: hidden;
   }
   .app-video-box img{
       position: absolute;
       top:0;
       left: 0;
       
   }
   .app-video-box video{
       position: absolute;
       top: 10px;
       left: 10px;
       border-radius: 10px;
       width: 200px;
       height: 340px;        
       overflow: hidden;
       object-fit: cover;
    }
    .app-video {
        display: flex;
        justify-content: center;
        overflow: hidden;
        margin-left: 60px;   
    }   
    .app-text {
        flex-basis: 45%;
        flex-direction: column;
        margin-right: 15px;
    }
    .app-box:last-child {
        margin-right: 1rem;
    }
}
@media only screen and (min-width: 992px) {
    .app-text {
        flex-basis: 50%;
    }
    .app-detail .app-text-left .threeD-box { 
        width: 60px !important;
        height: 60px !important;
        border-radius: 50%;
    }
    .app-detail .app-text-left .threeD-box i{
        font-size: 28px;
    }
}

/*==Service-Book==*/
.book {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-around;
    align-items: center;
}
.book-title {
    color: #70C2DF;
    margin-bottom: 10px;
    margin-top: 10px;
}
.book-box .label {
    display: block;
}
.book-img {
    box-shadow: var(--box-shadow);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}
.book-img img {
    border-radius: 16px;
    overflow: hidden;
}
.book-text {
    display: block;
    width: 100%;
}
.book-detail {
    display: flex;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: var(--secondary-background);
    margin: 10px 0;
    padding: 20px 10px;
    flex-grow: 3;
}
.book-text-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-grow: 1.5;
}
.book-menu {
    flex-grow: 2;
    padding: 10px;
}
.book-menu-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1rem;
    padding: 2px 0;
}
.book-menu-item i {
    color: var(--orange-color);
    font-size: 1rem;
    margin-right: 5px;
}
.book-text-left .threeD-box {
    color: #70C2DF;
    height: 40px;
    width: 40px;
    font-size: 1rem;
    border-radius: 20px;
}
@media only screen and (min-width: 600px) {
    .book-text {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
}
@media only screen and (min-width: 769px) {
    .book {
        display: flex;
        gap: 10px;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    .book-img {
        flex-basis: 55%;
        margin-right: 10px;
    }
    .book-text {
        flex-basis: 45%;
        flex-direction: column;
        margin-right: 20px;
    }
}
@media only screen and (min-width: 992px) {
    .book-text {
        flex-grow: 3;
        margin-left: 30px;
    }
    .book-detail {
        padding: 20px 10px;
        margin-right: 10px;
        flex-grow: 3;
    }
    .book-text-left .threeD-box {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 20px;
    }
    .book-menu-item {
        padding: 5px 0;
    }
}

/*==Service-Video==*/
.video-img{
    display:flex;
    justify-content: center;
    align-items: center;
}
.video-card{
    min-width: 300px;
    width: 300px;
    height: 220px;
    border-radius: 20px;
    padding: 10px;
    transition: .5s;
    margin-bottom: 20px;
}
.video-container {
    width: 100%;
    height: 100%; 
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: white;
}
.video-card,
.video-card .video-container {
    box-shadow: -4px -4px 10px #fff,
        4px 4px 20px rgba(0, 0, 0, 0.15),
        inset 4px 4px 20px rgba(0, 0, 0, 0.15),
        inset -4px -4px 10px #EFE6FF;
}
.jump-video {
    position: absolute;
    height: 100%;
    width: 100%;
    clip-path:inset(2px);
    object-fit: cover;
}
.video-text {
    padding: 20px;
    background: var(--secondary-background);
    border-radius: 20px;
}
.video-detail {
    display: flex;
    align-items: center;
    margin: 16px auto;
    width: 100%;  
    padding: 10px; 
}
.video-detail .threeD-box {
    color: #74A9E1;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 1rem;
}
.video-detail .threeD-box i {
    font-weight: 500;
}
.video-description {
    margin-left: 10px;
    display: inline-block;
    color: var(--text-color);
}
@media only screen and (min-width: 400px) {
    .video-card {      
        min-height: 270px;
        min-width: 90%;
    }
}                   
@media only screen and (min-width: 600px) {
    .video {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .video-card {
        min-width: 400px;
        width: 400px;
        height: 250px;
        border-radius: 20px;
        padding: 10px;
        transition: .5s;
        margin-bottom: 20px;   
    }
    .video-text {
        width: 100%;
        max-width: 400px;
        height: 100%;
    }
    .video-text .small-none {
        display: inline;
    }
}
@media only screen and (min-width: 769px) {
    .video {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        gap:15px;
    }
    .video-img{
        flex-basis: 45%;
    }
    .video-card {
        min-width: 300px;
        width: 300px;
        height: 220px;
        margin: auto 0 auto 20px;
    }
    .video-text {
        border-radius: 20px;
        flex-basis: 45%;
        min-width: auto;
        padding:0 10px;
        margin-right: 10px;
        height: 100%;
    }
    .video-text .small-none {
        display: none;
    }
}
@media only screen and (min-width: 1200px) {
    .video-img {
        flex-basis: 55%;
    }
    .video-card {             
        width: 90%;
    }
    .video-text {
        flex-basis: 40%;
        padding: 15px;
    }
    .video-text .small-none {
        display: inline;
    }
}

/*==Service-Cid==*/
.cid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column-reverse;
}
.cid-box {
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow-top);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin: 1rem;
    min-height: 300px;
}
.cid-title {
    color:#7D99ED;
    margin-bottom: 10px;
    margin-top: 10px;
}
.cid-box .label {
    display: block;
}
.cid-img {
    box-shadow: var(--box-shadow);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}
.cid-img img {
    border-radius: 16px;
    overflow: hidden;
}
.cid-text {
    display: block;
    width: 100%;
}
.cid-detail {
    display: flex;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: var(--secondary-background);
    margin: 10px 0;
    padding: 20px 10px;
    flex-grow: 3;
}
.cid-text-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-grow: 1.5;
}
.cid-menu {
    flex-grow: 2;
    padding: 10px;
}
.cid-menu-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1rem;
    padding: 2px 0;
}
.cid-menu-item i {
    color: var(--orange-color);
    font-size: 1rem;
    margin-right: 5px;
}

.cid-text-left .threeD-box {
    color: #7D99ED;
    height: 40px;
    width: 40px;
    font-size: 1rem;
    border-radius: 20px;
}
@media only screen and (min-width: 600px) {
    .cid-text {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
}
@media only screen and (min-width: 769px) {
    .cid {
        display: flex;
        gap: 10px;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    .cid-img {
        flex-basis: 55%;
        margin-right:10px;
    }
    .cid-text {
        flex-basis: 45%;
        flex-direction: column;
        margin-left: 20px;
    }
}
@media only screen and (min-width: 992px) {
    .cid-text {
        flex-grow: 3;
        margin-left: 30px;
    }
    .cid-detail {
        padding: 20px 10px;
        margin-right: 10px;
        flex-grow: 3;
    }
    .cid-text-left .threeD-box {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 20px;
    }
    .cid-menu-item {
        padding: 5px 0;
    }
}

/*==========Section9 Contact==========*/
.contact {
    padding:20px;
    box-shadow: 0 5px 4px -4px rgba(0, 0, 0, .15);
}
.contact .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom:30px;
}
.contact-img .jump-logo{
    display: none;
}
.contact .request {
    padding: 0;
    overflow: hidden;
    width: auto;
    min-width: 84%;
}
.contact .request h1{
    text-align: center;
}
.contact .request .input-group {
    height: 40px;
    width: 100%;
    margin: 30px 0;
    position: relative;
}
.jump-logo {
    width: 180px;
    height: 200px;
}
.fa-circle-arrow-right {
    color: white;
    font-size: 1rem;
    margin-left: 0.5rem;
}
@media only screen and (min-width: 769px) {
    .contact .container {
       flex-direction: row;
    }
    .contact-img{
       width: 35%;
    }
    .contact-img .jump-logo {
        display: block;
    }
    .contact .request {
        min-width: 50%;
        margin-left: 50px;
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
    }
    .request-form{
        max-width: 350px;
    }
}
.request-btn {
    background-color: #4F88E3;
    color: white;
    border-radius: 2rem;
    height: 2rem;
    text-align: center;
    position: relative;
    margin-top: 30px;
}

/*=======Find iD/PW========*/
.find-main .close {
    position: absolute;
    right: 17px;
    top: 10px;
    display: inline-block;
    cursor: pointer;
    color: #E8F6FD;
    font-size: 15px;
    z-index: var(--z-fixed);
}
.find-main #close1 {
    color: #133761;
}
.find-main h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}
.find-main p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 20px;
    margin: 15px 0 15px;
    color: white;
}
.find-main a {
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}
.grad-btn {
    border-radius: 20px;
    background-color: #3593B9;
    background-image: linear-gradient(90deg, rgb(118, 200, 223), rgb(123, 167, 233));
    margin-top: 30px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 12px;
    color:white;
}
.grad-btn:hover {
    background-image: linear-gradient(90deg, rgb(116, 211, 220), rgb(125, 153, 237));    transform: translateY(-3px);
}
.grad-btn:active {
    position: relative;
    top: 1px;
}
.trans-btn {
    border-radius: 20px;
    border: 1px solid #ffffff;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 12px;
    font-weight: bold;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: var(--z-fixed);
}
.trans-btn:hover {
    scale: 1.01;
    transform: translateY(-3px);
}
.trans-btn:active {
    transform: scale(0.95);
}
.trans-btn:focus {
    outline: none;
}
.find-container form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 50px 20px;
    height: 350px;
    text-align: center;
}
.find-container input {
    background-color:#E9F0FC;
    width: 100%;
} 
.find-main .find-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 350px;
    min-height: 460px;
}
.form-container {
    position: absolute;
    top: 0;
    height: 75%;
    transition: all 0.6s ease-in-out;
    background-color: white;
}
.find-id-container {
    top: 0;
    width: 100%;
    z-index: 2;
}
.find-container.right-panel-active .find-id-container {
    transform: translateY(100%);
}
.find-pw-container {
    top: 0;
    width: 100%;
    opacity: 0;
    z-index: 1;
}
.find-container.right-panel-active .find-pw-container {
    transform: translateY(33%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}
@keyframes show {
    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }
    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}
.overlay .white {
    color: white;
}
.overlay-container {
    position: absolute;
    top: 75%;
    left: 0;
    width: 100%;
    height: 25%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: var(--z-fixed);
}
.find-container.right-panel-active .overlay-container {
    transform: translateY(-300%);
}
.overlay {
    background: #3D94AC;
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg, rgb(116, 211, 220), rgb(125, 153, 237));
    background-size: cover;
    background-position: 0 0;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.7s ease-in-out;
}
.find-container.right-panel-active .overlay {
    transform: translateX(50%);
}
.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.7s ease-in-out;
}
.overlay-left {
    transform: translateX(-40%);
    padding-top: -2px;
}
.find-container.right-panel-active .overlay-left {
    transform: translateX(0);
}
.overlay-right {
    right: 0;
    transform: translateX(0);
}
.find-container.right-panel-active .overlay-right {
    transform: translateX(40%);
}

