#mission .box{
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mission .content{
    width: 100%;
    display: relative;
}

#mission .content .rectangle{
    position: absolute;
    height: 450px;
    background-color: #121C45;
    width: 100vw;
    right: 20%;
    border-radius: 16px ;
    
}

#mission .box .image{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    padding: 0 16px;
}

#mission .box .image img{
    height: 400px;
    width: 100%;
    border-radius: 16px;
    margin: 50px 0;
    z-index: 1;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#mission .box .description{
    display: flex;
    flex-direction: row;
    z-index: 1;
    gap: 32px;
    padding: 50px 32px;
}

#mission .box .description .button{
    display: flex;
    align-items: center;
    justify-content: center;
}

#mission .box .button button{
    padding: 24px;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    border: 0px;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}
#mission .box .description .detail .title{
    height: 100%;
}
#mission .box .description .detail .slider{
    height: auto;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 16px;

}

#mission .box .description .detail .slider .slide-button{
    width: 20px;
    height: 20px;
    border-radius: 16px;
    background: rgba(67, 67, 67, 0.24);
}

#mission .box .description .detail .slider .slide-active{
    background: #121C45 !important;
}

@media(max-width:575px){
    #mission .box .description .button{
        display: none;
    }
}
@media(max-width:991px) {
    #mission .box{
        background: unset;
    }
    #mission .box .description{
        background: white;
        border-radius: 16px;
    }
}


/*--------------------------------------------------------------
# values Section
--------------------------------------------------------------*/

/* padding: 120px 0; */
#values {
    width: 100%;
    height: 80vh;
    max-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;

    padding-bottom: 0;
}

#values .container {
    height: 100%;
    width: 70%;
    min-width: 375px;
    display: flex;
    justify-content: end;
}

#values .detail{
    width: 100%;
    padding: 25px 54px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(78.93deg, rgba(18, 28, 69, 0.8) 12.75%, rgba(231, 110, 27, 0.4) 100%);
}

@keyframes fade {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}
#values img{
    height: 100%;
    width: 100vw;
    animation: fade 0.5s ease-in-out;
}
#values .image{
    display: none;
}

#values .image-active{
    display: block;
}

#values .content{
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    gap: 32px;
}

#values .content .title h1,
#values .content .title p{
    color: white;
}

#values .content .box{
    display: flex;
    justify-content: center;
    gap: 2%;
    width: 100%;
}

#values .content .box .part{
    display: flex;
}

#values .content .box .word{
    border: 1px solid white;
    height: 10vw;width: 10vw;
    max-height: 120px;max-width: 120px;
    background: none;
}

#values .content .box .word h1{
    font-size:65px;
    font-weight: 900;
    color: white;
    margin: 0;
}
@media(max-width: 575px){
    #values .content .box .word h1{
        font-size:32px;
    }
}

#values .content .box .word-active{
    background: #121C45;
    border: 0px;
}
#values .content .box .word-active h1{
    color: #FF5E14;
}

#values .content .box .word:hover {
    background: #121C45;
    border: 0px;
}

#values .content .box .word:hover h1 {
    color: #FF5E14;
}


