/* @author Marta Villanueva Muñoz */
@import url("../fonts/stylesheet.css");

:root {
  /* colors */
  --primary-2: #0024A6;
  --primary-1: #113DD9;
  --primary0: #265CFF;
  --primary1: #77A2FF;
  --primary3: #BAD2FF;
  --primary4: #EBF1FF;
  --primary-transparent: #77a2ff6b;
  --text-header: #0d0e0f;
  --text-body: #292c34;
  --text-gray: #0000008f;
  --turquoise: #75FBFD;
  --bg-1: #F2F6FC;
  --green: #00BF58;
  --red: #FA0C00;
  /* shadows */
  --shadow-categories: -12px 10px 41px 0px rgba(0, 36, 166, 0.19);
  --shadow-small: 0 8px 12px 2px rgba(0, 28, 53, 0.05);
  --shadow-cards: 0px 10px 27px 0px rgba(0, 36, 166, 0.19);
  --shadow-3: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
  --shadow-turquoise: 0px 6px 38px 0px rgba(117, 251, 253, 0.30);
  --shadow-dark-blue: 0px 6px 17px 0px rgba(0, 36, 166, 0.54);
}

/* CLEAN UP THE CSS, REMOVE DOUBLE CLASSES, CHANGE CLASSES ON HTML AND CSS */

* {
  padding: 0;
  margin: 0;
  font-family: 'Gordita';
}

html,
body {
  font-family: 'Gordita', sans-serif;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* a solution to fix the footer in the bottom part of the body */
}

body button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
}

button.navbar-toggler {
  border-radius: 50px;
  border: none;
}

button.navbar-toggler:focus {
  outline: none;
  background-color: var(--primary4);
}

.bg-blue button.navbar-toggler:focus {
  background-color: var(--primary0);
}

/* scroll-top button */
button.scroll-top {
  width: 35px;
  height: 35px;
  line-height: 24px;
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 99;
  text-align: center;
  color: white;
  font-size: 25px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background: var(--primary0);
  transition: all 0.3s ease-in-out;
}

button.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

button.scroll-top:hover {
  transform: scale(1.07);
}

/* input general setting */
input:focus::placeholder {
  color: transparent;
}

input:disabled {
  background-color: transparent !important;
}

textarea:focus::placeholder {
  color: transparent;
}

fieldset:disabled .form-control:hover {
  box-shadow: none;
}

fieldset:disabled .form-control:focus {
  box-shadow: none;
}

.form-control:has(input:disabled):hover {
  box-shadow: none;
}

.form-control:has(input:disabled):focus {
  box-shadow: none;
}

#ot-sdk-btn-floating {
  display: none;
}

/* DROPDOWN */

/* select2 override */

.post-job-request__container .select2-container {
  margin-bottom: 5px;
}

.find-jobs-wrapper .sort-filter .select2-container,
.registration-form .select2-container {
  width: 100% !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: transparent !important;
}

/* .select2-results__option:first-of-type {
  display: none;
} */


.select2-container--default.select2-container--focus .select2-selection--multiple {
  height: 45px !important;
}

.select2-container--default .select2-selection--multiple:hover,
.select2-container:hover {
  box-shadow: var(--shadow-small) !important;
}

.find-jobs-wrapper .select2-container--default .select2-selection--multiple {
  padding: 0 2.5rem .375rem .75rem !important
}

.post-job-request__container .select2-container--default .select2-selection--multiple:hover,
.select2-container:hover {
  box-shadow: none !important;
}

.select2-container .select2-search--inline .select2-search__field {
  font-family: 'Gordita' !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--text-gray) !important;
}

.select2-container--default .select2-selection--multiple {
  width: 100%;
  padding: .375rem 2.5rem .375rem .75rem !important;
  border: 1px solid var(--primary4) !important;
  border-radius: 10px !important;
  color: var(--text-body) !important;
  text-align: left;
  cursor: pointer;
}

/* select2 profile */
/* div.personal-info .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: white !important;
} */

.modal .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 500;
}

/* arrow */
.select2-container--default .select2-selection--single:before {
  content: "";
  position: absolute;
  font-size: 25px;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #7485a6;
  background-image: url(../assets/icons/arrow-down-black-16.svg) !important;
  height: 16px;
  width: 16px;
  cursor: pointer;
}

.select2-container--open .select2-selection--single:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #7485a6;
  width: 16px;
  height: 16px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-color: #265cff;
  border-bottom: 0;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  background: url(../assets/icons/arrow-up-black-16.svg) no-repeat 97% #fff !important;
  cursor: pointer;
}

.select2-container--default .select2-selection--multiple:before {
  content: "";
  position: absolute;
  font-size: 25px;
  top: 50%;
  left: 93.3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #7485a6;
  background-image: url(../assets/icons/arrow-down-black-16.svg) !important;
  height: 16px;
  width: 16px;
  cursor: pointer;
}

.select2-container--open .select2-selection--multiple:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 93.3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #7485a6;
  width: 16px;
  height: 16px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-color: #265cff;
  border-bottom: 0;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  background: url(../assets/icons/arrow-up-black-16.svg) no-repeat 97% #fff !important;
  cursor: pointer;
}

/* options */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  padding: 5px 24px 5px 12px !important;
  margin: 0 !important;
  border: none !important;
  background-color: var(--primary0) !important;
  color: white;
  border-radius: 20px !important;
}

.select2-container--default .select2-results>.select2-results__options {
  border-radius: 10px !important;
  max-height: 200px !important;
}

button.remove-button {
  margin-left: 8px;
  vertical-align: middle;
  background-color: transparent !important;
  font-weight: bold;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
button.remove-button {
  height: 100%;
  color: white !important;
  border: none !important;
  border-right: 1px solid white;
  right: 5px !important;
  left: auto !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
button.remove-button:hover .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus,
button.remove-button:focus {
  background-color: transparent !important;
}

.select2-container .select2-search--inline .select2-search__field {
  vertical-align: text-bottom !important;
  height: fit-content;
  margin-bottom: 5px !important;
}

/* dropdown list multiple */
.select2-dropdown {
  border: 1px solid var(--primary4) !important;
  /* border-top: none !important; */
  padding: 0 0 5px 0;
  border-radius: 10px !important;
  top: 100% !important;
  box-shadow: var(--shadow-small);
}

.select2-container {
  font-size: 16px;
  border-radius: 10px !important;
  text-align: left !important;
}

.find-jobs-wrapper.jobseekers .select2-container {
  font-size: 14px !important;
}

.select2-results__option {
  padding: 6px 10px !important;
}


.select2-container--default .select2-results__option--selected {
  background-color: white !important;
  font-weight: 500;
  box-shadow: var(--shadow-small);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: white !important;
  color: black !important;
  font-weight: 500;
  box-shadow: var(--shadow-small);
}

/* input single select */

.select2-container .select2-selection--single {
  height: 45px !important;
}

.post-job-request__container .select2-container .select2-selection--single {
  height: calc(1.5em + .75rem + 2px) !important;
}

.select2-container--default .select2-selection--single {
  height: calc(1.5em + .75rem + 2px) !important;
  border-radius: 10px !important;
  border: 1px solid var(--primary4) !important;
  /* background: url(../assets/icons/arrow-down.svg) no-repeat right 0.75rem center/16px 16px !important; */
}

.sort-filter .select2-container--default .select2-selection--single {
  border-radius: 30px !important;
  min-width: 116px;
  height: auto !important;
  padding: 0 10px 0 2px !important;
}

.sort-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 24px !important;
  padding-bottom: 5px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  /* font-size: 14px; */
  padding-top: 5px !important;
  padding-right: 28px !important;
  /* font-weight: 200 !important; */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none !important;
}

.select2-search--dropdown {
  padding: 4px 4px 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none !important;
  background-color: transparent !important;
  outline: none !important;
  opacity: 1 !important;
  top: 0;
  padding: 0px 8px !important;
}

.select2-container .select2-search--inline .select2-search__field {
  height: 23px !important;
}



/* previous custom select */
.custom-select {
  position: relative;
  width: 100%;
  max-width: 461px;
  padding: .375rem 2.5rem .375rem .75rem !important;
  border: 1px solid var(--primary4) !important;
  border-radius: 10px !important;
  color: var(--text-body) !important;
  background: url("../assets/icons/arrow-down.svg") no-repeat right .75rem center/16px 16px !important;
  text-align: left;
  cursor: pointer;
}

/* div.editing form .personal-info .custom-select {
  color: white !important;
  width: inherit;
  filter: brightness(10);
} */

div.editing form .personal-info .form-group.gender div:first-child {
  width: 200px;
  flex-grow: 0;
}


.custom-select.gender {
  max-width: 600px;
}

.custom-select#inpcountrycode {
  max-width: 100%;
}


/* Estilo del botón que muestra las opciones */
.custom-select-button {
  display: block;
  /* width: 100%;
  padding: 10px;
  background: #f0f0f0; */
  /* border: 1px solid #ccc; */
  color: var(--text-header);
  cursor: pointer;
  font-weight: 400;
}

/* Estilo de la lista de opciones */
.custom-select-options {
  position: absolute;
  top: 83%;
  left: 0;
  display: none;
  width: 100%;
  height: 150px;
  overflow: scroll;
  background-color: white;
  border: 1px solid var(--primary4);
  border-radius: 0 0 10px 10px;
  z-index: 20;
}

.custom-select.gender .custom-select-options {
  overflow: visible;
}

/* Estilo de cada opción */
.custom-select-option {
  padding: 14px 10px;
  cursor: pointer;
}

/* Estilo de las opciones cuando se les pasa el ratón por encima */
.custom-select-option:hover {
  box-shadow: var(--shadow-small);
  font-weight: 500;
  /* color: white; */
}


/* TRANSITION */
.tran3s {
  transition: all 0.3s ease-in-out;
}

/* FONTS CUSTOM CLASSES */

.h1-custom {
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 65px;
  margin-bottom: 0;
}

.h1-updated {
  font-size: 30px;
  line-height: 45px;
}

.h2-custom {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.18em;
}

.find-jobs-wrapper .inner-banner .h2-custom {
  font-size: 36px;
}

.description-big {
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0.48px;
  color: var(--text-body);
}

.body-1 {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  color: var(--text-header);
}

div.body-1 {
  margin-left: 25px;
}

.body-2 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.blue {
  color: var(--primary0);
}

.black {
  color: var(--text-header);
}

input.body-2 {
  font-weight: 400;
}

.body-big {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: var(--text-header);
}

.placeholder {
  font-size: 14px;
  color: var(--text-header);
  line-height: 24px;
  margin-bottom: 0;
}

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

.feedback-section .review-footer .body-big {
  font-weight: 500;
}

.complete-profile-wrapper .body-big {
  font-weight: 500;
}

.blue-title {
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  color: var(--primary0);
}

.h6-highlight {
  line-height: 28px;
  margin-bottom: 0;
}

.little-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-header);
}

.fancy-banner .little-title {
  font-weight: 400;
}

.jobrequest__container .little-title {
  margin-bottom: 10px;
  margin-top: 25px;
  font-size: 22px;
}

.jobseekers-employers-landing .jobrequest__container .little-title {
  margin-bottom: 0;
  margin-top: 0;
}


a:hover,
a:focus,
a:visited,
a {
  text-decoration: none !important;
  outline: none;
}

nav.bg-blue li.nav-item:has(a.active-page) {
  /* background-color: var(--primary0); */
  border-radius: 5px;
}

header .navbar.bg-blue .navbar-nav .nav-link.active-page {
  color: var(--primary1) !important;
}

nav.bg-white li.nav-item:has(a.active-page) a {
  /* background-color: var(--primary4); */
  color: var(--text-header);
  border-radius: 5px;
}

.nav-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}


header nav.navbar-light a.nav-link.nav-text {
  color: var(--text-header) !important;
}

header nav.navbar-light a.nav-link.nav-text.active-page {
  color: var(--primary0) !important;
}

.navbar .register-nav a.register-header {
  color: white !important;
  font-weight: 500;
}

.navbar-light .register-nav a.register-header {
  color: var(--text-header) !important;
}

header .custom-ul a.nav-link.nav-text {
  display: flex;
  align-items: center;
  color: white !important;
}

header .custom-ul a.nav-link.nav-text {
  display: flex;
  align-items: center;
  color: white !important;
}

/* nav li a.nav-link.nav-text:hover {
  color: var(--primary-2)!important;
  background-color: var(--primary4);
  border-radius: 5px;
} */

/* nav.navbar li a.nav-link.nav-text:hover {
  color: var(--primary-2)!important;
  background-color: var(--primary4);
  border-radius: 5px;
} */

.review-title {
  color: var(--primary0)
}

.fw-500 {
  font-weight: 500;
}

.text-black {
  color: var(--text-header);
}

.text-caption {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: var(--text-body);
}

div.newsletter div {
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 7px;
}

div.newsletter form.subscribe-form-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.newsletterlanding {
  width: 100%;
  font-size: 12px;
}

.newsletterlanding:focus-visible {
  border: none;
  outline: none;
}

.newslettersubmitlanding {
  font-weight: 400;
  font-size: 14px;
}

/* img */
header .navbar img {
  width: 32px;
  height: auto;
}

.hamburgermenu img {
  width: 30px;
}

.find-jobs-wrapper .hamburgermenu img {
  filter: brightness(10);
}

/* language menu dropdown */

.language {
  display: flex;
  justify-content: center;
  align-items: center;
}


.language .language-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 4rem;
  right: 3rem;
  width: fit-content;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  z-index: 1;
  box-shadow: var(--shadow-3);
  transition: all 0.3s ease-in-out;
}

.language .language-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.language .language-menu li {
  padding: 5px 4px 0;
  width: 25%;
  border-radius: 20px;
}

.language .language-menu li:hover {
  border: 1px solid var(--primary-transparent);
}

.language .language-menu a {
  font-size: 14px;
  color: var(--text-body);
  line-height: 24px;
  transition: all 0.3s ease-in-out;
}

.language-landing {
  appearance: none;
  -webkit-appearance: none;
  width: 48px;
  height: 31px;
  background-color: white;
  color: var(--text-body);
  font-size: 10px;
  border: none;
  box-shadow: var(--shadow-3);
  border-radius: 1em;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.language-landing:focus {
  outline: none;
}

/* HEADER */
header .bg-blue {
  background-color: var(--primary-1);
}

header .navbar.bg-blue .navbar-nav .nav-link {
  color: white !important;
}

header .navbar-nav:not(.register-nav) .nav-link:hover {
  color: var(--primary1);
  /* background-color: var(--primary4); */
  border-radius: 5px;
}

header .navbar.bg-blue .nav-link:hover {
  color: var(--primary1) !important;
  border-radius: 5px;
}

header .navbar:not(.bg-blue) .nav-link:hover {
  color: var(--primary0) !important;
}

header .navbar .nav-link.active-page:hover {
  color: var(--primary0) !important;
}

header .navbar.bg-blue .language .nav-link:hover {
  background-color: transparent;
}

header nav.bg-blue .nav-link img {
  filter: brightness(15);
}

header .navbar.bg-blue .login-li button {
  border: none;
}

header .navbar .nav-item.login-li .nav-link:hover {
  background-color: transparent;
}

/* header nav.bg-blue a:not(.language-menu a),
header nav.bg-blue .custom-ul a.nav-link.nav-text:not(.language-menu a.nav-link.nav-text),
.navbar.bg-blue .register-nav a.register-header:not(.language-menu) {
  color: white !important;
} */


header div.navbar-toggler {
  transform: scale(0.5);
}

header img.logo-header {
  width: 220px;
  filter: none;
}

.navbar-light .navbar-toggler.hamburgermenu {
  border: none;
}

header ul.navbar-nav {
  gap: 5px;
}

header .navbar-nav.custom-ul {
  /* padding-left: 42px; */
  padding-bottom: 20px;
  font-weight: 500; 
}

/* header .navbar-collapse.show .navbar-nav.custom-ul {
  padding-top: 20px;
} */

header .navbar-collapse.show .navbar-nav.custom-ul a.nav-link {
  /* padding-left: 5px; */
  padding-right: 5px;
}

/* BUTTONS */

.logo-landing {
  height: 36.9px;
  width: 202px;
}

.button-custom {
  font-family: Gordita;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.62px;
}

a .button-custom:active,
a .button-custom:focus {
  outline: 2px solid var(--turquoise);
  box-shadow: var(--shadow-turquoise);
}

.opacity-50 {
  opacity: 50%;
}

/* a class to reuse no matter where the element is located */

.btn-back {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  justify-content: space-between;
  border-radius: 40px;
  background-color: transparent;
  color: var(--text-header);
  border: 1px solid var(--primary3);
  outline: none !important;
  text-transform: uppercase;
  padding: 16px 30px 17px;
  width: 100%;
  max-width: 460px;
  transition: all 0.2s ease-in;
}

.btn-back:hover img {
  filter: brightness(10);
}

.btn-back.register:hover img {
  filter: none;
}


.default-form .btn-back {
  text-transform: none;
  padding: 10px 30px 11px;
  margin-bottom: 10px;
  border-color: var(--primary4);
}

.default-form .btn-back.register.social:hover {
  box-shadow: none;
  border-color: #d2e3fc;
  background-color: rgba(66, 133, 244, .04);
  outline: none;
}

.default-form div.social-sign-container {
  padding: 2px 10px;
}

.default-form .btn-back.register.social {
  width: 240px;
  max-width: 400px;
  min-width: min-content;
  padding: 0 12px;
  margin: 0;
  border: 1px solid #dadce0;
  color: #3c4043;
  cursor: pointer;
  font-size: 13px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.default-form .btn-back.register.social div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  position: relative;
  width: 100%;
}

.default-form .btn-back.register.social span {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: "Google Sans", arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.default-form .btn-back:hover {
  background-color: white;
  color: var(--text-header);
  border-color: var(--primary0);
}

.default-form .btn-back img {
  margin-right: 16px;
}

/* form.default-form .btn-back.register {
  width: 240px;
  max-width: 400px;
  min-width: min-content;
  align-items: center;
  padding: 6px 10px;
  font-family: Arial, Helvetica, sans-serif;
} */

.default-form .btn-back.register.social img {
  height: 18px;
  margin-right: 8px;
  min-width: 18px;
  width: 18px;
}

.btn-back:hover {
  background-color: var(--primary0);
  color: white;
}

.btn-one {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary0);
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  border: none;
  border-radius: 2em;
  padding: 12px 30px 13px;
  max-width: 350px;
  transition: box-shadow 0.1s ease-in;
}


header .login-li button.btn-one {
  padding: 8px 30px 9px;
}

header .login-li .active-page button.btn-one {
  border: 2px solid white;
}

.btn-one:hover {
  color: white;
  box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
}

.btn-one:focus {
  outline: none;
}

.btn-preview {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  color: var(--primary0);
  font-size: 14px;
  border-radius: 50px;
  height: 32px;
  border: 1px solid var(--primary0);
  padding: 5px 7px 5px 10px;
  transition: all 0.2s ease-in;
}

.btn-preview:hover {
  color: white;
  box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
  background-color: var(--primary0);
}

.btn-preview:hover img {
  filter: brightness(10);
}

.btn-add-skills {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  border: none;
  background-color: transparent;
  padding: 0 30px;
  outline: none;
  position: absolute;
  right: 0;
  top: 7px;
}

.btn-add-skills:focus {
  outline: none;
}

button.btn-apply {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: var(--primary0);
  font-weight: 500;
  border: 1px solid var(--primary0);
  border-radius: 2em;
  padding: 3px 15px 3px;
  max-width: 350px;
  transition: all 0.3s ease-in;
}

button.btn-apply:hover {
  background-color: var(--primary0);
  color: white;
}

button.btn-apply:focus {
  outline: none;
}


/* navbar */

/*header .navbar {*/
/*  border-radius: 0 0 12px 12px;*/
/*}*/

header nav ul {
  padding-top: 1rem;
}

.navbar-light .navbar-toggler.hamburgermenu:focus {
  outline: 2px solid var(--primary0);
}

/* modals */

/* div.modal-backdrop.fade.show {
  position: static !important;
} */

.modal .modal-dialog {
  max-width: 414px !important;
}

div.modal-content {
  border-radius: 10px;
  box-shadow: var(--shadow-small);
  border: none;
  padding-bottom: 16px;
}

div.modal-content.new-password {
  box-shadow: none;
}

#registrationmodal .modal-dialog {
  max-width: 900px !important;
}

#registrationmodal div.modal-header {
  background-color: transparent;
  color: var(--text-header);
  padding: 1rem 1rem 0 !important;
}

div.modal-header {
  justify-content: center;
  border-bottom: none;
}

.modal#cropImagePop {
  top: 15vh;
}

.modal#cropImagePop div.modal-header {
  justify-content: space-between;
}

.modal#cropImagePop div.modal-header {
  background-color: var(--primary0);
}

.modal#errormodal div.modal-header {
  background-color: var(--red);
}

div.modal-header button {
  position: absolute;
  right: 16px;
  color: white;
}

div.modal-header button {
  color: var(--primary1);
}

div.modal-header button:hover {
  color: var(--primary0);
  transform: scale(1.1);
  transition: transform 0.2s ease-in;
}

.modal#errormodal div.modal-header button:hover {
  color: white;
}

div.modal-header img {
  width: 76px;
  border: 6px solid var(--primary0);
  border-radius: 200px;
  padding: 10px;
}

div.modal .modal-title.blue {
  color: var(--primary0);
}

.modal-title {
  line-height: 36px !important;
}

.modal-footer {
  border-top: none !important;
  justify-content: center !important;
}

.modal .modal-footer button {
  background-color: var(--primary0);
  border-radius: 50px;
  font-size: 16px;
  color: white;
  font-weight: 400;
  padding: 10px 32px;
  text-shadow: none !important;
  transition: transform 0.2s ease-in;
}

.modal .modal-footer button:hover {
  transform: scale(1.05);
}

.modal#errormodal .modal-footer button {
  background-color: var(--red);
}

