.profile-container {
    color: white;
    display: none;
    align-items: flex-start;
    gap: 30px;
    min-height: 120px;
}

.profile-container.active {
    display: flex;
}

.profile-left {
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    justify-content: center;
    flex: 0 0 23%
}

.profile-left h1 {
    color: white !important;
}

.profile-right {
    flex: 0 0 77%;
}

.profile-name {
    font-size: 24px !important;
    font-weight: bold !important;
    margin: 0 0 5px 0;
    flex-direction: row-reverse;
}

.profile-title {
    font-size: 16px;
    margin: 0 0 10px 0 !important;
    display: flex;
    flex-direction: row-reverse;
}

.linkedin-link {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: row-reverse;
}

.linkedin-link:hover {
    filter: drop-shadow(0 0 6px #003366);
}

.profile-description {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.postcard-item {
    transition: transform 0.4s ease-in-out;
    overflow: visible;
    position: relative;
    z-index: 20;
    border: 4px solid #19a5cc;
    border-radius: 50%;
}

.postcard-item.hover {
    transition: transform 0.4s ease-in-out;
    transform: scale(1.3);
    z-index: 40;
}
@media screen and (max-width: 768px) {
    .postcard-item.hover {
        transform: scale(1.1);
    }
    .profile-container.active {
        flex-direction: column;
    }
    .profile-left,
    .profile-description {
        text-align: center;
        align-self: center;
    }
    .profile-title,
    .linkedin-link {
        justify-self: center;
    }
}

.postcard-item img {
    /*border: 4px solid #19a5cc;
    position: relative;
    z-index: 30;*/
    border-radius: 50%;
    transition: filter 0.1s ease-in-out;
    filter: grayscale(0%) contrast(100%) brightness(100%) sepia(80%) hue-rotate(158deg) saturate(200%);
}

.postcard-item img.hover {
    transition: filter 0.1s ease-in-out;
    filter: none;
}

#team-images-postcards {
    display: flex;
}

/*************** SLIDER *************** */

.slider-container {
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    margin: auto;
}

#team-images-postcards .slider {
    display: flex;
    transition: transform 0.5s ease;
    flex: 1;
    height: 17.6vw;
    align-items: center;
    overflow: visible;
	justify-content: space-evenly;
}

.slide {
    flex: 0 0 calc((100% - 56px) / 7);
    margin: 0 5px;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.prev,
.next {

    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    height: 85px;
    width: 38px;
}

.prev {
    background: #19a5cc00 url(../../images/arrow-prev.png) no-repeat 11px 23px;
    filter: drop-shadow(0 0 6px #003366);
}

.next {
    background: #19a5cc00 url(../../images/arrow-next.png) no-repeat 11px 23px;
    filter: drop-shadow(0 0 6px #003366);
}
@media screen and (max-width: 768px) {
    .slide { 
        margin: 0 15px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1249px) {
    #team-images-postcards .slider {
        height: 24vw;
    }
}
/*************** END SLIDER *************** */



#chatText {
    fill: #19a5cc;
    /* Set the blue color */
    font-size: 10px;
    font-family: inherit;
    font-weight: bold;
    text-anchor: middle;
}

.profile-short-name {
    display: none;
}

.profile-contact-link {
    display: none;
}

#callme {
    display: flex !important;
    justify-content: flex-end !important;
}
#callme svg {
    max-width: 100%;
}
#call-me-button {
    filter: opacity(90%);
    transition: filter 0.3s ease;
}
#call-me-button:hover {
    filter: opacity(100%) drop-shadow(0px 0px 12px #013366);
}