/* latin */
@font-face {
    font-family: 'Calibri';
    font-style: italic;
    font-weight: 400;
    src: url(fonts/Calibri-italic-400.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
    font-family: 'Calibri';
    font-style: italic;
    font-weight: 700;
    src: url(fonts/Calibri-italic-700.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
    font-family: 'Calibri';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/Calibri-normal-400.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
    font-family: 'Calibri';
    font-style: normal;
    font-weight: 700;
    src: url(fonts/Calibri-normal-700.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root{
    --black1: rgb(0, 0, 0);
    --gray1: rgb(218,220,223);
    --gray2: rgb(171,169,169);
    --gray3: rgb(130, 128, 128);
    --red1: rgb(117, 62, 60);
    --pagePadding: 20px;
    --redWithOpacity: rgba(117, 26, 23, 0.9);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a2a2a2;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #a2a2a2;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #a2a2a2;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Calibri', Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}
.center-y{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.center-x{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}
.center-x-with-flex-column{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.center-y-with-flex-column{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.center{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.center-with-flex-column{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.d-flex{
    display: flex;
    display: -webkit-flex;
}
.d-flex-with-column{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.my-font-size-extra-large{
    font-size: 50px;
}
.my-font-size-large{
    font-size: 40px;
}
.my-font-size-medium-large{
    font-size: 34px;
}
.my-font-size-medium{
    font-size: 26px;
}
.my-font-size-small{
    font-size: 22px;
}
.my-font-size-regular{
    font-size: 16px;
}
.my-font-size-medium-small{
    font-size: 14px;
}
.my-font-size-extra-small{
    font-size: 12px;
}
.my-font-size-mini{
    font-size: 10px;
}
.my-font-size-extra-mini{
    font-size: 8px;
}
.text-white{
    color: white;
}
.text-gray{
    color: #a2a2a2;
}
.text-dark-gray{
    color: #636363;
}
.text-custom-blue{
    color: rgb(91,160,252);
}
.text-custom-green{
    color: rgb(109,193,156);
}
.text-black{
    color: #292929;
}
.font-weight-700{
    font-weight: 700;
}
.font-weight-400{
    font-weight: 400;
}
.font-weight-500{
    font-weight: 500;
}
.font-weight-300{
    font-weight: 300;
}


.text-center{
    text-align: center;
}
.text-error{
    color: red;
}


.w-100{
    width: 100%;
}
.h-100{
    height: 100%;
}

.text-decoration-none{
    text-decoration: none;
}

@media screen and (min-width: 0px) and (max-width: 575px) {
    body .my-font-size-extra-large{
        font-size: 30px;
    }
    body .my-font-size-large {
        font-size: 26px;
    }
    body .my-font-size-medium-large{
        font-size: 24px;
    }
    body .my-font-size-medium{
        font-size: 20px;
    }
    body .my-font-size-small{
        font-size: 18px;
    }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
    body .my-font-size-extra-large{
        font-size: 34px;
    }
    body .my-font-size-large{
        font-size: 28px;
    }
    body .my-font-size-medium-large{
        font-size: 26px;
    }
    body .my-font-size-medium{
        font-size: 22px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    body .my-font-size-extra-large{
        font-size: 40px;
    }
    body .my-font-size-large{
        font-size: 32px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    body .my-font-size-extra-large{
        font-size: 45px;
    }
}