@charset "UTF-8";

/*-------------------------------------------*\
  Typography
\*-------------------------------------------*/

@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO-Regular.eot');
    src: url('../fonts/FiraGO-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FiraGO-Regular.woff2') format('woff2'),
        url('../fonts/FiraGO-Regular.woff') format('woff'),
        url('../fonts/FiraGO-Regular.svg#FiraGO-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FiraGOUPP';
    src: url('../fonts/FiraGOUPP-Regular.eot');
    src: url('../fonts/FiraGOUPP-Regular.eot?#iefix')
            format('embedded-opentype'),
        url('../fonts/FiraGOUPP-Regular.woff2') format('woff2'),
        url('../fonts/FiraGOUPP-Regular.woff') format('woff'),
        url('../fonts/FiraGOUPP-Regular.svg#FiraGOUPP-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TBC Contractica';
    src: url('../font/TBCContractica-Regular.eot');
    src: url('../font/TBCContractica-Regular.eot?#iefix') format('embedded-opentype'),
    url('../font/TBCContractica-Regular.woff2') format('woff2'),
    url('../font/TBCContractica-Regular.woff') format('woff'),
    url('../font/TBCContractica-Regular.ttf') format('truetype'),
    url('../font/TBCContractica-Regular.svg#TBCContractica-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html {
    height: 100%;
    box-sizing: border-box;

}

*,
*:before,
*:after {
    box-sizing: inherit;
}

::selection {
    background: #1f242b;
    color: #fff;
}

body {
    font-family: 'TBC Contractica', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.btn-xs {
    padding: 0.15rem 0.5rem;
    font-size: 0.875rem;
}

/*-------------------------------------------*\
    Layout
\*-------------------------------------------*/
nav {
    flex: 0 0 auto;
}

main {
    flex: 1 0 auto;
}

footer {
    background: rgba(225, 225, 225, 0.49);
    padding: 10px;

    flex: 0 0 auto;
}

/*-------------------------------------------*\
  Text
\*-------------------------------------------*/
a {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #ee312e;
}

a:hover,
a:active,
a:focus {
    outline: 0;
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'FiraGOUPP', sans-serif;
    font-size: 24px;
    /*font-weight: bold;*/
}

nav,
.btn,
.card-header {
    font-family: 'FiraGOUPP', sans-serif;
}

/*-------------------------------------------*\
    Custom Styles
\*-------------------------------------------*/
.bg-mziuri {
    background-color: #fcca46 !important;
}

.logo {
    width: 100px;
}

.no-javascript {
    opacity: 0.9; /* set the opacity to 50% */
    background-color: #d0fffd;
    align-items: center;
    bottom: 0;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    font-family: 'FiraGO ExtraLight', sans-serif;
    font-weight: bold;
    justify-content: center;
    left: 0;
    padding: 20vw;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
}

.firago-up {
}

/*-------------------------------------------*\
    Steps
\*-------------------------------------------*/
.stepwizard-step p {
    margin-top: 10px;
}

.process-row {
    display: table-row;
}

.process {
    display: table;
    width: 100%;
    position: relative;
}

.process-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.process-row:before {
    top: 50px;
    bottom: 0;
    position: absolute;
    content: ' ';
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}

.process-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.process-step p {
    margin-top: 10px;
}

.btn-circle {
    width: 100px;
    height: 100px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}

@media only screen and (max-width: 800px) {
    /* Force table to not be like tables anymore */
    .nmt table,
    .nmt thead,
    .nmt tbody,
    .nmt th,
    .nmt td,
    .nmt tr {
        display: block;
        font-size: 14px;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .nmt thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .nmt tr {
        border: 1px solid #ccc;
        margin-bottom: 5px;
    }

    .nmt td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

    .nmt td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        /*font-weight: bold;*/
    }

    /*
    Label the data
    */
    .nmt td:before {
        content: attr(data-title);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.blink {
    animation: blink 1.5s ease-in-out infinite;
}

.registration-header {
    background-color: #243d4d;
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.btn-mziuri-primary{
   background-color: #243d4d;
    color: white;

}

.btn-mziuri-primary:hover{
    background-color: black;
    color: white;
}



