.main {
    display: flex;
    flex-direction: column;
    max-width: 1920px;
    width: 100vw;
    
}

@media(max-width:1100px) {
    .main {
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 255, 0.584) rgba(0, 0, 255, 0.063);
    }
}


.main-header {
    background-color: rgba(0, 0, 0, 0.078);
    height: 12vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 32px 0px 32px;
}

@media(max-width:1000px) {
    .main-header {
        padding: 0px 8px 0px 8px;
        max-height: 67px;
    }
}

nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.profile-picture-main {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 320px;
    max-height: 28vh;
}

.profile-picture-img {
    height: 320px;
    width: 320px;
    border-radius: 50%;
    object-fit: cover;
}

@media(max-width:1024px) {
    .profile-picture-img {
        height: 216px;
        width: 216px;
    }
}


.visit-card {
    display: flex;
    flex-direction: row;
    gap: 196px;
    justify-content: center;
    align-items: center;
    height: 88vh;
}

@media(max-width:1000px) {
    .visit-card {
        gap: 16px;
    }
}

@media(max-width:768px) {
    .visit-card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .visit-card {
        gap: 16px;
        flex-direction: column-reverse;
        justify-content: center;
    }

}


.sectionActive {
    font-weight: 700;
    text-decoration: underline !important;
}

.main-body {
    height: 88vh;
}

@media(max-width:1100px) {
    .main-body {
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 255, 0.584) rgba(0, 0, 255, 0.063);
        height: unset;
    }
}