section.team-profile-hero {
    text-align: left;

    .section-inner {
        display: flex;
        flex-direction: column;
        gap: 2rem;

        .profile-image img {
            width: 100%;
            object-fit: cover;
            margin-bottom: 2rem;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .footer-text {
                h1 {
                    font-size: 1.6rem;
                    font-weight: 350;
                    margin-bottom: 0.5rem;
                }

                p {
                    font-weight: 400;
                    margin-bottom: 0;
                    color: var(--pink);
                }
            }

            a {
                display: inline-flex;
                align-items: center;
                gap: 0.6rem;
                color: var(--pink);
                font-weight: 600;
                text-decoration: none;

                svg {
                    height: 24px;
                    width: 24px;

                }
            }
        }

    }

    @media (min-width: 800px) {

        .section-inner {
            display: grid;
            grid-template-columns: 1fr 2fr;

            
            .profile-image img {
                height: 12rem;
                
            }

        }
    }

    @media (min-width: 1000px) {
        .section-inner {
            
            .profile-image img {
                height: 20rem;
                
            }
        }
    }
}

section.testimonials {
    display: none;
}

section.enquiry-form {
    display: none;
}