.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}


.bg-gray {
    background: #f7f7f7;
}

.button {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    width: 146px;
    height: 54px;
    display: flex;
    cursor: pointer;
    background: #00ab4d;
    font-family: 'proximanova-regular';
    border: 1px solid #00ab4d;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.button:hover {
    background: #000;
    border-color: #000;
}

select {
    -ms-progress-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/arrow-down.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.input-fld {
    width: 100%;
    background-color: #ffffff;
    height: 52px;
    border-radius: 6px;
    border: none;
    padding-left: 25px;
    padding-right: 15px;
}

/* ----------------------------------------------------------------- */

.calculator {
    max-width: 912px;
    margin: 0 auto;
    -webkit-border-radius: 40px 40px 70px 70px;
    -moz-border-radius: 40px 40px 70px 70px;
    border-radius: 40px 40px 70px 70px;
    overflow: hidden;
}

.calculator-header {
    background: #046d95;
    padding: 45px 40px 30px 40px;
}

.calculator-form {
    display: flex;
    row-gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.calculator-form>* {
    width: 100%;
}

.calculator-form .w-50 {
    width: 49%;
}


.calculator-form label {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 7px;
    display: block;
}

.calculator-body {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #389fc7;
}

.calculator-body .left-side {
    max-width: 290px;
    background: #008cc1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-body .left-side ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 50px 0 70px 0;
    justify-content: center;
}

.calculator-body .left-side li {
    background: #005372;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    height: 84px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    min-width: 212px;
    transition: background .35s ease-in-out;
}

.calculator-body .left-side li:hover {
    background: #056387;
}

.calculator-body .left-side li a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.calculator-body .right-side {
    flex-grow: 1;
    display: flex;
    background: #00a9e9;
}

.calculator-body .right-side>ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.calculator-body .right-side ul>li {
    width: 100%;
    height: 20%;
    color: #ffffff;
    background: #0378a4;
    display: flex;
    font-size: 26px;
}

.calculator-body .right-side ul>li+li {
    border-left: none !important;
}

.calculator-body .right-side ul>li ul {
    display: flex;
    width: 100%;
}

.calculator-body .right-side li:first-child ul li,
.calculator-body .right-side li:last-child li:first-child,
.calculator-body .right-side li:last-child {
    background: #046d95;
}

.calculator-body .right-side ul>li li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 100%;
    border-bottom: 1px solid #008cc0;
    border-right: 1px solid #008cc0;
    transition: background .35s ease-in-out;
}

.calculator-body .right-side ul>li li a {
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-body .right-side ul>li:hover {
    background: #02729d;
}

.calculator-body .right-side ul>li:last-child .grd-bg {
    --c1: #419855;
    --c2: #9ac682;
    --c3: #00b5ef;
    flex-grow: 1;
    border: none;
    background: linear-gradient(90deg, var(--c1, #419855), var(--c2, #9ac682) 41%, var(--c3, #00b5ef)) var(--x, 0)/ 120%;
    transition: background .35s ease-in-out;
}

.calculator-body .right-side ul>li:last-child .grd-bg:hover {
    --x: 100%;
}

.calculator-body .right-side li:first-child ul li:hover,
.calculator-body .right-side li:last-child li:first-child:hover,
.calculator-body .right-side li:last-child:hover {
    background: #005c7e;
}

/* ----------------------------------------------------------------- */

.upload-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.upload-form .input-fld {
    background-color: #ffffff;
    border: 1px solid #dbdbdb;
    padding-left: 25px;
    width: 100%;
    font-family: 'proximanova-regular';
    font-size: 15px;
    color: #000;
    resize: none;
}

.error {
    color: #fd2e2e;
    font-size: 13px;
    padding: 4px;
}

.upload-form .input-fld.w-50 {
    width: 49%;
}

.upload-form .input-fld:not(textarea) {
    height: 54px;
}

.upload-form textarea.input-fld {
    height: 160px;
    padding-top: 20px;
}

.upload-form .capcha {
    width: 100%;
}

.upload-form .capcha span {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
}

.upload-form .capcha-inner {
    display: flex;
    align-items: center;
}

.upload-form .capcha-inner input {
    width: 198px;
    height: 58px;
    padding: 10px;
}

.upload-form .capcha-inner img {
    margin-left: 10px;
}

/* ----------------------------------------------------------------- */

.empower-content h2 {
    font-size: 45px;
    margin: 0 0 20px 0;
    font-family: 'optima_lt_stdmedium';
}

/* ----------------------------------------------------------------- */


.resume-main-list {
    margin-top: 30px;
}

.resume-item {
    width: 100%;
    padding: 40px 0;
    border-bottom: 1px solid #e8e9ec;
}

.resume-item:last-child {
    border-bottom: none !important;
}


.resume-item h4 {
    font-size: 26px;
    color: #192414;
    line-height: 1;
    margin: 0 0 10px 0;
    font-family: 'optima_lt_stdmedium';
    float: left;
    width: 100%;
}

.resume-item p {
    color: rgba(0, 0, 0, 0.5);
    position: relative;
    padding-right: 150px;
    margin: 0;
    min-height: 24px;
}

.resume-item span {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 18px;
}

.resume-item span a {
    color: #000;
    font-weight: 500;
    position: relative;
    padding-right: 20px;
}

.resume-item span a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    width: 8px;
    height: 11px;
    background: url(../images/arrow-down-c.png) no-repeat;
}

.resume-item span a::before {
    content: "";
    position: absolute;
    background: #bbc0c4;
    left: 0;
    bottom: -2px;
    width: 84%;
    height: 1px;
}

/* ----------------------------------------------------------------- */

.resum-popup .accordion-item>span i {
    float: right;
    margin-top: 2px;
}

/* .resum-popup .accordion-item:first-child {
    border-top: solid 1px #7f7f7f;
} */

.resum-popup .accordion-item>a.active {
    width: 10px;
    height: 2px;
    background-color: #3399cc;
}

.resum-popup .accordion-content {
    display: none;
    padding-bottom: 50px;
}

.resum-popup .accordion-content p {
    margin: 15px 0 0 0;
}

.resum-popup .accordion-item {
    border-bottom: none;
}




.resum-popup .accordion-title {
    font-size: 17px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    cursor: pointer;
    font-weight: normal;
    display: flex;
    flex-wrap: wrap;
    color: #4f4f4f;
    align-items: center;
    font-family: 'optima_lt_stdmedium';
    padding: 15px;
    border-bottom: none;
    background: #ebebeb;
    margin-bottom: 25px;
    border-radius: 6px;
}

.resum-popup .accordion-title.active {
    color: var(--color-primary);
}

.resum-popup .accordion-title i {
    margin-left: auto;
    position: absolute;
    right: 14px;
    top: 18px;
}

.resum-popup .accordion-title .icon-plus,
.resum-popup .accordion-title .icon-minus {
    width: 13px;
    height: 8px;
    background-color: var(--color-primary);
}

.resum-popup .accordion-title .icon-plus::after {
    content: "";
    position: absolute;
    right: calc(50% - 2px);
    height: 20px;
    width: 4px;
    background-color: var(--color-primary);
    top: calc(50% - 10px);
}

.resum-popup .accordion-title:hover {
    color: var(--color-primary);
}

.resum-popup .accordion-title .number-span {
    position: absolute;
    left: 0;
    top: 0;
}

.resum-popup .accordion-item {
    padding: 0;
}

.resum-popup .accordion-item:first-child {
    border: none;
}

.resum-popup {
    width: 100%;
    padding: 90px 0px 80px;
}

.resum-popup.fancybox__content {
    padding: 65px;
}

.resum-popup h2 {
    font-size: 32px;
    font-family: 'optima_lt_stdmedium';
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0
}

.resum-popup .input-fld {
    border: 1px solid #dddddd;
    border-radius: 0;
    font-size: 14px;
    height: 48px;
    padding: 0px 20px;
    color: #000;
}

.resum-popup .accordion-content form {
    row-gap: 20px;
}

.career-bottom_sec {
    padding: 80px 0px 60px;
    margin-top: 40px;
}

.career-bottom_sec .second-title {
    color: #fff;
}

.career-bottom_sec p {
    color: #fff;
}

.career-bottom_sec .btn-main {
    background-color: #fff;
    color: #3a3636;
    text-transform: none;
    font-size: 16px;
    cursor: pointer;
}

.career-bottom_sec .btn-main:hover {
    background-color: #000;
    color: #fff;
}

.career-form-one-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.career-form-group {
    width: 49%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.career-text-country {
    width: 25%;
}

.career-text-country-new {
    width: 36%;
}

.career-text-number {
    width: 72%;
}

.resum-popup .btn-main {
    padding: 0px 30px;
    height: 35px;
    /*min-width: 172px;*/
    line-height: 35px;
    font-size: 11px;
    background-color: #00a5ed;
    margin-top: 0px;
    border: none;
    outline: none;
    cursor: pointer;
}

.career-text-country.text-center {
    text-align: center;
}

.career-form-group.align-center {
    align-items: center;
}

.resum-popup .btn-main.grey-colour {
    background-color: #6d7071;
    text-transform: none;
    font-size: 14px;
    padding: 0px 45px;
    height: 35px;
    line-height: 35px;
    margin-bottom: 2px;
}

.resum-popup .btn-main:hover {
    background-color: #000;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

.btn.btn-primary.btn-file {
    width: 100%;
    height: 48px;
    line-height: 48px;
    border: 1px solid #dddddd;
    padding: 0px 20px;
    background-image: url(../images/upload-img.png);
    background-repeat: no-repeat;
    background-position: right 12px top 10px;
    cursor: pointer;
}


.resum-popup textarea.input-fld {
    border: 1px solid #dddddd;
    border-radius: 0;
    font-size: 14px;
    line-height: 24px;
    padding: 10px 20px;
    height: 100px;
    color: #000;
    resize: none;
    font-family: 'proximanova-regular';
}

.career-form-left {
    width: 49%;
}


.career-form-left .career-form-group {
    width: 100%;
    height: auto;
}

.career-form-main-flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #d9d9d9;
}

.career-form-half {
    width: 49%;
}

.text-country-check-box {
    display: flex;
    align-items: center;
}

.text-country-check-box input {
    margin-right: 10px;
    width: 15px;
    height: 15px;
}

.career-form-half-main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.career-form-one-section.main-title {
    margin-bottom: 10px;
}

.career-form-second .career-form-group {
    width: 38%;
}

.career-form-second .career-form-group-second {
    width: 20%;
}

.career-form-group-second.align-center {
    display: flex;
    align-items: center;
}

.career-form-group-second.align-center input {
    margin-right: 10px;
    width: 15px;
    height: 15px;
}

.resum-popup .input-fld:disabled {
    background-color: #f7f7f7;
    cursor: no-drop;
}

.resum-popup .input-fld::placeholder {
    color: #000;
}

#chkAreyouworkingcurrenty {
    margin-top: 3px;
}


.currently-work {
    max-width: 200px;
}

.career-form-second.career-search .career-form-group {
    width: 19%;
    margin-bottom: 10px;
}

.career-form-second.career-search .career-text-country-new {
    width: 100%;
}

.career-form-second.career-search.resum-popup {
    padding: 0px;
    margin-bottom: 45px;
    background: #f0f0f0;
    padding: 15px 15px 10px;
}

.resume-search-table {
    width: 100%;
    border: 1px solid #f2f2f2;
}

.resume-search-table th,
.resume-search-table td {
    padding: 10px;
    border: 1px solid #f2f2f2;
    text-align: center;
    font-size: 13px;
}

.carrer_search_page {
    padding: 130px 0 90px;
}

.resume-search-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.carrer_search_page .container {
    position: relative;
}

.carrer_search_page h2 {
    font-size: 40px;
    color: #000;
    font-family: 'optima_lt_stdmedium';
    font-weight: 500;
    margin-bottom: 20px;
}

.carrer_search_page .container {
    width: 100%;
    max-width: 85%;
}

.search-reset-btn-main {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: right;
}

.search-btn-main {
    width: auto;
    display: inline-block;
    padding: 0px 50px;
    height: 35px;
    line-height: 35px;
    background-color: #22c2f3;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

.search-btn-main:hover {
    background-color: #0d7797;
}

.search-btn-main.reset {
    width: auto;
    display: inline-block;
    padding: 0px 20px;
    background-color: #8c8c8c;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    margin-right: 15px;
}

.search-btn-main.reset:hover {
    background-color: #000;
}

.download-excel {
    width: auto;
    display: inline-block;
    height: 30px;
    line-height: 29px;
    padding: 0px 15px 0px 35px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    color: #000;
    position: absolute;
    right: 0px;
    top: 10px;
    background-image: url(../images/download.svg);
    background-repeat: no-repeat;
    background-size: 19px;
    background-position: left 8px top 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.career-form-second.career-search .career-form-group.training-keyword {
    width: 39.3%;
}

.download-excel:hover {
    background-color: #dfdfdf;
}

@media(max-width: 770px) {
    .resume-item h4 {
        float: none;
    }
}