.welcome-section{
    background-color: #fff;
    display: flex;
    padding: clamp(40px, 5vw, 80px) 0 clamp(40px, 5vw, 80px) clamp(40px, 5vw, 80px);
    border-bottom: 20px solid #17BDB4;
    flex-wrap: wrap-reverse;
    justify-content: center;
}
.welcome-section h1{
    color: var(--off-black, #202020);
    font-feature-settings: 'liga' off, 'clig' off;
    /* Desktop/Title 1 */
    font-family: Poppins;
    font-size: clamp(40px, 5vw, 64px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 76.8px */
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
}
.welcome-left{
    max-width: 1120px;
}
.welcome-text {
    display: flex;
    gap: 30px;
}
.welcome-text p{
    color: var(--off-black, #202020);
    font-feature-settings: 'liga' off, 'clig' off;
    /* Desktop/Body large */
    font-family: Poppins;
    font-size: clamp(20px, 2.3vw, 23px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.procedures-section{
    padding: clamp(40px, 5vw, 80px);
}
.procedures-section h2{
    color: var(--black, #292929);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    /* Desktop/Title 1 */
    font-family: Poppins;
    font-size: clamp(50px, 5vw, 64px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 76.8px */
    letter-spacing: 2px;
    margin-bottom: 40px;
}
.procedures-cards{
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}
.procedure-card{
    background-color: #fff;
    max-width: 485px;
    width: 100%;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}
.procedure-card h3{
    color: var(--black, #292929);
    font-feature-settings: 'liga' off, 'clig' off;
    /* Desktop/Subtitle 1 */
    font-family: Poppins;
    font-size: clamp(30px, 4vw, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding: 30px;
}
.procedure-card p{
    color: var(--accent, #4F4F50);
    font-feature-settings: 'liga' off, 'clig' off;
    /* Desktop/Body large */
    font-family: Poppins;
    font-size: clamp(20px, 2.3vw, 23px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 0 30px 30px 30px;
}
.procedure-card a{
    color: var(--black, #292929);
    font-feature-settings: 'liga' off, 'clig' off;
    /* Desktop/Link */
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 160%; /* 28.8px */
    letter-spacing: 1.15px;
    text-transform: uppercase;
    padding: 0 30px 30px 30px;
    margin-top: auto;
}
.map-section{
    background-color: #fff;
    padding: clamp(20px, 3vw, 40px);
}
.map-section h2{
    color: var(--Secondary, #6D6D6D);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: clamp(32px, 4vw, 45px);
    font-style: normal;
    font-weight: 700;
    line-height: 124%; /* 55.8px */
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}
.map-address{
    text-align: center;
}
.map-content{
    color: var(--Gray-30, #545D60);
    font-feature-settings: 'liga' off, 'clig' off;
    /* Desktop/Body large */
    font-size: clamp(20px, 2.3vw, 23px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
a.main-btn.transition.doctor-btn{
    margin-right: 30px;
}

@media (max-width: 1870px) {
    .welcome-section{
        padding: clamp(40px, 5vw, 80px);
    }

}
@media (max-width: 1025px) {
    .welcome-text{
        flex-direction: column;
    }
}