.modal#confirmationdeletemodal div.modal-header {
  padding: 26px;
}

.modal#confirmationdeletemodal .modal-header button.close {
  top: 16px;
}

.modal#confirmationdeletemodal .modal-footer button.close.cancel {
  background-color: transparent;
  color: var(--text-header) !important;
}

.modal#cropImagePop .modal-footer button {
  background-color: var(--primary0);
}

.modal#cropImagePop .modal-footer button.delete {
  color: var(--text-header);
}

.modal#cropImagePop .modal-footer button.cancel {
  color: var(--text-header);
}

.modal button:focus {
  outline: none !important;
}

.close {
  opacity: 1 !important;
}

.login-link {
  border-bottom: 1px solid var(--primary0);
  color: var(--primary0) !important;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.login-link:hover {
  color: var(--primary-2) !important;
}

/* modal b-loader */
.b-loader>img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

.b-loader_done {
  opacity: 0 !important;
  top: -100% !important;
  transition: all .2s step-end, opacity .2s ease !important;
}

.b-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  overflow: hidden;
  opacity: 1;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  background-color: hsla(0, 0%, 100%, .8);
  transition: all .2s step-start, opacity .2s ease;
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* cropper */

a.filepond--credits {
  display: none;
}

div.filepond--drop-label label {
  font-size: 10px !important;
  padding: 0 7px;
}

/* dropzone */
.dropzone {
  border: none !important;
}

/* addToAny plugin */

#a2a_copy_link {
  border: none !important;
  box-shadow: var(--shadow-small);
}

.a2a_modal_body {
  font-family: 'Gordita' !important;
}

/* inner banner */

div.inner-banner {
  height: 20vw;
  min-height: 260px;
  max-height: 324px;
  background: var(--primary-1);
  padding: 116px 0 0;
  margin-bottom: 0;
  z-index: 10;
}

div.find-jobs-wrapper div.inner-banner {
  margin-bottom: 10px;
}

div.inner-banner__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 50;
}

.inner-banner__content p span {
  font-weight: bolder;
}

/* first section */
.banner-section {
  margin-top: 120px;
  text-align: center;
}

.banner-section p.description-big {
  margin-top: 1.5rem;
}

/* job search bar */

.find-jobs-wrapper div.row-form {
  background-color: white;
  box-shadow: var(--shadow-cards);
  border-radius: 10px;
  /* margin-right: -16px; */
}

.job-search-bar {
  z-index: 9;
}

.job-search-bar div.button-col {
  display: flex;
  padding-left: 0;
  padding-right: 0;
}


.job-search-bar form .input-box {
  appearance: none;
  -webkit-appearance: none;
  width: 80%;
  border: none;
  padding: 10px 7px 12px;
}

.job-search-bar form button.btn-add-skills-search {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  outline: none;
  background: none;
}

.job-search-bar form button.btn-add-skills-search:focus {
  outline: none !important;
}

.job-search-bar form .body-2 {
  font-size: 14px;
}

.job-search-bar form a.input-a {
  display: block;
  padding-left: 20px;
}

.job-search-bar form a.border-box {
  border-left: none;
  border-top: 1px solid var(--primary-transparent);
}

.job-search-bar form .input-box .label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  padding-left: 15px;
  margin-bottom: 4px;
}

.job-search-bar form button.btn-add-skills-search img.add-img {
  width: 16px;
}

.job-search-bar form .input-box:focus-visible {
  outline: none !important;
}


.job-search-bar form .search-btn {
  letter-spacing: 0.8px;
  background: var(--primary0);
  color: white;
  border: none;
  border-radius: 0 0 0 10px;
  /* width: 195px; */
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
  margin-right: -1px;
}

.job-search-bar form .search-btn:hover {
  background: var(--primary-2);
}

.job-search-bar form .search-btn:focus {
  outline: none;
}

.job-search-bar .tags li {
  position: relative;
}

.job-search-bar .tags li:after {
  content: ",";
  color: #6d8b7e;
}

.job-search-bar .tags li:first-child:after,
.job-search-bar .tags li:last-child:after {
  display: none;
}

.job-search-bar .tags li a {
  color: #6d8b7e;
  transition: all 0.2s ease-in-out 0s;
}

.job-search-bar .tags li a:hover {
  color: #fff;
}

.job-search-bar.style-two .input-box {
  margin: 18px 0;
}

.job-search-bar button.filter-button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  width: 100%;
  height: 100%;
  outline: none;
}

/* job not found */
.job-not-found__container div.not-found-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 16px;
  gap: 16px;
}

.job-not-found__container div.title-highlight {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.job-not-found__container img.img-learnmore {
  width: 100%;
  position: relative;
}

.job-not-found__container section.text-feature {
  margin: 140px 0 80px
}

.job-not-found__container a.btn-one {
  font-size: 20px;
  display: flex;
}

.text-feature .img-box {
  background: var(--primary3);
  height: 600px;
  padding: 20px;
}

.fancy-banner div.options-row {
  justify-content: space-between;
}

.fancy-banner {
  margin-top: 100px;
}

.fancy-banner .bg-wrapper {
  background: url(../assets/pictures/picture-banner1.png) no-repeat center;
  background-size: cover;
  padding-bottom: 95px;
  padding-top: 145px;
  z-index: 1;
}

.jobseekers .fancy-banner .bg-wrapper {
  background: url(../assets/pictures/picture-banner2.jpg) no-repeat center;
  background-size: cover;
}

.fancy-banner .bg-wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  background: linear-gradient(269.96deg, rgba(0, 0, 0, 0.74) 1.09%, rgba(0, 0, 0, 0.5) 58.13%, rgba(0, 0, 0, 0) 99.96%);
  z-index: -1;
}

.fancy-banner .title-banner {
  margin-top: 36px;
  margin-bottom: 36px;
}

.fancy-banner .text-banner {
  margin-left: auto;
  text-align: end;
}

.fancy-banner .title-banner span.title-blue {
  color: var(--primary0);
}

.card-style-notfound {
  background: white;
  border-radius: 10px;
  padding: 30px 25px;
  margin-top: 20px;
}

.card-style-notfound .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--primary0);
}

/* for employers landing */

div#video {
  /* height: 100%; */
  overflow: hidden;
  border-radius: 10px 135px 10px 10px;
}

div#video iframe {
  width: 100%;
  height: 100%;
}

.vp-controls.ControlBar_module_controls__f9673a30 {
  display: none;
}

.video-icon {
  width: 65px;
  height: 65px;
  color: #fff;
  font-size: 40px;
  padding-left: 5px;
  margin-left: auto;
  background: var(--primary0);
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.video-icon:hover {
  background: var(--primary-2);
}

.video-icon img {
  width: 40px;
  height: 40px;
  filter: invert(1);
}

div#video-popup {
  z-index: 10;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#video_youtube {
  display: none;
  z-index: 1031;
  background-color: black;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
}

.yt-player-close {
  appearance: none;
  border: none;
  position: absolute;
  opacity: .6;
  top: 70px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1032;
  border-radius: 30px;
  display: flex;
  gap: 1px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.2857;
  letter-spacing: normal;
  font-size: .82rem;
  margin-bottom: 1rem;
  color: white;
  background-color: #1d1c1d;
}

.yt-player-close svg {
  fill: white;
}

.yt-player-close:hover {
  background-color: #f5f4f5;
  color: black;
}

.yt-player-close:hover svg {
  fill: black;
}

.yt-player-close:focus {
  outline: #fff dotted 2px;
  outline-offset: 5px;
}

.jobseekers-employers-landing .columns-div-highlights {
  row-gap: 32px;
}

.jobseekers-employers-landing .blue-title {
  font-weight: 500;
}

.jobseekers-employers-landing img.picture-banner {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.jobseekers-employers-landing .ai-advantages-container img {
  width: 30px;
  margin-bottom: 10px;
}

.jobseekers-employers-landing .ai-advantages-container {
  gap: 16px;
  row-gap: 36px;
}

.jobseekers-employers-landing .ai-advantage {
  width: 22%;
  min-width: 200px;
}

.jobseekers-employers-landing section.cta-banner {
  padding: 30px 0;
}

.jobseekers-employers-landing.new-post-job-request .request-row {
  background-color: var(--primary0);
  padding: 60px 0;
  border-radius: 16px;
}

.jobseekers-employers-landing.new-post-job-request .request-row button {
  font-size: 32px !important;
}

.jobseekers-employers-landing.new-post-job-request .request-row button:hover {
  box-shadow: none;
  transform: scale(1);
}

.arrow-hover-effect-text .arrow-dynamic {
  height: 2px;
  background-color: white;
}

.arrow-hover-effect-text .arrow-dynamic {
  animation: slide-arrow 1.4s ease-in-out infinite;
}

@keyframes slide-arrow {

  0% {
    transform: translate(0, 0);
    width: 0px;
  }

  100% {
    transform: translate(7px, 0);
    width: 100%;
  }
}

#close-button {
  position: absolute;
  bottom: auto;
  top: -42px;
  right: 0;
  left: auto;
  z-index: 11;
  appearance: none;
  background-color: var(--primary0);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 5px 17px;
  transition: all .2s ease-in;
}

#close-button:hover {
  background-color: var(--primary-1);
}

#close-button:active {
  outline: none !important;
}

.fancy-banner div.text-card-banner {
  width: calc(100% - 52px);
  padding-left: 1.5rem;
  gap: 16px;
}

.fancy-banner .banner-card-footer {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  margin-top: auto;
}

.job-not-found__container img.notfound-picture {
  width: 100%;
}

.job-not-found__container img.notfound-picture-mobile {
  display: none;
}

/* 404 page */
.notfound__container {
  margin-top: 150px;
  margin-bottom: 100px;
}

.notfound__row {
  align-items: center;
}

.notfound__row img.dog-404 {
  width: 100%;
}

/* job request landing page */
.jobrequest__container {
  margin-top: 100px;
  margin-bottom: 100px;
}

.jobrequest__container .btn-one {
  width: auto !important;
  max-width: max-content !important;
}

.jobrequest__container section {
  margin-top: 70px;
  margin-bottom: 60px;
}

.jobrequest__container div.col-title-text {
  padding: 0 32px;
}


.jobrequest__container section.text-feature-one {
  padding-top: 50px;
}

.card-style-five {
  margin-top: 10px;
  padding-bottom: 35px;
}

div.numb {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary0);
  color: #fff;
  font-size: 15px;
  line-height: initial;
  margin: auto;
}

.list-style-one {
  text-decoration: none;
  list-style: none;
  font-size: 18px;
}

.list-style-one li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
}

.text-feature-one img.img-person {
  width: 95%;
  border-radius: 5px;
}

.text-feature-one img.img-person-small {
  width: 65%;
  margin-top: 20px;
  border-radius: 5px;
}

.jobrequest__container .video-icon {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 45%;
  left: 41%;
}

.jobrequest__container .video-icon img {
  width: 80%;
  height: 80%;
}

.jobrequest__container div.faqs-wrapper {
  margin: 32px 0;
}

.jobrequest__container section.faqs .faq {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}

.jobrequest__container .title-faq {
  font-size: 24px;
  font-weight: 500;
}

.jobrequest__container div:has(.title-faq) {
  padding-left: 12px;
}

.jobrequest__container br.custom-divider {
  display: none;
}

.jobrequest__container section.banner-wrapper {
  position: relative;
}

.banner-landing-cta {
  background-color: var(--primary-1);
  border-radius: 30px;
  padding: 0 20px 0;
  overflow: hidden;
}

.jobseekers-employers-landing .banner-landing-cta.full-width-banner {
  background-color: var(--primary4);
  border-radius: 0;
  padding: 24px;
  row-gap: 32px;
}

.jobseekers-employers-landing .col-cta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.jobseekers-employers-landing .voucher-brands p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 10px;
}

.banner-wrapper.foremployers .banner-landing-cta {
  justify-content: space-between;
}

.jobseekers-employers-landing .banner-wrapper.foremployers .banner-landing-cta {
  justify-content: flex-start;
  align-items: end;
  margin: auto;
  padding-left: 0;
}

.banner-wrapper.foremployers .banner-landing-cta .recruiter-img {
  overflow: hidden;
}

.feedback-section.no-background .feedback-flex {
  box-shadow: none !important;
  border: 1px solid var(--primary3);
}

.banner-landing-cta h2 {
  font-size: 36px;
}

.jobrequest__container div.col-cta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

img.picture-banner {
  width: 90%;
}

.banner-wrapper.jobseekers img.picture-banner {
  width: 75%;
  max-width: 380px;
  position: relative;
  bottom: -16px;
}

.banner-wrapper.foremployers img.picture-banner {
  transform: scale(2);
  position: relative;
  top: 94px;
}

.jobseekers-employers-landing .banner-wrapper.foremployers img.picture-banner {
  transform: none;
  top: 0;
}

.banner-jobs img.picture-banner {
  width: 100%;
}

.jobrequest__container .recruiter-img {
  height: 300px;
}

.jobrequest__container p.cta-text {
  margin: 10px 0 32px;
}

.banner-landing-cta div.shape-banner {
  width: 80px;
  height: 80px;
  background-color: var(--primary-transparent);
  border-radius: 37px 0px 100px;
  position: absolute;
  top: 0;
  left: -15px;
}

.banner-landing-cta div.shape-banner:last-of-type {
  width: 120px;
  height: 100px;
  border-radius: 200px 0 55px;
  top: auto;
  left: auto;
  bottom: 0;
  right: -15px;
}

/* employers landing experiment */
.jobrequest-maxwidth {
  max-width: 500px;
}

/* feedback-three */
section.feedback-section-three {
  margin: 100px 0 100px;
}

.feedback-section-three h2.h2-custom {
  margin: 24px 0 36px 0;
}

.feedback-section-three button:has(img.feedback-three-img) {
  appearance: none;
  -ms-progress-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border-radius: 100px;
  border: none;
}

.feedback-section-three img.feedback-three-img {
  width: 100%;
  height: 100%;
  max-width: 100px;
}

.feedback-section-three div.carousel-indicators {
  position: static;
  justify-content: space-evenly;
  margin-right: 22%;
  margin-left: 22%;
}

.feedback-section-three .carousel-indicators button {
  transition: opacity 0.2s ease-in-out 0s;
}

.feedback-section-three .carousel-indicators button.active {
  outline: 3px solid var(--primary0);
}

.feedback-section-three .carousel-indicators button:not(.active) {
  opacity: .7;
}

.feedback-section-three .carousel-indicators button:focus {
  outline: 3px solid var(--primary0);
}

.feedback-section-three p.description-big {
  line-height: 1.4em;
}

.feedback-section-three div.content-feedback {
  margin-bottom: 50px;
}

.feedback-section-three img.prev,
img.next {
  width: 24px;
  height: 24px;
}

a.carousel-control-prev,
a.carousel-control-next {
  width: fit-content;
  height: fit-content;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-in-out 0s;
}

a.carousel-control-prev:hover,
a.carousel-control-next:hover {
  background-color: var(--primary0);
}

.feedback-section-three img.prev,
img.next {
  width: 24px;
  height: 24px;
}

/* terms and conditions */

.termsandconditions__container,
.privacypolicy__container {
  padding: 90px 0 50px;
}

section.terms-labels {
  /* margin-top: 52px; */
  margin-bottom: 48px;
}

.terms-text-wrap {
  margin: 30px 0;
}

a.term-label {
  display: flex;
  width: 100%;
  border-radius: 10px;
  background-color: var(--primary4);
  margin: 10px 0;
  padding: 10px 12px;
  color: var(--primary-2);
  font-size: 15px;
  font-weight: 500;
}

a.term-label:hover {
  outline: 3px solid var(--primary0);
  color: var(--primary-2);
}

div.term-text {
  margin: 32px 0 48px;
}

div.term-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.term-title .numb {
  margin: 0;
}

.term-title h3 {
  margin: 0 10px 0 16px;
  ;
}

.term-text div.term-body {
  margin-top: 32px;
}

.term-text p.subtitle-blue {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary0);
}

.term-text p.subtitle-black {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-gray);
}

.termsandconditions__container p.body-1,
.termsandconditions__container li.body-1 {
  line-height: 28px;
}

/* privacy policy */
.privacy-policy-wrapper p.little-text {
  font-size: 14px;
}

.privacy-policy-wrapper.gdpr section.head-content {
  padding: 40px 0 36px;
}

.privacy-policy-wrapper p {
  line-height: 28px;
}

/* .privacy-policy-wrapper.gdpr p {
  margin-bottom: 50px;
} */

.highlight-privacy {
  font-weight: 500;
}

/* banner section */
.banner-section .form-control,
.inner-banner .form-control {
  padding: 0;
}

.banner-section .banner-section__content div.inputs-div,
.inner-banner div.inputs-div {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 16px;
}

.banner-section .input-container .form-control.border-0.body-2,
.inner-banner .input-container .form-control.border-0.body-2 {
  box-shadow: none !important;
  padding: 0 10px;
}

.form-control::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
  padding-left: 7px;
}

.banner-section .banner-section__content div.banner--input-group,
.inner-banner div.banner--input-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.banner-section .banner--input-group form#search {
  display: contents;
  width: 100%;
}

.banner-section .button-custom,
.inner-banner .button-custom {
  height: 100%;
  border-radius: 0 7px 7px 0;
}

.banner-section .button-custom:hover,
.inner-banner .button-custom:hover {
  background-color: var(--primary0);
  box-shadow: none;
}

/* buttons */

.button-primary {
  appearance: none;
  -webkit-appearance: none;
  height: auto;
  padding: 10px 40px;
  border-radius: 30px;
  border: none;
  background-color: var(--primary-1);
  color: white;
  text-align: center;
  transition: all 0.3s ease;
}

.button-primary:hover {
  box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
}

.button-primary-dark,
.modal .modal-footer button.button-primary-dark {
  appearance: none;
  -webkit-appearance: none;
  height: auto;
  padding: 10px 30px;
  border-radius: 7px;
  border: none;
  background-color: var(--primary-1);
  color: white;
  text-align: center;
  font-weight: 500;
}


.button-primary-dark:hover,
.modal .modal-footer button.button-primary-dark:hover {
  box-shadow: var(--shadow-small);
  transform: scale(1.02);
}

a.button-primary-dark:hover {
  color: white !important;
}

.button-secondary {
  appearance: none;
  -webkit-appearance: none;
  height: auto;
  padding: 10px 40px;
  border-radius: 30px;
  border: 1px solid var(--primary0);
  background-color: white !important;
  color: var(--primary-1) !important;
  text-align: center;
  transition: all 0.3s ease;
}

.button-secondary:hover {
  border: 1px solid white;
  box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
}

.custom-links {
  display: inline-block;
  vertical-align: middle;
}

.custom-links,
.custom-links:hover {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-decoration: none;
  color: white;
}

.register-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 300px;
  padding: 10px 27px;
  border: none;
  background-color: white;
  border-radius: 10px;
  color: var(--primary-2);
  font-weight: 500;
  transition: transform 0.1s ease-in;
}

.register-button:hover {
  box-shadow: var(--shadow-dark-blue);
  transform: scale(1.02);
}

/* banner-section */

.banner-section__logos .logos--wrapper,
.banner-section__logos-mobile .logos--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 6%;
  margin-right: 6%;
}

.banner-section__logos .logos--wrapper img.brands-logos--img,
.banner-section__logos-mobile .logos--wrapper img.brands-logos--img {
  width: 7vw;
  max-width: 180px;
  height: auto;
  margin: 0 5px 15px;
}

.banner-section__logos.featured-in .logos--wrapper img.brands-logos--img {
  width: 10vw;
}

.banner-section__images {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  z-index: -1000;
}

.banner-section__images .tablet--left,
.tablet--right,
.desktop--left,
.desktop--right {
  display: none;
}

.banner-section .banner-section__content .banner--img-div {
  display: none;
}

.brands-logos .logo {
  height: 70px;
}

.brands-logos .logo img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.banner-section .input-container {
  padding: 3%;
  margin: 3%;
}

.input-div {
  border: 2px solid var(--primary0);
  border-radius: 10px;
  width: 80%;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
}

.banner-section__content div.keywords-input,
div.location-input {
  display: flex;
}

.banner-section__content div.banner-section__content div.button-search-div {
  text-align: center;
}

/* second section landing */
.second-section {
  background-color: var(--primary-1);
  justify-content: center;
  text-align: start;
}

.second-section__container div.linkfields-div {
  text-align: right;
}

.second-section__container .card-categories.bg-color div.body-1 {
  display: flex;
  justify-content: space-between;
  width: 70%;
  align-items: center;
  color: white;
  line-height: 19px;
}

.btn-two {
  font-size: 16px;
  font-weight: 400;
  color: white;
  position: relative;
  padding-right: 12px;
  border-bottom: 2px solid white;
  transition: all 0.3s ease-in-out 0s;
}

.btn-two:hover {
  color: white;
  letter-spacing: 0.2px;
}

.btn-two:after {
  /* arrow Explore all fields */
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  content: "";
  display: block;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-45deg);
  transition: all 0.15s ease-in-out;
  height: 8px;
  width: 8px;
}

.second-section .section-title {
  justify-content: space-between;
  align-items: center;
}

.icon-container {
  background-color: var(--primary0);
  border-radius: 100%;
}

.card-wrapper {
  row-gap: 1rem;
}

.second-section__container .card-wrapper .column-card--one,
.column-card--two,
.column-card--three,
.column-card--four,
.column-card--five,
.column-card--six,
.column-card--seven,
.column-card--eight {
  display: flex;
}

.card-categories {
  background: white;
  box-shadow: var(--shadow-dark-blue);
  border-radius: 10px;
}

.card-categories:hover {
  transform: translateY(-7px);
}

.card-categories a {
  padding: 25px 15px 25px;
  text-decoration: none;
  display: flex;
}

.card-categories .icon-category--icon {
  width: 28px;
  height: 28px;
}

.card-categories .category--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-transparent);
  transition: all 0.2s ease-in-out;
}

