@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

a:not([href]):not([class]) {
    color: #ff9dc6 !important;
}


body {
    background-color: #fdfaf5;
}

.headingColor {
    color: var(--secondary2);
}

.textColor {
    color: var(--tertiary1);
}

.backgroundColor {
    background-color: #fdfaf5 !important;
}

h1 {
    margin: 0;
    margin-top: 16px;
    color: var(--secondary2);
    font-size: 60px;
    line-height: 1.36;
    font-weight: 600;
}

h2 {
    margin: 0;
    font-size: 52px;
    line-height: 66px;
    font-weight: 600;
    color: var(--secondary2);
}

h3 {
    margin: 0;
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    color: var(--secondary2);
}

h4 {
    margin: 0;
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
    color: var(--secondary2);
}

h5 {
    margin: 0;
    color: #263238;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

h6 {
    margin: 0;
    color: var(--secondary2);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

p {
    margin: 0;
    color: var(--tertiary1);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

a {}

button {
    color: white;
    background-color: var(--secondary2);
    border: none;
    border-radius: 60px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}


@media only screen and (max-width: 576px) {
    h1 {
        margin-top: 8px;
        font-size: 24px;
        line-height: 1.2;
    }

    h2 {
        font-size: 26px;
        line-height: 38px;
    }

    h3 {
        font-size: 26px;
        line-height: 32px;
    }

    h4 {
        font-size: 32px;
        line-height: 44px;
    }

    h5 {
        font-size: 14px;
        line-height: 17.5px;
    }

    h6 {
        font-size: 12px;
        line-height: 11.6px;
    }

    p {
        font-size: 14px;
        line-height: 17.4px;
    }

    a {}
}

@media only screen and (min-width: 576px) and (max-width: 992px) {
    h1 {
        margin-top: 16px;
        font-size: 36px;
        line-height: 1.2;
    }

    h2 {
        font-size: 32px;
        line-height: 44px;
    }

    h3 {
        font-size: 32px;
        line-height: 34.8px;
    }

    h4 {
        font-size: 24px;
        line-height: 44px;
    }

    h5 {
        font-size: 14px;
        line-height: 17.5px;
    }

    h6 {
        font-size: 12px;
        line-height: 11.6px;
    }

    p {
        font-size: 14px;
        line-height: 17.4px;
    }

    a {}
}