* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
}

html {
    width: 100vw;
}

*::-webkit-scrollbar {
    display: none;
}

/* ------- heading of all sections  */

/*  <h1 class = "sections_heading">our attorneys</h1> */

.sections_heading {
    font-size: var(--large-heading-fs);
    color: var(--heading-color-1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 2.5rem 0rem; */
    padding-bottom: 3rem;
    text-wrap: nowrap;
}

/* ---------------  cards heading & paragraphs  */

.cards_heading_1 {
    font-size: var(--medium-heading-fs);
    color: var(--heading-color-1);
}

.cards_heading_2 {
    font-size: var(--small-heading-fs);
    color: var(--heading-color-1);
}


.cards_paragraph {
    font-size: var(--small-text-fs);
    margin-top: 10px;
}

/* ---------------- */
.email {
    text-transform: none;
}

.flex {
    display: flex;
    align-items: center;
}

.links {
    font-size: 15px;
    /* color: var(--text-color-3); */
    text-decoration: none;
}


.logo {
    width: 50px;
    height: 50px;
}

.button {
    width: 250px;
    height: 60px;
    background: linear-gradient(135deg, #5a3e2b, #8b5e3c); /* rich brown tones */
    border: none;
    font-size: var(--large-text-fs);
    color: #f5e6d3; /* soft cream text */
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.05);

    transition: all 0.35s ease;
}


.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: all 0.6s ease;
}

.button:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #6b4a32, #a06b45);

    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(160, 107, 69, 0.6);
}

.button:hover::before {
    left: 100%;
}

.button:active {
    transform: scale(0.96);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
    .button {
        width: 140px;
        height: 45px;
        font-size: 0.8rem;
    }
}

@media (max-width: 450px) {
    .button {
        width: 120px;
        height: 40px;
        font-size: 0.7rem;
    }
}

.paragraph-1 {
    text-align: center;
    font-size: var(--small-text-fs);
    color: var(--text-color-4);
}

.paragraph-2 {
    font-size: var(--large-text-fs);
    color: var(--text-color-1);
}

.paragraph-3 {
    font-size: var(--small-text-fs);
    color: var(--text-color-1);
    text-align: center;
}

.large-heading-1 {
    font-size: var(--large-heading-fs);
    color: var(--heading-color-2);
    text-align: center;
}

.large-heading-2 {
    font-size: var(--large-heading-fs);
    color: var(--heading-color-1);
    text-align: center;
}

.medium_heading {
    font-size: var(--medium-heading-fs);
    color: var(--heading-color-2);
    text-align: center;
}

.medium-heading-2 {
    font-size: var(--medium-heading-fs);
    color: white;
}

.small-heading {
    font-size: var(--small-heading-fs);
    color: var(--heading-color-1);
    text-align: center;
}

.names {
    font-size: var(--names-fs);
    color: var(--text-color-1);
}

.small_paragraph {
    font-size: var(--small-text-fs);
    color: var(--text-color-2);
}





/* popup css */

* {
    font-family: var(--fontfamily-1);
}

.popup * {
    text-align: justify;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.4);
    /* backdrop */
    backdrop-filter: blur(6px);
    z-index: 9999;
}

.disclaimer-heading * {
    font-family: "Merriweather", serif !important;
    text-transform: uppercase;
}

.disclaimer-heading {
    display: flex;
    justify-content: center;
    padding: 1rem 0rem;
}

.disclaimer-heading h1 {
    font-size: 2.2rem;
    font-weight: 800;
    display: inline;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgb(71, 71, 71);
}

.disclaimer-heading h1 p {
    display: inline;
    color: rgb(176, 130, 69);
}

.container {
    background-color: rgb(255, 247, 234);
    width: 75vw;
    height: 90vh;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 0.5rem;

}

.container::-webkit-scrollbar-thumb {
    background: #322c18;
    border-radius: 10px;
}

.container::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(222, 184, 135, 0.187);
}

.scroller {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 300vh;
}

.image-header {
    display: flex;
    padding: 1rem 1.5rem;
    align-items: center;
    justify-content: center;
}

.image-header img {
    width: 200px;
}

.disclaimer-sec {
    box-sizing: border-box;
    width: 70vw;
    padding: 1rem 2rem;
    box-shadow: none;
    margin-bottom: 0rem;
    display: grid;
    align-items: start;
    justify-items: start;
}

.disclaimer-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    gap: 2rem;
    padding-bottom: 2rem;
}

.line {
    width: 40%;
    height: 0px;
    border-bottom: 1px solid rgb(79, 79, 79);
}

.disclaimer-content p {
    width: 100%;
    padding-bottom: 1.5rem;
    color: rgb(69, 69, 69);
    font-weight: 300;
}

.accept {
    padding: 1rem 0rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.accept>.disclaimer-header>h2 {
    text-wrap: nowrap;
    font-size: 1.5rem;
}

.accept>.disclaimer-header>.line {
    width: 28%;
}

#btn {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: rgb(0, 0, 0);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 1rem;
    transition: .3s;
}

#btn:hover {
    background-color: rgb(67, 67, 67);
    font-weight: 700;
    text-shadow: 2px 2px 5px black;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}


@media (max-width: 1000px) {
    .disclaimer-content {
        font-size: 0.9rem;
        line-height: 1.4;
        padding-bottom: 1rem;
    }

    .disclaimer-content p {
        padding: 0.3rem 0rem;
    }

    .image-header img {
        width: 170px;
        height: auto;
    }

    .container {
        width: 85vw;
        height: 85vh;
    }

    .disclaimer-heading h1 {
        font-size: 1.8rem;
    }

    .disclaimer-header h2 {
        font-size: 1.3rem;
    }

    .disclaimer-sec {
        width: 80vw;
    }

    .disclaimer-header {
        gap: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 700px) {
    .disclaimer-content {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .disclaimer-content p {
        padding: 0.2rem 0rem;
    }

    .disclaimer-heading h1 {
        font-size: 1.3rem;
    }

    .disclaimer-header h2 {
        font-size: 1.1rem;
    }

    .image-header img {
        width: 140px;
        height: auto;
    }

    .container {
        width: 90vw;
        height: 80vh;
    }

    .disclaimer-sec {
        width: 90vw;
    }

    .accept>.disclaimer-header>h2 {
        text-wrap: nowrap;
        font-size: 1.2rem;
    }

    #btn {
        width: 150px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        background-color: rgb(0, 0, 0);
        font-weight: 800;
        font-size: 0.9rem;
        border-radius: 1rem;
        transition: .3s;
    }
}

@media (max-width: 450px) {
    .disclaimer-content {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .disclaimer-content p {
        padding: 0.2rem 0rem;
    }

    .disclaimer-heading h1 {
        font-size: 1rem;
    }

    .disclaimer-header h2 {
        font-size: 1.1rem;
    }

    .image-header img {
        width: 120px;
        height: auto;
    }

    .container {
        width: 95vw;
        height: 80vh;
    }

    .disclaimer-sec {
        width: 95vw;
    }

    .accept>.disclaimer-header>h2 {
        text-wrap: nowrap;
        font-size: 1rem;
    }

    #btn {
        width: 120px;
        font-size: 0.8rem;
    }
}