.mobile {
    display: none !important;
}

body {
    overflow-x: hidden;
}

.desktop-adjustment-home {
    overflow-y: scroll;
}

.main-axis-alignment {
    display: flex;
    flex-direction: row;
}

.home-container {
    display: flex;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.header-title {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.pllc {
    text-align: center;
    font-family: 'Montserrat';
    font-size: 1.25rem;
    font-weight: bold;
    transform: translateY(-30px);
}

.signature {
    margin: 24px auto;
    font-family: PalmsDelight;
    /*font-size: 52px;*/
    font-size: clamp(2.5rem, calc(2.5rem + 1vw), 4rem);
    font-weight: normal;
    color: #9A9696;
}

.home-background-image {
    position: absolute;
    /* top: 180px; */
    height: auto;
    width: 100vw;
    overflow: hidden;
}

.home-background-image img {
    width: 100%; /* Makes the image take the full width of its container */
    height: 100%; /* Makes the image take the full height of its container */
    object-fit: cover; /* This is the key property */
}

.home-navigation-bar {
    display: flex;
    flex-direction: row;
    height: 35px;
    width: 950px;
    border-radius: 5px;
    background-color: #0a0a0a;
    justify-content: center;
    margin-top: -15px;
    z-index: 1;
}

.my-photo {
    position: absolute;
    /* width: 45vw; */
    height: clamp(50vh, calc(70vh + 20vh), 75%);
    right: 0;
    bottom: 0;
    object-fit: cover; 
    /* object-position: 100px; */
    overflow: hidden;
    z-index: 1;
}

.introduction-group {
    display: flex;
    position: absolute;
    height: clamp(50%, 65%, 600px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    left: 12%;
    bottom: 8%;
}

.introduction-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: safe center;
    overflow-y: auto;
    height: 100%;
}

.title-container {
    margin-top: 40px;
    width: 80%;
    font-weight: bold;
}

.introduction-text-heading {
    font-size: clamp(1rem, calc(1rem + 1.5vh), 2rem);
}

.introduction-text {
    font-size: clamp(0.5rem, calc(0.5rem + 1.5vh), 14pt);
}

.consultation-button-home {
    background-color: black;
    color: #7C7C7C;
    font-size: 20px;
    font-family: Vollkorn;
    border-radius: 8px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 20px;
    border: none;
    width: 70%;
    height: 40px;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
}

.consultation-button-home:hover {
    background-color: #7C7C7C;
    color: black;
}

.read-more {
    border: none;
    background: none;
    color: #7C7C7C;
    font-family: Vollkorn;
    font-size: inherity;
    cursor: pointer;
    margin-top: 5px;
}

.text-container {
    margin-top: 20px;
    width: 80%;
    font-size: 14pt;
}

.second-bullet {
    margin-left: 40px;
    list-style-type: none;
    font-size: 14px;
}

.second-bullet::before {
    content: "\2014\2002";
}

.third-bullet {
    margin-left: 75px;
    list-style-type: square;
    font-size: 14px;
}

/* .third-bullet::before {
    content: "\2023\2002";
} */