.image-container {
  /*min-height: 100vh;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding-top: 40px;
  padding-bottom: 100px;
  background-attachment: fixed;*/
    min-height: calc(100vh - 50px);
    background-position: center center;
    background-size: cover;
    position: relative;
    padding-top: 40px;
    /* padding-bottom: 100px; */
    background-attachment: fixed;
}
.image-container:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .3;
}
.wizard-container {
  padding-top: 100px;
  z-index: 3;
}
.wizard-container .wizard-navigation {
  position: relative;
}

.card {
  background-color: #FFFFFF;
  padding: 10px 0;
  width: 100%;
  border-radius: 6px;
  color: rgba(0,0,0, 0.87);
  background: #fff;
}

.wizard-card {
  min-height: 410px;
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.wizard-card .picture-container {
  position: relative;
  cursor: pointer;
  text-align: center;
}
.wizard-card .picture {
  width: 106px;
  height: 106px;
  background-color: #999999;
  border: 4px solid #CCCCCC;
  color: #FFFFFF;
  border-radius: 50%;
  margin: 5px auto;
  overflow: hidden;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.wizard-card .picture:hover {
  border-color: #2ca8ff;
}
.wizard-card .moving-tab {
  position: absolute;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  top: -4px;
  left: 0px;
  border-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 500;
}
.wizard-card[data-color="purple"] .moving-tab {
  background-color: #ea1720;
  box-shadow: 0 16px 26px -10px rgba(234, 23, 32, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(234, 23, 32, 0.2);
}
.wizard-card .tab-content {
  min-height: 340px;
  padding: 0px 0px 0px 0px;
}
.wizard-card .wizard-footer {
  padding: 0 40px 20px;
}

.wizard-card .wizard-header {
  text-align: center;
  padding: 25px 20px 35px;
}
.wizard-card .wizard-header h5 {
  margin: 5px 0 0;
}
.wizard-card .wizard-header p{
  margin-top: 10px;
  margin-bottom: 0;
}
.wizard-card .nav-pills > li {
  text-align: center;
}
.wizard-card .btn {
  text-transform: uppercase;
}
.wizard-card .info-text {
  text-align: center;
  font-weight: 300;
  margin: 10px 0 30px;
}

.wizard-card .wizard-title {
  margin: 0;
}
.wizard-card .wizard-header figure{
  margin-bottom: 15px;
}
.wizard-card .form-input input,.wizard-card .form-input textarea{
  border: 1px solid #cdcdcc;
  padding-left: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.wizard-card .form-input input:focus{
  border-color: #8d8d8d !important;
}
.wizard-card .form-input textarea{
  height: 115px;
  width: 96%;
}
.wizard-card .picture input[type="file"] {
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0 !important;
  position: absolute;
  top: 0;
  width: 100%;
}
.wizard-card .picture-container {
  position: relative;
  cursor: pointer;
  text-align: center;
}
.wizard-card .picture {
  width: 100%;
  height: 52px;
  padding: 15px;
  background: #fff;
  color : #22264d;
  border: 1px solid #cdcdcc;
  border-radius: 0;
  margin:0;
  overflow: hidden;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.wizard-card .picture:hover{
  border-color:#8d8d8d;
}

/*            Navigation menu                */
.nav-pills {
  background-color: rgba(200, 200, 200, 0.2);
}
.nav-pills > li + li {
  margin-left: 0;
}
.nav-pills > li > a {
  border: 0 !important;
  border-radius: 0;
  line-height: 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  min-width: 100px;
  text-align: center;
  color: #555555 !important;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav-pills > li > a:hover,
.nav-pills > li > a:focus {
  background-color: inherit;
}
.nav-pills > li i {
  display: block;
  font-size: 30px;
  padding: 15px 0;
}

