@import url("./fonts.css");

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

body {
    font-family: Aeonik;
    font-size: 18px;
    overflow-x: hidden;
}

.policy-heading {
    font-weight: 700;
    font-size: 45px;
    line-height: 48px;
    letter-spacing: 1%;

}

.section-padding {
    padding: 20px 40px;
}

.section-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28.8px;
    letter-spacing: 1%;
}

.section-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 3%;
}

@media only screen and (max-width: 600px) {
    .policy-heading {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-text {
        font-size: 16px;
    }

    .section-padding {
        padding: 5px 10px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 1000px) {
    .policy-heading {
        font-size: 32px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-text {
        font-size: 18px;
    }

    .section-padding {
        padding: 10px 20px;
    }
}

@media only screen and (min-width: 2000px) {
    .policy-heading {
        font-size: 72px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-text {
        font-size: 24px;
    }

    .section-padding {
        padding: 20px 40px;
    }
}