@font-face {
    font-family: 'Work Sans';
    src: url('./font/WorkSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./font/WorkSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('./font/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./font/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./font/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Unbounded';
    src: url('./font/Unbounded-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Poppins';
    font-weight: 600;
}

h1,
h2,
h3,
h5,
h6 {
    font-family: 'Unbounded';
    margin: 0;
    font-weight: bold;
    color: white;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4,
.big-label {
    font-family: 'Poppins';
    margin: 0;
    font-weight: bold;
    color: white;
    font-size: 21px;
}

h5 {
    font-size: 18px;
}

p {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    color: white;
}

a {
    text-decoration: none;
    color: unset;
    font-family: 'Poppins';
    font-weight: 600 !important;
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 21px;
    }

    h4,
    .big-label {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }
}