@font-face {
    font-family: 'Prosto One';
    src: url('./assets/fonts/ProstoOne-Regular.woff2') format('woff2'),
        url('./assets/fonts/ProstoOne-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Bold.woff2') format('woff2'),
        url('./assets/fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('./assets/fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Medium.woff2') format('woff2'),
        url('./assets/fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Regular.woff2') format('woff2'),
        url('./assets/fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/OpenSans-SemiBold.woff2') format('woff2'),
        url('./assets/fonts/OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/OpenSans-Bold.woff2') format('woff2'),
        url('./assets/fonts/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


h6,
h5,
h4,
h3,
h2,
h1,
.h6,
.h5,
.h4,
.h3,
.h2,
.h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #252525;
    display: inline-block;
}

h1,
.h1,
h2,
.h2 {
    margin-bottom: 60px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 32px;
    color: #252525;
}

@media (max-width: 991px) {

    h1,
    .h1,
    h2,
    .h2 {
        margin-bottom: 30px;
        font-size: 20px;
    }
}

h3,
.h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    color: #252525;
}

@media (max-width: 991px) {

    h3,
    .h3 {
        line-height: 110%;
    }
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-tr-none {
    text-transform: none;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-primary {
    color: #252525 !important;
}

.text-white {
    color: #fff;
}

.text-secondary {
    color: #fb6411 !important;
}

.text-del {
    text-decoration: line-through;
}

.font-primary {
    font-family: "Montserrat", sans-serif;
}

.font-secondary {
    font-family: "Open Sans", sans-serif;
}

.font-third {
    font-family: "Prosto One", sans-serif;
}

.fw-extralight {
    font-weight: 200;
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

.fw-medium {
    font-weight: 500;
}

.fw-normal {
    font-weight: normal;
}

.fst-italic {
    font-style: italic;
}

.text-right {
    text-align: right;
}