.team-page {
    margin-top: 32px; 
    margin-bottom: 32px;

    .team-heading {
        text-align: center;
        font-size: 36px;
        margin-bottom: 100px;
        font-weight: 700;
        line-height: 52px; /* 144.444% */
    }

    .team-grid {
        display: flex;
        flex-wrap: wrap; 
        max-width: 1200px;
        justify-content: center;
        gap: 24px 60px;
        margin: 100px auto;
    
        .team-member {
            max-width: 230px; /*width: 25%;*/
            text-align: center;
            padding: 0 40px;
        
            .team-member-img {
                width: 100%;
                height: auto;
                text-align: center;
                margin: 0 auto 20px;
            }

            .team-member-name {
                font-size: 20px;
                margin: 26px 0;
                color: #13b5f7;    
                font-weight: bold;
            }
        }
    }

    .team-contact-form > h2 {
        margin-bottom: 32px;
        text-align: center;
        font-weight: 600;
        line-height: 38.4px; /* 122.39% */
    }

    .team-contact-form {
        max-width: 600px;
        margin: 0 auto;
        justify-content: center;
    }

    /* from here */
    .input-wrapper{
        width: 100%;
        min-height: 56px;
        margin-bottom: 24px;
        border-radius: 4px;
        border: 1px solid #DBDADE;
        display: flex;
        align-items: center;
        align-self: stretch;
    
        .form-input{
            width: 100%;
            outline: 0;
            padding: 1em;
            border-radius: 4px;
        }
    }
    
    #turnstileDiv{
        height: 65px;
    }

    .team-contact-form .button {
        margin-top: 24px;
        padding: 0;
        width: 100%;
        height: 56px;
        font-weight: 600;
        font-size: 20px;
        text-transform: capitalize;
    }
    /* to here, is a copy from contact.css  */
}

@media only screen and (max-width: 786px) {
    .team-page {
        .team-grid {
            display: flex; 
            flex-direction: column;
            align-items: center;
        }
    }
}