.card-categories:hover .category--icon {
  background-color: var(--primary3);
  border: none;
}

.card-categories div.category--text {
  text-align: start;
  padding-left: 10px;
}

.card-categories .body-1 {
  color: var(--text-header);
}

.card-categories .body-big {
  font-size: 16px;
  color: var(--primary0) !important;
  font-weight: 500;
}

.card-categories:hover .body-big {
  color: var(--primary-2) !important;
}

.card-categories.bg-color {
  box-shadow: none;
  margin-top: 10px;
  background: var(--primary0);
  border: 3px solid var(--turquoise);
}

.card-categories.bg-color:hover {
  box-shadow: var(--shadow-turquoise);
  background: var(--primary0);
}

.card-categories.bg-color a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
}

.card-categories.bg-color .title {
  font-size: 72px;
  line-height: initial;
  margin: 15px 0 0;
  color: var(--primary-2);
}

.card-categories.bg-color .arrow-categories {
  width: 36px;
  height: auto;
  background-color: #77A2FF;
  border-radius: 50%;
}

.card-categories.bg-color:hover .arrow-categories {
  transform: rotate(35deg);
}

.card-categories.bg-color .body-1 {
  font-weight: 400;
  letter-spacing: 1px;
}

.card-categories.bg-color .icon {
  border-color: #fff;
}

/* job-listing */
.find-jobs-wrapper .filter-area div.custom-tab {
  font-weight: 500;
}

.find-jobs-wrapper a.filter-header {
  width: 50%;
  height: 100%;
  padding: 7px 0;
  border-radius: 0 0 10px 0;
  text-align: center;
  background-color: var(--primary-2);
  transition: all 0.3s ease-in;
}

.find-jobs-wrapper a.filter-header.collapsed:hover {
  background-color: var(--primary-2);
}

.find-jobs-wrapper a.filter-header.collapsed:hover svg {
  fill: white;
}

.find-jobs-wrapper a.filter-header.collapsed {
  /* border-radius: 0 0 10px 0; */
  background-color: var(--primary4);
}

.find-jobs-wrapper a.filter-header.collapsed svg {
  fill: var(--primary-2);
}

.find-jobs-wrapper a.filter-header svg {
  fill: white;
}

/* 
  .find-jobs-wrapper.filter-header span {
    font-size: 24px;
    font-weight: 500;
  } */

.find-jobs-wrapper div.filters-group {
  padding: 20px 20px 25px;
  border-top: 1px solid var(--primary-transparent);
}

/* .find-jobs-wrapper .filters-group img.search-img {
  position: absolute;
  right: 28px;
  bottom: 32px;
} */

.find-jobs-wrapper .filter-block {
  padding: 10px 0 12px;
}

.find-jobs-wrapper .filter-title {
  margin-bottom: 10px;
}

.find-jobs-wrapper .filters-group .input-box {
  outline: none;
  border: none;
  height: 45px;
}

.filters-group input {
  width: 100%;
  height: 45px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  border: 1px solid #EDEDED;
  border-radius: 7px;
  padding: 0 35px 0 15px;
}

.collapse.filters-group input {
  border-radius: 10px;
  color: black;
  border: 1px solid var(--primary4);
}

.filters-group input:focus-visible {
  outline: none;
}

.filters-group .nice-select {
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  border: 1px solid #EDEDED;
  border-radius: 7px;
  outline: none;
  box-shadow: none;
  padding: 0 15px 0 15px;
}

.job-listing div.upper-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
  margin-top: 20px;
}

.job-listing .upper-filter span.number {
  font-weight: bolder;
  color: var(--text-header);
}

.upper-filter .sort-filter {
  display: flex;
  align-items: baseline;
  gap: 10px;
  /* margin-right: 16px; */
}

.upper-filter .sort-filter .nice-select {
  min-width: 154px;
  height: 32px;
  font-size: 14px;
  font-weight: 400;
  padding: 0 15px 0 15px;
  background: white;
  border: 1px solid var(--primary4);
  border-radius: 30px;
  cursor: pointer;
}

.upper-filter .sort-filter .nice-select:focus-visible {
  outline: none;
}

.filter-area-tab .nice-select:before {
  content: url(/assets/icons/arrow-down-black.svg);
  position: absolute;
  right: 10px;
  top: 8px;
  line-height: initial;
  transform: none;
}

.filter-area-tab .nice-select.open:before {
  transform: rotate(180deg);
  top: 17px;
}

.filter-area-tab .nice-select:after {
  display: none;
}

.filter-area-tab .nice-select .option {
  font-size: 1em;
  line-height: 32px;
}

/* grid style settings */
.upper-filter .style-changer-btn {
  width: 35px;
  height: 35px;
  line-height: 15px;
  color: #000;
  font-size: 18px;
  border: 1px solid var(--primary4);
  margin-left: 10px;
  background-color: white;
  display: none;
}

.upper-filter .style-changer-btn:hover {
  color: #fff;
  background: var(--primary-1);
  border-color: var(--primary3);
}

.upper-filter .style-changer-btn:focus {
  color: #fff;
  background: var(--primary-1);
  border-color: var(--primary3);
}

.upper-filter .style-changer-btn:focus {
  outline: none;
}

.upper-filter .style-changer-btn.active {
  display: none;
}

.detailed-view .job-item-div {
  display: grid;
  grid-template-columns: 32% 64%;
  justify-content: space-between;
}

.grid-style .job-item-div {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
}

.grid-style .job-item-div .job-item {
  padding: 32px 32px 28px;
  margin-bottom: 40px;
}

.grid-style .job-item-div .job-item div.job-title {
  /* height: 90px; */
  width: 100%;
  align-items: flex-start;
  overflow: hidden;
}

.candidate-profile__container div.title-text {
  height: auto;
}

.grid-style .job-item-div .job-item div.title-text {
  height: 100%;
  justify-content: center;
  overflow: hidden;
  /* gap: 8px; */
}

.jobseekers .grid-style .job-item-div .job-item div.title-text {
  justify-content: center;
  max-width: 240px;
}

.grid-style .job-item-div .logo img {
  width: 50px;
}

.grid-style .job-item-div div:has(div.column-buttons) {
  width: 100%;
  height: 300px;
}

.grid-style .job-item-div div.column-buttons {
  width: 100%;
  justify-content: space-between;
}

.grid-style .job-item-div .banner-jobs {
  grid-column: 1/3;
  margin: 0 0 25px;
}

/* jobs wrapper */

.job-post-item-wrapper div.load-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.load-more button.btn-one {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.filters-group button.btn-one {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  max-width: 300px;
  margin: auto;
}

.job-post-item-wrapper .job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 10px;
  border: 1px solid var(--primary3);
  padding: 33px 50px 35px;
  transition: background-color 0.2s ease-in;
}

.job-post-item-wrapper .job-item:hover {
  background-color: var(--primary4);
}

.job-list-one .save-btn {
  width: 35px;
  height: 35px;
  line-height: 32px;
  align-self: center;
  border: 1px solid var(--primary3);
  color: var(--primary3);
  transition: all 0.3s ease-in;
}

.job-list-one .save-btn:hover {
  border: 1px solid var(--primary0);
  color: var(--primary0);
}

.job-list-one div.job-title {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 15px;
}



/* .job-list-one a.link-jobtitle {
 height: 100%;
  max-height: 70px; 
} */

.job-list-one div.title-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 7px;
  overflow: hidden;
}

.jobseekers .job-list-one div.title-text {
  justify-content: center;
  max-width: 300px;
}

.job-list-two.job-item {
  padding: 16px 0;
}

.job-list-two.job-item:not(:last-child) {
  border-bottom: 1px solid var(--primary4);
}

.job-list-two div.title-text span.little-title {
  font-size: 16px;
}

.job-list-two div.job-location {
  font-size: 14px;
}

