@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

/* Apply DM Sans globally to every single element on your website */
* {
    box-sizing: border-box;  
    font-family: 'Sora', sans-serif;
}

body {
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.div-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
    gap: 100px;
}

    .div-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

        .title-box {
            width: 100%;
            text-align: center;   
        }

            .header {
                font-weight: bold;
                font-size: 32px;
            }

            .sub {
                color: #808080;
            }

        .about-box {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: stretch;
            gap: 80px;
        }

            .img-box {
                flex: 1;
            }

                .us-img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px;
                    display: block;
                }

            .us-box {
                flex: 1;
                text-align: justify; 
                line-height: 1.8;
            }

                .full-blue {
                    padding: 5px 15px;
                    background-color: #1B03A3;
                    color: #ffffff;
                    border-radius: 10px;
                }

        .team-box {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: stretch;
            gap: 20px;
        }

            .person {
                flex: 1;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

                .person-img {
                    width: 100%;
                    object-fit: cover;
                    display: block;
                }

                .person-info {
                    display: flex;
                    flex-direction: column;
                    padding: 10px 0px;
                    gap: 10px;
                }
                    .position {
                        height: 100px;
                    }



/*____________________________________________________________________________________________________________________________________*/

/* Mobile Styles */
@media only screen and (max-width: 873px) {

body {
    font-size: 12px;  
}

.div-container {
    padding-left: 20px;
    padding-right: 20px;
     gap: 100px;
}

        .header {
            font-size: 24px;
        }

    .about-box {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .team-box {
            flex-direction: column;
            align-items: center;
            padding: 40px;
        }

        .position {
            height: 80px;
        }
  

}

/*____________________________________________________________________________________________________________________________________*/
/* Tablet Styles */
@media only screen and (min-width: 874px) and (max-width: 1280px) {

body {
    font-size: 14px;  
}

.div-container {
    padding-left: 40px;
    padding-right: 40px;
}

    .full-blue {
                    padding: 5px 5px;
                    font-size: small;
                }

}
        