@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* === Calc Mixin ==== */
/* ==== Usage example
@include calc( width, '100% - 2px');
===================*/
/* This is to override the box-sizing mixin in compass so that the deprecated warning doesn't show */
.container {
  max-width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}

/* ================ GLOBAL STYLES ================ */
html,
body {
  height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  height: 100%;
  font-size: 15px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #272727;
  line-height: 1.5;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -webkit-overflow-scrolling: touch;
  /*rtl:raw:
		text-align: right;
        direction: rtl;
        font-family: "Droid Arabic Kufi";
	*/
  /*rtl:raw:
		text-align: right;
		direction: rtl;
	*/
}

body:before, body:after {
  content: ' ';
  display: table;
}

body:after {
  clear: both;
}

body a,
body button,
body input {
  text-decoration: none;
  transition: all 0.3s;
  font-family: "Poppins", sans-serif;
  /*rtl:raw:
            font-family: "Droid Arabic Kufi"
        */
}

body *::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  transition: 0.3s background;
}

body *::-webkit-scrollbar-thumb {
  background: #ced4da;
}

body *:hover::-webkit-scrollbar-thumb {
  background: #adb5bd;
}

a {
  color: #144C90;
}

a:hover {
  color: #272727;
}

b {
  font-weight: 500 !important;
}

b a {
  color: #272727;
  text-decoration: underline;
}

b a:hover {
  color: #144C90;
}

hr {
  border: 0;
  border-top: 1px solid #BEBEBE;
  margin: 2rem 0;
}

p {
  margin: 0 0 10px;
  line-height: 2;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 15px;
}

img {
  font-size: 0;
  color: white;
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

::selection {
  background: #144C90;
  color: white;
}

::-moz-selection {
  background: #144C90;
  color: white;
}

.mt-3 {
  margin-top: 30px;
}

.more-action {
  text-align: center;
  margin-top: 30px;
}

.text-center {
  text-align: center;
}

.section {
  padding: 60px 0;
}

.section .section-title {
  margin-bottom: 20px;
}

.section .section-title h2 {
  font-size: 24px;
}

@media all and (max-width: 767px) {
  .section .section-title h2 {
    font-size: 21px;
  }
}

.section.home-block {
  padding: 100px 0;
}

.section.home-block .section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section.home-block .section-title h2 {
  font-size: 30px;
}

@media all and (max-width: 767px) {
  .section.home-block .section-title h2 {
    font-size: 21px;
  }
}

@media all and (max-width: 767px) {
  .section.home-block .section-title {
    margin-bottom: 30px;
  }
}

.section.home-block:nth-child(even) {
  background: #f5f5f5;
}

@media all and (max-width: 767px) {
  .section.home-block {
    padding: 50px 0;
  }
}

@media all and (max-width: 767px) {
  .section {
    padding: 30px 0;
  }
}

.text-block {
  padding: 60px 0 0;
}

@media all and (max-width: 767px) {
  .text-block {
    padding: 30px 0 0;
  }
}

.custom-scroll {
  position: relative;
  height: 500px;
}

.white-wrapper {
  background: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  border-radius: 6px;
}

.white-wrapper:before, .white-wrapper:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 6px;
}

.white-wrapper:before {
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.white-wrapper:after {
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.white-wrapper .content {
  position: relative;
  z-index: 3;
  padding: 30px;
}

.white-wrapper .content.small-pd {
  padding: 20px;
}

.white-wrapper .content .tabs {
  margin: -30px;
}

.white-wrapper .content .tabs .tab-body > div {
  padding: 20px;
}

@media all and (max-width: 991px) {
  .white-wrapper .content .tabs {
    margin: 0px;
  }
}

@media all and (max-width: 991px) {
  .white-wrapper .content {
    padding: 20px 2px;
  }
}

.offer-overlay {
  background: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.24);
  border-radius: 6px;
  z-index: 10;
  padding: 20px;
  max-width: 600px;
  margin-right: 15px;
}

.offer-overlay h4 {
  font-size: 16px;
  padding-right: 30px;
}

.offer-overlay ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

.offer-overlay ul li {
  margin-bottom: 5px;
  font-size: 15px;
}

.offer-overlay .btn {
  /*margin-top: 20px;*/
}

.offer-overlay .close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 15px;
  height: 15px;
  opacity: 0.5;
  background: none;
  border: 0;
  padding: 0;
  -webkit-appearance: none;
  cursor: pointer;
  outline: 0;
  background-image: url("../image/close.svg");
  background-size: initial;
  background-position: center center;
  background-repeat: no-repeat;
}

.list {
  margin-top: 30px;
}

.list li {
  margin-bottom: 15px;
}

.list li a {
  color: #272727;
  text-decoration: underline;
}

.list li a:hover {
  color: #144C90;
}

