@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
    font-family: 'Franklin Gothic Std';
    src: url('Franklin\ Gothic\ Std\ Extra\ Condensed.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}



html {
    overflow: visible!important;
    padding: 0px!important;
}

body {
    font-family: "IBM Plex Sans", sans-serif!important;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    overflow-x: hidden;
}

.brand-heading {
    font-family: "Franklin Gothic Std"!important;
    text-transform: uppercase;
    font-size: 8rem!important;
    letter-spacing: 2px;
    font-weight: 100;
}

.brand-container-pink {
    background-color: #f16da9;
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.brand-container-white {
    background-color: white;
    color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}

.brand-container-transparent {
    background-color: white;
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.brand-photo-white {
    border: 4px solid white;
    border-radius: 3px;
}

.brand-photo-pink {
    border: 4px solid #f16da9;
    border-radius: 3px;
}

.brand-button {
    background-size: 200%;
    background-position-y: center;
    background-position-x: center;
    background-color: #f16da9;
    color: white;
    transition: all 0.5s ease;
}

.brand-button:hover {
    background-size: 208%;
    background-position-x: 40%;
    filter: brightness(1.1);
}

.landing-text {
    text-shadow: 0px 0px 20px rgb(0, 0, 0);
}

#content {
    margin-bottom: auto;
}

.team-headshot img {
    border-radius: 100%;
    border: 4px solid white;

}

.team-headshot p {
    text-transform: uppercase;
    font-weight: 250;
    font-family: 'Roboto Condensed', 'IBM Plex Sans', sans-serif
}


.team-headshot-inner {
    transition: 0.25s ease-in-out;
    filter: brightness(1);
}

.team-headshot-inner:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}


.team-headshot-inner::before {
    content: '';
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
    background: #f16da9;
    opacity: 0.3;
    z-index: 24190232103;
    border-radius: 100%;
    transition: 0.25s ease-in-out;
}
.team-headshot-inner:hover::before {
    opacity: 0;
}

/* overwrite --color-pink-400 */

:root, :host {
    --color-pink-400: #f16da9!important;
}