.job-list-one span.little-title {
  font-size: 16px;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-list-one span.little-title:not(.little-title.blue) {
  font-size: 14px;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-list-one span.little-title.blue,
.job-list-two span.little-title.blue {
  color: var(--primary0);
}

.jobseekers .job-list-one div.logo {
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  overflow: hidden;
}

.job-list-one img.logo {
  border-radius: 7px;
}

.jobseekers .job-list-one img.logo {
  border-radius: 100px;
  width: 80px;
}

.feedback-section.no-background .job-list-one img.logo {
  width: 50px;
}

.job-list-one div.job-applicants {
  display: flex;
  align-items: center;
  gap: 7px;
}

.job-list-one div.job-location {
  display: flex;
  align-items: start;
  gap: 7px;
  height: 38px;
  min-height: 38px;
  max-height: 43px;
  overflow: hidden;
}

.job-list-one div.info {
  width: 70%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-header);
}

.job-post-item-wrapper.grid-style .job-list-one div.info {
  width: 100%;
  max-width: 100%;
  height: 69px;
}

.jobseekers .job-list-one div.info {
  flex-direction: row;
  justify-content: space-between;
  width: 75%;
  max-width: 360px;
}

.jobseekers .job-list-one div.info div {
  gap: 7px;
  width: 100%;
}

.jobseekers .job-list-one .info div.jobseeker-location {
  width: 80%;
  max-width: 144px;
}

.jobseekers .job-list-one .info span.info-relevant {
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.job-list-one div.column-buttons {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.job-list-one div.premium-label,
div.premium-label {
  width: 43px;
  height: 26px;
  border-radius: 6px 0 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  background: var(--primary0);
  text-align: center;
}

.candidate-profile__container div.premium-label {
  height: 35px;
  background: var(--primary-2);
  top: auto;
  bottom: -36px;
  left: 50%;
  bottom: -24px;
  border-radius: 0 0 10px 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.candidate-profile__container div.premium-label img {
  width: 26px;
}

.job-list-one div.premium-label img,
div.premium-label img {
  width: 20px;
}

.grid-style .job-item-div div.premium-label {
  width: 100%;
  height: 4px;
  border-radius: 300px 300px 30px 30px;
}

.grid-style .job-item-div div.premium-label img {
  width: auto;
  max-width: 40px;
  padding: 0 10px 3px;
  background-color: var(--primary0);
  border-radius: 0 0 16px 16px;
}

.job-list-one:has(div.premium-label) {
  border: 2px solid var(--primary0);
}

.premium-boost-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary0);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 6px;
  position: relative;
  cursor: pointer;
}

.premium-boost-icon img {
  width: 14px;
  height: 14px;
}

.premium-boost-icon::after {
  content: 'Premium Boost';
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1F2937;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.premium-boost-icon:hover::after {
  opacity: 1;
}

.job-listing .banner-jobs {
  width: 100%;
  margin: 0 0 25px;
  background-color: var(--primary-1);
  color: white;
  border-radius: 10px;
  overflow: hidden;
  justify-content: space-between;
}

.banner-jobs .counter-wrapper {
  border-top: 1px solid #fff;
}

.banner-jobs .counter-block {
  margin-top: 20px;
}

.banner-jobs .counter-wrapper .main-count {
  font-size: 32px;
}

.banner-jobs .benefits-banner-one span.data-benefits {
  font-size: 28px;
  font-weight: 500;
}

.banner-jobs .benefits-banner-one span.benefit-banner {
  font-size: 14px;
  font-weight: 300;
}

/* fifth section */
/* Candidates carousel */
.fourth-section__container {
  position: relative;
}

.fourth-section__container .candidates-header {
  margin-bottom: 15px;
  justify-content: space-between;
  align-items: center;
}

.card-candidate {
  text-align: center;
}

.candidate-text {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.fourth-section__container .slick-carousel .card-candidate .img-meta img {
  border-radius: 200px;
  width: 90%;
}

.card-candidate .post {
  color: rgba(0, 0, 0, 0.5);
}

/* candidates carousel */
.slick-carousel-container {
  position: relative;
}

.slick-arrows {
  display: flex;
}

.slick-arrows img {
  width: 32px;
  height: 32px;
}

div.slick-prev,
div.slick-next {
  margin-right: 15px;
  /* Espacio entre las flechas */
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-in-out 0s;
}

div.slick-prev:hover,
div.slick-next:hover {
  background-color: var(--turquoise);
}

/* sixth section */
/* feedback carousel */

.feedback-section {
  position: relative;
}

.feedback-section__container .feedback-header {
  text-align: center;
}

.feedback-section:before:not(.no-background) {
  content: "";
  position: absolute;
  bottom: 3%;
  left: 0;
  right: 0;
  text-align: center;
  width: 95vw;
  height: 47%;
  margin: 0 auto;
  background: var(--primary-1);
  box-shadow: var(--shadow-small);
  border-radius: 10px;
  z-index: -1;
}

.feedback-section__container {
  position: relative;
  margin-top: 30px;
}

.feedback-section__container .feedback-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feedback-section__container div.section-subtitle-div {
  margin-top: 20px;
}

.feedback-section.no-background .job-list-one div.info {
  flex-direction: row;
  justify-content: space-between;
}

/* slide */

.feedback-slider .slick-track,
.testimonial-slider .slick-track {
  display: flex !important;
}

.feedback-slider .slick-track .slick-slide,
.testimonial-slider .slick-track .slick-slide {
  height: inherit;
  display: flex;
}

.feedback-flex .review-footer {
  border-top: 1px solid #000;
  margin-top: auto;
}

.feedback-section .slider-wrapper {
  width: 100%;
}

.feedback-section__container .feedback-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: inherit;
  box-shadow: var(--shadow-cards);
  background: white;
  padding: 15px 25px;
  /* common padding */
  border-radius: 10px;
}

.feedback-slider .item {
  padding: 10px 10px;
  margin: 10px 20px;
}

.slick-slide {
  padding: 0 15px;
  height: inherit;
}

.slick-track {
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.banner-wrapper .slick-initialized .slick-slide {
  display: flex;
}

.slick-dots {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 15px 0;
}

.slick-dots li {
  margin: 0 7px;
}

.slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: var(--bg-1);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

li button:focus {
  outline: none;
}

.slick-dots li.slick-active button {
  background-color: var(--turquoise);
}


.no-background .slick-dots li.slick-active button,
.jobseekers-employers-landing .slick-dots li.slick-active button {
  background-color: var(--primary0);
}

.feedback-section__container .feedback-flex blockquote {
  line-height: 36px;
  margin-top: 1.5vw;
  /* margin helps to show the full card */
}

.feedback-flex .review-footer {
  border-top: 1px solid #000;
  margin-top: auto;
}

.feedback-flex .review-footer .author-img {
  width: 60px;
  height: 60px;
}

/* post job request / registration page */
.post-job-request-section-form #stepped {
  border-radius: 30px;
  box-shadow: var(--shadow-cards);
}

.post-job-request-section-form .h2-custom {
  margin-bottom: 24px;
}

.post-job-request-section-form div.icon-background {
  display: flex;
  background-color: var(--primary0);
  width: 36px;
  height: 36px;
  border-radius: 50px;
}

.post-job-request-section-form div.icon-no-background {
  display: flex;
  border: 1px solid var(--primary4);
  width: 36px;
  height: 36px;
  border-radius: 50px;
}

.post-job-request-section-form .icon-background img {
  filter: brightness(100);
  margin: 6px;
}

.post-job-request-section-form .icon-no-background img {
  margin: 6px;
}

.post-job-request-section-form hr.line-between-steps {
  width: 36px;
  color: var(--primary0);
  height: 2px;
}

.post-job-request-wrapper section.banner-wrapper:first-of-type {
  padding-top: 50px;
  margin-top: 60px;
  margin-bottom: 100px;
}

/* .post-job-request-section-form div.form-row {
  border-radius: 10px;
  box-shadow: var(--shadow-cards);
} */

.post-job-request-section-form fieldset {
  /* border-radius: 30px;
  box-shadow: var(--shadow-cards); */
  padding: 12px 16px 26px;
  /* padding: 63px 16px 26px; */
}

/* About Apply GPT */

.hero-section-applygpt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 700px;
  background: #f5f7ff;
  position: relative;
  overflow: hidden;
}

.hero-scribble-img {
  position: absolute;
  top: 48px;
  left: 8vw;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.hero-scribble2-img {
  position: absolute;
  bottom: 60px;
  right: 8vw;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}
.hero-bgshape-img {
  position: absolute;
  top: 120px;
  right: 0;
  width: 600px;
  max-width: 60vw;
  z-index: 1;
  pointer-events: none;
}
.hero-skills-img {
  position: absolute;
  top: 60px;
  right: 0;
  width: 300px;
  max-width: 60vw;
  z-index: 2;
  pointer-events: none;
  margin: 0;
}
@media (min-width: 992px) {
  .hero-skills-img {
    right: 0;
    left: auto;
    margin: 0;
    max-width: 300px;
    width: 300px;
  }
}

.hero-bg {
  background: #f5f7ff;
  min-height: 700px;
  overflow: hidden;
  margin-top: 70px;
}
.z-2 { z-index: 2; position: relative; }
.minh-700 { min-height: 700px; }
.z-3 { z-index: 3; position: relative; }
.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1763e5;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 500;
  color: #111;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.15rem;
  color: #222;
  max-width: 420px;
  margin-bottom: 2rem;
}
.hero-btn {
  background: #1763e5;
  border-radius: 32px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 36px;
  box-shadow: 0 4px 24px 0 rgba(23, 99, 229, 0.1);
  border: none;
}
.img-max500 { max-width: 500px; height: auto; }
.rect-abs-img {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 180px;
  z-index: 1;
  pointer-events: none;
}
.trustedby-img {
  position: absolute;
  left: 10%;
  top: 50%;
  height: 70px;
  box-shadow: 0 2px 12px 0 rgba(23, 99, 229, 0.08);
  border-radius: 12px;
  background: #fff;
  z-index: 4;
}
.arc-svg { width: 100%; height: 120px; display: block; }
.stat-img-40 { height: 40px; width: auto; margin-right: 10px; }
.stat-heading { font-size: 1.15rem; font-weight: 700; color: #111; }
.stat-subheading { font-size: 1rem; color: #222; opacity: 0.8; }
.stat-img-18 { height: 18px; width: auto; margin-right: 10px; }
.minh-540 { min-height: 540px; }
.minh-420 { min-height: 420px; }


.hero-bottom-arc {
  position: relative;
  width: 100%;
  height: 120px;
  margin-top: -2px;
  overflow: hidden;
  background: transparent;
  z-index: 10;
}
.hero-bottom-arc svg {
  display: block;
  width: 100%;
  height: 120px;
}

.hero-stats-overlay {
  position: relative;
  margin-top: -200px;
  margin-bottom: 100px;
  padding: 80px;
  width: 85%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
}
.hero-stats-overlay .stat-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
}
.hero-stats-overlay .stat-subheading {
  font-size: 1rem;
  color: #222;
  opacity: 0.8;
  margin-bottom: 0;
}
.hero-stats-overlay .me-5 {
  margin-right: 2.5rem !important;
}

/* Portal Hero Section Styles */
.portal-hero-section {
  background: #113dd9;
  color: #fff;
  padding: 56px 0 0 0;
}
.portal-hero-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
.portal-hero-subtitle {
  font-size: 1.25rem;
  color: #e0e7ff;
  margin-bottom: 0;
}
.portal-register-btn {
  background: #fff;
  color: #113dd9;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 18px;
  padding: 0.75rem 2.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: none;
  border: none;
  width: 30%;
  transition: background 0.2s, color 0.2s;
}
.portal-register-btn:hover {
  background: #e0e7ff;
  color: #113dd9;
}
.portal-hero-divider {
  border: none;
  border-top: 1px solid #c7d2fe;
  margin: 2.5rem 0 0 0;
}

/* How it Works Section */
.how-it-works-section {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
}
.how-it-works-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0b2e1e;
  letter-spacing: -1px;
}
.how-it-works-divider {
  border: none;
  border-top: 2px solid #f0f0f0;
  width: 90%;
  margin: 24px auto 0 auto;
}
.how-step-number {
  display: inline-block;
  background: #2256f6;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 16px;
  padding: 8px 22px;
  margin-bottom: 24px;
  margin-top: 8px;
  letter-spacing: 1px;
}
.how-step-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
  margin-top: 8px;
}
.how-step-desc {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 340px;
  margin: 0 auto;
}
@media (max-width: 991px) {

  .how-it-works-section {
    background: #fff;
  }

  .how-it-works-title {
    font-size: 2.2rem;
  }
  .how-step-title {
    font-size: 1.2rem;
  }
  .how-step-number {
    font-size: 1.3rem;
    padding: 6px 16px;
  }
}
@media (max-width: 767px) {
  .how-it-works-section  {
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: #fff;
  }
  .how-it-works-title {
    font-size: 1.5rem;
  }
  .how-step-title {
    font-size: 1rem;
  }
  .how-step-number {
    font-size: 1rem;
    padding: 4px 12px;
  }
  .how-step-desc {
    font-size: 1rem;
  }

  /* Hero Section: Improved mobile layout with better parity */
  .hero-section-applygpt {
    min-height: 600px !important;
    padding-top: 20px !important;
  }
  .hero-section-applygpt .container .row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    min-height: 600px !important;
  }
  .hero-section-applygpt h1 {
    font-size: 2.5rem !important;
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 0.5rem !important;
  }
  .hero-section-applygpt h2 {
    font-size: 2rem !important;
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-section-applygpt p {
    font-size: 1.1rem !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 2rem !important;
  }
  .hero-section-applygpt .btn {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 80% !important;
    max-width: 300px !important;
    font-size: 1.1rem !important;
    padding: 14px 28px !important;
  }
  .hero-section-applygpt .col-lg-6.pt-5.pb-5 {
    align-items: center !important;
    padding-top: 32px !important;
    padding-bottom: 24px !important;
  }
  .hero-section-applygpt .col-lg-6.d-flex {
    margin-top: 24px !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .hero-section-applygpt img[alt="Person Standing"] {
    display: block !important;
    margin: 0 auto !important;
    max-width: 85vw !important;
    width: 100% !important;
    height: auto !important;
    position: static !important;
  }

  /* Show some decorative elements on mobile for better parity */
  .hero-section-applygpt img[alt="Shape Rectangle"] {
    display: block !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 5% !important;
    width: 200px !important;
    max-width: 40vw !important;
    z-index: 1 !important;
    opacity: 0.7 !important;
  }
  .hero-section-applygpt img[alt="Skills"] {
    display: none !important;
  }
  .hero-section-applygpt img[alt="scribble"] {
    display: block !important;
    position: absolute !important;
    top: 30px !important;
    left: 5vw !important;
    width: 60px !important;
    z-index: 2 !important;
    opacity: 0.9 !important;
  }

  /* Hide only the most complex decorative elements */
  .hero-section-applygpt img[alt="Trusted by"],
  .hero-section-applygpt img[alt="bg-shape"],
  .hero-section-applygpt img[alt="scribble2"] {
    display: none !important;
  }

  /* Stats: Better mobile layout */
  .hero-stats-overlay {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 40px auto 24px auto !important;
    width: 100% !important;
    padding: 16px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
  }
  .hero-stats-overlay > div {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    flex: 1 1 0;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-stats-overlay img {
    margin-right: 8px !important;
  }
  .hero-stats-overlay .stat-heading {
    font-size: 1rem !important;
  }
  .hero-stats-overlay .stat-subheading {
    font-size: 0.9rem !important;
  }

  /* How it Works: Stack steps as cards */
  .how-it-works-section .row.justify-content-center > div[class^="col"] {
    margin-bottom: 18px !important;
    background: transparent;
    border-radius: 14px;
    box-shadow: none;
    padding: 18px 8px !important;
    width: 100% !important;
    max-width: 95vw !important;
    display: block !important;
  }
  .how-step-number {
    margin-bottom: 8px !important;
    margin-top: 0 !important;
  }

  /* Perfect For: Image above, center all */
  .perfect-for-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .perfect-for-section .row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .perfect-for-section .col-lg-6.position-relative {
    order: 1;
    margin-bottom: 20px !important;
  }
  .perfect-for-section .col-lg-6:not(.position-relative) {
    order: 2;
    text-align: center !important;
    align-items: center !important;
    padding: 0 20px !important;
  }
  .perfect-collage-img {
    margin: 0 auto 12px auto !important;
    display: block !important;
  }
  .perfect-scribble {
    display: none !important;
  }
  .perfect-btn-cta {
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
  }

  /* What You Get: Stack cards vertically */
  .what-you-get-section {
    background: #eef3ff !important;
    padding: 30px 20px !important;
  }
  .what-you-get-section .row.justify-content-center.gy-4 {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .what-card {
    margin: 0 0 12px 0 !important;
    width: 100% !important;
    max-width: 95vw !important;
    min-width: 0 !important;
  }

  /* Testimonials: Center, one card at a time */
  .testimonial-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .testimonial-section .row.align-items-center {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    min-height: unset !important;
    margin-bottom: 0 !important;
  }
  .testimonial-section .col-lg-5,
  .testimonial-section .col-lg-7 {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
  }
  .testimonial-slider-wrapper {
    padding: 20px 0 !important;
    overflow: hidden !important;
  }
  .testimonial-slider {
    flex-direction: row !important;
    gap: 20px !important;
    width: 100% !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }
  .testimonial-card {
    min-width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    scroll-snap-align: none !important;
  }
  .testimonial-dots {
    margin-top: 20px !important;
  }
  .testimonial-bg-rect {
    left: 20px !important;
    width: calc(100% - 20px) !important;
  }

  /* CTA: Center, button below text */
  .cta-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .cta-title {
    margin-bottom: 8px !important;
  }
  .cta-btn {
    margin: 0 auto !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    padding: 0 20px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Portal Hero Section: Stack text and button on mobile */
  .portal-hero-section .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .portal-hero-section .hero-text-block {
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  .portal-hero-section .portal-register-btn {
    width: 100% !important;
    max-width: 300px !important;
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .testimonial-slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: visible;
    gap: 32px;
    padding: 0;
  }
  .testimonial-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    width: auto;
    margin: 0;
    box-sizing: border-box;
    padding: 40px 32px 32px 32px;
    overflow: visible;
  }
}

/* Who It's Perfect For Section */
.perfect-for-section {
  padding-top: 64px;
  padding-bottom: 64px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.perfect-collage-img {
  width: 410px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(34, 86, 246, 0.08);
  position: relative;
  z-index: 2;
}
.perfect-scribble {
  position: absolute;
  top: -32px;
  left: 32px;
  width: 48px;
  z-index: 3;
  pointer-events: none;
}
.perfect-play-btn {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  z-index: 4;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(34, 86, 246, 0.12);
  transition: box-shadow 0.2s;
}
.perfect-play-btn:hover {
  box-shadow: 0 8px 32px 0 rgba(34, 86, 246, 0.18);
}
.perfect-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}
.perfect-subtitle {
  font-size: 1.15rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.perfect-feature {
  margin-bottom: 1.5rem;
}
.perfect-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2256f6;
  margin-bottom: 0.2rem;
}
.perfect-feature-desc {
  font-size: 1.08rem;
  color: #222;
  margin-left: 0;
}
.perfect-btn-cta {
  display: inline-block;
  background: #2256f6;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 14px 38px;
  box-shadow: 0 4px 24px 0 rgba(34, 86, 246, 0.1);
  border: none;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.perfect-btn-cta:hover {
  background: #113dd9;
  color: #fff;
}
@media (max-width: 991px) {
  .perfect-title {
    font-size: 1.7rem;
  }
  .perfect-collage-img {
    width: 100%;
    max-width: 340px;
  }
}
@media (max-width: 767px) {
  .perfect-for-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .perfect-title {
    font-size: 1.2rem;
  }
  .perfect-collage-img {
    max-width: 100%;
    width: 100%;
  }
  .perfect-scribble {
    width: 32px;
    top: -18px;
    left: 12px;
  }
  .perfect-play-btn svg {
    width: 40px;
    height: 40px;
  }
  .perfect-btn-cta {
    font-size: 1rem;
    padding: 10px 22px;
  }
}

/* What You Get Section */
.what-you-get-section {
  background: #eef3ff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.what-you-get-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2.5rem;
}
.what-card {
  background: #fff;
  border-radius: 48px;
  box-shadow: 0 4px 24px 0 rgba(34, 86, 246, 0.04);
  padding: 48px 32px 40px 32px;
  min-width: 260px;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 8px;
}
.what-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2256f6;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  margin: 0 auto 18px auto;
}
.what-icon-bg img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.what-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.what-card-desc {
  font-size: 1.08rem;
  color: #6b7280;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .what-you-get-title {
    font-size: 2rem;
  }
  .what-card {
    min-width: 220px;
    max-width: 100%;
    padding: 32px 16px 28px 16px;
  }
  .what-icon-bg {
    width: 64px;
    height: 64px;
  }
  .what-icon-bg img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .what-you-get-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .what-you-get-title {
    font-size: 1.2rem;
  }
  .what-card {
    min-width: 0;
    padding: 24px 8px 18px 8px;
    border-radius: 24px;
  }
  .what-icon-bg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
  .what-icon-bg img {
    width: 22px;
    height: 22px;
  }
  .what-card-title {
    font-size: 1rem;
  }
  .what-card-desc {
    font-size: 0.95rem;
  }
}

/* Testimonial Section - Refined Layout */
.testimonial-section {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.testimonial-label {
  font-size: 1rem;
  color: #bdbdbd;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.testimonial-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0b2e1e;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}
.testimonial-rating {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2256f6;
  margin-bottom: 0.5rem;
}
.testimonial-desc {
  font-size: 1.15rem;
  color: #bdbdbd;
  margin-bottom: 2rem;
}
.testimonial-slider-bg {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 0;
}
.testimonial-bg-rect {
  position: absolute;
  top: -40px;
  left: 40px;
  width: calc(100% - 40px);
  height: 100%;
  background: #eaf0ff;
  border-radius: 32px;
  z-index: -1;
}
.testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: transparent;
  border-radius: 24px;
  padding: 32px 0;
  overflow: hidden;
  z-index: 1;
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 100%;
  position: relative;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(34, 86, 246, 0.06);
  padding: 40px 32px 32px 32px;
  min-width: 340px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  flex-shrink: 0;
  opacity: 1;
  transition: box-shadow 0.4s, transform 0.4s, opacity 0.4s;
}
.testimonial-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2256f6;
  margin-bottom: 8px;
}
.testimonial-stars span {
  color: #ffc107;
  font-size: 1.1rem;
  margin-right: 2px;
}
.testimonial-card-text {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 24px;
  margin-top: 8px;
}
.testimonial-card hr {
  border: none;
  border-top: 1.5px solid #e0e7ef;
  margin: 18px 0 10px 0;
}
.testimonial-card-user {
  display: flex;
  align-items: center;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}
.testimonial-user-name {
  font-weight: 700;
  color: #111;
  font-size: 1.08rem;
}
.testimonial-user-location {
  color: #6b7280;
  font-size: 1rem;
}
.testimonial-quote {
  position: absolute;
  right: 32px;
  bottom: 24px;
  font-size: 2.5rem;
  color: #e0e7ef;
  font-family: serif;
  font-weight: 700;
  opacity: 0.7;
}
.testimonial-dots {
  margin-top: 32px;
  text-align: center;
}
.testimonial-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #e0e7ef;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.testimonial-dot.active {
  background: #2256f6;
}
@media (max-width: 1200px) {
  .testimonial-title {
    font-size: 2.2rem;
  }
  .testimonial-card {
    min-width: 300px;
    max-width: 90vw;
  }
  .testimonial-bg-rect {
    left: 0;
    width: 100%;
    border-radius: 24px;
  }
}
@media (max-width: 991px) {
  .testimonial-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .testimonial-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .testimonial-card {
    border-radius: 10px;
    min-width: 90vw;
    max-width: 100vw;
    padding: 28px 12px 20px 12px;
  }
  .testimonial-slider-bg {
    min-height: 320px;
  }
  .testimonial-bg-rect {
    border-radius: 16px;
    top: -20px;
  }
}
@media (max-width: 767px) {
  .testimonial-title {
    font-size: 1.1rem;
  }
  .testimonial-card {
    border-radius: 8px;
    min-width: 96vw;
    max-width: 100vw;
    padding: 18px 4px 12px 4px;
  }
  .testimonial-slider-bg {
    min-height: 220px;
  }
  .testimonial-bg-rect {
    border-radius: 8px;
    top: -10px;
  }
}

/* CTA Section - Refined for Screenshot Look */
.cta-section {
  background: #2256f6;
  border-radius: 16px;
  margin: 0 auto 60px auto;
  padding: 64px 0;
  width: 80%;
  max-width: 1100px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.cta-text {
  flex: 1 1 auto;
  padding-left: 32px;
}
.cta-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.8;
}
.cta-subtitle {
  color: #e0e7ff;
  font-size: 1.1rem;
  font-weight: 400;
}
.cta-btn {
  background: #fff;
  color: #2256f6;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 10px;
  width: 300px;
  height: 60px;
  border: none;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 32px;
}
.cta-btn:hover {
  background: #e0e7ff;
  color: #2256f6;
}
@media (max-width: 1200px) {
  .cta-section {
    width: 90%;
    padding: 40px 0;
  }
  .cta-content {
    gap: 18px;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-btn {
    width: 150px;
    height: 48px;
    font-size: 1rem;
    margin-right: 16px;
  }
  .cta-text {
    padding-left: 16px;
  }
}
@media (max-width: 767px) {
  .cta-section {
    width: 98%;
    padding: 18px 0;
    border-radius: 8px;
    margin: 20px auto 40px auto;
  }
  .cta-content {
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: stretch;
  }
  .cta-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .cta-btn {
    width: 100%;
    height: 44px;
    font-size: 1rem;
    margin-right: 0;
  }
  .cta-text {
    padding-left: 0;
  }

  .how-it-works-section {
    background: #fff !important;
  }
}

/* End of About Apply GPT page */

section.top-portals-section div.perks-wrapper {
  gap: 36px;
}

.perk-img-container {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 24px;
  width: 100%;
  height: 100%;
  max-height: 300px;
  max-width: 440px;
}

.perk-img-container img.position-changed {
  position: relative;
  top: -40%;
}

.reset .perk-img-container img.card-banner {
  bottom: -50px;
}

section.top-portals-section img.perk {
  transition: transform 0.2s ease-in;
}

section.top-portals-section img.perk:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

section.top-portals-section {
  margin-bottom: 24px;
}

.choose-acc-type {
  gap: 10px;
}

.choose-acc-type li {
  list-style: none;
}

.form-control:hover {
  box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, .25);
}

form.default-form .form-group {
  width: 100%;
}

#registrationmodal .form-group,
.registration-form .form-group {
  width: auto;
  flex-grow: 1;
  flex: 1;
  text-align: left;
}

#registrationmodal .form-group.firstname,
.registration-form .form-group.first-name {
  flex-grow: 2 !important;
}

form.default-form.little-label label {
  font-size: 14px !important;
  font-weight: 400 !important;
}

form.default-form.little-label .form-control input[value],
form.default-form.little-label .form-group input[placeholder],
form.default-form.little-label textarea[placeholder] {
  font-weight: 500 !important;
}


/* #registrationmodal .form-container {
  gap: 16px;
} */

.formrow {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  width: 100%;
  gap: 16px;
}

.formrow .form-group.salutation {
  /* flex-grow: 0 !important; */
  width: 98px !important;
}

.formrow.second .box-flex-1 {
  gap: 16px;
}

.formrow .box-flex-1 {
  flex: 1;
}

.posted-job-request-wrapper form#stepped {
  margin-top: 24px;
  padding: 0px 10px 24px;
}

.posted-job-request-wrapper form#stepped p.blockquote {
  margin-top: 16px;
}

.candidate-profile__container form .professional-personal-info div.form-group {
  width: auto;
  gap: 16px;
}

.candidate-profile__container form .personal-info div.form-group {
  width: fit-content;
  gap: 16px;
}

.candidate-profile__container.employer-view .contactme form input[type=submit] {
  color: white;
  font-weight: 500;
}

.candidate-profile__container.anonymous .contactme form input[type=submit] {
  color: white;
  font-weight: 500;
}

.candidate-profile__container.employer-view form div.submit-message-candidate {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 16px;
}

.candidate-profile__container.anonymous form div.submit-message-candidate {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 16px;
}

.candidate-profile__container span.maximum-span {
  font-size: 15px;
  opacity: 0.5;
}

.default-form div.indicators {
  width: 30%;
  margin: 0 auto 16px;
  padding-top: 30px;
}

.complete-profile-wrapper form.default-form div.indicators {
  width: 20%;
}

.default-form .indicators img {
  width: 18px;
}

form.default-form label {
  font-size: 14px;
  font-weight: 500;
  padding-left: 10px;
}

.candidate-profile__container form.default-form label {
  font-size: 12px;
  font-weight: 400;
  padding-left: 0;
}

.candidate-profile__container div.experience-description {
  width: 90%;
  margin-bottom: 16px;
}

.candidate-profile__container .experiences-wrapper.saved button.btn-edit-action.edit {
  max-height: 40px;
  top: 0;
  right: 0;
}

.btn-edit-experience {
  padding-right: 24px !important;
  border: 1px solid var(--primary3) !important;
  padding: 5px 10px !important;
  border-radius: 10px !important;
  background: white !important;
  min-width: 100px !important;
  transition: all 0.2s ease-in !important;
}

.btn-edit-experience:hover {
  font-weight: 500;
  box-shadow: var(--shadow-3);
}

.btn-edit-experience img {
  width: 16px;
  margin-right: 3px;
}

.btn-edit-experience.save {
  background: var(--primary0) !important;
  color: white !important;
}

.btn-edit-experience.save img {
  filter: brightness(10);
}

.btn-edit-experience.delete {
  border-color: transparent !important;
}

.experience-description button.btn-edit-experience.edit,
.btn-edit-experience.delete,
.btn-edit-experience.save,
.btn-edit-experience.cancel {
  min-width: auto !important;
  padding: 5px 15px !important;
  font-size: 14px !important;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  width: 200px;
}

.contactme-anchor {
  color: var(--primary-1) !important;
}

div.date {
  position: relative;
}

div.date span.add-on {
  position: absolute;
  top: auto;
  right: 16px;
  bottom: 7px;
}

div.date span.add-on img {
  width: 18px;
}

.datepicker .datepicker-switch {
  font-weight: 500 !important;
}

.datepicker table tr td {
  font-weight: 300 !important;
  font-size: 14px !important;
}

.datepicker table tr td span.active.active {
  background-color: var(--primary-1);
}

.datepicker table tr th.dow {
  font-weight: 500 !important;
}

.basic-info .editing form.default-form label {
  font-weight: 400;
}

form label.form-check-label {
  font-size: 12px;
  font-weight: 400;
}

form.default-form textarea {
  min-height: 112px;
}

form .form-control.phone-number {
  display: flex;
  align-items: center;
  gap: 10px;
}

form div.dial-code {
  color: var(--text-header);
}

/* form .personal-info div.dial-code {
  color: white;
} */

.form-control .phone-number-input {
  appearance: none;
  border: none;
  outline: none;
}

form.default-form .form-control,
form.default-form select {
  color: black;
  border: none;
  background-color: white;
  border: 1px solid var(--primary4);
  border-radius: 10px;
  padding: 15px 10px 10px;
  margin-bottom: 5px;
}

.candidate-profile__container form.default-form .form-control {
  margin-bottom: 0;
}

/* form.default-form .personal-info .form-control,
.personal-info select {
  background-color: transparent;
  color: white !important;
} */

/* TINYMCE */

#tinymce {
  padding: 10px 10px;
  overflow: hidden;
}


.mce-tinymce {
  box-shadow: none !important;
  border: 1px solid var(--primary4) !important;
}

.mce-top-part::before {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid var(--primary4);
}

.mce-ico {
  color: var(--text-header);
}


.mce-flow-layout {
  padding: 6px !important;
}

.mce-path.mce-flow-layout-item {
  display: none;
}

.mce-panel.mce-container {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.mce-stack-layout-item.mce-last {
  border-width: 0;
}

.mce-btn-group .mce-btn {
  border-radius: 6px !important;
  overflow: hidden;
  border: none !important;
}

.mce-btn:hover,
.mce-btn:active {
  border: none !important;
  background: var(--primary3) !important;
}

.mce-btn.mce-active button,
.mce-btn.mce-active:hover button,
.mce-btn.mce-active i,
.mce-btn.mce-active:hover i {
  background-color: var(--primary0);
}


.basic-info .editing form .form-control {
  background-color: transparent;
}

.default-form .nav-tabs {
  align-items: center;
  border-radius: 60px;
  border: 1px solid var(--primary4);
  /* padding: 6px; */
  margin-bottom: 32px;

}

.default-form a.nav-link {
  font-size: 14px;
  color: var(--text-header);
  border: none;
  border-radius: 60px;
  cursor: pointer;
}


.default-form a.nav-link.active {
  background-color: var(--primary0);
  color: white !important;
  border-radius: 60px;
}

button.btn-back.register span.sign-in-text {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  color: #3c4043;
  letter-spacing: 0.25px;
}

button.btn-back.register:target span.sign-in-text {
  font-weight: 500;
}

span.info-title,
span.info-alert {
  font-size: 12px;
  line-height: 24px;
  padding-left: 10px;
  letter-spacing: .01em;
}

span.info-title.greeting {
  width: 100%;
  font-size: 14px;
  text-align: center;
  color: var(--text-header);
  background-color: var(--primary4);
  border-radius: 6px;
  padding: 3px 5px;
  margin-bottom: 16px;
}

span.info-alert {
  display: none;
  width: fit-content;
  color: red;
  background-color: rgba(255, 0, 0, 0.09);
  padding-right: 10px;
  border-radius: 6px;
  margin-top: 6px;
}

.basic-info.editing span.info-alert {
  background-color: rgb(255 192 192 / 59%);
}

span.time-calculator {
  color: var(--text-header);
  background-color: var(--primary4);
  font-size: 12px;
  padding: 5px 10px;
  margin-left: 16px;
  border-radius: 6px;
}

.phone-number span.info-alert {
  position: absolute;
  top: 75px;
  left: 0;
}

span#inpcv-error.info-alert {
  position: absolute;
  top: 100px;
}

span#salary-error.info-alert {
  margin: 5px 0;
}

form div.card-number-fields,
div.expiration-date-fields {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 2px;
}

/* pricing table - JR */
.pricing-table {
  border-radius: 6px;
  border-top: 6px solid var(--primary0);
  padding: 10px 16px;
  box-shadow: var(--shadow-cards);
}

.pricing-table.free {
  border-top: 6px solid var(--primary3);
}

.pricing-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--primary4);
  padding-bottom: 16px;
  padding-top: 8px;
}

.pricing-table span.premium {
  background-color: var(--primary4);
  color: var(--primary0);
  font-weight: 500;
  padding: 5px 24px;
  border-radius: 50px;
  height: fit-content;
}

.pricing-table .premium-price {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary0);
  line-height: 20px;
}

.pricing-table span.periodical-price,
span.advantage-subtitle {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-body);
  opacity: .5;
}

.pricing-table .advantages {
  padding: 10px 0;
}

.pricing-table .advantage {
  width: 100%;
  gap: 10px;
  padding: 8px 0;
  align-items: flex-start;
}

.pricing-table span.advantage-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.pricing-table div.show-more {
  padding: 16px 0 8px;
  border-top: 1px solid var(--primary4);
}

.pricing-table div.show-more a {
  color: var(--primary0);
}

.pricing-table .show-more a[aria-expanded="true"] img.arrow-more {
  transform: rotate(180deg);
}

.pricing-table .show-more a[aria-expanded="true"] .span-more {
  display: none;
}

.pricing-table.free .pricing-table-content {
  padding: 18px 0;
}

#freeAccount,
#premiumAccount {
  cursor: pointer;
}

