body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

.container {
    max-width: 960px !important;
}


.header {
    background: url(../images/header.jpg) no-repeat;
    width: 100%;
    background-position: top center;
    min-height: 383px;
    background-size: cover;
}
.header .title {
    margin-top: 9px;
}
.title-main {
    font-size:1.2rem;
    font-weight:bold;
}
.header-title {
    padding-left: 8px;
    color: #002651;
}

.header-text {
    color: #002651;
    width: 50%;
    margin-top: 30px;
}

.font-bold {
    font-weight: bold;
}
.feature-section {
    width: 825px;
    margin: 0 auto;
}
.feature-box {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(43, 90, 160, 0.35);
    padding: 20px;
    display:inline-block;
    margin-bottom:15px;
    text-align: center;
    max-height: 170px;
    min-height: 170px;
}
.feature-icon i{
    font-size:2.5rem;
    color:#cc1d21;
}
.feature-text{
    color: #002651;
    padding-top: 15px;
}
.main-form {
    box-shadow: 0 0 10px rgba(43, 90, 160, 0.35);
    padding: 15px 50px;
    border-radius: 5px;
    width: 825px;
    margin: 0 auto;
}

.form-steper-title {
    color: #002651;
    font-weight: 500;
    text-align: center;
}

.form-progressbar {
    text-align: center;
    padding-top: 40px;
    position: relative;
    width: 500px;
    margin: 0 auto;

}

.form-progressbar .steps-line {
    height: 0px;
    width: 500px;
    border-bottom-style: solid;
    border-bottom-width: 6px;
    border-bottom-color: #edeef2;
    position: absolute;
    margin-top: 26px;
}

.form-nav-steps {
    display: flex;
    list-style: none;
    padding: 0;
    margin: initial;
    justify-content: space-between;
    z-index: 1;
    margin-bottom: 30px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 20px;
}

.form-nav-steps .step {
    background-color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
}

.form-nav-steps .step span {
    position: relative;
    top: 12px;
    font-size: 1.5rem;
    color: #2b5aa0;
    font-weight: 600;
}

.form-nav-steps .step-1 {
    background-color: #002651;
}
.form-nav-steps .step-1 span {
    color:#fff;
}
.form-nav-steps .step-2 {
    background-color: #fff;
}

.form-nav-steps .step-3 {
    background-color: #cc1d21;
}

.form-nav-steps .step-3 span {
    color: #fff;
}



.form-nav-steps .step.passed:before {
    content: "";
    position: absolute;
    width: 161px;
    height: 6px;
    background-color: #cc1d21;
    top: 26px;
    right: -161px;
}

.form-nav-steps .step.active {

}

.form-nav-steps .step.active span {
    color: #fff !important;
}

.form-nav-steps .step.active:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 6px;
    background-color: #f3b5b8;
    top: 26px;
    right: -70px;
}

.form-nav-steps .step:last-child:after {
    display: none;
}
.form-steps {
    display:none;
}
.form-steps.active{
    display:block;
}

.main-form label {
    color: #002651;
}

.form-divider {
    margin-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 32px;
}

.main-form select {
    -webkit-appearance:none; /* remove the strong OSX influence from Webkit */
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    height: 50px;
    font-size: 14px;
}

.group-200 {
    width: 190px;
}

.inputGroup {
    display: block;
    margin: 5px 0;
    position: relative;
}

.inputGroup label {
    padding: 12px 30px;
    font-size: 12px;
    width: 100%;
    display: block;
    text-align: left;
    color: #3C454C;
    cursor: pointer;
    position: relative;
    z-index: 2;
    -webkit-transition: color 200ms ease-in;
    transition: color 200ms ease-in;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 25px;
}

.inputGroup label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: #cc1d21;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.inputGroup label:after {
    width: 25px;
    height: 25px;
    content: '';
    border: 2px solid #ece9e9;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: -1px 0px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label {
    color: #fff;
}

.inputGroup input:checked ~ label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.inputGroup input:checked ~ label:after {
    background-color: #cc1d21;
    border-color: #cc1d21;
}

