.aboutPage {
    #about {
        background-color: #F5F9FF;

        .container {
            display: flex;
        }

        h2 {
            font-size: 24px;
            font-weight: 400;
        }

        p {
            font-size: 18px;
            font-weight: 400;
        }

        .video-sec {
            display: flex;
            align-items: center;
            flex-direction: column;

            .desc {
                padding: 0 40px;

                p {
                    font-size: 16px;
                    font-weight: 400;
                    font-style: italic;

                    a {
                        color: #000;
                        text-decoration: none;

                        &:hover {
                            text-decoration: underline;
                        }
                    }

                    .main-btn {
                        color: #fff;
                        padding: 2px 20px;

                        &:hover {
                            text-decoration: none;
                        }
                    }
                }
            }

            .video {
                width: 90%;
                display: flex;
                justify-content: center;
                align-items: center;

                video {
                    width: 100%;
                }
            }
        }


        @media(max-width:991px) {
            .container {
                flex-direction: column;

                .video-sec {
                    padding-top: 30px;

                    .desc {
                        padding: 0 20px;
                    }

                    video {
                        width: 100%;
                    }
                }

                p {
                    text-align: justify;
                }
            }
        }
    }


    #why_choose_us {
        .main {
            margin-top: 30px;
            padding-top: 50px;
            display: flex;
            gap: 20px;

            .single {
                // height: 300px;
                border: 1px solid var(--primary-color);
                width: 300px;
                position: relative;
                padding: 20px;
                padding-top: 70px;
                transition: .3s;

                &:hover {
                    transform: translateY(-10px);
                }

                img {
                    height: 100px;
                    position: absolute;
                    width: 100px;
                    border-radius: 50%;
                    left: 50%;
                    top: -50px;
                    transform: translateX(-50%);
                    border: 1px solid var(--primary-color);

                }

                .bottom {
                    h3 {
                        font-size: 18px;
                        font-weight: 700;
                        padding: 0;
                        margin: 0;
                        text-align: center;
                    }

                    p {
                        font-size: 16px;
                        font-weight: 400;
                        text-align: center;
                        padding: 0;
                        margin: 0;
                    }
                }
            }
        }

        h2 {
            font-size: 24px;
            font-weight: 400;

        }

        .image {
            display: flex;
            gap: 20px;
            position: relative;

            img {
                width: calc(50% - 10px);
            }
        }

        @media(max-width:991px) {
            .container {
                flex-direction: column;
            }
            .main{
                flex-direction: column;
                align-items: center;
                gap: 75px;
            }
        }
    }

    #misson_vission {
        background-color: #fff;
        .container{
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .boxes{
            max-width: 900px;
            .box {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 400px;
                .left,.right{
                    position: relative;
                    width: 50%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: end;
                    .image{
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        img{
                            width: 75%;
                            filter: grayscale(1);
                            transition: .3s;
                            &:hover{
                                filter: grayscale(0);
                            }
                        }
                    }
                    h2 {
                        font-size: 24px;
                        font-weight: 700;
                    }
        
                    p {
                        font-size: 18px;
                        font-weight: 400;
                        padding: 0;
                        margin: 0;
                    }
    
                    &.off{
                        background-color: var(--primary-color);
                        padding: 50px;
                        display: flex;
                        justify-content: center;
                        align-items: start;
                        flex-direction: column;
                        color: #fff !important;
                        box-shadow: 0 0 10px #0000009c;
                        width: 50%;
    
                        .main-heading{
                            span{
                                color: var(--sec-color);
                            }
                        }
                    }
                    &.opp{
                        background-color: var(--sec-color);
                        padding: 100px 50px;
                        color: #fff !important;
                        display: flex;
                        justify-content: start;
                        align-items: center;
                        flex-direction: column;
                        box-shadow: 0 0 10px #0000009c;
                        width: 50%;
                    }
        
                }
            }
        }
        @media(max-width:991px){
            
            .boxes{
                width: 100%;
                .box{
                    width: 100%;
                    flex-direction: column;
                    height: 100%;
                    padding-bottom: 50px;
                    .left, .right{
                        width: 100%;
                        &.opp, &.off{
                            width: 100%;
                            padding: 50px 20px;
                        }
                        .image{
                            padding: 20px;
                        }
                    }
                    &:nth-child(2){
                        flex-direction: column-reverse;
                    }
                }
            }
        }
    }

    #team{
        .boxes{
            display: flex;
            justify-content: center;
            gap: 20px;
            .box{
                width: 300px;
                box-shadow: 0 0 10px #0000009c;
                border-radius: 5px;
                padding: 20px;
                transition: .5s;
                cursor: pointer;
                &.no-click{
                    cursor: default;
                }
                img{
                    height: 300px;
                    width: 100%;
                    object-fit: cover;
                }
                h2{
                    text-transform: uppercase;
                    text-align: center;
                    font-weight: 700;
                    font-size: 24px;
                    padding: 0;margin: 0;
                    padding-top: 20px;
                }
                p{
                    text-align: center;
                    padding: 0;margin: 0;
                    font-weight: 400;
                    font-size: 14px;
                    padding-top: 10px;
                }
                &:hover{
                    transform: translateY(-10px);
                }
            }
        }
        @media(max-width:991px){
            .boxes{
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
        }
    }
}


#team_popup{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.75);
    z-index: 9;
    padding: 20px;
    .popup-body{
        position: relative;
        width: 100%;
        height: 100%;
        max-height: 275px;
        max-width: 900px;
        background-color: #fff;
        padding: 20px;
        #pop_close{
            position: absolute;
            top: -25px;
            right: 0;
            cursor: pointer;
            i{
                color: #fff;
                font-size: 24px;
            }

        }
        .popup-content{
            display: flex;
            gap: 20px;
            position: relative;
            height: 100%;
            .left{
                width: 250px;

                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            h1{
                text-transform: uppercase;
                font-size: 22px;
                font-weight: 700;
                color: var(--sec-color);
                margin: 0;padding: 0;
                padding-bottom: 5px;
            }
            span{
                color: #000;
                font-weight: 500;
                font-size: 12px;
                padding-top: 5px;
                text-align: center;
            }
            .right{
                width: 100%;
                position: relative;
                height: 100%;
                p{
                    max-height: 100%;
                    overflow-x: hidden;
                    overflow-y: scroll;
                    text-align: justify;
                    padding-right: 10px;
                    font-size: 15px;
                    padding-bottom: 0;
                    margin-bottom: 0;
                    
                    &::-webkit-scrollbar{
                     width: 5px;
                     background-color: transparent;  
                    }
                    &::-webkit-scrollbar-thumb{
                     width: 5px;
                     background-color: var(--primary-color); 
                     border-radius: 10px; 
                    }
                }
            }
        }
    }
}