.pricing-table .free-subtitle {
  font-size: 14px;
}


form div.select-account-table {
  border-radius: 10px;
}

form div.select-account-table .col:not(.col-4) {
  text-align: center;
}

form div.select-account-table .pricing-row:not(:first-of-type) {
  padding: 12px 6px;
  border: 1px solid var(--primary4);
  font-weight: 500;
  align-items: center;
}

.select-account-table .pricing-row:nth-child(2) {
  border-radius: 10px 0 0 0;
}

.select-account-table .pricing-row:nth-child(7) {
  border-radius: 0 0 10px 10px;
}

form div.select-account-table .col.account-title {
  border: 1px solid var(--primary4);
  padding-top: 20px;
}

form div.select-account-table .col.account-title.free {
  border-radius: 10px 0 0 0;
}

form div.select-account-table .col.account-title.premium {
  border-radius: 0 10px 0 0;
  box-shadow: var(--shadow-small);
}

form div.select-account-table .col img {
  max-width: 32px;
}

.pricing-row:first-of-type {
  align-items: center;
  border-radius: 10px 10px 0 0;
}

.pricing-row:last-of-type {
  border-radius: 0 0 10px 10px;
}

.shadow-line {
  box-shadow: var(--shadow-small);
}

.select-account-table button {
  font-size: 14px;
  margin-bottom: 16px;
}

.select-account-table .col.dash {
  font-size: 26px;
  color: var(--primary0);
}

.price-amount {
  display: flex;
  font-size: 40px;
  color: var(--primary0);
}

.yearly {
  justify-content: center;
  align-items: flex-start;
  padding-left: 3px;
}

.yearly-text-price {
  font-size: 12px;
  color: gray;
  font-weight: 400;
}

.euro-icon-price {
  font-size: 20px;
  color: var(--primary0);
  font-weight: 300;
  line-height: 20px;
}

form div.payment-content {
  margin-top: 20px;
}

form .payment-content div.paypal-container {
  display: none;
}

label.card-number-label {
  display: flex;
  gap: 20px;
}

.card-number-fields input {
  width: 21%;
}


.default-form .nav-item {
  border: none;
}

span.line {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--primary4);
  transition: background-color 0.4s ease-in;
}

span.line.active {
  background-color: var(--primary0);
}

.default-form .btn-prev {
  visibility: hidden;
  border: none;
  background: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.default-form .btn-prev:hover {
  box-shadow: var(--shadow-small);
}

.default-form button.btn-prev:focus {
  outline: none !important;
}

/* password visibility */
.password-container {
  position: relative;
}

.password-input {
  flex: 1;
  padding-right: 40px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 52px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}

#eyeIcon {
  font-size: 20px;
}

.crossbar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary0);
  position: absolute;
  top: 46%;
  left: -2px;
  transform: translateY(-4%) rotate(-47deg);
  transition: all 0.3s ease-in-out;
}

/* tooltip */
img.q_info {
  height: 18px;
  width: 18px;
  padding: 0;
  margin-left: 10px;
  margin-top: 0;
  cursor: help;
  vertical-align: sub;
  opacity: 0.5;
}

.tooltip {
  position: relative;
  display: none;
  opacity: 0;
  line-height: 0;
  transition: all 0.3s ease-in;
}

label:hover .tooltip,
p:hover~.tooltip,
button:hover .tooltip,
.filter-title:hover .tooltip {
  display: block;
  opacity: 1;
}

.tooltip span.tooltiptext {
  font-weight: 400;
  visibility: hidden;
  width: 248px;
  background-color: white;
  border-radius: 10px;
  padding: 14px 18px;
  position: absolute;
  z-index: 1;
  bottom: 22px;
  left: 50px;
  margin-left: -60px;
  opacity: 0;
  transition: all 0.3s ease-in;
  text-align: left;
  color: var(--text-body);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .01em;
  box-shadow: var(--shadow-small);
}

label:hover span.tooltiptext,
p.body-big:hover~.tooltip span.tooltiptext,
button:hover span.tooltiptext,
.filter-title:hover .tooltip span.tooltiptext {
  visibility: visible;
  opacity: 1;
}


.default-form div.payment-info {
  display: none;
  margin: 0 auto 32px;
  padding: 15px 10px;
  background-color: var(--primary4);
  border-radius: 10px;
}

.default-form div.credit-card-payment {
  display: flex;
  flex-wrap: wrap;
}

.default-form div.select-dropdown {
  padding: 10px 10px 10px 0;
  border: 1px solid var(--primary4);
  border-radius: 10px;
}

.default-form .select-dropdown:focus-visible {
  outline: none !important;
  background-color: var(--primary4);
}

.form-group.evoucher {
  border: 1px solid var(--primary4);
  padding: 10px;
  border-radius: 10px;
}

.form-group.evoucher p.body-big {
  margin-bottom: 31px;
  font-weight: 500;
}

.form-group.evoucher button.btn-one {
  font-size: 14px;
  padding: 0 10px;
  border-radius: 10px;
}

form div.country-code-group {
  width: 100%;
}


.candidate-profile__container form div.phone-number-group {
  margin-top: 0;
}

div.editing form div.phone-number-group {
  margin-top: 0;
  width: 100%;
}

.country-code-group .custom-select {
  margin-bottom: 5px;
}

form.default-form label.country-code {
  width: max-content;
}

form.default-form div.radio-salary-container {
  max-width: 270px;
  gap: 7px;
  row-gap: 0;
}

.indicators * {
  transition: all 0.4s ease-in-out;
}

.bg-inactive {
  background-color: white !important;
}

.bg-current {
  background-color: var(--primary0);
}

.bg-current img {
  filter: brightness(10);
}

.bg-blue {
  background-color: var(--primary0);
}

.bg-blue img {
  filter: brightness(10);
}

.indicators div {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

fieldset div.steps {
  margin-bottom: 16px;
}

.post-job-request-section-form div.steps .steps-row {
  margin-bottom: 32px;
}

#stepped ul[role=tablist]:not(.account-tabs) {
  display: none;
}

.steps div.title-fieldset {
  background-color: white;
  position: relative;
  width: fit-content;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  margin: 1rem 0;
}

.title-fieldset h3 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
}


form.default-form input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.candidate-profile__container form.default-form input[type="radio"] {
  pointer-events: fill;
}

form.default-form input[value],
form.default-form input::placeholder {
  font-weight: 400;
}

form.default-form .form-control input[value],
form.default-form .form-group input[placeholder],
form.default-form textarea[placeholder] {
  color: var(--text-header);
  font-weight: 400;
  line-height: 30px;
}

.basic-info .editing form.default-form .form-control textarea[placeholder],
.basic-info .editing form.default-form .form-control textarea[value] {
  color: var(--text-header) !important;
}

.further-candidate-info div.overview-col {
  order: 1;
}

.further-candidate-info div.social-col {
  order: 6;
}

.further-candidate-info div.share-col {
  order: 7;
}

.further-candidate-info div.work-col {
  order: 2;
}

.further-candidate-info div.education-col {
  order: 4;
}

.further-candidate-info div.skills-col {
  order: 3;
}

.further-candidate-info div.portfolio-col {
  order: 5;
}

/* croppie plugin */
div.portfolio-input-container {
  position: relative;
  height: 60px;
  text-align: center;
}

#my-image,
#upload {
  display: none;
}

#portfolio input#imgInp {
  opacity: 0;
  width: 100%;
  cursor: pointer;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}

img#result {
  border-radius: 10px;
}

.croppie-container .cr-resizer {
  border-radius: 10px;
}

.portfolio-col .croppie-container .cr-image,
.portfolio-col .croppie-container .cr-overlay,
.portfolio-col .croppie-container .cr-viewport {
  border-radius: 10px !important;
}

.croppie-container .cr-boundary {
  border-radius: 10px !important;
}

/* croppie for basic info - candidate profile picture */
.personal-info input.file {
  position: absolute;
  height: 100%;
  width: auto;
  opacity: 0;
  -moz-opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  cursor: pointer;
  margin-top: -30px;
}

#upload-demo {
  width: 250px;
  height: 250px;
  padding-bottom: 25px;
}

form.default-form input[type="radio"] {
  position: static;
  opacity: 1;
  border: 1px solid var(--primary0);
}

form figure {
  position: relative;
}

form .profile-picture {
  /* opacity: 40%; */
  max-width: 80px;
  cursor: pointer;
  border-radius: 50px;
}

form img.edit-profile-picture {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-2);
  border-radius: 200px;
  padding: 16px 20px;
  cursor: pointer;
  top: 0;
  left: 0;
  opacity: .7;
}

form textarea#inpoverview {
  min-height: 200px;
  color: var(--text-header) !important;
}

form textarea.form-control {
  line-height: 28px;
}

form textarea#inpoverview[placeholder] {
  color: var(--text-header) !important;
}

form textarea::placeholder {
  line-height: 30px;
}

div.editing form label:not(.salary-label) {
  margin-top: 16px;
}

.candidate-profile__container div.editing form label:not(.salary-label) {
  margin-top: 0;
}

form.default-form label.salary-label {
  font-weight: 400 !important;
  margin-right: 10px;
  margin-bottom: 0 !important;
  cursor: pointer;
}

form label.salary-label {
  padding-left: 5px;
  margin-right: 8px;
}

form div.salary-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.candidate-profile__container form div.salary-inputs {
  gap: 0;
}

.candidate-profile__container .form-group {
  margin-bottom: 0;
}



.candidate-profile__container .form-group.form-language {
  display: flex;
  margin-bottom: 10px;
  gap: 6px;
}

.candidate-profile__container .form-group.form-language div {
  width: 100%;
}

/* .candidate-profile__container .form-group.form-language span.error.info-alert {
  position: absolute;
  bottom: 83px;
} */

.candidate-profile__container .language-edit {
  display: flex;
  flex-direction: column;
}

div.document-added {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background-color: var(--primary4) !important;
  border-radius: 10px !important;
  padding: 6px 10px !important;
}

.dropzone .dz-preview {
  flex-wrap: wrap;
  background-color: var(--primary4);
  min-height: 56px !important;
  width: 100%;
  margin: 0 0 16px 0 !important;
}

.dropzone {
  padding: 0 !important;
}

.dropzone .dz-preview {
  margin: auto;
}

.dropzone .dz-preview .dz-remove {
  z-index: 2000;
}

.dropzone .dz-preview .dz-remove img {
  cursor: pointer;
}

.dropzone .dz-preview .dz-details {
  display: flex;
  flex-wrap: nowrap !important;
  font-size: 16px !important;
  gap: 16px;
  position: relative !important;
  text-align: left !important;
  opacity: 1 !important;
  min-width: 90% !important;
  max-width: 90% !important;
  padding: 10px !important;
  z-index: 1200;
}

/* .dropzone .dz-preview .dz-details .dz-filename {
  white-space: normal !important;
} */

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 0 !important;
}

.complete-profile-wrapper .dropzone.dz-clickable .dz-message {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  opacity: 0;
  margin: 0;
}

.complete-profile-wrapper .dropzone.dz-clickable {
  position: relative;
}

.candidate-profile__container button.btn-no-appearance:not(.add-new) img {
  border: none;
  width: 32px;
}

.candidate-profile__container button.btn-no-appearance.delete-social img {
  width: 24px;
}

.candidate-profile__container button.btn-no-appearance.delete-file img {
  border-radius: 0 !important;
}

form .salary-inputs div.currency-input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 126px;
}

.candidate-profile__container form .salary-inputs div.currency-input {
  margin-top: 20px;
}

/* .candidate-profile__container div.experiences-wrapper.saved {
  display: flex;
  gap: 16px;
} */

div.form-control.add-file {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  height: 100px;
  position: relative;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background-color: var(--primary4);
  margin-bottom: 16px;
  opacity: 1;
}

div.form-control.add-file img {
  position: absolute;
  top: 25%;
}

.add-file {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: auto;
  padding: 23px 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background-color: var(--primary4);
  width: 100%;
  opacity: 0;
}

.upload-box div.vertical-line {
  border-left: 2px solid white;
  height: 100%;
}

.upload-box .form-control.add-file img {
  width: 36px;
  height: 36px;
}

.candidate-profile__container .info-block.social.saved {
  max-width: 325px;
}

.candidate-profile__container .social.saved.info-block div.social-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 78%;
  margin: auto;
  /* padding-left: 10px; */
}

.candidate-profile__container p.body-2 {
  margin-bottom: 0;
}

.candidate-profile__container .personal-info p {
  color: white;
}

.candidate-profile__container p.overview-text {
  line-height: 28px;
  overflow-wrap: break-word;
}

.candidate-profile__container .personal-info button.btn-preview {
  position: absolute;
  right: 0;
  bottom: 0;
  filter: brightness(10);
  border: none;
}

.candidate-profile__container .basic-info .options-employer button {
  width: 230px !important;
}

.candidate-profile__container .basic-info .options-employer button.button-primary {
  display: flex;
  justify-content: space-between;
  padding: 10px 36px 10px 46px;
}

.candidate-profile__container .basic-info .options-employer button.button-primary img {
  filter: brightness(9);
}

button.btn-no-appearance {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
  background: none;
  font-size: 14px;
  transition: all 0.2 ease-in;

}

button.btn-no-appearance:hover {
  font-weight: 500;
}

button.btn-no-appearance:focus {
  outline: none;
}

button.btn-no-appearance img {
  border: 1px solid var(--primary0);
  border-radius: 100px;
  width: 24px;
  padding: 3px;
  /* margin: 5px 5px 5px 0; */
}

button.btn-no-appearance:hover img {
  background-color: var(--primary4);
}

.candidate-profile__container div.btn-container-add {
  text-align: center;
  border-top: 1px solid var(--primary4);
  padding: 24px;
}

.candidate-profile__container .languages-col div.btn-container-add,
.social-col div.btn-container-add {
  border-top: 0;
}

.candidate-profile__container button.btn-edit-experience.delete-social {
  min-width: 36px !important;
  height: 32px;
  width: 36px !important;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.candidate-profile__container div.language-saved {
  display: flex;
  align-items: baseline;
}

.candidate-profile__container div.languages-wrapper p {
  font-size: 18px;
}

.candidate-profile__container div.languages-wrapper p.level {
  font-weight: 500;
}

.candidate-profile__container div.progress {
  width: 64px;
  height: 8px !important;
  border-radius: 6px;
  border: none;
  margin-left: 8px;
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
}

.candidate-profile__container div.progress.achieved {
  background-color: var(--primary0);
  border: 1px solid var(--primary0);
}

.candidate-profile__container div.language-saved img {
  width: 24px;
  margin-left: 16px;
}

.candidate-profile__container .social-icons-container {
  display: none;
}

.candidate-profile__container .social-icons-container.active {
  display: block;
}

.candidate-profile__container .social-icons-container button.newSocial {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  background-color: transparent;
  border: none;
}

.candidate-profile__container .social-icons-container button.newSocial img {
  width: 25px;
}

.candidate-profile__container div.a2a_default_style {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 78%;
}

.candidate-profile__container form .form-group.email-telephone {
  flex-wrap: wrap;
}

.candidate-profile__container .basic-info div.candidate-phone-number,
.basic-info div.candidate-email,
.basic-info div.date-birth {
  font-size: 14px;
  font-weight: 300;
  color: white;
  margin-bottom: 5px;
}

.candidate-profile__container .basic-info div.professional-personal-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
}

.candidate-profile__container.anonymous .basic-info div.professional-personal-info {
  padding: 0 0 0 32px;
}


.candidate-profile__container div.candidate-title {
  margin-left: 16px;
}

.candidate-profile__container .candidate-title~div.professional-personal-info {
  flex-direction: row;
  /* flex-wrap: wrap; */
  padding: 16px 0;
}

.candidate-profile__container .candidate-title~div.professional-personal-info div.custom-badge.skills {
  background-color: var(--primary0);
}

.candidate-profile__container .personal-info div.candidate-skills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 7px;
}

.candidate-profile__container.anonymous .personal-info .candidate-skills div.custom-badge.skills {
  background-color: var(--primary0);
}

.candidate-profile__container.anonymous .personal-info .candidate-skills div.custom-badge.more {
  background-color: var(--primary1);
}

.candidate-profile__container .candidate-title~div.professional-personal-info div.custom-badge.more {
  background-color: var(--primary1);
}

.candidate-profile__container img.candidate-profile-picture {
  max-height: 68px;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
}

.candidate-profile__container .basic-info .body-2 {
  margin-bottom: 10px;
}

.candidate-profile__container .professional-personal-info p.candidate-title {
  font-size: 14px;
}

.candidate-profile__container div.options-basic-info {
  flex-direction: column;
  gap: 16px;
  /* align-items: center; */
  justify-content: space-between;
  margin: 10px 24px;
}

.candidate-profile__container div.options-basic-info button {
  width: 120px !important;
  margin-left: auto;
  margin-right: auto;
}

.candidate-profile__container div.options-employer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 24px;
}

.candidate-profile__container .info-block.skills img.search-skills {
  position: absolute;
  width: 20px;
  top: 7px;
  left: 16px;
}

.candidate-profile__container input.new-skill-input {
  padding: 0 0 0 50px;
}

.collapse.filters-group input:hover {
  box-shadow: var(--shadow-small);
}

input.new-skill-input::-webkit-calendar-picker-indicator {
  display: none;
  opacity: 0;
}

input.new-skill-input::-webkit-inner-spin-button,
input.new-skill-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  opacity: 0;
  margin: 0;
}

input.new-skill-input::-ms-expand {
  display: none;
  opacity: 0;
}

.candidate-profile__container img.remove-skill {
  width: 16px;
  margin: 0 0 0 8px;
}


.candidate-profile__container .social-wrapper .social-link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 7px;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.candidate-profile__container .social-wrapper .social-link div {
  flex-grow: 1;
}

.candidate-profile__container .social-wrapper .candidate-profile__container.employer-view .social-link {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.candidate-profile__container .social.saved .social-wrapper .social-link img {
  width: 32px;
}


.candidate-profile__container .social.editing input.form-control {
  height: 32px !important;
}

/* .candidate-profile__container div.experiences-wrapper {
  position: relative;
} */

.candidate-profile__container .info-block div.experience {
  display: flex;
  /* padding: 0 16px; */
  gap: 16px;
  margin-top: 16px;
  position: relative;
}

.candidate-profile__container div.experience span.description p {
  word-wrap: break-word;
}

.candidate-profile__container div.experience span.title,
div.experience span.company-name {
  word-wrap: break-word;
  margin-bottom: 3px;
}

.candidate-profile__container div.experience span.company-name {
  font-size: 14px;
  margin-bottom: 10px;
}

.candidate-profile__container .info-block div.order {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 30px;
  padding-top: 6px;
  background-color: white;
  border: 1px solid var(--primary4);
  border-radius: 100%;
}

.candidate-profile__container .body-3 {
  font-weight: 500;
  line-height: 24px;
  font-size: 16px;
}

/* .candidate-profile__container div.portfolio-slider {
  width: 80%;
  margin: auto;
} */

.candidate-profile__container .portfolio.editing div.preview-portfolio-pictures {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 24px;
}

.candidate-profile__container .portfolio.editing img.preview-picture {
  width: 90px;
  height: auto;
  border-radius: 6px;
}

.candidate-profile__container div.portfolio-slider.slick-slider {
  width: 80%;
  max-width: 250px;
  margin: auto;
  padding-top: 10px;
}

.candidate-profile__container .portfolio-slider.slick-slider .slick-track {
  width: max-content !important;
}

.candidate-profile__container .portfolio div.portfolio-item {
  height: 200px !important;
  width: 218px !important;
  background-color: var(--primary-1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 16px;
  color: white;
}

.candidate-profile__container .portfolio-slider .slick-dots {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 15px 0;
  order: 1;
}

.candidate-profile__container .portfolio-slider .slick-dots li {
  margin: 0 7px;
}

.candidate-profile__container .portfolio-slider .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary3);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.candidate-profile__container .portfolio-slider .slick-dots li.slick-active button {
  background-color: var(--primary0);
  border: none;
  outline: none;
}

.candidate-profile__container div.upload-files {
  flex-direction: column;
  align-items: start;
}

form button.find-btn {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--primary0);
  border: none;
  border-radius: 0 10px 10px 0;
  position: absolute;
  width: 40px;
  height: 38px;
  right: 0px;
  top: 26px;
}

.complete-profile-wrapper form .form-group {
  width: 100%;
}


/* animation for input boxes */
.form-control.invalid {
  border: 1px solid #ec2626;
  animation: shaking 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  transition: all 0.4s ease-in-out;
}

@keyframes shaking {

  10%,
  90% {
    transform: translate3d(-2px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(4px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-8px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(8px, 0, 0);
  }
}

.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}

.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: all 0.4s ease-in-out;
}

/* candidate profile */

div.candidate-profile__container {
  margin-top: 73px;
}

.candidate-profile__container section {
  margin-bottom: 24px;
}

.candidate-profile__container .further-candidate-info button.btn-preview {
  border-radius: 30px;
  width: 100%;
  height: fit-content;
  padding: 6px 0;
}

.candidate-profile__container button.btn-back {
  text-transform: none;
  font-size: 14px;
  padding: 5px 10px;
  cursor: pointer;
}

div.badge.custom-badge {
  font-weight: 400;
  background-color: var(--primary0);
  border-radius: 10px;
  color: white;
  padding: 10px;
}

.jobseekers div.badge.custom-badge {
  padding-block: 7px 5px;
  font-size: 14px;
}

.jobseekers div.badge.custom-badge img.remove-skill {
  width: 16px;
  margin-left: 8px;
}

.personal-info .badge.custom-badge.more {
  cursor: auto;
}

.badge.custom-badge.skills {
  border-radius: 16px;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 10px;
  order: 10;
}

.jobseekers .badge.custom-badge.skills {
  margin-right: 12px;
}

.badge.custom-badge.suggested {
  background-color: white;
  color: var(--text-header);
  border: 1px solid var(--primary4);
}

