.container .bar {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .bar li {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    border: 4px solid #EE1D23;
    font: normal normal 600 30px/25px Poppins;
    color: #FFFFFF;
    margin-right: 50px;
    position: relative;
}

.container .bar .active {
    background: #EE1D23;
}

.container .bar li:after {
    content: '';
    height: 4px;
    background: #EE1D23;
    width: 52px;
    display: block;
    position: absolute;
    top: 12px;
    left: 30px;
}

.container .bar li:last-child {
    margin-right: 0px;
}

.container .bar li:last-child::after {
    display: none;
}

.container .tabs {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
}

.container .tabs span a {
    font: normal normal 600 30px/30px Poppins;
    letter-spacing: 0px;
    color: #00264A;
    opacity: 0.7;
    margin: 0px 10px 20px 0px;
    text-decoration: none;
    cursor: pointer;
}

.container .tabs .active a {
    opacity: 1;
}

.container .tabs .active::after {
    content: '';
    height: 4px;
    background: #EE1D23;
    display: block;
    width: 60px;
    margin-top: 2px;
}

.personal_from {
    margin-top: 60px;
}

.personal_from label {
    font: normal normal normal 16px/16px Poppins;
    letter-spacing: 0px;
    color: #464A53;
    cursor: pointer;
}

.personal_from select,
.personal_from input {
    display: block;
    background: #6A707E00 0% 0% no-repeat padding-box;
    border: 1px solid #DDDFE1;
    width: 100%;
    height: 52px;
    padding: 10px;
    box-sizing: border-box;
}


/* select arrow changes */

.selectdiv {
    position: relative;
    /*Don't really need this just for demo styling*/
    width: 100%;
}


/*To remove button from IE11, thank you Matt */

select::-ms-expand {
    display: none;
}

.selectdiv:after {
    content: '>';
    font: 30px "Consolas", monospace;
    color: #333;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 11px;
    /*Adjust for position however you want*/
    top: 7px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    /*left line */
    position: absolute;
    pointer-events: none;
}

.selectdiv select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Add some styling */
    display: block;
    width: 100%;
    padding: 0px 24px;
    background-image: none;
    -ms-word-break: normal;
    word-break: normal;
}

form textarea {
    height: 80px;
    border: 1px solid #DDDFE1;
    resize: none;
    padding: 10px;
    width: 100%;
}

form textarea:placeholder {
    font: normal normal normal 16px/16px Poppins;
    color: #ABAFB3;
}

form .btns .next,
form .btns .save {
    width: 150px;
    height: 50px;
    background: #00264A 0% 0% no-repeat padding-box;
    border-radius: 25px;
    margin: auto;
    text-decoration: none;
    font: normal normal normal 25px/50px Poppins;
    color: #FAFAFA;
    text-align: center;
    border: none;
    margin-right: 20px;
    margin-top: 10px;
}

form .btns .later {
    width: 274px;
    height: 46px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    border-radius: 25px;
    font: normal normal normal 23px/25px Poppins;
    color: #010101;
    margin-right: 20px;
    margin-top: 10px;
}

form .btns {
    width: fit-content;
    margin: auto;
}

form .btns .per {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    color: #040404;
}


/* select arrow change end */

@media (max-width:1200px) {
    .container .tabs span a {
        font: normal normal 600 20px/20px Poppins;
    }
}

@media (max-width:767px) {
    .container .tabs span a {
        font: normal normal 600 16px/16px Poppins;
    }
    .container {
        max-width: 100% !important;
    }
}

@media(max-width:586px) {
    .container .tabs {
        justify-content: start;
    }
    .personal_from {
        margin-top: 20px;
    }
    .container .tabs span {
        margin-bottom: 20px;
        margin-right: 30px;
    }
}