.list li:last-child {
  margin-bottom: 0;
}

.list.circle > li {
  position: relative;
  padding-left: 35px;
}

.list.circle > li:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: absolute;
  left: 0;
  top: 0;
}

.list.circle > li:after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #144C90;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0.3);
}

.list.dotted > li {
  position: relative;
  padding-left: 15px;
}

.list.dotted > li:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #144C90;
  position: absolute;
  left: 0;
  top: 9px;
}

.list.ordered > li {
  padding-left: 35px;
}

.list.ordered > li span {
  margin-left: -35px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #EBEBEB;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.list.checked > li {
  padding-left: 45px;
}

.list.checked > li:before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url("../image/check.svg");
  background-size: initial;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
  margin-left: -45px;
}

.live-jobs {
  padding: 30px 0;
  border-bottom: 2px solid #144C90;
}

.live-jobs p {
  font-size: 18px;
  text-align: center;
  color: rgba(39, 39, 39, 0.8);
}

.live-jobs .countries {
  display: flex;
  margin-top: 30px;
}

.live-jobs .countries > div {
  flex: 1;
  text-align: center;
}

.live-jobs .countries > div span {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 5px;
}

.live-jobs .countries > div h1 {
  font-size: 14px;
  font-weight: normal;
}

.live-jobs .countries > div h1 img {
  margin-right: 10px;
}

@media all and (max-width: 767px) {
  .live-jobs .countries > div {
    min-width: 100px;
    margin-bottom: 15px;
  }
}

@media all and (max-width: 767px) {
  .live-jobs .countries {
    flex-wrap: wrap;
  }
}

.breadcrumb {
  margin-top: 20px;
}

.breadcrumb ul {
  display: flex;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.breadcrumb li:after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  margin: 0 10px;
  background-image: url("../image/arrow-right.svg");
  background-size: initial;
  background-position: center center;
  background-repeat: no-repeat;
}

.breadcrumb li a {
  font-size: 14px;
}

.breadcrumb li:last-child:after {
  display: none;
}

.main-content {
  padding: 60px 0;
}

.main-content .page-title {
  margin-bottom: 30px;
}

.main-content .page-title p {
  color: rgba(39, 39, 39, 0.8);
}

@media all and (max-width: 767px) {
  .main-content .page-title {
    margin-bottom: 15px;
  }
  .main-content .page-title h1 {
    font-size: 25px;
  }
}

.main-content .jobs {
  display: flex;
}

.main-content .jobs .list {
  margin-top: 0;
  flex: 1;
  margin-right: 30px;
}

.main-content .jobs .list .title {
  display: flex;
  margin-bottom: 10px;
}

.main-content .jobs .list .title span {
  margin-left: auto;
  color: rgba(39, 39, 39, 0.8);
  font-size: 12px;
  white-space: nowrap;
}

@media all and (max-width: 602px) {
  .main-content .jobs .list .title span {
    margin-left: 0;
  }
}

.main-content .jobs .list .title a {
  color: #144C90;
  text-decoration: none;
  font-size: 16px;
  padding-right: 10px;
}

.main-content .jobs .list .title a:hover {
  color: #272727;
}

@media all and (max-width: 602px) {
  .main-content .jobs .list .title a {
    padding-right: 0;
  }
}

@media all and (max-width: 602px) {
  .main-content .jobs .list .title {
    flex-direction: column;
  }
}

.main-content .jobs .list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EBEBEB;
}

.main-content .jobs .list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.main-content .jobs .list p {
  color: rgba(39, 39, 39, 0.8);
}

@media all and (max-width: 767px) {
  .main-content .jobs .list {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.main-content .jobs .recommended {
  min-width: 370px;
  width: 30%;
}

.main-content .jobs .recommended li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EBEBEB;
}

.main-content .jobs .recommended li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.main-content .jobs .recommended li .postmeta {
  font-weight: bold;
  font-size: 13px;
}

.main-content .jobs .recommended li a {
  color: #144C90;
  font-size: 14px;
}

.main-content .jobs .recommended li a:hover {
  color: #144C90;
}

.main-content .jobs .recommended li p {
  color: rgba(39, 39, 39, 0.8);
  font-size: 12px;
  margin-top: 5px;
}

@media all and (max-width: 991px) {
  .main-content .jobs .recommended {
    min-width: 200px;
    max-width: 250px;
  }
}

@media all and (max-width: 767px) {
  .main-content .jobs .recommended {
    min-width: 100%;
    max-width: 100%;
  }
}

@media all and (max-width: 767px) {
  .main-content .jobs {
    flex-wrap: wrap;
  }
}

@media all and (max-width: 602px) {
  .main-content {
    padding: 30px 0;
  }
}

.avaiable-jobs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.avaiable-jobs > div {
  margin-bottom: 30px;
  width: calc(50% - 15px);
}

.avaiable-jobs > div .title {
  display: flex;
  margin-bottom: 15px;
}

.avaiable-jobs > div .title a {
  color: #272727;
  margin-right: 10px;
}

.avaiable-jobs > div .title a:hover {
  color: #144C90;
}

@media all and (max-width: 479px) {
  .avaiable-jobs > div .title a {
    margin-right: 0;
  }
}

.avaiable-jobs > div .title span {
  margin-left: auto;
  font-size: 12px;
  white-space: nowrap;
  color: rgba(39, 39, 39, 0.8);
}

@media all and (max-width: 479px) {
  .avaiable-jobs > div .title span {
    margin-left: 0;
  }
}

@media all and (max-width: 479px) {
  .avaiable-jobs > div .title {
    flex-direction: column;
    align-items: flex-start;
  }
}

.avaiable-jobs > div .tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -5px;
}

