@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* variables */
/* utilities */
* {
  transition: all 0.2s;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

h1 {
  font-family: "Inter", sans-serif;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.bg-job-danger {
  background-color: #D71210;
}

.text-job-danger {
  color: #D71210;
}

.bg-job-success {
  background-color: #104B33;
}

.bg-gray {
  background-color: #F0F0F0;
}

.bg-none {
  background: none;
}

.text-job-success {
  color: #104B33;
}

.btn {
  border-radius: 0;
}

.btn.bg-job-danger:hover {
  transition: all 0.8s;
  background-color: #104B33;
}

.text-justify {
  text-align: justify;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #104B33;
}

.form-check-input:checked {
  background-color: #104B33;
  border-color: #104B33;
  outline: none;
  box-shadow: none;
}

.form-select::open {
  background-color: #000 !important;
}

.form-select:focus {
  outline: none;
  box-shadow: none;
  border-color: #104B33;
}

.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  background-color: #F0F0F0;
  height: 38px;
  line-height: 36px;
  font-size: 16px;
  margin-left: 0;
}
.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field:focus {
  border: none;
}

.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
  border: none;
}

.select2-container--bootstrap .select2-selection {
  background-color: #F0F0F0;
  border-radius: 0;
  font-size: inherit;
  line-height: 5px;
}
.select2-container--bootstrap .select2-selection:hover {
  border: 1px solid #000;
}

.select2-selection__choice button {
  outline: none;
  border: none;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: #104B33;
}

.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
  box-shadow: none;
  border: 1px solid #104B33;
}

.container {
  max-width: 980px;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0;
  }
}

.active > .page-link, .page-link.active {
  background-color: #104B33;
  border-color: #104B33;
}
.active > .page-link:focus, .page-link.active:focus {
  outline: none;
  box-shadow: none;
}
.active > .page-link:active, .page-link.active:active {
  outline: none;
  box-shadow: none;
}

.page-link {
  color: #000;
}

.card, .alert {
  position: static;
}

/* styles */
.header {
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .header {
    background-color: #FFF;
    top: 0;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
}
.header .logo-img img {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .header .logo-img img {
    width: 200px;
  }
}
.header .menu {
  transition: all 0.8s;
}
.header .menu li {
  display: inline-block;
}
.header .show-menu {
  display: block !important;
  left: 0 !important;
  z-index: 2;
}
.header .menu-bar .active {
  background-color: #104B33;
  color: #fff !important;
  border-radius: 50px;
}
@media screen and (max-width: 960px) {
  .header .menu-bar a {
    font-size: 12px !important;
    padding: 10px 8px !important;
  }
}
@media screen and (max-width: 768px) {
  .header .menu-bar {
    box-shadow: 2px 2px 10px black;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -800px;
    width: 70vw;
    height: 100vh;
  }
  .header .menu-bar li {
    display: block;
  }
  .header .menu-bar li:nth-last-child(5) {
    margin-top: 20px;
  }
  .header .menu-bar a {
    display: block;
    color: #000 !important;
  }
  .header .menu-bar a:hover {
    color: #000 !important;
    background-color: #FFF;
  }
}
.header .menu-bar a {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600 !important;
}
@media screen and (min-width: 768px) {
  .header .menu-bar a {
    font-size: 16px;
  }
}
.header .menu-bar a:hover {
  background-color: #104B33;
  color: #fff !important;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .header .menu-bar {
    border-radius: 50px;
  }
}
.header .menu-bar-responsive {
  cursor: pointer;
}

.sub-menu {
  display: none;
  position: absolute;
  background-color: #F0F0F0;
  transition: all 5s !important;
  /* padding: 10px 20px; */
}

.header .menu li .sub-menu li, .header .menu li .sub-menu li a {
  display: block;
}

.header .menu li .sub-menu li a {
  padding: 10px 20px;
}

.header .menu li .sub-menu li a:hover {
  border-radius: 0;
}

.menu .menu-bar li:hover .sub-menu {
  display: block;
}

@media screen and (max-width: 768px) {
  .sub-menu {
    /* display: block; */
    position: relative !important;
    background: none;
    transition: all .8s !important;
    margin-left: 20px;
    /* padding: 10px 20px; */
  }
}

.header-website {
  background-image: linear-gradient(to right, rgba(227, 234, 232, 0.9), rgba(227, 234, 232, 0.9)), url("/assets/img/01.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-home {
  border-left: 8px solid #104B33;
  padding: 20px 15px;
  margin: 80px auto;
}
.slider-home .slider-title {
  font-family: "Inter";
  font-size: 80px;
}
@media screen and (max-width: 768px) {
  .slider-home .slider-title {
    font-size: 40px;
  }
}
.slider-home .slider-home-img-cover {
  border: 8px solid #FFF;
  transform: rotate(-15deg);
  float: right;
  z-index: 1;
}

.slider-page {
  border-left: 8px solid #104B33;
  padding: 30px 15px;
  margin: 80px auto;
}
.slider-page .slider-title {
  font-family: "Inter";
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .slider-page .slider-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .slider-page {
    border-left: 4px solid #104B33;
    padding: 10px 15px;
    margin: 30px auto;
  }
}

.slider-title {
  font-family: "Inter";
  font-size: 70px;
}

.profile-img img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .profile-img img {
    border-radius: 150px;
  }
}