.candidate-profile__container div.custom-badge {
  background-color: var(--primary-2);
}

.candidate-profile__container .basic-info div.custom-badge {
  font-size: 12px;
  margin-right: 3px !important;
  margin-bottom: 0;
  padding: 7px 10px;
}

.badge.custom-badge.skills.hide {
  display: none;
}

.candidate-profile__container .professional-personal-info div.skill:has(div.hide) {
  display: none;
}

.candidate-profile__container .professional-personal-info div.skill {
  flex-grow: 0 !important;
}

div.custom-badge.more {
  background-color: var(--primary0);
  cursor: pointer;
}

div.professional-personal-info div.badge.custom-badge {
  cursor: default;
}

/* .candidate-profile__container div.basic-info-block {
    margin-bottom: 16px;
  } */

.candidate-profile__container div.personal-saved {
  display: flex;
  flex-wrap: wrap;
}

.candidate-profile__container div.basic-info {
  margin-top: 16px;
  padding: 20px;
  box-shadow: var(--shadow-cards);
  border-radius: 16px;
}

.candidate-profile__container div.personal-info {
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background-color: var(--primary-2);
}

.candidate-profile__container p.body-big,
.contactme p.body-big {
  font-size: 18px;
  font-weight: 500;
}

div.block-col {
  border-radius: 16px;
  box-shadow: var(--shadow-small);
  margin-bottom: 32px;
  padding: 16px 20px;
  background-color: white;
}

div.block-col.contactme-col {
  padding: 24px 20px 20px
}

.candidate-profile__container.employer-view .info-block.contactme .default-form {
  filter: blur(5px);
  text-align: left;
}

.candidate-profile__container.employer-view .info-block.contactme .cta-div-register {
  position: absolute;
  z-index: 1;
  top: 25%;
  left: 0;
  right: 0;
  bottom: auto;
}

button.btn-edit-action {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--primary0);
  background-color: white;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  outline: none !important;
  transition: 0.4s;
}

button.btn-edit-action:hover {
  background-color: var(--primary0);
}

.candidate-profile__container .basic-info button.btn-edit-action.edit:hover {
  background-color: var(--primary0);
  border: none;
}

.candidate-profile__container .basic-info button.btn-edit-action.edit {
  border: 1px solid white;
  background-color: transparent;
  border-radius: 50%;
  top: 36px;
  right: 36px;
}

.candidate-profile__container button.btn-edit-action.save,
button.btn-edit-action.discard {
  font-size: 14px;
  border: none;
  border-radius: 10px;
  color: white;
  min-width: 123px;
  width: fit-content;
  padding: 0 10px;
  position: static;
  top: auto;
  bottom: 16px;
  transition: all 0.2s ease-in;
}

.candidate-profile__container button.btn-edit-action.save {
  background-color: var(--primary0);
  /* bottom: 60px; */
}

.candidate-profile__container button.btn-edit-action.discard {
  background-color: var(--primary-1);
}

.candidate-profile__container button.btn-edit-action img {
  background-color: transparent;
  filter: brightness(10);
}

.candidate-profile__container .further-candidate-info button.btn-edit-action img {
  filter: none;
}

.candidate-profile__container .further-candidate-info button.btn-edit-action:hover img {
  filter: brightness(10);
}

button.btn-edit-action img {
  width: 18px;
}

.candidate-profile__container button.btn-edit-action.save:hover {
  background-color: var(--primary-1);
  box-shadow: var(--shadow-turquoise);
}

.candidate-profile__container button.btn-edit-action.discard:hover {
  background-color: var(--primary0);
  box-shadow: var(--shadow-turquoise);
}

button.btn-edit-action:hover img {
  filter: brightness(10);
}

#confirmationdeletemodal button.btn-edit-experience {
  min-width: 70px !important;
}

#confirmationdeletemodal button.btn-edit-experience.delete {
  color: var(--text-header) !important;
  border: 1px solid var(--primary4) !important;
}

#confirmationdeletemodal button.btn-edit-experience.save {
  color: white !important;
  background-color: var(--primary0) !important;
}


form div.editing-picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: auto;
  position: relative;
}

.candidate-profile__container div.social-candidate {
  display: flex;
  justify-content: space-around;
  max-width: 325px;
}

.candidate-profile__container .social-candidate img {
  transition: all 0.2s ease-in;
}

.candidate-profile__container .social-candidate img:hover {
  filter: brightness(0.7);
}


