.introContainer {
    justify-content: space-between;
}

.introBox {
    min-width: 250px;
}

.introBoxLeft {
    width: 30vw;
}

.introBoxRight {
    width: 40vw;
}

.signUpButton {
    background-color: var(--coral-pink);
    color: white;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    padding: 15px 65px;
    border-radius: 5px;
    text-decoration: none;
    transition: scale 0.2s, background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0px 3px 5px var(--shadow-blue);
}

.signUpButton:hover {
    background-color: var(--coral-pink-hover);
    scale: 1.05;
    box-shadow: 0px 10px 15px var(--shadow-blue);
}

.signUpButton:active {
    background-color: var(--coral-pink-active);
    scale: 1.025;
    box-shadow: 0px 6px 10px var(--shadow-blue);
}

.introPhoto {
    margin: 0;
    width: inherit;
}

.workshopSection {
    width: 100%;
    margin-top: 140px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.workshopText {
    text-align: center;
    width: 35%;
}

.workshopPhotoBlock {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.workshopPhoto {
    min-width: 150px;
    width: 25%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: scale 0.25s;
    transition-timing-function: ease-out;
}

.workshopPhoto:hover {
    scale: 1.03;
}

.coralExplainer {
    width: 70%;
    margin-bottom: 35px;
}

q {
    display: inline-block;
    line-height: 150%;
    width: 70%;
    font-weight: bold;
    color: #3a6479;
}

.quoteAttribute {
    margin-block-start: 0.75em;
}

.questionSection {
    margin-top: 50px;
    justify-content: space-evenly;
    align-items: baseline;
}

.questionContainer {
    min-width: 200px;
    width: 22vw;
}

.questionTitleContainer {
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
}

.markerContainer {
    height: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 15px;
}

.answerParagraph {
    margin-top: 0;
}

.teamTitle {
    width: 100%;
    text-align: center;
}

.teamContainer {
    justify-content: center;
    align-items: baseline;
}

.teamMemberContainer {
    background-color: white;
    border: 1px solid #EFEDF3;
    width: 275px;
    height: 450px;
    border-radius: 10px;
    display: flex;
    flex-flow: column nowrap;
    margin: 0% 0.75%;
}

.photoPorthole {
    width: 100%;
    margin-top: 40px;
    justify-content: center;
}

.teamMemberPhoto {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    transition: scale 0.2s, background-color 0.4s, box-shadow 0.4s;
    box-shadow: 0px 0px 0px var(--shadow-blue);
    transition-timing-function: ease-out;
}

.teamMemberPhoto:hover {
    scale: 1.03;
    box-shadow: 0px 5px 10px var(--shadow-blue);
}

.jobDescription {
    color: var(--coral-pink);
    background-color: #E9F1FF;
    text-transform: uppercase;
    border-radius: 99px;
    padding: 4px 12px;
    margin: 0px 25px;
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 10px;
    font-weight: 700;
}

.teamMemberText {
    font-size: 14px;
    margin: 15px 0px 0px 0px;
    padding: 0px 30px;
    line-height: 1.6;
    text-align: center;
}

.emailSpan {
    font-weight: bold;
}

.linkedInLogo {
    opacity: 0.15;
    width: 20px;
    color: #CCCCCC;
    transition: scale 0.2s, opacity 0.2s;
    transition-timing-function: ease-out;
}

.linkedInLogo:hover {
    scale: 1.2;
    opacity: 0.25;
}

.linkedInContainer {
    margin-top: 30px;
    justify-content: center;
}

.groupPhotoContainer {
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.coralPhoto {
    margin-top: 25px;
}
