button {
    border: none;
    background-color: var(--btn);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    /* box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.202); */
}

button:active {
    transform: scale(0.95);
}

button:hover {
    /* background: linear-gradient(45deg, #04729f, white); */
    background-color: var(--bth);
}


a {
    text-decoration: none;
    color: var(--font);
}

a:hover {
    color: var(--h1c);
}

.flxend {
    justify-content: flex-end;
}

.checkbox {
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    z-index: 2;
}

.checkbox img {
    width: 16px;
}

.headlineCont {
    display: flex;
    align-items: flex-start;
    gap: clamp(8px, 2vw, 16px);
}

.headlineCont img {
    width: 32px;
}

.headImage {
    width: clamp(34px, 2vw, 40px) !important;


}

.legalContent {
    width: 100%;
    max-width: 800px;
    padding: 0 10px;
}

.legalContent h4 {
    margin-block: 32px 8px;

}

.legalContent h1 {
    margin-block: 32px 32px;

}

.legalContent p,
.legalContent a {
    color: var(--font-lg);
}

.ctaCont {
    width: 100%;
    display: flex;
    margin-top: clamp(0px, 4vw, 100px);
}

.boxCont {
    width: 100%;
    /* min-height: fit-content; */
    display: flex;
    justify-content: space-between;
    gap: clamp(56px, 3vw, 112px);
    box-shadow: var(--shdw);
    padding: clamp(24px, 3vw, 56px) clamp(16px, 3vw, 56px);
    border-radius: var(--radius);
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.boxSubcont {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: clamp(56px, 3vw, 112px);
}

.boxHeadline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.boxImage {
    width: clamp(300px, 40vw, 600px);
    height: clamp(250px, 40vw, 450px);
}

.textCont {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}





@media(max-width: 1020px) {
    .boxSubcont {
        /* flex-direction: column;
        align-items: center; */
        margin-bottom: 180px;

    }

    /* .reverse {
        flex-direction: column-reverse !important;
    } */
    .reverse {
        right: unset !important;
        left: 12px !important;
    }

    .flxend {
        justify-content: flex-start;
    }

    .boxImage {
        position: absolute;
        bottom: 24px;
        right: 12px;
        width: 160px;
        height: 160px;
        z-index: -1;
    }
}