.about-main {
    img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: var(--border-radius-big);
    }
    margin-top: 40px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
    a {
        i {
            font-size: 20px;
            color: #222;
        }
    }
}
.team-big {
    display: flex;
    flex-direction: column;

    > div {
        flex: 1;
        display: flex;
        margin-top: 15px;
        background: #fffa;
        border-radius: var(--border-radius-big);
        backdrop-filter: blur(15px);
        overflow: hidden;
        box-shadow: 0px 5px 20px #0001;

        > img {
            width: 280px;
            height: 240px;
            object-fit: cover;
            border-radius: var(--border-radius-big);
            padding: 8px;
        }

        > div {
            flex: 1;
            display: flex;
            position: relative;
            align-items: stretch;

            > div.right {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                margin: 15px;
                margin-left: auto;

                > div {
                    margin-top: auto;
                }
            }

            > div.right img {
                height: 120px;
                width: 120px;
                min-width: 120px;
                border-radius: 40px;
                box-shadow: 0px 5px 12px #0003;
            }

            >div.right {
                a {
                    display: flex;
                    align-items: center;
                    padding: 14px 20px;
                    gap: 20px;
                    background: #fff;
                    box-shadow: 0px 5px 12px #0001;
                    margin-top: auto;
                    * {
                        padding: 0px;
                        margin: 0px;
                    }
                }
            }

            > div:not(.right) {
                display: flex;
                flex-direction: column;
                h1 {
                    font-size: 30px;
                    color: #333;
                    small {
                        font-size: 30px;
                        font-weight: 300;
                        color: #555;
                    }
                }
                p {
                    margin-top: 20px;
                }
                .socials {
                    padding-top: 15px;
                    margin-top: auto;
                }
            }


            > div:not(.right) {
                padding: 20px;
            }
        }
    }
}

.center.team > h1 {
    font-size: 90px;
    color: #000a;
    font-weight: 100;
}
.team-small {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
    margin-top: 15px;
    > div {
        box-shadow: 0px 10px 20px #0001;
        position: relative;
        flex: 1;
        display: flex;
        background: #fffa;
        border-radius: var(--border-radius-big);
        flex-direction: column;
        >img {
            height: 200px;
            width: 100%;
            object-fit: cover;
            border-radius: var(--border-radius-big);
            padding: 8px;
            padding-bottom: 0px;

        }
        .left {
            display: flex;
            flex-direction: column;
            padding: 18px;
            padding-bottom: 24px;
            h1 {
                font-size: 30px;
            }
            small {
                font-size: 20px;
            }
            > div {
                margin-top: auto;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            height: 150px;
        }
        >div {

            > img {
                position: absolute;
                top: -8px;
                height: 108px;
                width: 108px;
                right: -8px;
                box-shadow: 0px 10px 15px #0003;
                border-radius: 90px;
            }
        }
    }
}

.center.top {
    h1 {
        font-size: 40px;
        font-weight: 400;
        margin: 16px 0px;
        margin-top: 30px;
    }
    p {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 140%;
    }
}

.team-outer {
    margin: 40px 0px;
    padding: 20px 0px;
    background: linear-gradient(to bottom, #fff5, #0000);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    .team-member {
        overflow: hidden;
        display: flex;
        align-items: center;
        background: #fffa;
        border-radius: var(--border-radius-big);
        gap: 12px;
        color: inherit;
        img {
            height: 96px;
            width: 96px;
        }
        h1 {
            font-size: 26px;
        }
    }
}
@media (max-width: 900px) {
    .team-small {
        grid-template-columns: 1fr 1fr;
    }
    .team-big {
        position: relative;
    }
    .team-big > div {
        flex-direction: column;
        position: relative;
        > div {
            position: unset;
        }
        .right {
            height: 170px;
            position: absolute;
            top: 0;
            right: 0;
        }
    }
    .team-grid {

        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .team-small {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;

    }

    .team-big > div {
        > img {
            width: 100%;
        }
        flex-direction: column;
        position: relative;
        > div {
            position: unset;
            flex-direction: column-reverse;
        }
        .right {
            height: auto;
            position: relative;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: space-between !important;
            margin: 20px !important;
            display: flex;
            margin-bottom: 0px !important;
            margin-top: -30px !important;
        }
    }
}

/*# sourceMappingURL=about.css.map*/