html,
body,
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: "Gutter";
    src: url("../fonts/gutter/Gutter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/static/Inter_18pt-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/static/Inter_18pt-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    /* Extra-bold */
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/static/Inter_18pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/static/Inter_18pt-SemiBold.ttf") format("truetype");
    font-weight: 600;
    /* Semi-bold weight */
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/static/Inter_18pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/static/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/static/Inter_18pt-Light.ttf") format("truetype");
    font-weight: 300;
    /* Light weight */
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/static/Inter_18pt-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/static/Inter_18pt-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

/* -Montserrat- */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/static/Montserrat-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/* Mont Heavy */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/static/Montserrat-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    /* Extra-bold */
    font-style: normal;
}

/* Mont Bold */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/static/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    /* Semi-bold weight */
    font-style: normal;
}

/* Mont Book */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/static/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

/* Mont Regular */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/static/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    /* Regular weight */
    font-style: normal;
}

/* Mont Light */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/static/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    /* Light weight */
    font-style: normal;
}

/* Mont ExtraLight */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/static/Montserrat-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/static/Montserrat-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}



:root {
    --heading-font: "Gutter";
    --paragraph-font: "Inter";
    --third-font: "Montserrat";
    /* --: #fff; */
    --white-color: #ffffff;
    --black-color: #000000;
    --green-color: #258B6F;
}

.bg-color-black {
    background-color: var(--black-color);
}

.bg-color-white {
    background-color: var(--white-color);
}

.txt-color-white {
    color: var(--white-color);
}

.txt-color-black {
    color: var(--black-color);
}

.padding-all-4rem {
    padding: 6rem;
}

.heading-content h2 {
    font: 400 2.9375rem var(--heading-font);
    line-height: 3.25rem;
    text-align: center;
}

.heading-content p {
    font: 400 .9375rem var(--paragraph-font);
    letter-spacing: .5px;
    line-height: 1.375rem;
}