.dashboard-menu a {
  display: block;
  font-size: 15px;
}
.dashboard-menu a:hover {
  background-color: #104B33;
  color: #FFF !important;
}
.dashboard-menu .active {
  background-color: #D71210;
  color: #FFF !important;
}
@media screen and (max-width: 768px) {
  .dashboard-menu {
    padding: 0;
  }
  .dashboard-menu ul {
    position: fixed;
    border-radius: 0 !important;
    padding: 0;
    bottom: 0px;
    right: 0px;
    left: 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 999;
    overflow: scroll;
  }
  .dashboard-menu .dashboard-item-text {
    display: block;
    color: #000;
    font-size: 7px;
  }
  .dashboard-menu li {
    display: block;
  }
  .dashboard-menu a {
    color: #104B33 !important;
    font-size: 20px;
  }
  .dashboard-menu a:hover {
    background: none !important;
    color: #D71210 !important;
  }
  .dashboard-menu .active {
    background: none !important;
    color: #D71210 !important;
  }
}

@media screen and (max-width: 768px) {
  .dashboard-menu-employer {
    z-index: 0;
    margin-bottom: 16px;
  }
  .dashboard-menu-employer ul {
    display: block !important;
    text-align: left !important;
    position: relative;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none;
    z-index: 999;
    overflow: scroll;
  }
  .dashboard-menu-employer li, .dashboard-menu-employer a {
    display: block;
  }
  .dashboard-menu-employer a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .dashboard-menu-employer a:hover {
    background-color: #D71210 !important;
    color: #fff !important;
  }
  .dashboard-menu-employer .active {
    background: #D71210 !important;
    color: #FFF !important;
  }
  .dashboard-menu-employer .dashboard-item-text {
    display: inline-block !important;
    font-size: 16px;
  }
}

.dashboard-candidate-menu-reponsive {
  position: fixed;
  bottom: -25px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100vw;
  padding: 10px 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  border-radius: 18px 18px 0 0;
  z-index: 999;
}

.modal-header {
  padding: 10px 16px;
}

.modal-content {
  border-radius: 0;
  border: none;
}

.dashboard-job-article {
  border-left: 8px solid red;
}

.d-widget-content-value {
  font-size: 70px;
}

.forfait-widget-content-value {
  font-size: 30px;
}

/*website */
.job-item {
  border-left: 10px solid #104B33;
  border-radius: 0 0 0 10px;
}
.job-item img {
  max-width: 80px;
}
@media screen and (min-width: 768px) {
  .job-item:hover {
    border-color: #D71210;
  }
  .job-item:hover img {
    max-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .job-item {
    border: none;
  }
}

.our-client img {
  width: 100px;
  height: 50px;
}

.intro-content p {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .intro-content p {
    font-size: 16px;
  }
}

.company-intro .demo-img {
  background-image: url("/assets/img/career-bussines-man.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: initial;
  background-origin: content-box;
  background-clip: border-box;
  overflow: visible;
  z-index: 99;
}

.invalid-feedback {
  font-size: 10px;
}

.invalid-field {
  border: 1px solid red;
  background-color: rgba(226, 5, 5, 0.1);
}

.skill .hover-text {
  display: none;
}
.skill img {
  /*width: 100px;*/
}
.skill img:hover {
  /*width: 120px;*/
}

.single-job-description {
  font-size: 18px;
}

.candidate-curriculum-left {
  background-color: #2C3441;
  font-size: 12px;
}
.candidate-curriculum-left .candidate-profile-img img {
  width: 150px;
  height: 150px;
}

.candidate-name {
  background-color: #FDC787;
}

.main-content .curriculum-title {
  background-color: #2C3441;
  color: #FFF;
}

.tox-promotion, .tox-statusbar__branding {
  display: none;
}

aside .company-intro .company-logo {
  max-width: 100px;
}
aside .widget-2 img, aside .widget-3 img {
  max-width: 300px;
  max-height: 200px;
}

.search-field {
  border-radius: 50px 0 0 50px;
}

.search-field-button {
  border-radius: 0 50px 50px 0;
}

.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  background-color: #FFF !important;
}



::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #104B33;
  border-radius: 10px;
}




#recruitment-text {
  display: none;
  max-height: 250px;
  overflow-y: scroll;
  cursor: pointer;
  transition: all .5s;
}
#recruitment:hover #recruitment-text {
  display: block;
}

#recruitment:hover #recruitment-default-content {
  display: none;
}

#learning-text {
  display: none;
  max-height: 250px;
  overflow-y: scroll;
  cursor: pointer;
  transition: all .5s linear;
}
#learning:hover #learning-text {
  display: block;
}

#learning:hover #learning-default-content {
  display: none;
}

#temp_work-text {
  display: none;
  max-height: 250px;
  overflow-y: scroll;
  cursor: pointer;
  transition: all .5s linear;
}
#temp_work:hover #temp_work-text {
  display: block;
}

#temp_work:hover #temp_work-default-content {
  display: none;
}

#outsourcing-text {
  display: none;
  max-height: 250px;
  overflow-y: scroll;
  cursor: pointer;
  transition: all .5s linear;
}
#outsourcing:hover #outsourcing-text {
  display: block;
}

#outsourcing:hover #outsourcing-default-content {
  display: none;
}

#rh_advice-text {
  display: none;
  max-height: 250px;
  overflow-y: scroll;
  cursor: pointer;
  transition: all .5s linear;
}
#rh_advice:hover #rh_advice-text {
  display: block;
}

#rh_advice:hover #rh_advice-default-content {
  display: none;
}

#admin_solution-text {
  display: none;
  max-height: 250px;
  overflow-y: scroll;
  cursor: pointer;
  transition: all .5s linear;
}
#admin_solution:hover #admin_solution-text {
  display: block;
}

#admin_solution:hover #admin_solution-default-content {
  display: none;
}

