@media screen and (max-width: 1450px) {
    .hero-title {
        font-size: clamp(4rem, 15vw, 7rem);
    }
}

@media screen and (max-width: 1050px) {
    .hero-title {
        font-size: clamp(4rem, 15vw, 4rem);
    }

    .hero-services {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .lawyer-name {
        display: block;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1rem);
    }

    .hero-line {
        bottom: 4rem;
    }
}

@media screen and (max-width: 575px) {
    .hero-title {
        font-size: clamp(3.5rem, 15vw, 3.5rem);
    }

    .hero-copyright {
        display: none;
    }
}

@media screen and (max-width: 375px) {
    .hero-title {
        font-size: clamp(3rem, 15vw, 3rem);
    }
}