.avaiable-jobs > div .tags a {
  color: #144C90;
  border: 1px solid #144C90;
  border-radius: 30px;
  padding: 5px 10px;
  font-size: 10px;
  text-transform: uppercase;
  display: block;
  margin-right: 5px;
  margin-bottom: 5px;
}

@media all and (max-width: 479px) {
  .avaiable-jobs > div .tags a:last-child {
    display: none;
  }
}

.avaiable-jobs > div .tags a:hover {
  color: white;
  background: #144C90;
}

@media all and (max-width: 767px) {
  .avaiable-jobs > div {
    width: 100%;
    margin-bottom: 15px;
  }
}

.employers {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.employers > div {
  margin: 0 15px;
  text-align: center;
}

.employers > div h5 {
  margin-top: 10px;
}

.employers > div img {
  height: 50px;
}

@media all and (max-width: 602px) {
  .employers > div {
    margin: 0 0 15px;
  }
}

@media all and (max-width: 602px) {
  .employers {
    flex-direction: column;
  }
}

.floatleft {
  float: left;
}

.width50 {
  width: 50%;
}

.width40 {
  width: 40%;
}

.width48 {
  width: 48%;
  margin-right: 2%;
  margin-bottom: 10px;
}

.floatright {
  float: right;
}

.login-block .list-arrow {
  padding-left: 10px;
}

.search-form {
  display: flex;
  width: 100%;
  flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .search-form {
    flex-flow: column;
  }
}

.meter {
  background: white none repeat scroll 0 0;
  border: 1px solid #134C8F;
  border-radius: 0;
  height: 14px;
  margin-right: 11px;
  margin-top: 6px;
  padding: 0;
  position: relative;
}

.meter > span {
  display: block;
  height: 100%;
  background-color: #134C8F;
  position: relative;
  overflow: hidden;
}

.bluebotton {
  background-color: #134C8F;
  border: 1px solid #134C8F;
  height: 40px;
  padding: 2px 20px;
  color: white;
  cursor: pointer;
  border-radius: 8px;
}

.bluebotton:hover {
  background-color: white;
  color: #134C8F;
}

.custom-radio {
  margin-bottom: 1rem;
}

.custom-radio input {
  display: none;
}

.custom-radio input:checked ~ span:after {
  transform: scale(0.5);
  background: #144C90 !important;
}

.custom-radio label > span {
  display: flex;
  position: relative;
}

.custom-radio label > span:before {
  content: '';
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  margin-right: 20px;
  box-sizing: border-box;
}

.custom-radio label > span:after {
  content: '';
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: #f5f5f5;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: .3s;
  transform: scale(0);
}

.custom-radio label:hover > span:after {
  background: #f5f5f5;
  transform: scale(0.5);
}

.custom-radio:last-child {
  margin-bottom: 0;
}

.custom-checkbox {
  margin-bottom: 1rem;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox input:checked ~ span:after {
  transform: scale(1);
}

.custom-checkbox label > span {
  display: flex;
  position: relative;
}

.custom-checkbox label > span:before {
  content: '';
  width: 1.6rem;
  min-width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #144C90;
  border-radius: 0.4rem;
  margin-right: 1.5rem;
}

.custom-checkbox label > span:after {
  content: '';
  font-family: "Material-Design-Iconic-Font";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  width: 1.6rem;
  min-width: 1.6rem;
  height: 1.6rem;
  color: #144C90;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s;
}

.custom-checkbox:last-child {
  margin-bottom: 0;
}

.field {
  position: relative;
  margin-bottom: 20px;
}

.field a {
  color: inherit;
}

.field:last-child {
  margin-bottom: 0;
}

.field.inline {
  display: flex;
  align-items: flex-start;
}

.field.inline > label {
  font-weight: 300 !important;
  font-size: 16px !important;
  flex-basis: 40%;
  margin-bottom: 0;
  padding-top: 10px;
}

@media all and (max-width: 767px) {
  .field.inline > label {
    padding-top: 0;
    margin-bottom: 5px;
    display: block;
  }
}

@media all and (max-width: 767px) {
  .field.inline {
    display: block;
  }
}

.inline-inputs {
  display: flex;
  justify-content: space-between;
}

.inline-inputs .custom-input {
  width: calc(50% - 5px);
}

@media all and (max-width: 375px) {
  .inline-inputs .custom-input {
    width: 100%;
    margin-bottom: 10px;
  }
  .inline-inputs .custom-input:last-child {
    margin-bottom: 0;
  }
}

@media all and (max-width: 375px) {
  .inline-inputs {
    flex-direction: column;
  }
}

.custom-input {
  padding: 10px 20px;
  border: 1px solid #dddddd;
  width: 100%;
  height: auto;
  min-height: 40px;
  border-radius: 4px;
  outline: 0;
  font-family: "Poppins", sans-serif;
}

.custom-input:focus {
  border-color: #144C90;
}

@media all and (max-width: 767px) {
  .custom-input {
    padding: 10px;
  }
}

textarea.custom-input {
  height: auto;
  resize: none;
}

select.custom-input {
  appearance: none;
  background: white url("../images/select-arrow.svg") no-repeat right 20px center;
  background-size: 12px;
  padding: 10px 20px;
}

@media all and (max-width: 767px) {
  select.custom-input {
    background: white url("../images/select-arrow.svg") no-repeat right 10px center;
    padding: 10px;
    margin-bottom: 1px;
  }
}

.birth-date {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.birth-date .custom-input {
  width: calc(33.33% - 5px);
}

@media all and (max-width: 375px) {
  .birth-date .custom-input {
    width: 100%;
  }
  .birth-date .custom-input + .custom-input {
    margin-top: 10px;
  }
}

@media all and (max-width: 375px) {
  .birth-date {
    display: block;
  }
}

fieldset legend {
  font-size: 21px;
  color: #144C90;
  margin-bottom: 15px;
}

fieldset + fieldset {
  margin-top: 30px;
}

.login-block .block {
  flex: 1;
  border-right: 1px solid #dddddd;
  margin-right: 40px;
  padding-right: 40px;
}

.login-block .block .title {
  margin-bottom: 20px;
}

.login-block .block .title p {
  color: rgba(39, 39, 39, 0.8);
  font-size: 14px;
  margin-top: 5px;
}

.login-block .block .field {
  margin-bottom: 10px;
}

.login-block .block .submit {
  display: flex;
  align-items: center;
}

.login-block .block .submit .btn {
  margin-left: auto;
}

.login-block .block:nth-last-child(2) {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

@media all and (max-width: 767px) {
  .login-block .block:nth-last-child(2) {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media all and (max-width: 767px) {
  .login-block .block {
    flex-basis: 100%;
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.login-block .content {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #80B9FF;
  border-radius: 8px;
}

.login-block .sign-in-with {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}

.login-block .sign-in-with span {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.login-block .sign-in-with span:before, .login-block .sign-in-with span:after {
  content: '';
  height: 1px;
  width: 150px;
  background: #dddddd;
}

.login-block .sign-in-with span:before {
  margin-right: 20px;
}

.login-block .sign-in-with span:after {
  margin-left: 20px;
}

.login-block .sign-in-with .buttons {
  display: flex;
  justify-content: center;
}

.login-block .sign-in-with .buttons button {
  background: none;
  border: 0;
  padding: 0;
  -webkit-appearance: none;
  cursor: pointer;
  outline: 0;
  background: #272727;
  height: 50px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 14px;
  color: white;
}

.login-block .sign-in-with .buttons button img {
  margin-right: 20px;
  height: 18px;
}

.login-block .sign-in-with .buttons button.facebook {
  background: #3b5998;
}

.login-block .sign-in-with .buttons button.facebook:hover {
  background: #2d4373;
}

.login-block .sign-in-with .buttons button.google {
  background: #dd4b39;
}

.login-block .sign-in-with .buttons button.google:hover {
  background: #c23321;
}

.login-block .sign-in-with .buttons button + button {
  margin-left: 10px;
}

@media all and (max-width: 602px) {
  .login-block .sign-in-with .buttons button + button {
    margin: 10px 0 0;
  }
}

@media all and (max-width: 602px) {
  .login-block .sign-in-with .buttons {
    flex-direction: column;
  }
}

.payment {
  display: flex;
}

.payment .payment-features {
  flex: 1;
  margin-right: 60px;
}

.payment .payment-features .list {
  margin-top: 0;
}

.payment .payment-features .list .list > li {
  margin-bottom: 5px;
}

.payment .payment-features h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

@media all and (max-width: 991px) {
  .payment .payment-features {
    margin-right: 30px;
  }
}

@media all and (max-width: 767px) {
  .payment .payment-features {
    order: 2;
    margin-right: 0;
    margin-top: 30px;
  }
}

.payment .payment-methods {
  min-width: 600px;
}

.payment .payment-methods .radios {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.payment .payment-methods .radios .custom-radio {
  margin: 0;
}

.payment .payment-methods .radios .custom-radio span {
  display: flex;
  align-items: center;
}

.payment .payment-methods .radios .custom-radio span:after {
  top: 50%;
  margin-top: -10px;
}

.payment .payment-methods .radios .custom-radio + .custom-radio {
  margin-left: 40px;
}

@media all and (max-width: 479px) {
  .payment .payment-methods .radios .custom-radio + .custom-radio {
    margin: 20px 0 0;
  }
}

@media all and (max-width: 479px) {
  .payment .payment-methods .radios {
    flex-direction: column;
    align-items: flex-start;
  }
}

.payment .payment-methods .packages {
  display: flex;
  justify-content: space-between;
}

.payment .payment-methods .packages > div {
  width: calc(50% - 15px);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.payment .payment-methods .packages > div h5 {
  font-weight: normal;
  margin-bottom: 10px;
}

.payment .payment-methods .packages > div h4 {
  margin-bottom: 30px;
}

.payment .payment-methods .packages > div .btn {
  margin: auto -20px -20px;
  border-radius: 0 0 8px 8px;
  display: flex;
  width: calc(100% + 40px);
}

@media all and (max-width: 479px) {
  .payment .payment-methods .packages > div {
    width: 100%;
  }
  .payment .payment-methods .packages > div + div {
    margin-top: 20px;
  }
}

.payment .payment-methods .packages.triple > div {
  width: calc(33.33% - 15px);
  min-height: 200px;
}

.payment .payment-methods .packages.triple > div h4 {
  margin-bottom: 10px;
}

.payment .payment-methods .packages.triple > div h5 {
  margin-bottom: 20px;
}

.payment .payment-methods .packages.triple > div span {
  font-size: 14px;
  color: rgba(39, 39, 39, 0.8);
}

@media all and (max-width: 767px) {
  .payment .payment-methods .packages.triple > div {
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
  }
  .payment .payment-methods .packages.triple > div .btn {
    margin-top: 20px;
  }
}

@media all and (max-width: 479px) {
  .payment .payment-methods .packages {
    flex-direction: column;
  }
}

.payment .payment-methods h3 {
  margin-bottom: 30px;
}

.payment .payment-methods p {
  margin: 10px 0 0;
}

.payment .payment-methods p a {
  font-size: 12px;
  color: rgba(39, 39, 39, 0.8);
}

.payment .payment-methods p a + a {
  margin-left: 30px;
}

.payment .payment-methods p a:hover {
  color: #144C90;
}

@media all and (max-width: 991px) {
  .payment .payment-methods {
    min-width: 450px;
    max-width: 450px;
  }
}

@media all and (max-width: 767px) {
  .payment .payment-methods {
    min-width: 100%;
    max-width: 100%;
  }
}

.payment .payment-methods.employers-page p {
  text-align: center;
  font-size: 12px;
  color: #999999;
}

@media all and (max-width: 767px) {
  .payment {
    flex-wrap: wrap;
  }
}

.btn {
  background: none;
  border: 0;
  padding: 0;
  -webkit-appearance: none;
  cursor: pointer;
  outline: 0;
  color: white;
  background: #272727;
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  text-transform: uppercase;
}

.btn.btn-sm {
  height: 40px;
  padding: 2px 20px;
}

@media all and (max-width: 602px) {
  .btn.btn-sm {
    font-size: 12px;
  }
}

@media all and (max-width: 375px) {
  .btn.btn-sm {
    padding: 2px 15px;
  }
}

.btn.btn-outline {
  background: none !important;
  border: 2px solid #272727;
  color: #272727;
}

.btn.btn-white {
  background: white;
  border: 2px solid transparent;
  color: #272727;
}

.btn.btn-white:hover {
  background: none;
  border-color: white;
  color: white;
}

.btn.btn-white.btn-outline {
  border-color: white;
  color: white;
}

.btn.btn-white.btn-outline:hover {
  background: white !important;
  color: #272727;
}

.btn.btn-yellow {
  background: #FFD702;
  color: #272727;
}

.btn.btn-yellow:hover {
  background: #cead00;
}

.btn.btn-blue {
  background: #144C90;
  color: white;
}

.btn.btn-blue:hover {
  background: #0e3463;
}

.btn.btn-blue.btn-outline {
  border-color: #144C90;
  color: #144C90;
}

.btn.btn-blue.btn-outline:hover {
  background: #144C90 !important;
  color: white;
}

.btn.btn-red {
  background: #EF2828;
  color: white;
}

.btn.btn-red:hover {
  background: #d41010;
}

.btn.btn-red.btn-outline {
  border-color: #EF2828;
  color: #EF2828;
}

.btn.btn-red.btn-outline:hover {
  background: #EF2828 !important;
  color: white;
}

.btn.curved {
  border-radius: 100px;
}

.btn + .btn {
  margin-left: 5px;
}

@media only screen and (max-width: 767px) {
  .btn + .btn {
    margin-left: 0px;
    margin-right: 5px;
  }
}

.dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 99;
  background: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: none;
  min-width: 200px;
  border-radius: 8px;
}

.dropdown .dropdown-menu li:first-child a {
  border-radius: 8px 8px 0 0;
}

.dropdown .dropdown-menu li:last-child a {
  border-radius: 0 0 8px 8px;
}

.dropdown .dropdown-menu a {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 15px;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
}

.dropdown .dropdown-menu a svg {
  fill: #272727;
  width: 15px;
  height: 15px;
  margin-right: 15px;
  transition: fill 0.3s;
}

.dropdown .dropdown-menu a:after {
  display: none;
}

.dropdown .dropdown-menu a:hover {
  background: #dceafa;
  color: #144C90;
}

.dropdown .dropdown-menu a:hover svg {
  fill: #144C90;
}

.account-settings {
  padding-bottom: 80px;
}

.account-settings h2 {
  margin-bottom: 30px;
}

.account-settings h2 small {
  font-size: 14px;
  color: rgba(39, 39, 39, 0.8);
  font-weight: normal;
  display: block;
}

.account-settings .tab-links .white-wrapper {
  position: sticky;
  top: 30px;
}

.account-settings .tab-body .submit {
  margin-top: 30px;
  text-align: right;
}

.account-settings .ordered span {
  background: none !important;
}

.account-settings .ordered .custom-input {
  max-width: 350px;
}

.account-settings .btn.btn-red {
  position: absolute;
  bottom: -80px;
  left: 0;
}

.tabs .tab-links ul {
  display: flex;
}

@media all and (max-width: 767px) {
  .tabs .tab-links ul {
    flex-direction: column;
    min-width: 150px;
    height: 100%;
  }
}

@media all and (max-width: 479px) {
  .tabs .tab-links ul {
    min-width: 120px;
  }
}

.tabs .tab-links li {
  flex: 1;
}

.tabs .tab-links a {
  color: rgba(39, 39, 39, 0.5);
  border-bottom: 3px solid transparent;
  font-size: 14px;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.tabs .tab-links a.active {
  border-color: #144C90;
  color: #272727;
}

@media all and (max-width: 767px) {
  .tabs .tab-links a {
    height: 100%;
  }
}

@media all and (max-width: 767px) {
  .tabs .tab-links {
    margin-right: 30px;
  }
}

@media all and (max-width: 479px) {
  .tabs .tab-links {
    margin-right: 0;
  }
}

.tabs .custom-scroll {
  height: 350px;
  margin-bottom: 20px;
}

@media all and (max-width: 767px) {
  .tabs .custom-scroll {
    flex: 1;
    margin: 10px 0;
  }
}

.tabs .tab-body > div:not(:first-child) {
  display: none;
}

.tabs .tab-body .columns {
  column-count: 3;
  column-gap: 30px;
  margin: 0;
}

.tabs .tab-body .columns a {
  color: #272727;
  text-decoration: none;
}

.tabs .tab-body .columns a:hover {
  color: #144C90;
}

@media all and (max-width: 767px) {
  .tabs .tab-body .columns {
    column-count: 1;
    column-gap: 0;
  }
}

.tabs.sidebar {
  display: flex;
}

.tabs.sidebar .tab-links {
  min-width: 300px;
}

.tabs.sidebar .tab-links .content {
  padding: 0;
}

.tabs.sidebar .tab-links ul {
  display: block;
}

.tabs.sidebar .tab-links li:first-child a {
  border-radius: 8px 8px 0 0;
}

.tabs.sidebar .tab-links li:last-child a {
  border-radius: 0 0 8px 8px;
}

.tabs.sidebar .tab-links a {
  font-size: 18px;
  display: block;
  padding: 15px 20px;
  height: auto;
  border: 0;
  color: #272727;
}

.tabs.sidebar .tab-links a.active {
  background: #144C90;
  color: white;
}

.tabs.sidebar .tab-links + div {
  flex: 1;
  margin-left: 60px;
}

@media all and (max-width: 991px) {
  .tabs.sidebar .tab-links + div {
    margin-left: 30px;
  }
}

@media all and (max-width: 767px) {
  .tabs.sidebar .tab-links + div {
    margin: 0;
  }
}

@media all and (max-width: 991px) {
  .tabs.sidebar .tab-links {
    min-width: 250px;
  }
}

@media all and (max-width: 767px) {
  .tabs.sidebar .tab-links {
    min-width: 100%;
    margin: 0 0 30px;
  }
}

@media all and (max-width: 767px) {
  .tabs.sidebar {
    display: block;
  }
}

@media all and (max-width: 767px) {
  .tabs {
    display: flex;
  }
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 6px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 10px;
  /* please don't change 'position' */
  position: absolute;
  border-radius: 30px;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: #c5dcf7;
}

.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y {
  opacity: 0.6;
}

.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #144C90;
  border-radius: 25px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 2px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

.topbar {
  position: relative;
}

.topbar .container {
  display: flex;
  align-items: center;
}

.topbar .contacts {
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 50px;
}

.topbar .contacts .social {
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding-right: 20px;
  margin-right: 20px;
}

.topbar .contacts .social ul {
  display: flex;
  align-items: center;
}

.topbar .contacts .social ul li {
  margin-left: 10px;
}

@media all and (max-width: 479px) {
  .topbar .contacts .social ul li {
    margin-left: 5px;
  }
}

@media all and (max-width: 602px) {
  .topbar .contacts .social {
    border: 0;
    padding: 0;
    margin: 0;
  }
}

.topbar .contacts .phone img {
  margin-right: 10px;
}

.topbar .contacts .phone a {
  color: #272727;
}

@media all and (max-width: 602px) {
  .topbar .contacts .phone {
    margin-top: 10px;
  }
}

@media all and (max-width: 602px) {
  .topbar .contacts {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
    align-items: flex-start;
  }
}

.topbar .date {
  margin-left: auto;
}

.topbar .date p {
  font-size: 12px;
}

@media all and (max-width: 767px) {
  .topbar .date {
    position: absolute;
    right: 15px;
    top: 55px;
    z-index: 9;
    color: white;
  }
}

@media all and (max-width: 602px) {
  .topbar .date {
    top: 70px;
  }
}

header {
  background-image: url("../image/header-img.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 60px;
}

header:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
 background: rgba(20, 76, 144, 0.3);
}

header a {
  color: white;
}

header .container {
  position: relative;
  display: flex;
  flex-direction: column;
}

header.full-height {
  height: calc(100vh - 230px);
  padding-bottom: 0;
}

@media all and (max-width: 602px) {
  header.full-height {
    height: calc(100vh - 65px);
  }
}

header .navigation {
  padding-top: 30px;
  display: flex;
  align-items: center;
}

header .navigation .logo {
  display: block;
  height: 60px;
  margin-right: 20px;
}

header .navigation .logo img {
  max-height: 100%;
}

header .navigation .actions {
  margin-left: auto;
  color: white;
}

header .navigation .actions #job_seeker, header .navigation .actions .top_header_display_none {
  display: none;
  line-height: 32px;
  margin-bottom: 10px;
}

@media all and (max-width: 602px) {
  header .navigation .actions {
    flex-basis: 100%;
    /*display: flex;*/
    margin-top: 15px;
    order: 3;
  }
  header .navigation .actions .btn {
    flex: 1;
  }
}

header .navigation .user {
  margin-left: 30px;
}

header .navigation .user .dropdown-toggle {
  display: inline-flex;
  align-items: center;
}

header .navigation .user .dropdown-toggle span {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: fill 0.3s;
}

gheader .navigation .user .dropdown-toggle svg {
  fill: white;
  transition: fill 0.3s;
}

header .navigation .user .dropdown-toggle:after {
  content: '';
  background-image: url("../image/caret.svg");
  background-size: initial;
  background-position: center center;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 10px;
}

header .navigation .user .dropdown-toggle:hover span, header .navigation .user .dropdown-toggle.active span {
  background: white;
}

header .navigation .user .dropdown-toggle:hover svg, header .navigation .user .dropdown-toggle.active svg {
  fill: #272727;
}

@media all and (max-width: 602px) {
  header .navigation .user {
    margin-left: auto;
  }
}

@media all and (max-width: 602px) {
  header .navigation {
    flex-wrap: wrap;
  }
}

header .middle-content {
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header .middle-content h1 {
  color: white;
}

@media all and (max-width: 602px) {
  header .middle-content h1 {
    font-size: 18px;
  }
}

@media all and (max-height: 600px) {
  header .middle-content h1 {
    display: none;
  }
}

header .middle-content > .btn {
  margin-top: 30px;
}

@media all and (max-width: 602px) {
  header .middle-content > .btn {
    margin-top: 15px;
    padding: 2px 20px;
    height: 40px;
    font-size: 12px;
  }
}

@media all and (max-height: 600px) {
  header .middle-content > .btn {
    display: none;
  }
}

header .middle-content .search {
  margin-top: 0px;
  width: 100%;
}

header .middle-content .search p {
  color: rgba(255, 255, 255, 0.8);
}

@media all and (max-width: 602px) {
  header .middle-content .search p {
    font-size: 12px;
  }
}

header .middle-content .search .form {
  display: flex;
  width:50%;
		margin:0px auto;
}

header .middle-content .search .form .custom-input {
  height: 50px;
  border-radius: 0;
  border: 0;
  margin-right: 1px;
  margin-bottom:10px;
}

header .middle-content .search .form .custom-input:first-child {
  border-radius: 6px 0 0 6px;
}

@media all and (max-width: 767px) {
  header .middle-content .search .form .custom-input:first-child {
    border-radius: 6px 6px 0 0;
    margin-bottom: 1px;
  }
}

@media all and (max-width: 602px) {
  header .middle-content .search .form .custom-input {
    margin-right: 0;
    margin-bottom: 1px;
  }
}

header .middle-content .search .form .btn {
  border-radius: 0 6px 6px 0;
  padding: 10px 40px;
}

@media all and (max-width: 767px) {
  header .middle-content .search .form .btn {
    border-radius: 0 0 6px 6px;
  }
}

@media all and (max-width: 767px) {
  header .middle-content .search .form {
    flex-direction: column;
	width:100%;
  }
}

@media all and (max-width: 602px) {
  header .middle-content .search {
    width: 100%;
    margin-top: 30px;
  }
}

header .middle-content .profile-stength {
  width: 80%;
  margin-top: 30px;
  background: white;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  text-align: left;
}

header .middle-content .profile-stength .left {
  flex: 1;
  margin-right: 30px;
}

header .middle-content .profile-stength .left h5 {
  margin-bottom: 20px;
}

header .middle-content .profile-stength .left h6 {
  color: #144C90;
  font-size: 14px;
  margin-bottom: 10px;
}

header .middle-content .profile-stength .left .list {
  margin-top: 0;
  font-size: 14px;
}

@media all and (max-width: 602px) {
  header .middle-content .profile-stength .left {
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EBEBEB;
  }
}

header .middle-content .profile-stength .right {
  min-width: 260px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
}

header .middle-content .profile-stength .right .btn {
  width: 100%;
  margin-top: auto;
}

@media all and (max-width: 602px) {
  header .middle-content .profile-stength .right .btn {
    margin-top: 20px;
  }
}

header .middle-content .profile-stength .right .bar {
  width: 100%;
  display: block;
  height: 8px;
  background: #f5f5f5;
  border-radius: 50px;
  margin-bottom: 10px;
}

header .middle-content .profile-stength .right .bar .acheived {
  background: #144C90;
  width: 30%;
  display: block;
  height: 100%;
  border-radius: 50px 0 0 50px;
}

header .middle-content .profile-stength .right p {
  font-size: 12px;
  line-height: 1.5;
}

header .middle-content .profile-stength .right p b {
  color: #144C90;
}

header .middle-content .profile-stength .right p.tip {
  color: rgba(39, 39, 39, 0.8);
}

@media all and (max-width: 991px) {
  header .middle-content .profile-stength .right {
    min-width: 200px;
    max-width: 200px;
  }
}

@media all and (max-width: 602px) {
  header .middle-content .profile-stength .right {
    min-width: 100%;
    max-width: 100%;
  }
}

@media all and (max-width: 602px) {
  header .middle-content .profile-stength {
    width: 100%;
    display: block;
  }
}

@media all and (max-width: 602px) {
  header {
    padding-bottom: 30px;
  }
}

footer {
  background: #333333;
  padding: 60px 0;
  color: white;
  margin-top: 0px;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

footer .about-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

footer .about-section h5 {
  font-size: 16px;
  margin-bottom: 20px;
}

footer .about-section h5 small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  display: block;
}

footer .columns {
  display: flex;
}

footer .columns > div {
  flex: 1;
}

footer .columns > div h6 {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

footer .columns > div ul a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  display: block;
  margin-bottom: 3px;
}

footer .columns > div ul a:hover {
  color: white;
}

@media all and (max-width: 767px) {
  footer .columns > div {
    min-width: 180px;
    margin-bottom: 15px;
  }
}

@media all and (max-width: 767px) {
  footer .columns {
    flex-wrap: wrap;
  }
}

footer .copyrights {
  font-size: 12px;
  text-align: center;
  color: white;
  margin-top: 60px;
}

@media all and (max-width: 767px) {
  footer .copyrights {
    margin-top: 30px;
  }
}

@media all and (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
}