 .navbar {
    background-color: #3c8dbc;

}
.container {
  width: 100%;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: #0071bd;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 9px;
    width: 23.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: lightgrey;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgrey;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #ee0979;
    color: white;
}
#msform {
  
    position: relative;
    margin-top: 70px;
}

#msform fieldset {
   width: 80%;
    float: left;
    margin-top: 100px;
    margin-bottom: 100px;
    border-radius: 15px;
    /* background: #222430; */
    background: rgba(0, 0, 0, 0.28);
    padding: 2.5em;
    background-size: cover;
    -webkit-box-shadow: -6px 6px 3px 0px rgb(28, 43, 61);
    -moz-box-shadow: -6px 6px 3px 0px rgb(28, 43, 61);
    -o-box-shadow: -6px 6px 3px 0px rgb(28, 43, 61);
    -ms-box-shadow: -6px 6px 3px 0px rgb(28, 43, 61);
    /* box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.68); */
    box-shadow: 0 3px 18px 8px rgba(38, 24, 24, 0.25);
    text-align: left;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 80%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #3c8dbc;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}
label {
  display: block;
 
  
}
.previous:focus
{
  
}
/*buttons*/
#msform .btn-success {
    width: 100px;
    background: #3c8dbc;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
  
    padding: 10px 5px;
    margin: 10px 5px;
}
#msform .action-button {
  width: 100px;
    background: #27AE60;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 175px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow:  0 0 0 1px #27AE60;
}

#msform .action-button-previous {
    width: 100px;
    background: #27AE60;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}


 fieldset h2{color: #0071bd;font-family: Calibri;}
 .form-top-right {
    float: right;
    width: 25%;
   margin-top: 0px;
    font-size: 66px;
    color: black;
   
    text-align: right;
    opacity: 0.3;
}
.form-group{
margin-bottom: 15px;
}
button.btn {
 
 
    width: 100px;
  background: #27AE60;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 125px;
}
.btn {
 
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
  
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
