/* ====== Google Fonts (Nunito) ====== */
/* ====== Google Fonts (Nunito) ====== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');




/* ====== Reset & Universal ====== */
/* ====== Reset & Universal ====== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;

    font-family: 'Nunito', sans-serif;
}




/* ====== Variables ====== */
/* ====== Variables ====== */

:root {
    --primary-color: #298d74;
    --white-color: #FFFFFF;
    --dark-color: #222222;
}




/* ====== Selection ====== */
/* ====== Selection ====== */

::selection {
    color: var(--white-color);
    background-color: var(--primary-color);
}




/* ====== Components ====== */
/* ====== Components ====== */

.paragraph {

    color: var(--dark-color);

    font-weight: 500;
    font-size: 18px;
}

.btn {

    /* Layout */

    padding: 20px 25px;

    /* Style */

    background: var(--dark-color);
    color: var(--white-color);
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;

    transition: .3s;
}

.btn:hover {
    background: var(--primary-color);
}

.text {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
}

.title {
    line-height: 46px;
    font-weight: 700;
    font-style: normal;
    color: var(--dark-color);
    font-size: 40px;
}

/* ====== Banner Section ====== */
/* ====== Banner Section ====== */




.banner__section {

    /* Layout */

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;

    /* Style */

    background-size: cover;

    background-image: url(../images/about/banner-bg01.jpg);
    height: 300px;

    .url {

        /* Layout */

        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 20px;

        /* Style */

        border-radius: 4px;
        background-color: var(--white-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

        color: var(--dark-color);
        font-weight: 600;
    }

}

.team__section {
    display: flex;
    flex-direction: column;
    gap: 62px;

    align-items: center;

    padding: 62px 0;

    .team__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .team__card {

        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        width: 100%;
        padding: 0 6vw;

        .card {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: center;

            overflow: hidden;

            padding-bottom: 30px;

            border-radius: 6px;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

            .team__img {
                position: relative;

                .social__icon {
                    position: absolute;
                    top: 20px;
                    right: 10px;

                    >i {

                        z-index: 8;

                        position: relative;

                        padding: 10px;

                        border-radius: 50%;
                        font-size: 20px;
                        color: var(--white-color);
                        background-color: var(--primary-color);
                    }

                    .icon {
                        padding: 26px 10px 10px 10px;
                        position: absolute;

                        background-color: var(--white-color);

                        display: flex;
                        flex-direction: column;
                        gap: 10px;

                        top: 10px;
                        right: 2px;

                        opacity: 0;

                        transition: .3s;

                        border-radius: 0 0 10px 10px;

                        transform: translateY(-10px);

                        >i {
                            color: var(--primary-color);
                        }
                    }
                }

                >img {
                    transition: .3s;
                    width: 100%;
                }
            }

            .card__content {
                display: flex;
                flex-direction: column;
                align-items: center;

                .team__heading {
                    line-height: 32px;
                    font-weight: 700;
                    font-style: normal;
                    color: var(--dark-color);
                    font-size: 22px;
                }
            }
        }

        .card:hover {
            .team__img {
                >img {
                    transform: scale(1.05);
                }

                .social__icon {
                    .icon {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
            }
        }
    }
}

@media (max-width:1100px) {
    .team__section {
        .team__card {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

@media (max-width:880px) {
    .team__section {
        .team__card {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

@media (max-width: 648px) {
    .team__section {
        .team__card {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}