/* toggle */
/* The switch - the box around the slider */
.switch-box {
  display: flex;
  align-items: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 26px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* toggle slider */
.switch-box {
  margin-top: 24px;
}

.switch-box p {
  font-size: 12px;
  margin-left: 10px;
  margin-bottom: 6px;
}

.switch-box img {
  margin-bottom: 6px;
  margin-left: 6px;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary4);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 0;
  /* bottom: 4px; */
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.candidate-profile__container.anonymous .slider {
  background-color: var(--primary0);
  ;
}

.candidate-profile__container.anonymous .slider:before {
  left: auto;
  right: 0;
  background-color: white;
}

.candidate-profile__container.anonymous input:checked+.slider:before {
  background-color: var(--primary0);
  -webkit-transform: translateX(-35px);
  -ms-transform: translateX(-35px);
  transform: translateX(-35px);
}

.candidate-profile__container.anonymous input:checked+.slider {
  background-color: var(--primary4);
}

input:checked+.slider {
  background-color: var(--primary0);
}

input:focus+.slider {
  box-shadow: 0 0 1px var(--primary0);
}

input:checked+.slider:before {
  background-color: white;
  -webkit-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
}

input+.slider:before {
  background-color: var(--primary0);
  box-shadow: var(--shadow-3);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .fix-height {
    min-height: 100px;
  }


}

/* Footer section */
.footer-section {
  background-color: var(--primary-1);
  color: white;
  margin-top: auto;
  padding-top: 1.5rem;
  padding-bottom: 15px;
  /* position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100; */
}

.footer-section div.footer-section__container {
  margin-top: 1.2rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.footer-section__container div.content-footer {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 1.2rem;
}

.footer-section__container .content-footer a.nav-link {
  opacity: 75%;
}

.footer-section__container .content-footer .nav-link:hover {
  text-decoration: underline;
  font-weight: 500;
  opacity: 100%;
}

.footer-section__container div.social-media-icons {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section__container .social-newsletter a img {
  transition: transform 0.2s ease-in;
}

.footer-section__container .social-newsletter a img:hover {
  transform: scale(1.2);
}

.footer-section__container div.head-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid white;
  padding: 1rem 0;
  /* margin-left: 1rem;
    margin-right: 1rem; */
}

.footer-section .newsletter {
  padding-top: 16px;
}

.footer-section__container div.copyright-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer-section__container div.logo-div {
  display: flex;
  flex-direction: row;
  justify-content: start;
  margin-top: 15px;
}

.footer-section__container .newsletter input {
  max-width: 65%;
}

.footer-section__container .newsletter input:focus-visible {
  outline: none;
}

/* ADITIONAL ELEMENTS */

.client-pic {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

.opacity-75 {
  opacity: 75%;
}

.third-section__container div.highlight-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.third-section__container div.columns-div-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.highlights {
  display: flex;
  align-items: center;
  /* max-width: 500px; */
}

.third-section__container .highlights img {
  width: 26px;
}

.register .third-section__container .highlights img {
  width: 16px;
}

.register .highlights {
  gap: 10px;
}

/* register */

.landing-page-wrapper.register div.columns-div-highlights {
  gap: 32px;
}

.landing-page-wrapper.register .card-account {
  background-color: white;
  box-shadow: var(--shadow-cards);
  border-radius: 10px;
  padding: 24px 32px 42px;
  cursor: pointer;
}

.landing-page-wrapper.register .register-cards-row h3 {
  color: var(--text-header);
}

.landing-page-wrapper.register .user-type-section {
  position: relative;
  top: -144px;
  margin-bottom: -80px;
  z-index: 10;
}

.landing-page-wrapper.register .icon-register-background {
  background-color: var(--primary0);
  border-radius: 100px;
  display: flex;
  width: 100px;
  height: 100px;
  justify-content: center;
  position: relative;
}

.icon-register-background:first-child {
  right: -5px;
}

.icon-register-background:last-child {
  left: -5px;
}

.landing-page-wrapper.register .icons-register {
  gap: -10px;
}

.landing-page-wrapper.register .register-cards-row {
  gap: 16px;
}

.landing-page-wrapper.register div.registration-form {
  border-radius: 20px;
  background-color: white;
  box-shadow: var(--shadow-small);
  position: relative;
  top: -42px;
  z-index: 10;
  margin: auto;
}

.registration-form .formrow .form-group.salutation {
  width: 223px !important;
}

/* login page */
.login-reset-banner {
  position: relative;
  top: -24px;
}

.login-reset-banner div.banner-wrapper {
  gap: 58px;
}

.login-reset-banner div.banner-card-one {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

img.card-banner {
  position: absolute;
  max-width: 200px;
  bottom: -30px;
}

div.banner-card-one:first-child img.card-banner {
  left: 15%;
}

.landing-page-wrapper.register div.banner-card-one:first-child img.card-banner {
  left: 7%;
}


div.banner-card-one:last-child img.card-banner {
  right: 15%;
}

.landing-page-wrapper.register div.banner-card-one:last-child img.card-banner {
  right: 7%;
}

/* footer */

.footer-section__container .links-column h6 img {
  display: none;
  filter: brightness(5);
  transition: transform 0.3s ease;
}

.footer-section__container .links-column h6 img.clicked {
  transform: rotate(180deg);
}

/* MEDIA QUERIES */
/* Breakpoint XS- */
@media (max-width: 510px) {
  .formrow {
    gap: 0;
  }

}

@media (max-width: 530px) {
  .jobseekers .job-list-one div.info {
    width: 100%;
  }

}

@media (max-width: 575px) {
  .jobseekers .job-list-one div.info {
    width: 100%;
  }

  #video-popup iframe {
    width: 280px;
    height: 160px;
  }

  #registrationmodal .form-group,
  .registration-form .form-group {
    flex: auto;
    width: 100%;
  }

}

@media (min-width: 576px) {

  #registrationmodal .form-group.firstname,
  .registration-form .form-group.first-name {
    margin-left: 16px;
  }
}

/* Breakpoint XS-S */
@media (max-width: 767px) {

  html,
  body {
    overflow-x: hidden;
  }

  div.py-5 {
    padding-top: 5% !important;
    padding-bottom: 5% !important;
  }

  .row.pt-5 {
    padding-top: 5% !important;
  }

  /* navbar */
  header {
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 10;
  }

  .banner-section {
    margin-top: 80px;
    margin-bottom: 50px;
    text-align: center;
  }

  .hero-stats-overlay {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 16px;
    padding-top: 24px !important;
  }

  .portal-hero-section {
    padding: 32px 0 0 0;
  }
  .portal-hero-title {
    font-size: 1.5rem;
  }
  .portal-register-btn {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }

  header nav.px-5 {
    padding-left: 7% !important;
    padding-right: 7% !important;
    padding-top: 20px;
    background-color: white;
    box-shadow: var(--shadow-small);
    border-radius: 0 0 10px 10px;
    z-index: 10;
    text-align: center;
  }

  .navbar-nav.register-nav {
    text-align: center;
  }

  .navbar-toggler-icon {
    display: none;
  }

  header nav ul li.language,
  .language a {
    margin-left: 0 !important;
  }

  .login-li .btn-one {
    width: 100%;
  }

  .divider-nav {
    display: none;
  }

  .arrow-language {
    display: none;
  }

  .h1-custom {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 40.5px;
    letter-spacing: 0.48px;
  }

  .h1-updated {
    font-size: 28px;
    line-height: 40px;
  }

  .banner-section__content span.findhire {
    display: none;
  }

  .banner-section .input-container {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    ;
  }

  .banner-section__images {
    display: none;
  }

  .banner-section .banner-section__content .banner--img-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-top: 3%; */
    padding-bottom: 10%;
    margin-top: 15px;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .banner-section__content .banner--img-div img.avatar--one,
  .avatar--six {
    /* transform: scale(0.5); */
    width: 32px;
  }

  .banner-section__content .banner--img-div img.avatar--two,
  .avatar--five {
    /* transform: scale(0.4); */
    width: 30px;
  }

  .banner-section__content .banner--img-div img.avatar--three,
  .avatar--four {
    /* transform: scale(0.6); */
    width: 40px;

  }

  .banner-section .banner-section__content div.input-div {
    width: 100%;
    max-width: 82vw;
  }

  .banner-section__content .banner--img-div div.dot--first,
  .dot--second,
  .dot--third {
    width: 6px;
    height: 6px;
    margin: 2px;
    border-radius: 50%;
    background-color: var(--turquoise);
  }

  .banner-section__content .banner--img-div div.dot--first,
  .dot--third {
    align-self: center;
  }

  .banner-section__content div.dot--first {
    position: relative;
    top: -3px;
  }

  .banner-section__content div.dot--second {
    position: relative;
    top: 3px;
  }

  .keywords-input {
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid var(--primary0);
  }

  .location-input {
    width: 100%;
    padding: 10px 15px;
  }

  /* .banner-section__content div.button-search-div  {
      width: 100%;
    } */

  .button-search {
    width: 100%;
  }

  .banner-section__logos {
    display: none;
  }

  .jobseekers-employers-landing .banner-landing-cta.picture-testimonial {
    padding: 0;
  }

  .jobseekers-employers-landing .banner-landing-cta.picture-testimonial .recruiter-img {
    height: 216px;
  }

  .jobseekers-employers-landing .banner-section__logos.show-mobile {
    display: block;
  }

  .jobseekers-employers-landing .banner-section__logos.show-mobile img.brands-logos--img {
    flex-grow: 1;
    margin: 10px;
  }

  .jobseekers-employers-landing .col-cta-text {
    gap: 0;
  }

  .banner-section__logos-mobile {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .banner-section__logos .logos--wrapper,
  .banner-section__logos-mobile .logos--wrapper {
    max-width: 538px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-section .banner-section__content p.description-big {
    display: none;
  }

  .banner-section__logos .logos--wrapper img.brands-logos--img,
  .banner-section__logos-mobile .logos--wrapper img.brands-logos--img {
    width: 96px;
    margin: 0 24px 15px;
  }

  /* .card-categories.bg-color .arrow-categories {
      display: none;
    } */

  /* second section */
  .second-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .second-section .section-title {
    justify-content: center;
    text-align: start;
  }

  .card-categories.bg-color .title {
    font-size: 42px;
    margin: 0;
  }

  .card-categories .body-big {
    font-size: 20px;
  }

  .card-categories.bg-color .arrow-categories {
    width: 30px;
  }

  .banner-section__logos-mobile p.logos--title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .third-section__container div.highlight-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    margin: 0 0 20px 0;
  }

  .second-section__container .card-wrapper .column-card--four,
  .column-card--five,
  .column-card--six,
  .column-card--seven {
    display: none;
  }

  .slick-arrows {
    display: none;
  }

  /* third section */

  /* .third-section {
      text-align: center;
    } */

  .third-section h2.h2-custom {
    word-spacing: 7px;
  }

  .title-s3 {
    justify-content: center;
  }

  .no-mobile {
    display: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .subtitle-s2-1 {
    display: none;
  }

  .third-section__container .highlights img {
    width: 23px;
  }

  .body-big span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.5px;
  }

  .highlights {
    padding-right: 2%;
    overflow-wrap: break-word;
    align-items: flex-start;
    padding-top: 4%;
  }

  .h6-highlight {
    line-height: 25px;
    text-align: justify;
  }

  .highlights.h6-highlight {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
  }

  .py-3.highlight-container {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* fourth section */
  /* slide */
  .fourth-section {
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
  }

  .fourth-section__container .slick-slide {
    padding: 0;
    margin-left: -21px;
    margin-right: -36px;
  }

  .fourth-section__container .slick-carousel-container {
    margin-bottom: 10px;
  }

  .fourth-section__container .slick-carousel .card-candidate .img-meta img {
    width: 50%;
  }

  .candidate-text {
    display: none;
  }


  p.body-big {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.5px;
    padding: 10px 0 0;
  }

  .jobseekers-employers-landing p,
  .jobseekers-employers-landing h2,
  .jobseekers-employers-landing h1 {
    text-align: center !important;
  }

  /* fifth section */
  .feedback-section {
    margin-top: 60px;
    margin-bottom: 25px;
  }

  .blue-title {
    font-style: normal;
    font-weight: 400;
    line-height: 24.5px;
    margin-bottom: 0;
  }

  .container.container-reviews {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .custom-carousel-inner {
    align-items: center;
    height: 500px;
    width: 100%;
  }

  .section-subtitle-div.body-1 {
    font-family: Gordita;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.5px;
  }

  .feedback-section__container .feedback-content {
    margin-top: 15px;
    /* padding-top: 15px; */
  }

  .feedback-section__container .feedback-flex {
    padding: 20px 25px 20px;
  }

  .fourth-section__container .request-row {
    margin-top: 30px;
  }


  /* common elements */
  .h2-custom,
  .find-jobs-wrapper .h2-custom {
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.4px;
  }

  .body-1 {
    font-weight: 400;
  }

  /* footer */
  .footer-section {
    text-align: center;
    /* margin-top: 130px; */
    padding-top: 0.5rem;
  }

  .h3-custom {
    font-size: 20px;
  }

  .footer-section div.footer-section__container {
    margin-top: 1.2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-section__container div.head-footer {
    justify-content: center;
    padding-bottom: 30px;
  }

  .footer-section__container div.content-footer {
    padding-left: inherit;
    padding-right: inherit;
    margin-top: 0;
  }

  .footer-section .links-column ul {
    display: none;
    text-align: left;
    padding-bottom: 5%;
  }

  .footer-section .links-column h6 {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .footer-section .links-column h6:focus+ul {
    display: flex;
  }

  .footer-section__container div.social-newsletter {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer-section .social-newsletter .newsletter {
    width: 100%;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-section__container .social-newsletter h5 {
    margin-bottom: 1rem;
  }

  .footer-section .social-newsletter {
    text-align: center;
    margin-top: 3%;
  }

  .footer-section__container .copyright-footer p.opacity-50 {
    font-size: 14px;
  }

  .footer-section__container p.opacity-75 {
    font-size: 14px;
  }

  .footer-section__container .links-column h6 img {
    display: block;
  }

  .footer-section__container div.logo-div {
    justify-content: center;
    margin-top: 15px;
  }

  /* find jobs */

  div.inner-banner {
    margin-bottom: 36px;
    padding: 80px 0 0;
    min-height: 312px;
  }

  div.find-jobs-wrapper div.inner-banner {
    padding: 100px 0 0;
    margin-bottom: 24px;
  }

  .register div.inner-banner {
    min-height: 280px;
  }

  /* register */
  .landing-page-wrapper.register .icon-register-background {
    width: 48px;
    height: 48px;
  }


  /* find jobs - search bar */
  .find-jobs-wrapper div.row-form {
    box-shadow: var(--shadow-small);
  }

  .job-search-bar div.button-col {
    margin: 5px 5px 10px;
  }

  .job-search-bar .input-a img {
    width: 20px;
  }

  .job-search-bar form .search-btn {
    border-radius: 10px;
    /* width: 195px; */
    width: 74%;
    height: 100%;
    /* margin-left: 84px;
      margin-right: 20px; */
    margin: auto;
  }

  .find-jobs-wrapper a.filter-header {
    width: 20%;
    border-radius: 10px;
    margin-right: 7px;
  }

  .job-list-one div.job-title {
    width: 100%;
    /* margin-bottom: 20px; */
  }

  .find-jobs-wrapper .job-title .logo img {
    width: 58px;
    border-radius: 7px;
  }

  .job-list-one div.info,
  .job-list-one div.column-buttons {
    gap: 7px;
    font-size: 12px;
  }

  .job-list-one .save-btn {
    width: 24px;
    height: 24px;
    line-height: 24px;
    align-self: center;
    border: 1px solid var(--primary3);
    color: var(--primary3);
    transition: all 0.3s ease-in;
  }

  .job-list-one .save-btn svg {
    width: 12px;
    height: 12px;
  }

  .jobseekers .job-list-one div.logo {
    min-width: 60px;
    width: 60px;
    height: 60px;
  }

  /* 404 page */
  .notfound-wrapper .notfound__row {
    gap: 36px;
  }

  /* job request landing */
  /* .text-feature-one img.img-person {
      width: 80%;
    }
    
    .text-feature-one img.img-person-small {
      width: 45%;
      margin-top: 20px;
    }
    
    .jobrequest__container .video-icon {
      width: 80px;
      height: 80px;
      position: absolute;
      top: 45%;
      left: 41%;
    } */

  .jobseekers-employers-landing .ai-advantages-container {
    justify-content: center;
  }

  .jobseekers-employers-landing .ai-advantage {
    align-items: center;
    min-width: 300px;
  }

  .jobseekers-employers-landing .top-portals-section.cards-jobs .jobrequest-maxwidth {
    margin-top: 80px;
  }

  .banner-landing-cta div.shape-banner:last-of-type {
    width: 72px;
    height: 72px;
    border-radius: 200px 0 95px;
    right: -16px;
  }

  /* .banner-landing-cta {
    padding: 32px 24px 30px !important;
  } */

  .banner-landing-cta div.shape-banner {
    width: 38px;
    height: 46px;
    border-radius: 73px 0px 100px;
  }

  .jobrequest__container .little-title {
    margin-top: 16px;
  }

  .card-style-five {
    margin-top: 10px;
    padding-bottom: 0;
  }

  /* feedback-section-three */
  .feedback-section-three div.carousel-arrows {
    width: 100%;
    position: absolute;
  }

  a.carousel-control-prev,
  a.carousel-control-next {
    width: 28px;
    height: 28px;
  }

  .feedback-section-three img.prev,
  img.next {
    width: 16px;
    height: 16px;
  }

  .feedback-section-three div.carousel-indicators {
    position: static;
    margin-right: 15%;
    margin-left: 15%;
    gap: 20px;
  }

  .feedback-section-three button:has(img.feedback-three-img) {
    width: auto;
  }

  /* profile */
  .candidate-profile__container .basic-info button.btn-edit-action.edit {
    top: 88px;
    right: 32px;
  }

  .candidate-profile__container div.premium-label {
    width: 50px;
    bottom: auto;
    top: -31px;
    left: auto;
    right: 0;
    border-radius: 0 0 10px 10px;
  }

  .candidate-profile__container form div.phone-number-group {
    margin-top: 16px;
    width: 100%;
    flex: 1;
  }

  .experience-description button.btn-edit-experience.edit,
  .btn-edit-experience.delete,
  .btn-edit-experience.save,
  .btn-edit-experience.cancel {
    width: 100%;
    font-size: 14px;
  }

  .languages-wrapper div.progress-bars {
    width: 100%;
  }

  .formrow {
    margin-bottom: 0;
    column-gap: 16px;
    row-gap: 0;
  }

  .formrow .box-flex-1 {
    flex: auto !important;
    gap: 16px;
    flex-wrap: wrap;
  }

  .candidate-profile__container.employer-view .info-block.contactme .cta-div-register {
    top: 18%;
  }

}

/* Breakpoint XS-S to specify the footer-head alignment  */
@media (min-width: 681px) and (max-width: 991px) {
  .head-footer {
    text-align: justify;
    align-items: center;
  }

  .footer-section__container div.head-footer {
    justify-content: space-between;
  }

  .head-footer .h3-custom {
    padding-bottom: 0 !important;
  }

  p.opacity-50 {
    font-size: 14px;
    margin-bottom: 0 !important;
  }

  div.newsletter div {
    width: auto;
    flex-wrap: wrap;
  }
}

/* specific breakpoint for the category cards XS-S */
@media (min-width: 576px) and (max-width: 767px) {
  .card-categories.bg-color .arrow-categories {
    position: absolute;
    top: 40px;
    right: 34px;
  }

  .second-section__container .card-categories.bg-color div.body-1 {
    width: 100%;
  }

  #video-popup iframe {
    width: 426px;
    height: 240px;
  }
}

/* specific breakpoint for the cards. S-MD */
@media (min-width: 768px) and (max-width: 991px) {

  /* specific class for dropdown menu mobile */
  header .nav-text {
    font-size: 16px;
  }

  .second-section__container .card-categories.bg-color div.body-1 {
    margin-left: 15px;
    font-size: 18px;
  }

  /* second section */
  .card-categories a {
    padding: 15px 13px 15px;
  }

  .card-categories.bg-color a {
    padding: 15px 13px 15px;
  }

  .card-categories.bg-color .title {
    font-size: 40px;
    line-height: initial;
    margin: 0 10px;
  }

  .card-categories div.category--text {
    padding-left: 10px;
  }

  .card-categories a {
    display: flex;
    align-items: center;
  }

  .card-categories .body-big {
    font-size: 17px;
    line-height: 28px;
  }

  .card-categories .body-1 {
    font-size: 15px;
  }

  .card-categories.bg-color {
    min-width: 450px;
  }

  .card-categories a.allfields-link {
    display: flex;
    align-items: center;
  }

  .second-section__container .bg-color div.body1 {
    display: flex;
    width: 77%;
    align-items: center;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 20px;
    font-size: 20px;
  }

  .card-categories.bg-color .arrow-categories {
    margin-left: auto;
  }

  .candidate-text .body-1 {
    font-size: 13px;
  }

  /* find jobs */
  div.inner-banner {
    height: 23vw;
    min-height: 332px;
    padding: 87px 0 0;
    margin-bottom: 54px;
  }

  div.find-jobs-wrapper div.inner-banner {
    min-height: 237px;
    padding: 87px 0 0;
    margin-bottom: 13px;
  }

  /* job request landing */
  .jobrequest__container .little-title {
    min-height: 78px;
  }

  .jobrequest__container br.custom-divider {
    display: block;
  }

  /* job request landing */
  .feedback-section-three div.carousel-indicators {
    position: static;
    justify-content: center;
    gap: 46px;
    margin-right: 15%;
    margin-left: 15%;
  }

  .posted-job-request-wrapper .top-portals-section {
    padding-top: 30px;
  }

  .candidate-profile__container div.premium-label {
    bottom: auto;
    top: -12px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
  }

  .candidate-profile__container .basic-info button.btn-edit-action.edit {
    top: 120px;
    right: 32px;
  }

  #video-popup iframe {
    width: 640px;
    height: 360px;
  }

  .testimonial-card {
    width: 100%;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  .testimonial-slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0;
  }
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    scroll-snap-align: start;
    padding: 32px 16px 28px 16px;
    overflow: visible;
  }
}

/* specific breakpoint for inputs-div and navbar XS-LG */
@media (max-width: 991px) {

  .portal-hero-title {
    font-size: 2.2rem;
  }
  .hero-stats-overlay {
    margin-top: 24px;
  }
  .hero-stats-overlay .me-5 {
    margin-right: 1.2rem !important;
  }

  .nav-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }

  header .navbar:has(.navbar-collapse.show) {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  }

  header ul.navbar-nav.register-nav {
    align-items: center;
  }

  /* header .custom-ul a.nav-link.nav-text {
    position: relative;
  } */

  .divider-nav {
    display: none;
  }

  nav li.nav-item:has(a.active-page) {
    border-bottom: none;
  }

  nav a.active-page {
    width: fit-content;
  }


  .language {
    flex-direction: column;
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 15px;
  }

  .register-nav button.language-landing {
    display: none;
  }

  .language .language-menu {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* important! in order to not apply the js interaction */
    width: 100%;
    height: 60px;
  }

  .language .language-menu ul {
    display: flex;
    gap: 10px;
    justify-content: space-around;
  }

  .language .language-menu li:hover a {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-2);
  }

  header .nav-link img {
    /* position: absolute;
    left: -38px; */
    padding-right: 8px;
  }

  header ul.navbar-nav.register-nav {
    border-top: 1px solid var(--primary-transparent);
    padding-top: 20px;
  }

  header .nav-link img.login-icon {
    position: static;
  }

  header .nav-link img.arrow-language {
    position: relative;
    left: 2px;
  }

  header nav .btn-one span {
    display: block;
  }

  header .login-li {
    width: 100%;
  }

  header .btn-one {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .job-search-bar form .input-box {
    padding: 14px 7px 10px;
  }

  .job-search-bar .filters-group form a {
    display: block;
  }

  /* third section landing */

  .third-section__container img.picture-block3 {
    width: 85%;
  }

  .btn-one {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 450px;
  }

  .btn-one#learnmorejobrequestlanding {
    width: auto;
  }

  .candidate-text {
    margin-top: 20px;
  }

  .fourth-section__container a:has(.btn-one) {
    width: 90%;
  }

  .newsletterlanding {
    width: 80%;
  }

  .list-style-one {
    font-size: 16px;
  }

  .list-style-one li img {
    margin-top: 5px;
    margin-bottom: auto;
  }

  /* find-jobs */

  .job-listing div.total-job-found {
    font-size: 14px;
  }

  .job-post-item-wrapper .job-item {
    padding: 20px 20px 20px;
  }

  .job-list-one:has(div.premium-label) {
    border: 1px solid var(--primary3);
  }

  .job-list-one div.job-title {
    max-width: 700px;
    height: 70px;
  }

  .job-list-one img.logo {
    width: 60px;
  }

  .feedback-section.no-background .job-list-one img.logo {
    width: 50px;
  }

  .job-list-one div.title-text {
    height: 70px;
    justify-content: start;
    gap: 0;
    overflow: hidden;
    max-width: 100%;
  }

  .jobseekers-employers-landing .job-list-one div.title-text {
    justify-content: center;
  }

  .jobseekers-employers-landing .job-list-one .little-title {
    font-size: 14px;
  }


  .job-listing .sort-filter div.text-dark {
    display: none;
  }

  .job-listing .banner-jobs {
    padding: 28px 20px;
    margin: 0 0 25px;
    justify-content: center;
    align-items: center;
  }

  .banner-jobs button.register-button {
    width: 100%;
  }

  .job-list-one div.premium-label {
    width: 43px;
    height: 25px;
    border-radius: 0 6px 0 10px;
    right: 0;
    left: auto;
    top: 0;
    padding: 0 7px;
  }

  .job-item-div div.premium-label img {
    width: 16px;
  }

  /* not found page */

  .job-not-found__container {
    margin-top: 40px;
  }

  .job-not-found__container .div-notfound {
    text-align: center;
    gap: 16px;
  }

  .job-not-found__container div.not-found-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 16px;
  }

  .job-not-found__container img.notfound-picture {
    display: none;
  }

  .job-not-found__container img.notfound-picture-mobile {
    display: block;
    margin: auto;
    padding: 16px 0;
    width: 80%;
  }

  .text-feature .img-box {
    height: 77vw;
  }

  .job-not-found__container div.div-learnmore {
    gap: 100px;
  }

  .job-not-found__container img.img-learnmore-little {
    top: -36px;
    left: -16px;
  }

  .job-not-found__container section.text-feature {
    margin: 55px 0 70px;
  }

  .accordion-style {
    margin: 0 0 32px;
  }

  .btn-back {
    max-width: 330px;
    font-size: 14px;
    padding: 12px 30px 13px;
    margin-top: 0;
  }

  .job-not-found__container a.btn-one {
    font-size: 16px;
  }

  .fancy-banner {
    margin-top: 32px;
  }

  .fancy-banner div.options-row {
    gap: 16px;
  }

  /* 404 page */
  .notfound-wrapper .notfound__row {
    padding: 0 16px;
  }

  .notfound-wrapper .notfound__row div.not-found {
    order: 1;
  }

  .notfound-wrapper .notfound__row div.picture-col {
    order: 2;
  }

  /* job request landing */
  .jobrequest__container section {
    margin-top: 16px;
    margin-bottom: 36px;
  }

  .jobrequest__container section.text-feature-one {
    padding-top: 15px;
  }

  .jobrequest__container section.how-it-works {
    padding-top: 46px;
  }

  .jobrequest__container div.col-title-text {
    padding: 0 20px;
    text-align: center;
    padding-bottom: 12px;
  }


  .jobrequest__container div.col-cta-text {
    align-items: center;
    padding-bottom: 24px;
  }

  .banner-landing-cta {
    padding: 32px 24px 0;
  }

  .banner-landing-cta h2 {
    font-size: 32px;
  }

  .jobrequest__container p.cta-text {
    margin: 7px 0 32px;
  }

  img.picture-banner {
    position: absolute;
    bottom: 0;
  }

  .banner-landing-cta button.register-button {
    max-width: 233px;
  }

  .jobrequest__container .video-icon {
    width: 80px;
    height: 80px;
    top: calc(50% - 16px);
    left: calc(50% - 40px);
  }

  /* registration */

  .post-job-request-wrapper section.banner-wrapper:first-of-type {
    padding-top: 24px;
    margin-bottom: 36px;
  }

  .steps div.title-fieldset {
    left: 0;
    justify-content: flex-start;
  }

  .title-fieldset h4 {
    font-size: 18px;
  }

  .default-form div.indicators {
    width: 55%;
    margin: 0 auto 16px;
    padding-top: 16px;
  }

  .complete-profile-wrapper form.default-form div.indicators {
    width: 35%;
  }

  .default-form .nav-tabs {
    width: 100%;
  }

  .default-form .nav-tabs a br {
    display: none !important;
  }


  div.select-account-table .pricing-row {
    align-items: center;
    font-size: 14px;
    font-weight: 400;
  }

  .pricing-row .price-amount {
    font-size: 20px;
  }

  .pricing-row .euro-icon-price {
    font-size: 10px;
    line-height: 8px;
  }

  .yearly-text-price {
    font-size: 10px;
  }

  .pricing-row h4 {
    font-size: 16px;
  }

  .pricing-row img {
    width: 24px;
  }

  .pricing-row span.h5 {
    font-size: 12px;
    color: var(--primary0);
  }

  .yearly {
    align-items: flex-start;
    padding-left: 4px;
  }

  section.feedback-section-three {
    margin: 32px 0 36px;
  }

  .post-job-request__container .banner-landing-cta h2.h2-custom {
    font-size: 24px;
  }

  .form-group.evoucher {
    margin-top: 24px;
  }

  .phone-number span.info-alert {
    position: absolute;
    bottom: -24px;
    left: 0;
  }

  .btn-next.btn-one {
    padding: 9px 20px 10px 23px;
  }

  .post-job-request-section-form .steps .btn-one {
    margin-right: 0;
  }

  .candidate-profile__container .form-group.form-language {
    flex-wrap: wrap;
    justify-content: center;
  }

  .candidate-profile__container .form-group div.telephone {
    gap: 10px;
  }

  .candidate-profile__container form .professional-personal-info div.form-group {
    width: 100%;
  }

  .candidate-profile__container .form-group.form-language button.btn-edit-experience {
    margin: auto !important;
  }

  .candidate-profile__container div.experience-description div.header div {
    gap: 6px;
  }

  .candidate-profile__container form .personal-info div.form-group {
    width: 100%;
  }

  button.btn-edit-action.discard,
  button.btn-edit-action.save {
    /* font-size: 1px; */
    top: 36px !important;
    right: 16px;
  }

  button.btn-edit-action.discard {
    right: 16px;
    top: 73px !important;
  }

  .candidate-profile__container div.upload-files {
    flex-direction: column;
    align-items: center;
  }

  .candidate-profile__container.employer-view .employer-data-contact,
  .employer-data-contact {
    flex-wrap: wrap;
  }

  .candidate-profile__container.anonymous .employer-data-contact {
    flex-wrap: wrap;
  }

  .candidate-profile__container.employer-view .form-group.telephone,
  .contactme .form-group {
    flex-wrap: wrap;
  }

  .contactme .form-group.telephone {
    margin-top: 16px;
    gap: 16px;
  }


  .candidate-profile__container.anonymous.form-group.telephone {
    flex-wrap: wrap;
  }

  .candidate-profile__container.employer-view div.contactme .form-group:not(:first-child) {
    margin-top: 16px;
  }

  .candidate-profile__container.anonymous div.contactme .form-group:not(:first-child) {
    margin-top: 16px;
  }

  section.top-portals-section div.perks-wrapper {
    flex-wrap: wrap;
  }

  .candidate-profile__container div.social-candidate {
    max-width: 100%;
  }

  /* register */

  .landing-page-wrapper.register .card-account {
    padding: 24px 32px 24px;
  }

  .inner-banner p.description-big {
    margin-top: 10px;
  }

  .landing-page-wrapper.register div.registration-form {
    top: -92px;
  }

  .landing-page-wrapper.register.reset div.registration-form {
    top: -118px;
  }

  /* login page */
  .login-reset-banner {
    top: -84px;
  }

  .jobseekers-employers-landing .numbers-wrapper {
    flex-direction: column;
    row-gap: 16px;
  }

}

@media (min-width: 768px) {
  .banner-section__logos-mobile {
    display: none;
  }

  /* find jobs */
  .job-search-bar form a.border-box {
    border-left: 1px solid var(--primary-transparent);
    border-top: none;
  }

  .job-search-bar form .search-btn {
    border-radius: 0 0 0 0;
  }

  .find-jobs-wrapper a.filter-header,
  a.filter-header.collapsed {
    border-radius: 0 10px 10px 0;
  }

  #registrationmodal .form-group.firstname,
  .registration-form .form-group.first-name {
    margin-left: 0;
  }

  .pricing-table .advantage {
    width: 46%;
  }

  .pricing-table .advantages,
  .pricing-table .more-advantages {
    column-gap: 16px;
    row-gap: 6px;
    justify-content: space-between;
  }

  .pricing-table .more-advantages {
    display: flex !important;
    flex-wrap: wrap;
  }

  .pricing-table div.show-more {
    display: none;
  }


}

/* Breakpoint MD - LG */
@media (min-width: 767px) and (max-width: 1199px) {
  /* header nav .btn-one span {
      display: none;
    }  */

  header nav ul {
    padding-top: 0;
  }

  .banner-section {
    margin-bottom: 40px;
    margin-top: 100px;
  }

  .banner-section__images {
    height: 35vw;
    max-height: 400px;
    /* top: calc(100% - 620px);     */
  }

  .banner-section__images .tablet--left,
  .tablet--right {
    display: block;
  }

  .second-section {
    padding: 40px 0;
  }

  .fourth-section__container .slick-slide {
    margin-bottom: 15px;
  }

  .fourth-section__container .card-candidate .img-meta img {
    width: 70%;
  }

  .feedback-section:before {
    bottom: 0;
    height: 50%;
    margin-bottom: 30px;
  }

  .feedback-section__container .feedback-flex {
    padding: 23px 32px 23px;
  }

  .feedback-section .slick-dots {
    margin: 0;
  }

  .footer-section__container {
    margin-top: 3rem;
  }

  .footer-section .links-column ul {
    text-align: left;
    padding-bottom: 5%;
  }

}

/* breakpoint to adjust banner images and h2 line height*/
@media (min-width: 767px) and (max-width: 991px) {
  .banner-section__images {
    height: 40vw;
    top: 136px;
  }

  .third-section h2.h2-custom {
    text-align: justify;
  }
}

/* breakpoint to fix category cards + navbar text in md-lg screens */
@media (min-width: 992px) and (max-width: 1199px) {

  header .nav-text {
    font-size: 15px;
  }

  .card-categories.bg-color a {
    display: block;
    padding: 10px 15px 10px;
  }

  .card-categories.bg-color .title {
    font-size: 34px;
    margin: 0;
  }

  .second-section__container .card-categories.bg-color div.body-1 {
    font-size: 14px;
  }

  .card-categories div.category--text {
    padding-left: 10px;
  }

  .card-categories .category--icon {
    width: 50px;
    height: 50px;
  }

  .card-categories.bg-color .arrow-categories {
    position: absolute;
    bottom: 14%;
    right: 13%;
  }

  .feedback-section__container {
    margin-top: 16px;
  }

  .banner-section__images {
    top: 100px;
  }

  .feedback-section-three div.carousel-indicators {
    justify-content: space-evenly;
    margin-right: 22%;
    margin-left: 22%;
    gap: 54px;
  }


}

/* breakpoint as a startpoint to lg screens */
@media (min-width: 992px) {
  .navbar-nav {
    align-items: center;
  }

  .banner-section__logos .logos--wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  header .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  header .navbar-expand-lg .custom-ul img {
    display: none;
  }

  header .navbar-nav.custom-ul {
    padding-left: 0;
    gap: 15px;
  }

  header .navbar a.register-header {
    padding: 7px 10px 8px 0;
    border-radius: 5px;
  }

  header .navbar .nav-link img.login-icon {
    display: block;
    width: 26px;
  }

  .language {
    margin-left: 15px;
  }

  .language img.arrow-language {
    display: block;
    width: 10px;
    filter: none !important;
  }

  .language .language-menu {
    width: 50px;
    padding: 5px;
    text-align: center;
    transition: visibility 0s, opacity 0.2s ease-in;
  }

  .language .language-menu li {
    width: 100%;
    margin: 3px 0;
  }

  .language .language-menu a {
    transition: font-size, font-weight 0.3s ease;
  }

  .language .language-menu li:hover {
    border-radius: 10px;
  }

  .language .language-menu a:hover li {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-2);
  }

  header ul.register-nav {
    gap: 5px;
  }

  header .navbar-nav.custom-ul {
    padding-bottom: 0;
  }

  header nav .btn-one span {
    display: none;
  }

  .card-categories.bg-color .body-1 {
    line-height: 24px;
  }


  /* job-listing */
  .upper-filter .style-changer-btn,
  .upper-filter.style-changer-btn.active {
    display: block;
  }

  .job-post-item-wrapper .job-item {
    flex-wrap: nowrap;
    padding: 24px 47px 22px;
  }

  .job-post-item-wrapper.grid-style .job-item {
    flex-wrap: wrap;
  }

  .job-post-item-wrapper.grid-style .job-item .info {
    width: 100%;
  }

  .job-list-one div.job-title {
    width: 50%;
    /* max-width: ; */
  }

  .jobseekers .job-list-one div.job-title {
    width: 50%;
    max-width: 345px;
  }

  .job-list-one img.logo {
    width: 80px;
  }

  .feedback-section.no-background .job-list-one img.logo {
    width: 50px;
  }

  /* third section landing */
  .third-section__container div.columns-div-highlights {
    gap: 0;
  }

  .third-section__container div.highlight-container {
    gap: 0;
  }

  /* job not found */
  .job-not-found__container {
    margin-top: 80px;
  }

  .job-not-found__container section.text-feature {
    margin: 95px 0 100px;
  }

  .text-feature .img-box {
    height: 100%;
    background: var(--primary3);
    padding: 20px;
  }

  .job-not-found__container img.img-learnmore-little {
    left: -48px;
  }

  /* job not found */

  .job-not-found__container .div-notfound {
    text-align: start;
  }

  .job-not-found__container div.not-found-text {
    gap: 32px;
  }

  /* job request landing */
  .jobrequest__container .little-title {
    margin-bottom: 16px;
  }

  .jobrequest__container .col-title-text p.body-big {
    margin-bottom: 32px;
  }

  /* registration */
  .post-job-request-section-form fieldset {
    padding: 16px 46px;
  }


  .post-job-request-section-form fieldset .steps {
    padding: 0 10%;
  }

  fieldset div.steps {
    margin-bottom: 24px;
  }

  .indicators div {
    width: 36px;
    height: 36px;
  }

  .default-form .indicators img {
    width: 22px;
  }

  .title-fieldset h3 {
    font-size: 20px;
  }

  form.default-form label:not(.form-check-label) {
    font-size: 16px;
    font-weight: 500;
  }

  form.default-form .form-group {
    margin-bottom: 34px;
  }

  span.info-title.greeting {
    width: 50%;
  }

  .form-group.evoucher {
    padding: 16px 24px;
    height: 100%;
  }

  form.default-form .form-group.gender,
  .form-group.step2,
  #inp1 {
    width: 50% !important;
  }

  /* profile */

  .candidate-profile__container div.edit-buttons-basic {
    /* position: relative; */
    top: -50px;
  }

  .candidate-profile__container form.default-form .form-group.gender {
    width: fit-content !important;
  }


  .default-form ul.account-tabs {
    width: 50%;
    max-width: 535px;
  }

  form .personal-info input.form-control#inpsalary {
    width: 100%;
    color: white;
  }

  .candidate-profile__container form.default-form .employer-data-contact .form-group {
    width: 100%;
  }

  .candidate-profile__container form.default-form .form-group .candidate-profile__container .basic-info button.btn-edit-action.edit {
    top: 36px;
  }

  .complete-profile-wrapper form .form-group {
    width: 50%;
  }

  form div.complete--padding {
    padding-right: 16px;
  }

  .complete-profile-wrapper form .form-group.first-name,
  .form-group.last-name,
  .form-group.date-birth {
    width: auto !important;
    flex-grow: 1;
  }

  div.form-control.add-file {
    width: 50%;
  }

  .form-group div.country-code-group {
    width: 50%;
    /* margin-right: 16px; */
  }

  div.candidate-profile__container {
    margin-top: 132px;
  }

  .candidate-profile__container .professional-personal-info div:not(.salary-inputs, .custom-badge) {
    margin-right: 0;
    flex-grow: 1;
  }

  .candidate-profile__container div.personal-saved {
    width: 100%;
    padding: 8px 32px 0px;
  }

  .candidate-profile__container.anonymous div.personal-saved {
    /* width: 100%; */
    justify-content: start;
    flex-wrap: nowrap;
  }

  .candidate-profile__container .candidate-title~div.professional-personal-info {
    width: 100%;
  }

  .candidate-profile__container .basic-info div.professional-personal-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding: 6px 36px 36px;
    background-color: var(--primary-2);
    color: white !important;
    border-radius: 0 0 16px 16px;
  }

  .candidate-profile__container .basic-info div.custom-badge {
    background-color: var(--primary0);
    padding: 7px 7px;
  }

  .candidate-profile__container .basic-info div.custom-badge.more {
    background-color: var(--primary4);
    color: black;
  }

  .candidate-profile__container .basic-info.saved div.professional-personal-info {
    padding: 16px 60px 24px;
  }

  .candidate-profile__container div.options-basic-info {
    flex-direction: row;
    align-items: center;
  }

  .candidate-profile__container div.options-basic-info button {
    margin-left: none;
    margin-right: 0;
  }

  .candidate-profile__container div.candidate-title {
    width: 80%;
    display: flex;
    align-items: center;
    flex-grow: 1;
  }

  .candidate-profile__container.anonymous div.candidate-title {
    width: auto;
    flex-grow: 0;
  }

  .candidate-profile__container.anonymous .job-title-keywords {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .candidate-profile__container form.default-form .form-group {
    margin-bottom: 0;
  }

  .candidate-profile__container .basic-info .candidate-title .body-2 {
    margin-right: 13%;
  }


  .candidate-profile__container div.candidate-email {
    margin-left: 20px;
  }

  .candidate-profile__container .form-group div.country-code-group {
    width: 210px;
  }

  .candidate-profile__container.employer-view .form-group div.country-code-group {
    width: auto;
    flex: 1;
    margin-left: 0;
    margin-right: 0;
  }

  .candidate-profile__container.anonymous .form-group div.country-code-group {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .candidate-profile__container .form-group div.phone-number-group {
    width: fit-content;
  }

  .candidate-profile__container form .salary-inputs div.currency-input {
    margin-top: 0;
    margin-left: 16px;
  }

  .candidate-profile__container form div.salary-inputs {
    flex-wrap: nowrap;
  }

  form div.editing-picture {
    margin: 0 44px 0 0;
    position: relative;
  }

  .candidate-profile__container .custom-select-button {
    color: white;
  }

  .candidate-profile__container form .personal-info div.form-group.job-title-desktop {
    width: 40%;
    max-width: 634px;
  }

  form img.edit-profile-picture {
    opacity: 0;
    top: 0;
    right: auto;
    left: 0;
    transition: all 0.2s ease-in;
  }

  form .editing-picture:hover img.edit-profile-picture {
    opacity: .8;
  }

  .candidate-profile__container form.default-form label:not(.form-check-label) {
    font-size: 14px;
    font-weight: 400;
  }

  .candidate-profile__container div.personal-info {
    margin-top: 0;
    margin-bottom: -1px;
    padding: 16px 58px 10px 30px;
    border-radius: 16px 16px 0 0;
  }

  .candidate-profile__container .editing div.personal-info {
    padding: 16px 35px 10px 30px;
  }

  .candidate-profile__container.anonymous div.personal-info {
    padding: 20px 58px 20px 30px
  }

  .candidate-profile__container.anonymous .basic-info.editing div.personal-info {
    padding: 16px 58px 16px 30px
  }

  .candidate-profile__container form .personal-info div.form-group,
  form .professional-personal-info .form-group {
    flex-grow: 1;
  }

  .candidate-profile__container form .personal-info .form-group.telephone {
    margin-bottom: 16px;
  }

  .further-candidate-info div.column-wrapper {
    margin: 0 16px;
  }

  .further-candidate-info div.overview-col {
    grid-column: 1;
  }

  .further-candidate-info div.social-col {
    grid-column: 2;
    grid-row: 2;
  }

  .further-candidate-info div.share-col {
    grid-column: 2;
    grid-row: 1;
  }

  .further-candidate-info div.work-col {
    grid-column: 1;
  }

  .further-candidate-info div.education-col {
    grid-column: 1;
  }

  .further-candidate-info div.skills-col {
    grid-column: 1;
  }

  .further-candidate-info div.portfolio-col {
    grid-column: 1;
  }

  .candidate-profile__container .portfolio.editing div.preview-portfolio-pictures {
    width: 50%;
    align-self: center;
  }

  .candidate-profile__container form .form-group.email-telephone {
    flex-wrap: nowrap;
  }

  .candidate-profile__container.anonymous .basic-info div.professional-personal-info {
    flex-direction: row;
    width: 100%;
  }

  .job-listing div.upper-filter {
    margin-top: 20px;
  }

  #video-popup iframe {
    width: 640px;
    height: 360px;
  }

  .jobrequest__container p.cta-text {
    margin: 0 0 16px;
  }

  /* pricing table */
  .pricing-table {
    padding: 10px 24px;

  }

  .pricing-table .advantages {
    padding: 16px 0;
  }

  /* register */
  .landing-page-wrapper.register .register-cards-row {
    gap: 0;
  }

  .landing-page-wrapper.register .user-type-section {
    top: -40px;
    margin-bottom: 0;
  }

  .registration-form .formrow {
    flex-wrap: nowrap;
  }

  /* login */
  img.banner-img-one {
    max-width: 442px;
  }

  .jobseekers-employers-landing img.cards-jobs {
    width: 50% !important;
  }

  .jobseekers-employers-landing .banner-wrapper.foremployers .banner-landing-cta {
    align-items: center;
  }

}

@media (max-width: 1199px) {
  header img.logo-header {
    width: 232px;
  }

  .banner-section .banner-section__content div.inputs-div {
    width: 100%;
    justify-content: start;
    padding: 9px 16px 7px;
  }

  .banner-section__content div.button-search-div {
    width: 100%;
  }

  .banner-section .button-custom {
    width: 100%;
    border-radius: 0 0 7px 7px;
  }

  .input-div {
    width: 75%;
  }

  .keywords-input,
  .location-input {
    width: 100%;
    padding: 10px;
  }

  .keywords-input {
    border-bottom: 1px solid var(--primary0);
  }

  .banner-section .banner-section__content div.banner--input-group {
    justify-content: center;
  }

  .banner-section .banner--input-group form#search {
    display: contents;
    flex-direction: column;
    width: 100%;
  }

  /* find jobs */

  /* .job-list-one img.logo {
      width: 60px;
    } */

  .job-list-one .info img {
    width: 18px;
  }

  .fancy-banner .bg-wrapper {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .banner-jobs .counter-wrapper .main-count {
    font-size: 24px;
  }

  .banner-jobs .counter-wrapper .counter-block p {
    font-size: 14px;
  }
}

/* XL */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }

  .body-big {
    font-size: 20px;
  }

  header nav ul {
    padding-top: 0;
  }

  header nav .btn-one span {
    display: block;
  }

  .banner-section {
    margin-top: 120px;
    margin-bottom: 60px;
    padding-bottom: 0;
  }

  .banner-section__content .input-div {
    width: 66%;
  }

  .location-input {
    border-left: 1px solid var(--primary-transparent);
    padding-left: 15px;
  }

  .banner-section__images {
    height: 30vw;
    max-height: 480px;
    top: 125px;
  }

  .banner-section__images .tablet--left,
  .tablet--right {
    display: none;
  }

  .banner-section__images .desktop--left,
  .desktop--right {
    display: block;
  }

  .banner-section .input-container .form-control.border-0.body-2 {
    padding: 0 5px;
  }

  /* second section landing */
  .second-section .section-title {
    align-items: center;
  }

  .second-section .section-title div.title-col--one {
    text-align: start;
  }

  .second-section .section-title div.title-col--two {
    text-align: right;
    vertical-align: middle;
  }

  .card-categories a {
    display: block;
    padding: 15px 25px 15px;
  }

  .second-section__container .card-categories div.body-1 {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
  }

  .card-categories .body-big {
    margin: 17px 0 5px;
    font-size: 20px;
  }

  .card-categories.bg-color .title {
    font-size: 72px;
    color: white;
    margin: 0;
  }

  .card-categories.bg-color a {
    padding: 15px 20px 15px;
  }

  .second-section__container .card-categories.bg-color div.body-1 {
    width: 100%;
  }

  .card-categories .icon-category--icon {
    width: 36px;
    height: 36px;
  }

  .card-categories .category--icon {
    width: 72px;
    height: 72px;
  }

  .card-categories div.category--text {
    padding-left: 0;
  }


  /* job-listing */
  section.job-listing {
    margin-bottom: 100px;
  }

  .grid-style .job-item-div {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    justify-content: space-between;
  }

  .grid-style .job-item-div .banner-jobs {
    grid-column: 1/4;
    margin: 0 0 40px;
  }

  .job-listing .banner-jobs {
    max-height: 444px;
  }


  /* third section landing */
  .third-section__container div.highlight-button {
    display: flex;
    margin-top: 30px;
  }

  .third-section__container a:has(.btn-one) {
    width: 100%;
  }

  .btn-one {
    display: block;
    width: 100%;
    max-width: 700px;
  }

  .fourth-section__container .btn-one {
    width: auto;
    padding: 8px 60px 10px;
  }

  header .login-li button.btn-one {
    display: flex;
    align-items: center;
    width: auto;
  }

  .feedback-section__container .feedback-header {
    margin-bottom: 25px;
  }

  .feedback-section__container div.section-subtitle-div {
    margin-top: 20px;
  }

  .footer-section__container div.social-media-icons {
    margin-left: 0;
    margin-right: auto;
  }

  /* not found job */
  .fancy-banner .little-title {
    font-size: 22px;
    line-height: 1.65em;
  }

  /* job request landing */
  .jobrequest__container .faq .body-1 {
    line-height: 36px;
    font-weight: 400;
    font-size: 18px;
  }

  .jobrequest__container p.cta-text {
    margin: 24px 0 32px;
  }

  .banner-wrapper.jobseekers img.picture-banner {
    width: 70%;
  }


  /* registration */
  form.default-form #inp1 {
    width: 50%;
  }

  .post-job-request-section-form .h2-custom {
    margin-bottom: 36px;
  }

  /* .pricing-row .price-amount {
    font-size: 50px;
  } */

  .candidate-profile__container .professional-personal-info div.personal-info {
    gap: 10%;
    width: 70%;
  }

  .candidate-profile__container.employer-view .professional-personal-info div.personal-info {
    justify-content: space-between;
    width: 70%;
    gap: 0;
  }

  .candidate-profile__container.anonymous .professional-personal-info div.personal-info {
    justify-content: start;
    width: 70%;
    gap: 10%;
  }

  .candidate-profile__container.candidate-profile__container.anonymous .professional-personal-info div.personal-info {
    width: 100%;
  }

  .candidate-profile__container div.edit-buttons-basic {
    position: relative;
    top: -50px;
  }



}