.inputGroup input {
    width: 32px;
    height: 32px;
    -webkit-box-ordinal-group: 2;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

.btn-nextstep {
    background-color: #cc1d21;
    padding: 10px 40px;
    border-radius: 25px;
    color: #fff;
}
.form-control {
    background-color: #e9ecef;
    border: 1px solid #e9ecef;
}
.btn-nextstep i {
    padding-left: 30px;
}
.connexion{
    padding: 0 150px;
}
.etape_check {
    color: #676767;
}
.btn-step2 {
    background-color: #cc1d21;
    padding: 10px 40px;
    border-radius: 25px;
    color: #fff;
    border: 0;
    margin-top:10px;
}
.btn-step2:disabled {
    opacity: .65;
}
.finish-text {
    color: #002651;
}

.footer {
    text-align: center;
    margin-bottom: 10px;
    font-size: 13px;
}




.form-slide {
    background-color: white;
    width: 400px;
    display: inline-block;
    position: absolute;
    right: 9.4%;
    padding: 0.5rem 3.5rem;
    top: -2%;

    box-shadow: 1px 1px 5px 1px #00000040;
    z-index: 99;
    height: fit-content;
}
.form-slide-contact {
    position:relative!important;
    right:0!important;
    left:0!important;
    margin-bottom: 30px;
}
.form-slide select.form-control {
    border: 0;
    border-radius: 0;
    color: #404040;
    font-size: 1rem;
    font-weight: 500;
    -webkit-appearance: none;
    background: url(../images/down.png) no-repeat right #E5E5E5;
    background-position-x: 95%;
}

.form-slide:before {
    content: "";
    background-image: url(../images/nick1.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 1.1rem;
    height: 1.1rem;
    position: absolute;
    right: -1.1rem;
}

.form-slide .logo {
    width: 11rem;
    display: block;
    margin: auto;
}

.form-slide .head {
    background-image: url(../images/nickbg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    text-align: center;
    padding: 1rem;
    padding-top: 0.8rem;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: -20%;
    margin-right: -20%;
    margin-bottom: .5rem;
}

.form-slide h4 {
    color: #2F78B0;
    font-size: 1.15rem;
    font-weight: 500;
}

.form-slide label {
    width: 100%;
    display: block;
    margin-top: .8rem;
    color: #404040;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-slide select.form-control {
    border: 0;
    border-radius: 0;
    color: #404040;
    font-size: 1rem;
    font-weight: 500;
    -webkit-appearance: none;
    background: url(../images/down.png) no-repeat right #E5E5E5;
    background-position-x: 95%;
}

.form-slide .label {
    display: inline-block;
    width: 46%;
    position: relative;
    cursor: pointer;
    margin-top: 0;
    float: left;
    margin-right: 10px;
}

.form-slide .label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-slide .label .checkmark {
    background-color: #E5E5E5;
    width: 100%;
    padding: .35rem .6rem;
    text-align: center;
    font-size: 0.95rem;
    display: inline-block;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
}

.form-slide .label .checkmark:hover {
    background-color: #264896;
    color: white;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

.form-slide .label input:checked ~ .checkmark {
    background-color: #264896;
    color: white;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

.form-slide .progress {
    height: .8rem;
    border-radius: 0;
}

.form-slide .progress .progress-bar {
    background-color: #264896;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

.form-slide p {
    color: #404040;
    font-size: 1rem;
    font-weight: 500;
    margin-top: .25rem;
}

.form-slide .btn.btn_submit {
    background-color: #E31F25;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: .5rem 1rem;
    margin-top: .5rem;
    display: inline-block;
    width: 100%;
    border: .1rem solid #E31F25;
    border-radius: 0;
    text-transform: uppercase;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
}

.form-slide .form-step-2 .step-2-prev, .form-slide .form-step-2 .step-2-next {
    width: 48%;
    float: left;
}

.form-slide .form-step-2 .step-2-next {
    float: right;
}

.form-slide .btn.btn_submit:hover, .form-slide .btn.btn_submit:focus {
    background-color: white;
    color: #E31F25;
}

.form-slide  .form-step-3 input {
    background: #E5E5E5;
    border: 0;
    width: 100%;
    min-height: 2rem;
    padding: .2rem 1rem;
    border: 1px solid #d6d6d6;
}
.form-slide  .form-step-3 textarea {
    background: #E5E5E5;
    border: 0;
    width: 100%;
    min-height: 2rem;
    padding: .2rem 1rem;
    border: 1px solid #d6d6d6;
}
.form-slide  .form-step-2 input {
    background: #E5E5E5;
    border: 0;
    width: 100%;
    min-height: 2rem;
    padding: .2rem 1rem;
    border: 1px solid #d6d6d6;
}


/***Media Query***/
@media (max-width: 992px) {
    .main-form {
        width:100%;
    }
    .form-progressbar {
        width:100%;
    }
    .form-progressbar .steps-line {
        width:100%;
    }
    .feature-section {
        width:100%;
    }
    .feature-box {
        width: 100%;
        height: auto;
        margin-bottom:15px;
    }
    .container {
        max-width:100%!important;
    }
    .header-text {
        width: 100%;
        font-weight: 600;
        font-size: 1.2rem;
    }
    .connexion {
        padding:unset;
    }
    .form-nav-steps .step.passed:before {
        content: "";
        position: absolute;
        width: 92px;
        height: 6px;
        background-color: #cc1d21;
        top: 26px;
        right: -92px;
    }

}

@media (max-width: 576px) {
    .non-logo {
        display:block!important;
    }
}