/*!
 * NSIA Assurance v1.0.1 (https://jarstechnologies.com/)
 * Copyright 2022 The JARS Technologies Authors
 */

@import url("https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900");
@import url('https://fonts.googleapis.com/css?family=Righteous:400,100,200,300,500,600,700,800,900');
@import url('keyboard.css');
@import url('button.css');
@import url('menu.css');
 :root {
    /*--primary: #0e225e;*/
    --primary: #e67900;
    /*--secondary: #cd9a2e;*/
     --secondary: #4a1e05;
    --tertiary: gray;
    --success: green;
    --warning: orange;
    --danger: red;
    --purple: purple;
    --dark: black;
    --light: #f3f3f4;
}

* {
    font-family: "Raleway", sans-serif!important;
}

body {
    /* background-color: var(--light); */
    background: url('../images/background7.avif');
    background-size: cover;
    /*font-size: 1.5vw !important;*/
    font-size: 1rem !important;
    height: 100vh;
    overflow: hidden;
}

header {
    /* background-color: var(--purple)!important; */
}

footer {
    background-color: transparent;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    color: #000000!important;
    box-shadow: 0 -2px 3px rgb(0 0 0 / 30%);
    font-size: 10px !important;
}

footer p {
    font-size: 1vw !important;
}

h1 {
    color: var(--secondary)!important;
    text-shadow: 1px 1px var(--primary)!important;
}

h2 {
    color: var(--primary)!important;
    text-shadow: 1px 1px var(--secondary)!important;
}

p {
    text-shadow: 1px 1px #ffffff;
    font-size: 1.5vw !important;
}

/*table {*/
/*    font-size: 1vw !important;*/
/*}*/

nav .btn {
    font-size: 1.2vw !important;
}

.info-important p {
    font-size: 1.2vw !important;
}

.invoice-price .invoice-price-left {
    font-size: 1.3vw !important;
}

.invoice-price .invoice-price-right {
    font-size: 1.5vw !important;
}

.bg-sharpe {
    background-image: linear-gradient(180deg, #163d3c11 0%, #fffdf7 100%);
    left: 0;
    padding: 115px 100px;
    position: absolute;
    top: 0;
    transform: skew(10deg, 13deg);
    width: 100%;
    border-radius: 10px;
}

.nsia-header {
    color: var(--primary)!important;
    /*text-shadow: 1px 1px var(--secondary)!important;*/
    border-bottom: 1px solid var(--secondary);
}

.nsia-button {
    background-color: #000000;
}


/*
 * ---------------------------------------
 * | TEXT COLOR
 * ---------------------------------------
 */

.color-primary {
    color: var(--primary)!important;
   
}

.color-secondary {
    /* color: var(--secondary)!important; */
     color: black!important;
}

.color-orange {
    color: var(--warning)!important;
}

.color-purple {
    color: var(--purple)!important;
}

/*
 * ---------------------------------------
 * | BACKGROUND COLOR
 * ---------------------------------------
 */

 .bg-color-primary {
    background-color: var(--primary)!important;
}

.bg-color-secondary {
    background-color: var(--secondary)!important;
}

.bg-color-orange {
    background-color: var(--warning)!important;
}

.bg-color-purple {
    background-color: var(--purple)!important;
}

.crossfade > figure {
    /*animation: imageAnimation 42s linear infinite 0s;*/
    animation: imageAnimation 18s linear infinite 0s;
    backface-visibility: hidden;
    background-size: cover;
    background-position: center center;
    color: transparent;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

/*
 * ---------------------------------------
 * | CROSSFADE
 * ---------------------------------------
 */
.crossfade > figure:nth-child(1) {
    background-image: url('../images/visuals/home1-atl.jpg');
}
.crossfade > figure:nth-child(2) {
    animation-delay: 6s;
    background-image: url('../images/visuals/home2-atl.jpeg');
}
.crossfade > figure:nth-child(3) {
    animation-delay: 12s;
    background-image: url('../images/visuals/home3-atl.jpg');
}
/*.crossfade > figure:nth-child(4) {*/
/*    animation-delay: 18s;*/
/*    background-image: url('../images/visuals/home4-atl.jpeg');*/
/*}*/
/*.crossfade > figure:nth-child(5) {*/
/*    animation-delay: 24s;*/
/*    background-image: url('../images/visuals/home5-atl.jpeg');*/
/*}*/

@keyframes imageAnimation {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
    }
    8% {
        animation-timing-function: ease-out;
        opacity: 1;
    }
    17% {
        opacity: 1
    }
    25% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

#heading {
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: normal;
}

#msform {
    text-align: center;
    position: relative;
}

#msform fieldset {
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

    /*stacking fieldsets above each other*/
    position: relative;
}

.form-card {
    text-align: left;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform input, #msform textarea, #msform select {
    padding: 8px 15px 8px 15px;
    border: none;
    border-bottom: 2px solid var(--primary);
    border-radius: 2.5em;
    margin-bottom: 25px;
    margin-top: 25px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    background-color: #fcfeff;
    /*font-size: 22px;*/
    font-size: 1.3vw !important;
    letter-spacing: 1px;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-bottom: 2px solid var(--secondary);
    outline-width: 0;
}

#msform label {
    /*font-size: 20px !important;*/
    font-size: 1.5vw !important;
}

#msform .form-label {
    left: 1rem !important;
}

/*Next Buttons*/
#msform .action-button, .action-button {
    /* width: 100px; */
    background: var(--secondary);
    font-size: 1vw;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    padding: 15px 10px;
    margin: 10px 0 10px 5px;
    float: right;
}

#msform .action-button:hover, #msform .action-button:focus, .action-button:hover, .action-button:focus {
    background-color: var(--secondary);
    color: var(--primary);
}

/*Previous Buttons*/
#msform .action-button-previous, .action-button-previous {
    /* width: 100px; */
    background: #616161;
    font-size: 1vw;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    padding: 14px 10px;
    margin: 10px 5px 10px 0;
    float: left;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus, .action-button-previous:hover, .action-button-previous:focus {
    background-color: #000000;
    color: white;
}

/*The background card*/
.card {
    z-index: 0;
    border: none;
    position: relative;
}

/*FieldSet headings*/
.fs-title {
    /*font-size: 25px;*/
    font-size: 1.5vw !important;
    color: black!important;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

.purple-text {
    color: var(--secondary);
    font-weight: normal;
}

/*Step Count*/
.steps {
    /*font-size: 25px;*/
    font-size: 1.5vw !important;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}


/*Fit image in bootstrap div*/
.fit-image{
    width: 100%;
    object-fit: cover;
}

/* about the button color */
#progressbar li.active:before, #progressbar li.active:after {
     background: #0e225e!important;
    color: white!important;

}
/* about the progressbar */
.progress-bar {
    background-color: var(--secondary);
    /* background-color: #0e225e!important; */
}
/* progress li strong */
#progressbar li strong {
    text-shadow: 0 0 0!important;
    font-size: 18px!important;
    
}
/* main container
.card-body {
     margin-top: 3rem!important;
} */