@media (max-width: 1399px) {
  /* find jobs */
  /* .job-list-one .little-title {
      font-size: 16px;
    } */
}

/* XXL */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }

  .keywords-input input.form-control,
  .location-input input.form-control {
    font-size: 1rem !important;
  }

  .location-input,
  .keywords-input {
    padding-left: 30px;
  }

  .banner-section__images img {
    height: 25vw;
    max-height: 610px;
    padding-left: 3vw !important;
    padding-right: 3vw !important;
  }

  .brands-logos {
    padding-left: 15vw !important;
    padding-right: 15vw !important;
  }


  div.brands-logos div img {
    width: 5vw;
    max-width: 240px;
    height: auto;
  }

  .brands-logos .row {
    gap: 20px;
  }

  /* .h1-custom {
    margin-bottom: 25px;
  } */

  .description-big {
    font-size: 20px;
  }

  .body-1 {
    font-size: 16px;
  }

  .body-1.candidate-job {
    font-size: initial;
  }

  .third-section p.body-big,
  .fourth-section p.body-big {
    font-size: 20px;
  }

  .card-categories .body-big {
    font-size: 22px;
  }

  .jobrequest__container .body-big {
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  .brands-logos {
    margin-top: 3vw;
  }

  .banner-section__logos .logos--wrapper img.brands-logos--img {
    width: 6vw;
  }

  .banner-section__images {
    top: 175px;
  }

  .h6-highlight {
    font-size: 20px;
  }

  a.custom-links {
    font-size: 24px;
  }

  .review-title {
    font-size: 32px;
  }

  /* section.third-section,
  .fourth-section .btn-one {
    font-size: x-large;
  } */

  .fourth-section__container .btn-one {
    padding: 8px 135px 10px;
  }

  .form-control::placeholder {
    font-size: 16px;
    padding-left: 7px;
    line-height: 20px;
  }

  .banner-section {
    margin-bottom: 80px;
  }


  .banner-section__content .input-div {
    width: 77%;
  }

  /* inputs hero section */
  .banner-section .banner-section__content div.inputs-div {
    width: 70%;
    gap: 20px;
    justify-content: start;
  }

  .keywords-input,
  .location-input {
    width: 40%;
  }

  .banner-section div.banner-section__content div.button-search-div {
    width: 30%;
  }

  .banner-section .button-custom {
    width: 100%;
  }

  .banner-section__logos .logos--wrapper {
    width: 70vw;
    max-width: 100%;
    margin: auto;
  }

  /* second section */
  .btn-two {
    font-size: 22px;
  }

  .banner-section .input-container {
    margin: 7% 3%;
  }

  .feedback-section__container .feedback-flex {
    height: inherit;
    padding: 23px 32px 23px;
    /* margin: 2% 5%; */
  }

  .feedback-section__container .feedback-flex blockquote {
    line-height: 40px;
    font-size: 22px;
    margin-top: 30px;
  }

  /* FOOTER */

  .newsletterlanding {
    width: 80%;
    font-size: 16px;
  }

  .newslettersubmitlanding {
    width: 30%;
    height: 100%;
  }

  .newslettersubmitlanding .button-primary-dark {
    height: 100%;
    font-size: 1.2rem;
  }

  .newslettersubmitlanding:focus-visible,
  #newslettersubmitlanding::placeholder {
    outline: none !important;
    border: none;
    padding-left: 15px;
  }

  .footer-section {
    margin-top: auto;
    padding-top: 30px;
  }

  .footer-section__container .social-newsletter a img {
    margin: 10px;
  }

  .card-categories.bg-color a {
    padding: 20px;
  }

  .candidate-text {
    margin-top: 40px;
  }

  .request-row {
    margin-top: 1rem;
  }

  /* find jobs */
  div.inner-banner {
    height: 290px;
    margin-bottom: 5px;
    padding: 120px 0 0;
  }

  div.find-jobs-wrapper div.inner-banner {
    padding: 105px 0 0;
  }

  .register div.inner-banner {
    margin-bottom: 0;
  }

  div.inner-banner p.description-big {
    margin-top: 10px;
  }

  div.inner-banner__content {
    gap: 32px;
  }

  .find-jobs-wrapper .inner-banner .h1-custom {
    line-height: 1.1em;
    margin-bottom: 16px;
  }

  .job-search-bar form .input-box {
    padding: 15px 7px 13px;
  }


  .banner-wrapper.foremployers img.picture-banner {
    top: 130px;
  }

  /* job not found */
  div.inner-banner.job-not-found {
    margin-bottom: 100px;
  }

  .job-not-found__container section.text-feature {
    margin: 100px 0 100px;
  }

  /* job request landing */
  .jobrequest__container p.cta-text {
    margin: 32px 0 32px;
  }

  /* register */
  .register div.inner-banner {
    height: 380px;
  }


}

/* XXL */
@media (min-width: 1600px) {


  /* find jobs */

  .find-jobs-wrapper .inner-banner .h2-custom {
    font-size: 45px;
    margin-bottom: 24px;
  }

  .job-search-bar form .input-box {
    padding: 20px 7px 18px;
  }

  div.inner-banner {
    height: 340px;
    padding: 124px 0 0;
  }

  div.find-jobs-wrapper div.inner-banner {
    padding: 130px 0 0;
  }

  .job-list-one img.logo {
    width: 100px;
  }

  .feedback-section.no-background .job-list-one img.logo {
    width: 50px;
  }

  .job-list-one .link-jobtitle {
    max-height: 83px;
  }
}

@media (min-width: 2000px) {

  .banner-section__images {
    top: 187px;
  }

  .banner-section__content .input-div {
    width: 100%;
  }

  .banner-section__logos .logos--wrapper {
    width: 53vw;
  }

  .banner-section__logos .logos--wrapper img.brands-logos--img {
    width: 5vw;
  }


}

/* animations */

@keyframes jumping {
  0% {
    transform: translate3d(0, 0, 0);
  }

  40% {
    transform: translate3d(0, -20px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* CAPTCHA STYLE */
.g-recaptcha__error {
  display: none !important;
}

span.error.info-title {
  border-color: #cf5859 !important;
  color: #cf5859 !important;
  bottom: -23px;
  font-size: 12px;
  line-height: 24px;
  padding-left: 10px;
  letter-spacing: .01em;
}

/* fixed button - CTA Post a Job Request */

/* 

HTML CODE
<button class="cta-jobrequest">
  Post a Job Request
</button>

CSS
button.cta-jobrequest {
  width: auto;
  height: auto;
  line-height: 24px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  text-align: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  background: var(--primary0);
  transition: all 0.3s ease-in-out;
  padding: 5px 7px 7px;
} 

button.cta-jobrequest:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

*/


/* How it works section - New Design */
.hiw-section {
  background-color: #2563eb; /* solid blue background */
  padding: 72px 16px;
  color: #ffffff;
  margin: 0; /* flush with page */
  display: flex;
  justify-content: center; /* center inner container without margins */
}

.hiw-container {
  width: 100%;
  max-width: 1160px;
}

.hiw-title {
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0; /* no margins in section */
  padding-bottom: 48px; /* spacing using padding only */
}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr; /* step, arrow, step, ... */
  grid-template-rows: 64px 28px auto; /* row1 icons, row2 titles, row3 descriptions */
  align-items: start; /* align items to the start of their grid areas */
  gap: 24px;
}

.hiw-step {
  text-align: center;
  color: #e6f0ff; /* lighter text for descriptions */
  display: grid;
  grid-template-rows: 64px 28px auto; /* icon row, title row, description grows */
  justify-items: center; /* center items horizontally */
  align-items: start; /* top align rows */
  row-gap: 12px; /* spacing between rows */
  grid-row: 1 / span 3; /* make each step occupy all three parent rows */
}

.hiw-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
}

.hiw-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hiw-step-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0; /* no margins in section */
  line-height: 28px; /* match the fixed title row height */
  white-space: nowrap; /* keep headings on one line for perfect alignment */
}

.hiw-step-desc {
  margin: 0; /* ensure no margins */
  font-size: 14px;
  line-height: 1.6;
}

.hiw-arrow {
  width: 100px;
  height: auto;
  display: block;
  opacity: 0.9;
  justify-self: center; /* center in its grid column */
  align-self: center; /* center vertically within the icon row */
  grid-row: 1; /* place arrow on the icons row */
}

/* Responsive */
@media (max-width: 1024px) {
  .hiw-steps {
    display: flex;            /* stack steps as a vertical list */
    flex-direction: column;
    gap: 28px;    
    align-items: center            /* comfortable space between each step */
  }
  .hiw-arrow {
    display: none;
  }
  .hiw-section { padding: 48px 16px; }
  .hiw-title { font-size: 28px; margin-bottom: 24px; text-align: center; }
  /* Mobile-friendly HIW step spacing */
  .hiw-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 0; }
  .hiw-icon { width: 48px; height: 48px; }
  .hiw-step-title { white-space: normal; line-height: 1.3; font-size: 16px; font-weight: 700; margin: 0; }
  .hiw-step-desc { font-size: 14px; line-height: 1.6; max-width: 320px; }
}

/* Extra-tight layout for small phones */
@media (max-width: 600px) {
  .hiw-section { padding: 56px 16px; }
  .hiw-steps { gap: 24px; }
  .hiw-step { align-items: center; text-align: center; gap: 8px; }
  .hiw-icon { width: 44px; height: 44px; }
  .hiw-step-title { font-size: 16px; line-height: 1.35; }
  .hiw-step-desc { font-size: 14px; line-height: 1.6; max-width: 320px; }
}
