/* || About page specific shite */

.header-about {
    width: 100%;
    height: 50vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(Images/about-header.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: solid thin white;
}

.spacer-about {
    width: 100%; 
    height: 50vh; 
    z-index: 0;
}

.profile-about-container {
    width: 100%;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-about-container .icon{
    width: 50vh;
    height: 50vh;
    background-image: url(Images/profile-about.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid thin white;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.main-content-about {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #01011C;
    border-bottom: solid thin white;
    padding-top: 32vh
}

.main-content-about .inner {
    width: 60%;
    text-align: left;
}

.main-content-about .text-container {
    width: 100%;
    padding-top: 4vh;
    padding-bottom: 10vh;
}

.main-content-about .text-container p {
    color: white;
    line-height: 1.5em;
    font-size: 1.75vw;
    margin-bottom: 4vh;
}

@media screen and (max-width: 1440px) {
    
    .consultation-container .inner .title {
        width: 100%;
        height: auto;
        margin-bottom: 2vh;
    }
}

@media screen and (max-width: 640px) {
    /* || About page specific shite */

.header-about {
    width: 100%;
    height: 50vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(Images/about-header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: solid thin white;
}

.spacer-about {
    width: 100%; 
    height: 50vh;
    z-index: 0;
}

.profile-about-container {
    width: 100%;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-about-container .icon{
    width: 40vh;
    height: 40vh;
    background-image: url(Images/profile-about.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid thin white;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.main-content-about {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #01011C;
    border-bottom: solid thin white;
    padding-top: 26vh
}

.main-content-about .inner {
    width: 80%;
    text-align: left;
}

.main-content-about .text-container {
    width: 100%;
    padding-top: 4vh;
    padding-bottom: 4vh;
}

.main-content-about .text-container p {
    color: white;
    font-size: 4vw;
    margin-bottom: 4vh;
    line-height: 1.5em;
}

}