// ------------  [styling]  ------------
.personal {
    background-color: $primary;
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    padding: 5.7rem 2rem;
    position: relative;
    overflow: hidden;
    &__body {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
      

            .logo {
            width: 20rem;
            height: 4.6rem;
            object-fit: contain;
            display: flex;
            margin: 0 auto;
        }

        &--box {
            max-width: 128rem;
            width: 100%;
            height: 100%;
            background-color: $white;
            filter: drop-shadow(30px 30px 40px rgba(0, 0, 0, 0.45));
            margin: 10rem auto;
            padding: 0 3rem;
            padding-top: 4rem;
            border-radius: 36px;
            z-index: 10;
        

            .navbar {
                width: 100%;
                height: 10rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                border: 1px solid #707070;
                border-radius: 18px;
                overflow: hidden;
                margin-bottom: 2.7rem;

                @media (max-width: 1050px){
                    height: 7rem;
                }

                @media (max-width: 600px){
                    height: 5rem;
                }



                .white {
                    background-color: $white;
                }

                &__box {
                    height: 100%;
                    display: flex;
                    align-items: center;
                    width: calc(100%/3);

                    .box-set {
                        width: 100%;
                        height: 100%;
                        padding: 0 2rem;
                        font-weight: 600;
                        font-size: 1.9rem;
                        border-radius: 15px;
                        clip-path: polygon(0 0, 89% 0, 98% 51%, 90% 100%, 0 100%, 0% 50%);
                        display: flex;
                        justify-content: center;
                        background-color: #707070;
                        align-items: center;
                        gap: 2rem;
                        position: relative;
                        z-index: 2;

                        @media (max-width: 1050px){
                          gap: 1rem;
                          padding: 0 1.4rem;
                          
                          img{
                              width: 3rem;
                              height: 3rem;
                          }

                          p{
                              font-size: 1.4rem;
                          }

                        }

                @media (max-width: 600px){
                    padding: 0 1rem;
                          
                    img{
                        width: 2rem;
                        height: 2rem;
                    }

                    p{
                        font-size: 1rem;
                    }
                }

                        &::before{
                            content: "";
                            position: absolute;
                            top: 0;
                            width: calc(100% - 2px);
                            height: 100%;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            z-index: -1;
                            display: block;
                            background-color: $white;
                            clip-path: polygon(0 0, 89% 0, 98% 51%, 90% 100%, 0 100%, 0% 50%);
                        }
                    }

                    .box-set.primary {
                        color: $white;
                        background-color: transparent;
                        
                        &::before{
                            background-color: $primary;
                        }
                    }

                    .last-child{
                        background-color: $white;
                    }

                    .last-child::before{
                        display: none;
                    }

                    .white {
                        font-weight: 600;
                        font-size: 1.9rem;
                        color: #afafaf;
                        // background-color: coral;
                    }

                    .user {
                        width: 5rem;
                        height: 5rem;
                        object-fit: contain;
                        margin: 0;
                    }





                }
            }

            &-detail {
                h1 {
                    text-align: center;
                    font-size: 4rem;
                    margin-bottom: 4rem;
                }
            }

            &--content {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 10rem;
                gap: 10rem;

                .left {
                    padding-bottom: 2rem;

                    &__heading {
                        font-weight: 600;
                        font-size: 4rem;
                        text-align: left;

                    }

                    &__text {
                        font-weight: 400;
                        font-size: 1.9rem;
                        line-height: 3.5rem;

                    }

                  

                }

                .image {
                    max-width: 45rem;
                    width: 100%;
                    transform: translateY(3.5rem);

                    
                    img {
                        z-index: -1;
                        position: relative;
                        width: 100%;
                        height: 45rem;
                        object-fit: contain;
                        filter: grayscale(100%);

                    }
                }
            }

        }
    }

    .component{
        position: absolute;
        right: 11.6rem;
        bottom: 0;
        img{
            max-width: 50rem;
            height: 40rem;
            object-fit: contain;

        }
    }

}