.wrapper {
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner {
    /* min-width: 850px; */
    margin: auto;
    padding-top: 8px;
    border-radius: 5px;
    padding: 10px;
}

.inner h3 {
    text-transform: uppercase;
    font-size: 22px;
    font-family: Arial;
    font-weight: bold;
    /* text-align: center; */
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 2px;
}

form {
    /*   width: 100%;
    background-color: whitesmoke; */
    padding: 4px 20px 0px 20px;
}

.form-group {
    display: flex;
}

.form-group .form-wrapper {
    width: 50%;
}

.form-group .form-wrapper:first-child {
    margin-right: 20px;
}

.form-wrapper {
    margin-bottom: 17px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

.form-wrapper-0 {
    margin-bottom: 17px;
}

.form-control {
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.form-wrapper label {
    margin-bottom: 9px;
    display: block;
    font-size: 14px;
    font-family: Arial;
    font-weight: 600;
    text-transform: uppercase;
    color: black;
}

.form-wrapper-0 label {
    margin-bottom: 9px;
    display: block;
    font-size: 14px;
    font-family: Arial;
    font-weight: 600;
    text-transform: uppercase;
    color: black;
}

.form-control {
    border: 1px solid #ccc;
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    border-radius: 2px;
    font-family: Arial;
    background: none;
}

.form-control:focus {
    border: 1px solid #fd295d;
}

#buttons {
    border: none;
    width: 100%;
    height: 40px;
    margin: auto;
    margin-top: 29px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #000080;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-family: Arial;
    border-radius: 2px;
    overflow: hidden;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.btn-1 {
    border: none;
    border: 2px solid;
    background: none;
    border-color: #1c1a45;
    color: #1c1a45;
    width: 118px;
    height: 40px;
    margin: auto;
    margin-top: 29px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Arial;
    border-radius: 2px;
    overflow: hidden;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

#buttons:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1c1a45;
    color: white;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

#buttons:hover {
    color: white;
}

#buttons:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    color: white;
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.time {
    border: none;
    border: 2px solid;
    background: none;
    border-color: #1c1a45;
    color: #1c1a45;
    width: 170px;
    height: 40px;
    margin: auto;
    margin-top: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Arial;
    border-radius: 34px;
    overflow: hidden;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.time:hover,
.select-time {
    background-color: #f8ce60;
}

.btn-2 {
    flex-grow: 1;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.checkbox {
    position: relative;
}

.checkbox label {
    padding-left: 22px;
    cursor: pointer;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox input:checked~.checkmark:after {
    display: block;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 12px;
    width: 13px;
    border-radius: 2px;
    background-color: #ebebeb;
    border: 1px solid #ccc;
    font-family: Material-Design-Iconic-Font;
    color: #000;
    font-size: 10px;
    font-weight: bolder;
}

.checkmark:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    content: "\f26b";
}

.multi-step-bar {
    overflow: hidden;
    counter-reset: step;
    width: 100%;
    margin: 30px auto 30px;
}

.multi-step-bar li {
    width: 16.65% !important;
}

.multi-step-bar.update li {
    width: 49.65% !important;
}

@media (max-width: 767px) {
    .services {
        margin-bottom: 50px;
    }
    .mb-pt-8 {
        padding-top: 8px !important;
    }
    .inner {
        min-width: auto;
        background: none;
        padding-top: 0;
        padding-bottom: 0;
        /* margin: 0; */
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    form {
        /*     width: 80%; */
        padding-right: 15px;
        padding-left: 15px;
    }
    .form-control {
        padding: 0 6px;
    }
    /* .form-wrapper {
      justify-content: space-around;
    } */
    .wrapper {
        display: flex;
        overflow-y: hidden;
        min-height: 50vh;
    }
    .tab h3 {
        font-size: 18px;
    }
    .form-wrapper.mobile-block {
        display: block !important;
    }
    .form-wrapper.mobile-grid,
    .form-wrapper-0.mobile-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }
    .form-wrapper .mobile-small,
    .form-wrapper-0 .mobile-small {
        font-size: 12px !important;
    }
    #progressbar li {
        font-size: 11px !important;
    }
    /* .staff-article-card{
      width:100px!important;
      height:120px!important;
    } */
    .staff-article-card img {
        margin-top: 10px !important;
    }
    .form-wrapper label,
    .form-wrapper-0 label {
        text-transform: capitalize !important;
    }
    .form-wrapper-0 a {
        font-size: 13px !important;
    }
}

#first_tab {
    display: block;
}

.tab {
    width: 100%;
    display: none;
}

/* On mouse-over, add a grey background color */

.checkbox:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

.checkbox input:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.checkbox input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.checkbox .checkmark:after {
    left: 4px;
    top: -2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.area-1,
.area-2 {
    flex-grow: 1;
    flex-basis: 0;
}

.font-normal {
    font-weight: 400 !important;
    cursor: pointer;
}

.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.medium-low-font {
    font-size: 13px;
    font-style: italic;
    display: block;
}

.others-grid {
    display: flex;
    flex-basis: content;
    gap: 40px;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.file-upload-image {
    max-height: 200px;
    min-width: 300px;
    max-width: 320px;
    object-fit: cover;
    margin: auto;
    padding: 20px;
}

.image-upload-wrap {
    border: 2px solid #00007f;
    position: relative;
    width: 100%;
    border-radius: 5px;
}

.image-dropping,
.image-upload-wrap:hover {
    background-color: #00007f;
    border: 2px solid #ffffff;
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 100;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    padding: 20px 7px;
}

.schedule-btn {
    background-color: lightblue;
    border: 1px solid lightblue;
    border-radius: 10px;
    font-size: 14px;
    color: #00007f;
    padding: 2px 6px;
}

.low-medium-font {
    font-size: 14px;
    font-weight: 500;
}

.border-radius-10 {
    border-radius: 10px;
}

.services .item-1 {
    background-color: rgb(245, 197, 245);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-radius: 20px;
}

.services .item-2 {
    background-color: aliceblue;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-radius: 20px;
}

.services .item-3 {
    background-color: rgb(247, 247, 169);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-radius: 20px;
}

.services .item-4 {
    background-color: rgb(248, 184, 158);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-radius: 20px;
}

/* .staff-article-card img {
    max-width: 50px;
    margin-top: 34px;
} */

.staff-article-card .content p {
    font-size: 15px;
    color: #000;
    margin-top: 15px;
    font-weight: 600;
}

.list-1.staff-item {
    gap: 17px !important;
}

.footer-bottom {
    position: fixed;
    bottom: 5px;
    background-color: white;
    padding: 12px 8px 10px 8px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    display: block;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.footer-bottom a {
    padding: 0px 10px;
    color: #9b9cb0;
    text-align: center;
    font-family: 'DM Sans',sans-serif;
    font-size: 14px;
}
.footer-bottom i {
    margin: 0 5px;
    font-size: 17px;
}

.services {
    margin-bottom: 30px;
    margin-top: -55px;
    padding: 0 13px;
}

.earnings_div {
    background: linear-gradient(to right, rgb(78, 215, 169), rgb(57, 185, 70));
}



/* .profile_details{
    background-color: #000080;
    padding: 40px 20px 90px 20px !important;
    border-bottom-left-radius: 40px;
} */
.profile_details h3,.profile_pic h3 {
    font-family: 'DM Sans',sans-serif;
    color: white;
    font-size: 26px;
    letter-spacing: 0px;
    text-transform: capitalize;
}
.profile_details h6 {
    font-family: 'DM Sans',sans-serif;
    color: white;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.top_menu i {
    font-size: 25px;
}
.top_menu img {
    width: 25px;
}
.inner {
    margin-top: 0px;
    padding-top: 0px;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    content: '';
    background-color: #4cbf64;
    border-radius: 50%;
    right: 0;
    top: 0;
}
.profile_pic img,.profile_details img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto;
}
.profile_pic {
    text-align: center;
}
.profile_pic h3 {
    color: #000;
}
.profile_pic p{
    font-family: 'DM Sans',sans-serif;
}
.profile_details img{
    width: 60px;
    height: 60px;
}
.footer-bottom a span{
    font-size: 11px;
    transition: all 0.1s;
}
.footer-bottom a svg,.footer-bottom a svg{
    margin: 0 5px;
    font-size: 17px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    display: inline-block;
    padding: 4px;
    color: #000080;
    line-height: 27px;
    transition: all 0.1s;
    fill: #9b9cb0;
}

.footer-bottom a.active i,.footer-bottom a:hover i{
    background-color: #000080;
    border-radius: 50%;
    color: white;
    transition: all 0.1s;
}
.footer-bottom a.active svg,.footer-bottom a:hover svg{
    fill: #000080 !important;
}
.footer-bottom a.active span,.footer-bottom a:hover span{
    color: #000080 !important;
}
.eye-icon{
    position: absolute;
    right:10px;
    top:15px;
}
.profile_details {
    background-color: #000080;
    padding: 50px 20px 100px 20px !important;
    border-bottom-left-radius: 40px;
}
.staff-article-card {
    width: 150px;
    height: 175px;
    text-align: center;
    overflow: hidden;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 300ms;
}
.staff-article-card img {
    max-width: 50px;
    margin-top: 44px !important;
}