#profile-titlebox{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5vh;
}

#profile-titletextbox{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 55%;
    height: fit-content;
}

#profile-titletext{
    color: #001e14;
    margin-top: -2vh;
}

#profile-name{
    position: relative;
    color: #001e14;
    overflow-wrap: normal;
    word-break: normal;
    word-wrap: normal;
    font-size: 8vh;
    line-height: 8vh;
    z-index: 1;
}

#mainprofileimage{
    display: block;
    object-fit: cover;
    max-width: 40%;
    max-height: 50vh;
    border-radius: 5px;
}

#profile-secondbox{
    width: 100%;
    height: fit-content;
    display: block;
    margin-top: 10vh;
}

#profile-factsheet{
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, .1);
    width: calc(45% - 10vh);
    height: fit-content;
    padding: 3vh 5vh 3vh 5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    float: left;
    margin: 0 5vh 3vh 0;
}

#pffs-factblock{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: fit-content;
}

.pffs-factitem{
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: row;
    border-bottom: 0.3vh solid rgba(0, 0, 0, 0.05);
}

.pffs-facttitle{
    font-weight: bold;
    font-size: 1rem;
    width: 8rem;
}

.pffs-fact{
    font-size: 1rem;
    width: calc(100% - 8rem);
}

.pffs-contactlink{
    font-size: 1rem;
    width: calc(100% - 8rem);
    cursor: pointer;
    color: black;
}

a[href^="tel"] {
  color: inherit;
}

.pffs-contactlink:hover{
    color: #005538;
}

.pffs-lastitem{
    border: none;
}

#pffs-links-title{
    margin-top: 3vh;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
}

#pffs-links{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    height: 6.5vh;
    margin-left: -1.25vh;
}

.pffs-link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5.5vh;
    height: 5.5vh;
    margin-right: 0.5vh;
    border-radius: 3vh;
    box-sizing: border-box;
    overflow: hidden;
    border: none;
    background: transparent;
    transition: 0.3s ease;
}

.pffs-link:hover{
    border: none;
    background: rgba(0, 85, 56, 0.2);
    scale: 0.95;
}

.pffs-linkicon{
    width: 3vh;
    height: 3vh;
    object-fit: contain;
    transition: 0.3s ease;
}

#profile-textbox2{
    width: 100%;
    height: fit-content;
    margin-top: 5vh;
    text-align: left;
}

#profile-quotebox {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(75% - 20vh);
    padding-left: 20vh;
    padding-top: 5vh;
    margin-top: 15vh;
    margin-left: 10%;
    background-image: url(/imgs/icons/quote.avif);
    background-repeat: no-repeat;
    background-size: 25vh auto;
    background-position: top left;
}

#profile-quote{
    color: #001e14;
    line-height: 3rem;
}

#profile-quotefrom{
    font-size: 1.1rem;
    text-align: right;
    width: 90%;
    margin-top: -3vh;
    color: rgba(0, 0, 0, 0.5);
}

#profile-textbox3{
    width: 100%;
    height: fit-content;
    margin-top: 5vh;
    text-align: left;
}

#profile-lastbox {
    position: relative;
    margin-top: 15vh;
    width: 100%;
    height: fit-content;
    line-height: 0;
}

#profile-lastimage {
    float: left;
    margin-right: 3vh;
    margin-bottom: 1vh;
    width: 50vw;
    height: auto;
    border-radius: 5px;
}

#profile-lastbox p{
    line-height: normal;
}