@import url('./nav.css');
@import url('./home.css');

.header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0px 40px 40px 40px
}

.image-container {
    background-image: linear-gradient(90deg,
        #fff 20%, 
        #f5f5f5 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0px 20px 0px
}

.team-image {
    max-width: 90%;
}

.team-image img {
    max-width: 100%;
}

.media-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.media-images img {
    max-width: 100%;
}

.content-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.more h2 {
    max-width: 400px;
    font-size: 38px;
    font-weight: 700;
}

.more p {
    max-width: 430px;
}

.mission h2 {
    max-width: 400px;
    font-size: 38px;
    font-weight: 700;
}

.mission p {
    max-width: 430px;
}

.staf-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    gap: 60px;
}

.staf-title {
    display: flex;
    align-items: start;
    justify-content: start;
}

.staf-title h1 {
    text-align: start;
    font-size: 40px;
    font-weight: 700;
    color: #12a89d;
    max-width: 500px;
    margin-bottom: 60px;
}

.doctors {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.doctor-card1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 50px 10px 30px 10px;
    border: 15px solid #f7861c;
    border-radius: 25px;
    position: relative;
}

.doctor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 50px 20px;
    border: 15px solid #f7861c;
    border-radius: 25px;
    position: relative;
}

.image {
    position: absolute;
    top: -79px;
    left: -12px;
    max-width: 38%;
}

.image img {
    max-width: 100%;
    border-radius: 50%;
}

.card-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.name1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name h2 {
    font-size: 24px;
    font-weight: 500;
}

.name p {
    font-size: 16px;
    font-weight: 400;
}

.doctor-content p {
    width: 250px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
}

