@charset "UTF-8";
/*-------------------------------------------------------------------
top-header.scss
-------------------------------------------------------------------*/
/*Start Theme Basic*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  --clr-primary: #4C5BFD;
  --clr-primary-2: #0D6EFD;
  --clr-primary-code: 13, 110, 253;
  --clr-primary-rgb: var(--clr-primary-code);
  --clr-bg-1: #1d343e;
  --clr-bg-2: #F5F7F9;
  --clr-bg-3: #012D37;
  --clr-bg-4: #212E37;
  --bg-black: #121212;
  --bg-white: #fff;
  --bg-dark: #37474F;
  --clr-white: #fff;
  --clr-gray: #ced0d1;
  --clr-gray-2: rgb(164, 166, 167);
  --clr-black: #6B7280;
  --clr-black-2: #333A51;
  --clr-border: #EBEFF5;
  --clr-from-border: #D6DDEB;
  --clr-border-1: rgba(255, 255, 255, 0.1);
  --clr-border-2: rgba(0, 0, 0, 0.08);
  --border-radius-1: 0.25rem;
  --border-radius-2: 0.375rem;
  --border-radius-3: 0.5rem;
  --border-radius-4: 1rem;
  --border-radius-5: 2rem;
  --clr-red: #FF3B3B;
  --clr-ylw: #FEA412;
  --clr-green: 13, 110, 253;
  --clr-body-text: #6A7381;
  --clr-fill: #cecece;
  --clr-background: #F6F8FC;
  --clr-background-1: #F7F5F1;
  --normal-font: "Poppins", sans-serif;
  --heading-font: "Inter", sans-serif;
  --clr-rgb: rgba(13, 110, 253, 0.06);
  --clr-gradient: linear-gradient(90deg, rgba(253, 60, 61, 0.24) 0%, rgba(13, 110, 253, 0.24) 100%);
  --clr-gradient-2: linear-gradient(to right, rgba(254, 164, 18, 0.1), rgba(6, 194, 112, 0.1));
  --box-shadow: 0px 1px 7px 0px rgba(72, 95, 119, 0.12);
  --box-shadow-2: 0px 5px 20px 1px rgba(72, 95, 119, 0.404);
  --hover-shadow: 0px 5px 20px 1px rgba(72, 95, 119, 0.18);
  --box-shadow-white: 0px 0px 15px 5px rgba(255, 255, 255, 0.03);
  --dynamic-pt: 80px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  font-family: var(--normal-font);
  color: var(--clr-black);
  font-optical-sizing: auto;
  box-sizing: border-box;
  overflow-x: hidden;
  line-height: 1.5;
  padding-right: 0 !important;
}

.h-80 {
  height: 80px;
}

.swiper-margin {
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: -16px;
}

.list-icon {
  font-size: 18px;
  line-height: 24px;
  vertical-align: bottom;
}

.list-icon-2 {
  float: left;
  margin-right: 5px;
  font-size: 18px;
  line-height: 24px;
}

.pricing-img {
  width: 80px;
  height: 80px;
}

.card.pricing-card {
  box-shadow: var(--box-shadow);
  transition: 0.3s;
}
.card.pricing-card:hover {
  box-shadow: var(--hover-shadow);
  transition: 0.3s;
}

.border {
  border: 1px solid var(--clr-border-2) !important;
}

.form-check-input:checked {
  background-color: rgba(var(--clr-primary-code));
  border-color: rgba(var(--clr-primary-code));
}

.form-check-input:focus {
  border-color: rgba(var(--clr-primary-code));
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--clr-primary-code), 0.25);
}

.table {
  border-color: var(--clr-border-2);
}
.table thead th {
  border-color: var(--clr-border-2) !important;
}
.table th,
.table td {
  border-color: var(--clr-border-2);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .fs-2 {
    font-size: 40px !important;
  }
  .display-4 {
    font-size: 60px;
    font-weight: 700;
  }
}
.display-4 {
  font-weight: 600;
}

a {
  color: rgba(var(--clr-primary-code));
  text-decoration: underline;
  font-size: 16px;
  font-weight: 400;
}

[data-settings] {
  padding-top: var(--dynamic-pt, 0);
  /* Fallback to 0 if --dynamic-pt is unset */
  padding-bottom: var(--dynamic-pb, 0);
  background-color: var(--bg-color, transparent);
  background-image: var(--bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  /* Optional: Add transition for smooth changes */
}

body .container {
  max-width: 1304px;
}

.ps-start {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
}

.color-green {
  color: #06C270;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.py-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

.text-primary {
  color: rgba(var(--clr-primary-code)) !important;
}

.bg-primary {
  background-color: rgba(var(--clr-primary-code)) !important;
}

.rounded {
  border-radius: var(--border-radius-1) !important;
}

.rounded-1 {
  border-radius: var(--border-radius-1) !important;
}

.rounded-2 {
  border-radius: var(--border-radius-2) !important;
}

.rounded-3 {
  border-radius: var(--border-radius-3) !important;
}

.rounded-4 {
  border-radius: var(--border-radius-4) !important;
}

.rounded-5 {
  border-radius: var(--border-radius-5) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--border-radius-2) !important;
  border-bottom-right-radius: var(--border-radius-2) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--border-radius-4) !important;
  border-bottom-right-radius: var(--border-radius-4) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.badge-one {
  display: inline-block;
  padding: 6px 10px;
  line-height: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--clr--black);
  text-transform: capitalize;
}

.badge-fulltime {
  background-color: rgba(34, 211, 238, 0.15);
  color: #2691af;
}

.badge-parttime {
  background-color: rgba(99, 102, 241, 0.15);
  color: #3730a3;
}

.badge-contractual {
  background-color: rgba(170, 63, 116, 0.15);
  color: #cc5585;
}

.badge-freelance {
  background-color: rgba(2, 132, 199, 0.15);
  color: #187eb6;
}

.badge-internship {
  background-color: rgba(var(--clr-primary-code), 0.15);
  color: rgba(var(--clr-primary-code));
}

.badge-temporary {
  background-color: rgba(249, 171, 0, 0.15);
  color: #f9ab00;
}

.z-index-2 {
  z-index: 2;
}

.avatar-lg {
  width: 3.75rem;
  height: 3.75rem;
}

.avatar-md {
  width: 2.75rem;
  height: 2.75rem;
}

.c-pointer {
  cursor: pointer;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.section-margin-top {
  margin-top: 60px;
}

.section-padding {
  padding: 60px 0;
}

.section-padding-top {
  padding-top: 60px;
}

.section-padding-bottom {
  padding-bottom: 60px;
}

.ps-22 {
  padding-left: 22px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-10 {
  padding-left: 10px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.bg-rgb {
  background: var(--clr-rgb);
}

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

.bg-color-1 {
  background: var(--clr-background-1);
}

.bg-pr {
  background: rgba(var(--clr-primary-code));
}

.bg-gr {
  background: rgba(var(--clr-primary-code)) !important;
}

.bg-red {
  background: var(--clr-red);
}

.bg-ylw {
  background: var(--clr-ylw);
}

.bg-fill {
  background: var(--clr-fill);
}

.tx-pr {
  color: rgba(var(--clr-primary-code));
}

.tx-gr {
  color: var(--clr-green);
}

.tx-red {
  color: var(--clr-red);
}

.tx-ylw {
  color: var(--clr-ylw);
}

.tx-blk {
  color: var(--clr--black);
}

.tx-body {
  color: var(--clr-body-text) !important;
}

.tx-border {
  color: var(--clr-border);
}

.fn-semi-b {
  font-weight: 600;
}

.fn-12 {
  font-size: 12px;
}

.fn-14 {
  font-size: 14px;
}

.fn-16 {
  font-size: 16px !important;
}

.fn-18 {
  font-size: 18px !important;
}

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

.font-600 {
  font-weight: 600;
}

.font-bold {
  font-weight: 700 !important;
}

.font-400 {
  font-weight: 400 !important;
}

h3 {
  color: var(--clr-black);
  font-weight: 600;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-90 {
  gap: 90px;
}

.border-10 {
  border: 1px solid var(--clr-border);
  border-radius: 10px;
}

.border-rd-10 {
  border-radius: 10px;
}

.bg-color-pricing {
  background: #F7F5F1;
}

p {
  font-size: 16px;
  font-weight: 400;
}

.small {
  font-size: 16px;
}

p,
span {
  color: var(--clr-body-text);
}

hr {
  color: var(--clr-border);
  opacity: 1;
}

.main-header .custom-btn {
  padding: 12px;
}

.rtl-mode {
  top: 60%;
  right: -55px;
  margin-top: -115px;
  z-index: 7777;
  line-height: 1;
  position: fixed;
  text-align: left;
  display: inline-block;
  transition: all 0.4s ease;
  transform: translateY(-50%);
  background: var(--clr-red);
  padding: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.rtl-mode button {
  width: 50px;
  padding: 12px;
  font-size: 16px;
  background: var(--clr-white);
  color: rgba(var(--clr-primary-code));
  border: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.custom-btn {
  text-decoration: none;
  color: var(--clr-white);
  background: rgba(var(--clr-primary-code));
  border-radius: var(--border-radius-1);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.custom-btn i {
  font-size: 12px;
}

.custom-btn-2 {
  text-decoration: none;
  color: var(--clr-black);
  background: rgba(var(--clr-primary-code), 0.1);
  border: 1px solid rgba(var(--clr-primary-code), 0.5);
  border-radius: var(--border-radius-1);
  padding: 14px 24px;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}
.custom-btn-2:hover {
  transition: 0.3s;
  color: var(--clr-white) !important;
  background: rgba(var(--clr-primary-code));
}
.custom-btn-2 i {
  font-size: 12px;
  vertical-align: middle;
  width: auto !important;
}

.b-sm {
  padding: 10px 14px;
}

.custom-btn:hover {
  background: rgba(var(--clr-primary-code), 0.9);
  color: var(--clr-white);
  box-shadow: 0px 5px 20px rgba(var(--clr-primary-code), 0.6);
}

.cus-box-shadow {
  box-shadow: 0px 5px 20px rgba(var(--clr-primary-code), 0.5);
}

.custom-btn-1 {
  text-decoration: none;
  color: var(--clr-white);
  background: rgba(var(--clr-primary-code));
  border-radius: 5px;
  padding: 12px;
  font-weight: 500;
  border: none;
  display: inline-block;
}
.custom-btn-1 i {
  margin-right: 5px;
}

.custom-btn-1:hover {
  background: rgba(var(--clr-primary-code), 0.9);
  color: var(--clr-white);
}

.custom-btn-signin {
  text-decoration: none;
  color: var(--clr-white);
  background: rgba(var(--clr-primary-code));
  border-radius: var(--border-radius-1);
  padding: 10px 12px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  display: inline-block;
}
.custom-btn-signin i {
  margin-right: 5px;
}

.btn-two {
  text-decoration: none;
  color: var(--clr-white);
  background: rgba(var(--clr-primary-code));
  border-radius: var(--border-radius-1);
  padding: 10px 12px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  transition: 0.3s;
  line-height: 1.5;
  display: inline-block;
}
.btn-two:hover {
  background: rgba(var(--clr-primary-code), 0.9);
  color: var(--clr-white);
  box-shadow: 0px 5px 20px rgba(var(--clr-primary-code), 0.5);
  transition: 0.3s;
}

.custom-btn-signin:hover {
  background: rgba(var(--clr-primary-code), 0.9);
  color: var(--clr-white);
}

.bg-image-slider {
  background-image: url("../../image/slider.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.bg-image {
  background-image: url("../../image/Grow-your-career.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.box-info {
  padding-top: 88px;
}
.box-info .box {
  padding: 5px;
  border-radius: 10px;
}
.box-info .box .box-img {
  border-radius: 10px;
}
.box-info .box .box-img img {
  width: 100%;
}

.details-img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

.count {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.articles .article-card {
  border-radius: 10px;
  background: var(--clr-white);
  transition: 0.3s;
}
.articles .article-card .card-image {
  position: relative;
  padding-top: 73%;
}
.articles .article-card .card-image img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles .article-card span {
  font-size: 14px;
  font-weight: 500;
}
.articles .article-card span img {
  margin-bottom: 2px;
}
.articles .article-card h5 {
  font-size: 20px;
  font-weight: 600;
}
.articles .article-card:hover {
  box-shadow: 0px 0px 15px rgba(var(--clr-primary-code), 0.3);
  border-color: rgba(var(--clr-primary-code)) !important;
  transition: 0.3s;
}

.btn-read-more {
  text-decoration: none;
  font-weight: 500;
  color: var(--clr--black);
}
.btn-read-more:hover {
  color: rgba(var(--clr-primary-code));
}
.btn-read-more i {
  font-size: 10px;
  font-weight: 700;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 5px;
}

.nav-right-items .input-group .form-control:focus {
  box-shadow: none;
  border: 1px solid rgba(var(--clr-primary-code));
}

.box-style {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.0588235294);
  padding: 24px;
  border-radius: 10px;
  margin-top: 20px;
}
.box-style .title-box {
  border-radius: 5px;
}
.box-style .title-box .row {
  padding: 5px;
}
.box-style h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-black);
}
.box-style .dropdown-toggle::after {
  border-top: none !important;
  display: none;
}

.span-blue {
  background: var(--clr-rgb);
  color: rgba(var(--clr-primary-code));
  border-radius: 5px;
  padding: 12px 10px;
  font-size: 14px;
}

.span-blue-2 {
  background: var(--clr-rgb);
  color: rgba(var(--clr-primary-code));
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
}

ul li {
  color: var(--clr-body-text);
}

.pagination .page-link {
  padding: 7px 16px;
  color: var(--clr-body-text);
  border: 1px solid transparent;
}

.pagination .page-link:hover {
  z-index: 2;
  color: #ffffff;
  background-color: rgba(var(--clr-primary-code));
  border-radius: 5px;
}
.pagination .page-link:hover span i {
  color: #ffffff;
}

.pagination .page-link.active {
  z-index: 2;
  color: #ffffff;
  background-color: rgba(var(--clr-primary-code));
  border-radius: 5px;
}
.pagination .page-link.active span i {
  color: #ffffff;
}

.pagination .page-link:focus {
  z-index: 2;
  color: #ffffff;
  background-color: rgba(var(--clr-primary-code));
  border-radius: 5px;
  box-shadow: none;
}
.pagination .page-link:focus span i {
  color: #ffffff;
}

.dropdown-toggle::after {
  border-top: none !important;
}

.sort a {
  text-decoration: none;
  color: var(--clr-black);
  font-weight: 500;
}

.equal-btn {
  background: rgba(var(--clr-primary-code), 0.1);
  border: none;
  border-radius: 5px;
  padding: 14px 16px;
  color: rgba(var(--clr-primary-code));
}
.equal-btn.active, .equal-btn:hover {
  background: rgba(var(--clr-primary-code), 0.25);
}

.features-included ul {
  padding: 0;
}
.features-included ul li {
  list-style: none;
  margin: 10px 0;
}
.features-included ul li i.fa-check {
  background: var(--clr-rgb);
  border-radius: 50%;
  color: rgba(var(--clr-primary-code));
  padding: 5px;
  font-size: 12px;
  margin-right: 16px;
}
.features-included ul li i.fa-close {
  background: var(--clr-rgb);
  border-radius: 50%;
  color: var(--clr-red);
  padding: 5px;
  font-size: 12px;
  margin-right: 16px;
}

.bg-color-pricing .form-switch .form-check-input {
  border: none;
  background-color: #959191;
  width: 3em;
  height: 1.5em;
  background-image: url(../../image/white-circle.svg);
}

.bg-color-pricing .form-check-input:checked[type=checkbox] {
  background-color: rgba(var(--clr-primary-code));
  background-image: url(../../image/white-circle.svg);
}

.bg-color-pricing .form-switch {
  padding-left: 3.5em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bg-color-pricing .form-switch label {
  margin-top: 5px;
}

.about-title {
  font-size: 44px;
}

.apply-img {
  max-height: 80px;
}
.apply-img img {
  width: 100%;
}

.logo-slider h6 {
  color: var(--clr-body-text);
}
.logo-slider .bg-color-gradient:hover {
  background: #000000;
}

.contact .box-contact-icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-body-text);
  border-radius: 10px;
  font-size: 20px;
  color: var(--clr-white);
}
.contact .box-contact-icon img {
  width: 24px;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
  margin-top: 24px;
}

.user-img img {
  width: 150px;
  height: 150px;
}

.user-Qualification ul li {
  font-size: 14px;
  color: var(--clr-black);
  list-style: none;
  display: flex;
}

.user-Qualification > ul > li::before {
  content: " ";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: 10px;
  background: #1C222B;
}

.user-Personal table tr > td {
  padding-right: 20px;
}

.badge-gray {
  background: var(--clr-from-border);
  border-radius: 16px;
  padding: 6px 10px;
  font-size: 14px;
  color: var(--clr-black-2);
}

.box-video {
  height: 400px;
}

iframe {
  border: 0;
  border-radius: 10px;
}

.form-control:focus {
  box-shadow: none;
  border-color: rgba(var(--clr-primary-code)) !important;
}

.text-dark h5:hover {
  color: rgba(var(--clr-primary-code)) !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid var(--clr-primary) 1px !important;
  outline: 0;
}

.pagination .page-link:hover img {
  filter: invert(1);
}

.navbar-toggler {
  padding: 0.55rem 0.75rem;
  font-size: 1rem;
}

.top-header {
  padding: 0;
  background: rgba(var(--clr-primary-code));
}
.top-header .top-header-info {
  color: #ffffff;
}
.top-header .top-header-info a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}
.top-header .dropdown .nav-link:after {
  color: var(--clr-white);
}
.top-header .dropdown .nav-link:hover:after {
  color: var(--clr-white);
}

.top-social {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.top-social li {
  height: 26px;
  width: 26px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-social li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
}
.top-social li:hover {
  background-color: var(--clr-white);
}
.top-social li:hover i {
  color: rgba(var(--clr-primary-code));
}

.main-header {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.0588235294);
}

.nav-right-items .input-group {
  width: 90%;
  border-radius: 5px;
  overflow: hidden;
}
.nav-right-items .input-group img {
  position: relative;
  z-index: 99;
  left: 23px;
}
.nav-right-items .input-group .form-control {
  border: 1px solid transparent;
  padding: 8px 10px 7px 26px;
}
.nav-right-items .input-group ::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #1C222B;
  opacity: 1; /* Firefox */
}
.nav-right-items .input-group ::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #1C222B;
  opacity: 1; /* Firefox */
}
.nav-right-items .btn-primary {
  padding-bottom: 10px;
}

.nav .navbar-light .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-black);
  padding: 25px 10px;
}
.nav .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(var(--clr-primary-code));
}

.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  transition: all 0.4s ease-in;
  box-shadow: var(--box-shadow);
}

.sticky + .content {
  padding-top: 102px;
}

.sticky .nav-item .nav-link {
  color: var(--clr-black) !important;
}
.sticky .nav-item .nav-link:hover {
  color: rgba(var(--clr-primary-code)) !important;
}

.sticky .navbar-toggler {
  border-color: var(--clr-black) !important;
}

.sticky .navbar-toggler span {
  color: var(--clr-black) !important;
}

.navbar-toggler i {
  padding: 5px;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  border-color: rgba(var(--clr-primary-code));
  box-shadow: none;
}
.navbar-toggler:focus i {
  color: rgba(var(--clr-primary-code));
}

.navbar .navbar-nav .nav-item .nav-link img {
  margin-top: 10px;
  position: absolute;
}

.navbar-nav .nav-item .nav-link.dropdown-toggle.show img {
  margin-top: 10px;
  position: absolute;
  transform: translateY(0%) rotate(180deg);
  transition: 0.2s linear;
}

.dropdown-toggle img.d-down {
  margin-top: 10px;
  position: absolute;
}

.dropdown-toggle.show img.d-down {
  margin-top: 10px;
  position: absolute;
  transform: translateY(0%) rotate(180deg);
  transition: 0.2s linear;
}

.logo img {
  max-height: 42px;
}

.dropdown {
  position: relative;
}
.dropdown .nav-link {
  padding-right: 25px !important;
  color: var(--clr-black);
  display: block;
}
.dropdown .nav-link:after {
  content: "\f078";
  font-family: "fontAwesome";
  color: var(--clr-black);
  font-weight: 400;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-45%);
}
.dropdown .nav-link:hover:after {
  color: rgba(var(--clr-primary-code));
}
.dropdown .sub-menu {
  position: absolute;
  top: 100%;
  transform: translate(10px, 20px);
  z-index: 999;
  margin: 0;
  padding: 0;
  box-shadow: 0px 5px 25px 0px rgba(138, 159, 168, 0.15);
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 10px;
  border-radius: var(--border-radius-1);
  background-color: var(--bg-white);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.dropdown .sub-menu li {
  list-style: none;
}
.dropdown .sub-menu li a {
  padding: 0.8rem 10px;
  padding-right: 65px;
  display: inline-block;
  width: 100%;
  border-radius: var(--border-radius-1);
  color: var(--clr-black);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  font-size: 400;
  font-size: 16px;
}
.dropdown .sub-menu li a:before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-bottom: 0;
  border-left: 0;
  border-top: 2px solid rgba(var(--clr-primary-code));
  border-right: 2px solid rgba(var(--clr-primary-code));
  transform: rotate(45deg);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.dropdown .sub-menu li a:hover {
  transition: all 0.3s ease-in-out;
  color: rgba(var(--clr-primary-code));
  background-color: rgba(var(--clr-primary-code), 0.08);
}
.dropdown .sub-menu li a:hover:before {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s;
}
.dropdown:hover + .nav-link {
  color: rgba(var(--clr-primary-code));
}
.dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in;
  transform: translate(10px, 0);
}

.offcanvas {
  border-right: 0 !important;
}

.offcanvas.search-canvas {
  bottom: auto;
}
.offcanvas.search-canvas.offcanvas-top {
  height: auto;
}
.offcanvas.search-canvas .offcanvas-body .search-container {
  position: relative;
}
.offcanvas.search-canvas .offcanvas-body .search-container .icon-magnifier {
  left: 20px;
}
.offcanvas.search-canvas .offcanvas-body .search-container i {
  position: absolute;
  top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-black);
}
.offcanvas.search-canvas .offcanvas-body .search-container .form-control {
  padding-left: 50px;
}
.offcanvas.search-canvas .offcanvas-body .search-container .icon-close {
  right: 20px;
}

.navbar.three {
  width: 100%;
  border-bottom: 1px solid var(--clr-border-1);
  transition: all 0.4s ease-in-out;
}
.navbar.three .navbar-brand {
  font-size: 1rem;
}
.navbar.three .navbar-toggler {
  padding: 0;
  font-size: 18px;
  line-height: 1;
  background-color: transparent;
  border: 1px solid var(--clr-border-2);
  color: var(--clr-black);
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
  width: 40px;
  height: 35px;
  line-height: 38px;
}
.navbar.three .navbar-toggler span {
  color: var(--clr-black);
}
.navbar.three .navbar-nav .dropdown-toggle i {
  font-size: 14px;
}
.navbar.three .navbar-nav .nav-item {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.navbar.three .navbar-nav .nav-item .nav-link {
  color: var(--clr-black);
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  padding: 24px 0.5rem;
}
.navbar.three .navbar-nav .nav-item .nav-link:hover, .navbar.three .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--clr-primary-code));
  transition: all 0.3s ease-in-out;
}
.navbar.three .navbar-nav .nav-item .nav-link i {
  font-size: 10px;
  font-weight: 600;
  margin-top: 3px;
}
.navbar.three .nav-end .notificaton {
  position: relative;
}
.navbar.three .nav-end .notificaton span {
  width: 14px;
  height: 14px;
  line-height: 15px;
  text-align: center;
  font-size: 8px;
  font-weight: 500;
  background-color: blue;
  color: var(--clr-white);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: 0px;
  z-index: 1;
}

.top-banner {
  background-color: rgba(var(--clr-primary-rgb), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-banner a {
  display: block;
  position: relative;
  padding-top: 7%;
}
.top-banner a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-three .top-bar-one,
.header-three .top-bar-two {
  background: var(--bg-dark);
  height: 40px;
  line-height: 40px;
}
.header-three .top-bar-one .top__nav,
.header-three .top-bar-two .top__nav {
  height: 40px;
  line-height: 40px;
}
.header-three .top-bar-one .top__nav-left a,
.header-three .top-bar-two .top__nav-left a {
  text-decoration: none;
  font-size: 13px;
  font-size: 500;
  color: var(--clr-gray);
  display: inline-block;
  line-height: 40px;
  text-transform: uppercase;
  transition: 0.3s;
  padding: 0 12px;
}
.header-three .top-bar-one .top__nav-left a.active,
.header-three .top-bar-two .top__nav-left a.active {
  background: rgba(var(--clr-primary-code));
  color: var(--clr-white);
  padding: 0 12px;
}
.header-three .top-bar-one .top__nav-left a:hover,
.header-three .top-bar-two .top__nav-left a:hover {
  background: rgba(var(--clr-primary-code));
  color: var(--clr-white);
  transition: 0.3s;
}
.header-three .top-bar-one .top__nav-left .top-btn,
.header-three .top-bar-two .top__nav-left .top-btn {
  padding: 8px 12px;
  border-radius: var(--border-radius-2);
  background-color: rgba(var(--clr-primary-code));
  color: var(--clr-white);
  line-height: 1;
  transition: 0.3s;
}
.header-three .top-bar-one .top__nav-left .top-btn:hover,
.header-three .top-bar-two .top__nav-left .top-btn:hover {
  background: rgba(var(--clr-primary-code), 0.9);
  transition: 0.3s;
}
.header-three .top-bar-one .top__nav-right .social a,
.header-three .top-bar-two .top__nav-right .social a {
  color: var(--clr-white);
  text-decoration: none;
  font-size: 12px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: var(--border-radius-2);
  border: 1px solid var(--clr-border-1);
  text-align: center;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
}
.header-three .top-bar-one .top__nav-right .social a:hover,
.header-three .top-bar-two .top__nav-right .social a:hover {
  background-color: rgba(var(--clr-primary-code));
  transition: all 0.3s ease-in;
}
.header-three .top-bar-one .top__nav-right .dropdown .dropdown-toggle,
.header-three .top-bar-two .top__nav-right .dropdown .dropdown-toggle {
  color: var(--clr-white);
  font-size: 14px;
  padding: 0;
}
.header-three .top-bar-one .top__nav-right .dropdown .dropdown-toggle .flag-icon,
.header-three .top-bar-two .top__nav-right .dropdown .dropdown-toggle .flag-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--clr-white);
  font-size: 13px;
  border-radius: 50%;
  line-height: 24px;
}
.header-three .top-bar-one .top__nav-right .dropdown .dropdown-toggle .icon-arrow-down,
.header-three .top-bar-two .top__nav-right .dropdown .dropdown-toggle .icon-arrow-down {
  font-size: 12px;
}
.header-three .top-bar-one .top__nav-right .dropdown .dropdown-menu,
.header-three .top-bar-two .top__nav-right .dropdown .dropdown-menu {
  z-index: 1080;
  display: block;
  top: 100%;
  margin: 0;
  transform: translateY(20px);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.header-three .top-bar-one .top__nav-right .dropdown .dropdown-menu .dropdown-item span,
.header-three .top-bar-two .top__nav-right .dropdown .dropdown-menu .dropdown-item span {
  width: 22px;
  height: 22px;
  border: 2px solid var(--clr-white);
  font-size: 13px;
  border-radius: 50%;
  line-height: 24px;
}
.header-three .top-bar-one .top__nav-right .dropdown .dropdown-menu .dropdown-item span i,
.header-three .top-bar-two .top__nav-right .dropdown .dropdown-menu .dropdown-item span i {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-three .top-bar-one .top__nav-right .dropdown:hover .dropdown-menu,
.header-three .top-bar-two .top__nav-right .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transform: translateY(0);
  transition: 0.3s;
}

.slide .container {
  gap: 100px;
}
.slide .slide-info {
  margin-top: 180px;
}
.slide .slide-info .ti-minus {
  font-weight: bolder;
  font-size: 30px;
}
.slide .slide-info a.slide-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.slide .slide-info p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 85%;
}
.slide .slide-info .color-green {
  color: #06C270;
}
.slide .slide-info .custom-btn {
  font-size: 16px;
}
.slide .show-slide-info {
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 5px 20px rgba(var(--clr-primary-code), 0.5);
}
.slide .job {
  position: absolute;
  top: 12%;
  left: 55%;
  animation-name: live-job;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes live-job {
  0% {
    top: 12%;
  }
  25% {
    top: 14%;
  }
  50% {
    top: 12%;
  }
  75% {
    top: 14%;
  }
  100% {
    top: 12%;
  }
}
.slide .resume {
  position: absolute;
  top: 80%;
  left: 45%;
  animation-name: resume;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes resume {
  0% {
    top: 80%;
  }
  25% {
    top: 82%;
  }
  50% {
    top: 80%;
  }
  75% {
    top: 82%;
  }
  100% {
    top: 80%;
  }
}
.slide .employers {
  position: absolute;
  top: 12%;
  left: 85%;
  animation-name: employers;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes employers {
  0% {
    top: 12%;
  }
  25% {
    top: 14%;
  }
  50% {
    top: 12%;
  }
  75% {
    top: 14%;
  }
  100% {
    top: 12%;
  }
}
.slide .companies {
  position: absolute;
  top: 60%;
  left: 88%;
  animation-name: companies;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes companies {
  0% {
    top: 62%;
  }
  25% {
    top: 60%;
  }
  50% {
    top: 62%;
  }
  75% {
    top: 60%;
  }
  100% {
    top: 62%;
  }
}

.hero-three {
  width: 100%;
  height: 700px;
  background: var(--clr-bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-three .slider-content {
  color: var(--clr-white);
  position: relative;
  z-index: 2;
}
.hero-three .slider-content p {
  color: var(--clr-gray);
}
.hero-three .slider-content .form-container {
  background-color: var(--bg-white);
  padding: 0.75rem;
}
.hero-three .slider-content .form-container .input-container {
  position: relative;
}
.hero-three .slider-content .form-container .input-container i {
  position: absolute;
  left: 14px;
  z-index: 1;
  color: var(--clr-black);
  font-size: 18px;
  font-weight: 600;
}
.hero-three .slider-content .form-container .input-container .form-control {
  padding-left: 42px;
  border: 0;
}
.hero-three .slider-content .list-tags a, .hero-three .slider-content .list-tags p {
  font-size: 14px;
}
.hero-three .slider-content .list-tags a {
  padding: 5px 12px;
  background: transparent;
  border: 1px solid var(--clr-border-1);
  color: var(--clr-white);
  display: inline-block;
  border-radius: var(--border-radius-1);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.hero-three .slider-content .list-tags a:hover {
  background: var(--bg-white);
  color: var(--clr-black-2);
  transition: all 0.4s ease-in;
}
.hero-three .slider-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.hero-three .slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-three .slider-img .hero-badge {
  position: absolute;
  right: 0;
  top: 320px;
  box-shadow: var(--box-shadow);
}
.hero-three .slider-img .hero-badge.two {
  top: auto;
  bottom: 50px;
  right: auto;
  left: -80px;
}
.hero-three .slider-img .hero-badge p {
  font-size: 13px;
  line-height: 1;
}

.section-title h2 {
  color: var(--clr-black);
  line-height: 1.626;
}
.section-title h2.fw-semibold {
  font-weight: 600 !important;
}
.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
}

.bg-color-gradient {
  border: double 1px transparent;
  background-image: linear-gradient(white, white), linear-gradient(to left, #33ccff 0%, #ff99cc 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 10px;
}
.bg-color-gradient .companies-logo {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 18.5px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-profile {
  /* Arrows */
}
.company-profile .slick-prev,
.company-profile .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  border-radius: 50%;
  outline: none;
  background: transparent;
}
.company-profile .slick-prev:hover,
.company-profile .slick-prev:focus,
.company-profile .slick-next:hover,
.company-profile .slick-next:focus {
  color: transparent;
  outline: none;
  background: #285aff;
}
.company-profile .slick-prev:hover:before,
.company-profile .slick-prev:focus:before,
.company-profile .slick-next:hover:before,
.company-profile .slick-next:focus:before {
  opacity: 1;
  color: white;
}
.company-profile .slick-prev.slick-disabled:before,
.company-profile .slick-next.slick-disabled:before {
  opacity: 0.25;
}
.company-profile .slick-prev:before {
  margin-right: 3px;
  position: absolute;
  top: -1px;
  right: 5px;
}
.company-profile .slick-next:before {
  margin-left: 3px;
  position: absolute;
  top: -1px;
  left: 6px;
}
.company-profile .slick-prev:before,
.company-profile .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.company-profile .slick-prev {
  left: 20px;
  z-index: 99;
}
.company-profile [dir=rtl] .slick-prev {
  right: 18px;
  left: auto;
}
.company-profile .slick-prev:before {
  content: "🢐";
}
.company-profile [dir=rtl] .slick-prev:before {
  content: "🢒";
}
.company-profile .slick-next {
  right: 18px;
  z-index: 99;
}
.company-profile [dir=rtl] .slick-next {
  right: auto;
  left: 18px;
}
.company-profile .slick-next:before {
  content: "🢒";
}
.company-profile [dir=rtl] .slick-next:before {
  content: "🢐";
}

.cateogrys .col-xl-3 {
  padding: 0 10.5px;
}
.cateogrys .bg-color-gra {
  margin-bottom: 24px;
  transition: 0.3s;
}
.cateogrys .bg-color-gra .cateogry-items {
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding: 23px 10px;
}
.cateogrys .bg-color-gra .cateogry-items .cateogry-name {
  text-align: left;
}
.cateogrys .bg-color-gra .cateogry-items .cateogry-name h5 {
  color: var(--clr-black);
  font-size: 18px;
  font-weight: 600;
}
.cateogrys .bg-color-gra .cateogry-items .cateogry-name p {
  margin-bottom: 0;
}
.cateogrys .bg-color-gra .cateogry-items i {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.06);
  border-radius: 5px;
}
.cateogrys .bg-color-gra .cateogry-items i svg {
  fill: #0d6efd;
}
.cateogrys .bg-color-gra :hover {
  border-color: rgba(var(--clr-primary-code));
  transition: 0.3s;
  background: rgba(var(--clr-primary-code));
  color: #ffffff;
  box-shadow: 0px 5px 20px rgba(var(--clr-primary-code), 0.08);
}
.cateogrys .bg-color-gra :hover i {
  background: rgba(255, 255, 255, 0.062);
}
.cateogrys .bg-color-gra :hover i svg {
  fill: #ffffff;
}
.cateogrys .bg-color-gra :hover * {
  color: var(--clr-white);
}
.cateogrys .bg-color-gra :hover .cateogry-name h5 {
  color: var(--clr-white);
}

.category-three .swiper-button-next,
.category-three .swiper-button-prev {
  width: auto;
  height: auto;
  margin-top: 0;
}
.category-three .swiper-button-next:before, .category-three .swiper-button-next:after,
.category-three .swiper-button-prev:before,
.category-three .swiper-button-prev:after {
  width: 50px;
  height: 50px;
  border: 2px solid var(--clr-border-2);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-black);
  transition: all 0.3s ease-in;
}
.category-three .swiper-button-next:hover:before, .category-three .swiper-button-next:hover:after,
.category-three .swiper-button-prev:hover:before,
.category-three .swiper-button-prev:hover:after {
  background: rgba(var(--clr-primary-code));
  border-color: rgba(var(--clr-primary-code));
  color: var(--clr-white);
  transition: all 0.3s ease-in;
}
.category-three .category-swiper .swiper-slide a {
  text-decoration: none;
  color: var(--clr-black);
}
.category-three .category-swiper .swiper-slide .category-items {
  box-shadow: var(--box-shadow);
  transition: 0.2s;
  border-radius: var(--border-radius-2);
  overflow: hidden;
}
.category-three .category-swiper .swiper-slide .category-items h4 {
  font-size: 17px;
  margin-bottom: 0;
}
.category-three .category-swiper .swiper-slide .category-items img {
  height: 45px;
}
.category-three .category-swiper .swiper-slide .category-items:hover {
  box-shadow: var(--hover-shadow);
  transition: 0.2s;
}

.circular .bg-color-gradient:hover {
  background: var(--clr-white);
}
.circular .circular-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--clr-white);
}
.circular .circular-item .item-left {
  position: relative;
  padding-top: 45%;
}
.circular .circular-item .item-left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.circular .circular-item .title-box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.circular .circular-item .title-box img {
  border-radius: var(--border-radius-2);
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.circular .circular-item .circular-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.circular .circular-item .circular-title a {
  color: var(--clr-black);
  transition: 0.3s;
  text-decoration: none;
}
.circular .circular-item .circular-title a:hover {
  color: rgba(var(--clr-primary-code));
  transition: 0.3s;
}
.circular .circular-item .circular-title h5 {
  font-size: 18px;
  font-weight: 600;
}
.circular .circular-item .circular-title span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--clr-primary-code));
}
.circular .circular-item .time-location {
  color: var(--clr-body-text);
  font-size: 14px;
  margin-bottom: 16px;
}
.circular .circular-item .job-type {
  margin-top: 8px;
}
.circular .circular-item .job-type span {
  font-size: 12px;
  font-weight: 500;
  background-color: var(--clr-rgb);
  color: rgba(var(--clr-primary-code));
  padding: 7px 10px;
  border-radius: 5px;
  margin-right: 5px;
}
.circular .circular-item .salary-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.circular .circular-item .salary-range span {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--clr-primary-code));
}
.circular .circular-item .salary-range .btn-apply {
  background: rgba(var(--clr-primary-code));
  text-decoration: none;
  color: var(--clr-white);
  font-size: 14px;
  border-radius: 5px;
  padding: 8.5px 20.5px;
}
.circular .circular-item:hover {
  border: 1px solid rgba(var(--clr-primary-code));
  box-shadow: 0px 0px 10px 1px rgba(var(--clr-primary-code), 0.1);
}

.details .circular .circular-item .title-box img {
  width: auto;
  max-width: 100%;
  height: 100%;
}

/* ============ popular circular three Start ============*/
.popular-circular-three {
  background: var(--clr-gradient-2);
}
.popular-circular-three .nav-pills {
  background: #fff;
  border-radius: var(--border-radius-2);
  height: 100%;
  box-shadow: var(--box-shadow);
  border-top: 4px solid rgba(var(--clr-primary-code));
}
.popular-circular-three .nav-pills .nav-link {
  border-radius: 0;
  text-align: left;
  font-weight: 500;
  padding: 12px 20px;
  color: var(--clr-black);
  border-bottom: 1px solid #eee;
}
.popular-circular-three .nav-pills .nav-link:hover {
  color: rgba(var(--clr-primary-code));
}
.popular-circular-three .nav-pills .nav-link.active {
  color: rgba(var(--clr-primary-code));
  background-color: transparent;
  border-bottom: 1px solid rgba(var(--clr-primary-code));
}
.popular-circular-three .nav-pills .nav-link:last-child {
  border-bottom: 0;
}

.overly:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(73, 72, 72, 0.8);
  z-index: 1;
}

.job-card {
  background: #fff;
  border: none;
  border-radius: var(--border-radius-2);
  padding: 20px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.job-card .content {
  position: relative;
  z-index: 2;
}
.job-card .logo-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-black);
}
.job-card .logo-title:hover {
  color: rgba(var(--clr-primary-code));
}
.job-card a {
  color: var(--clr-black);
}
.job-card a:hover {
  color: rgba(var(--clr-primary-code));
}
.job-card a:hover h6 {
  color: rgba(var(--clr-primary-code));
}
.job-card .company-logo {
  border-radius: var(--border-radius-2);
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}
.job-card .job-title {
  font-size: 18px;
  font-weight: 600;
}
.job-card:hover {
  transform: translateY(-5px);
}
.job-card .job-deadline {
  line-height: 1;
}
.job-card .job-deadline span {
  font-weight: 600;
  margin-top: 5px;
}
.job-card .apply-btn {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 5px 20px;
  font-size: 14px;
  background: #fff;
  transition: 0.3s;
}
.job-card .apply-btn:hover {
  background: rgba(var(--clr-primary-code));
  color: #fff;
  border-color: rgba(var(--clr-primary-code));
}

/* ============ popular circular three Ends ============*/
.job-type-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.job-type-list .bg-color-grad {
  border: double 1px transparent;
  background-image: linear-gradient(white, white), linear-gradient(to left, #33ccff 0%, #ff99cc 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 5px;
  position: relative;
}
.job-type-list .bg-color-grad .job-item {
  padding: 11px 17px;
}
.job-type-list .bg-color-grad .job-item .job-items {
  text-decoration: none;
  color: var(--clr-black);
  background: var(--clr-white);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}
.job-type-list .nav .nav-item .nav-link {
  border: 1px solid rgba(var(--clr-primary-code), 1);
  background-color: transparent;
  display: inline-block;
  color: rgba(var(--clr-primary-code), 1);
  border-radius: var(--border-radius-2);
}
.job-type-list .nav .nav-item:hover {
  background-image: none;
}
.job-type-list .nav .nav-item .nav-link:hover,
.job-type-list .nav .nav-item .nav-link.active {
  background-color: rgba(var(--clr-primary-code), 1);
  color: var(--clr-white);
}
.job-type-list .bg-color-grad:hover {
  background: rgba(var(--clr-primary-code));
}
.job-type-list .bg-color-grad:hover .job-items {
  background: rgba(var(--clr-primary-code)) !important;
  color: var(--clr-white);
}

.popular-jobs {
  background: var(--clr-bg-2);
}

.logo-thumb,
.video-thumb {
  border-radius: var(--border-radius-2);
  overflow: hidden;
  position: relative;
  padding-top: 100%;
  display: block;
}
.logo-thumb:before,
.video-thumb:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.logo-thumb img,
.video-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-thumb {
  padding-top: 70%;
}
.video-thumb:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.play-btn {
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0px 0px 0px 10px rgba(var(--clr-primary-code), 0.5);
}

.job-card-3.card {
  box-shadow: var(--box-shadow);
  transition: 0.2s;
}
.job-card-3.card .job__container {
  border-bottom: 1px solid var(--clr-border-2);
}
.job-card-3.card .job__container-left a {
  text-decoration: none;
  line-height: 1;
}
.job-card-3.card .job__container-left a > span {
  font-size: 13px;
  font-weight: 500;
}
.job-card-3.card .job__container-left a h5 {
  color: var(--clr-black);
  transition: all 0.3s ease-in-out;
}
.job-card-3.card .job__container-left a h5:hover {
  color: rgba(var(--clr-primary-code));
  transition: all 0.3s ease-in;
}
.job-card-3.card .job__container-left a .address div {
  color: var(--clr-body-text);
  line-height: 1;
}
.job-card-3.card .job__container-left a .address div span {
  font-size: 14px;
}
.job-card-3.card .card-bottom div a {
  transition: all 0.3s ease-in-out;
}
.job-card-3.card .card-bottom div a:hover {
  background: rgba(var(--clr-primary-code));
  color: var(--clr-white);
  transition: all 0.3s ease-in;
}
.job-card-3.card .card-bottom div h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.job-card-3.card .card-bottom div h5 span {
  font-size: 14px;
  font-weight: 400;
}
.job-card-3.card:hover {
  box-shadow: var(--hover-shadow);
  transition: 0.2s;
}

.job-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--clr-border-2);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  color: var(--clr-black);
}
.job-icon.active, .job-icon:hover {
  background-color: rgba(var(--clr-primary-code));
  color: var(--clr-white) !important;
  border-color: rgba(var(--clr-primary-code));
  transition: all 0.3s ease-in;
}

.icon-sm {
  width: 35px;
  height: 35px;
  font-size: 14px;
  background-color: var(--bg-white);
  display: inline-block;
  text-align: center;
  line-height: 36px;
}

#job_list .job-card,
#job_list .job-card-3 {
  border: 1px solid var(--clr-border-2) !important;
}

.details-top .title-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.details-top .title-box span.tx-red {
  font-size: 14px;
}
.details-top .title-box .circular-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.details h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-black);
}
.details .procedure {
  padding: 34px;
}
.details .procedure iframe {
  border-radius: 10px;
}
.details a {
  text-decoration: none;
  font-weight: 500;
}

.clear-all {
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
}

.filter-types .form-check-input:checked[type=checkbox] {
  background-image: url(../../image/check.png) !important;
  background-size: auto;
}
.filter-types a {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-black);
  text-decoration: none;
}
.filter-types .card {
  border: none;
}
.filter-types .card .form-check {
  padding-bottom: 20px;
}
.filter-types .card .form-check:last-child {
  padding-bottom: 0px;
}
.filter-types .form-check-input[type=checkbox] {
  height: 24px;
  border-radius: 5px;
  width: 24px;
  border: 1px solid var(--clr-from-border);
}
.filter-types .form-check-label {
  font-size: 16px;
  color: var(--clr-body-text);
  padding-left: 16px;
  padding-top: 5px;
}

.btn-nav-accordion[aria-expanded=true] svg {
  transform: rotate(180deg);
}

svg {
  transition: all 0.3s ease;
}

.btn-nav-accordion.collapsed svg {
  transform: rotate(180deg);
}

.btn-nav-accordion[aria-expanded=false] svg {
  transform: rotate(0deg);
}

.title-box .input-group {
  display: flex;
  justify-content: start;
  align-items: center;
}
.title-box .input-group .form-control {
  border: none;
}
.title-box .custom-btn {
  padding: 12px 26px;
}

.find-job .circular .circular-item {
  gap: 0;
}
.find-job .circular .circular-item hr {
  margin: 20px 0;
}
.find-job .box .box-img img {
  width: 95%;
}
.find-job .career-info .col-sm-6 .image-bg img {
  padding: 12px;
}

.form-check-input:focus {
  box-shadow: none;
}

.employers-list .circular .circular-item .title-box .time-location img {
  width: auto;
  height: auto;
}
.employers-list .circular .circular-item .time-location .location {
  gap: 6px;
}

.btn-bottom .custom-btn {
  padding: 17px 24px;
}

.company-profile ul {
  padding: 0;
}
.company-profile ul li {
  list-style: none;
}
.company-profile ul li i {
  padding-right: 16px;
}
.company-profile .gallery img {
  width: 100%;
  border-radius: 5px;
}
.company-profile .social-m a {
  color: var(--clr-body-text);
  background: #f6f8fc;
  border-radius: 5px;
  font-size: 16px;
  padding: 12px;
}
.company-profile .social-m a:hover {
  background: #e9ecef;
}

.box-contact-icon {
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 10px;
  font-size: 20px;
}
.box-contact-icon img {
  width: 20px;
}

.margin-minus {
  margin-top: -100px;
  z-index: 99;
  background: #ffffff;
}

.bg-image-2 {
  background-image: url("../../../image/bg-company-profile.png");
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ========== New Company start ==========*/
.new-company {
  background: var(--clr-gradient-2);
}
.new-company .logo-box img {
  max-width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(60%);
  transition: filter 0.3s ease;
  cursor: pointer;
}
.new-company .logo-box img:hover {
  filter: grayscale(0%);
}

.candidate-details .title-box h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
}
.candidate-details .title-box span {
  font-size: 14px;
}
.candidate-details ul li {
  margin-bottom: 20px;
}
.candidate-details .box-contact-icon {
  height: 46px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-body-text);
  border-radius: 10px;
  font-size: 20px;
}
.candidate-details .box-contact-icon img {
  width: 18px;
}

/* ========== blog details =========*/
.blog-details .list-style-decimal {
  padding-left: 1.5rem;
}
.blog-details .list-style-decimal li {
  list-style: decimal;
}
.blog-details .blog-social {
  padding: 0;
}
.blog-details .blog-social li {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid var(--clr-border);
}
.blog-details .blog-social li a {
  color: var(--clr-body-text);
  text-decoration: none;
}
.blog-details .blog-social li:hover {
  border: 1px solid rgba(var(--clr-primary-code));
  background: rgba(var(--clr-primary-code));
}
.blog-details .blog-social li:hover a {
  color: var(--clr-white);
}
.blog-details .populer-tags {
  font-size: 14px;
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 16px;
  background: var(--clr-rgb);
  color: var(--clr-body-text);
}
.blog-details .populer-tags:hover {
  background: rgba(var(--clr-primary-code));
  color: var(--clr-white);
}

/* ======== Blog section three start =========*/
.blog-three {
  background: linear-gradient(to right, #f8fbf8, #f2f8fc);
}

.blog-two.card {
  border: none;
  transition: all 0.3s ease-in-out;
  height: 100%;
  color: var(--clr-black);
  position: relative;
  z-index: 2;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.blog-two.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--clr-white);
  transition: all 0.3s ease-in;
}
.blog-two.card:hover .img-fluid, .blog-two.card:hover p, .blog-two.card:hover a {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in;
  color: var(--clr-white);
}
.blog-two.card:hover:before {
  visibility: visible;
  transition: all 0.3s ease-in;
  opacity: 1;
}
.blog-two.card:before {
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--border-radius-4);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.blog-two.card .img-fluid {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.blog-two.card a {
  color: var(--clr-black);
}
.blog-two.card a i {
  font-size: 12px;
}
.blog-two.card a:hover {
  color: rgba(var(--clr-primary-code));
}
.blog-two.card .card-title a {
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}
.blog-two.card .card-title a:hover {
  color: rgba(var(--clr-primary-code));
  transition: 0.3s;
}
.blog-two.card.middle-card {
  color: var(--clr-white);
  z-index: 2;
}
.blog-two.card.middle-card a {
  color: var(--clr-white);
}
.blog-two.card.middle-card a:hover {
  color: rgba(var(--clr-primary-code)) !important;
}
.blog-two.card.middle-card:before {
  visibility: visible;
  opacity: 1;
}
.blog-two.card.middle-card .img-fluid {
  visibility: visible;
  opacity: 1;
}
.blog-two.card.middle-card p {
  color: var(--clr-white);
}
.blog-two.card.middle-card:hover {
  color: var(--clr-black);
}
.blog-two.card.middle-card:hover .img-fluid {
  visibility: hidden;
  opacity: 0;
}
.blog-two.card.middle-card:hover p, .blog-two.card.middle-card:hover a {
  color: var(--clr-black);
}
.blog-two.card.middle-card:hover:before {
  visibility: hidden;
  opacity: 0;
}
.blog-two.card .article-date {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.blog-two.card .article-date i {
  margin-right: 5px;
}
.blog-two.card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-weight: 500;
}

/* ======== Blog section three Ends =========*/
.form-style .btn-user-sw {
  border: none;
  background: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
}
.form-style .btn-user-sw.active {
  background: var(--clr-rgb);
  color: rgba(var(--clr-primary-code));
}
.form-style .btn-user-sw:hover {
  background: var(--clr-rgb);
  color: rgba(var(--clr-primary-code));
}
.form-style .sign-content {
  width: 408px;
}
.form-style .google-signup {
  width: 100%;
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  text-decoration: none;
  border-radius: 5px;
}
.form-style .google-signup img {
  margin-right: 10px;
}
.form-style .or-sign-email {
  height: 1px;
  width: 27%;
  background: var(--clr-border);
}
.form-style .form-label {
  color: var(--clr-body-text);
  font-weight: 500;
  margin-bottom: 12px;
}
.form-style label {
  color: var(--clr-body-text);
  font-weight: 500;
  display: flex;
}
.form-style .form-control {
  padding: 11px 0.75rem;
  border: 1px solid var(--clr-from-border);
  color: var(--clr-body-text);
}
.form-style .form-control:focus {
  border: 1px solid rgba(var(--clr-primary-code));
  box-shadow: none;
}
.form-style .input-password {
  position: relative;
}
.form-style .password-toggle-icon {
  position: absolute;
  top: 50px;
  right: 10px;
  cursor: pointer;
}
.form-style .password-toggle-icon i {
  font-size: 18px;
  line-height: 1;
  color: var(--clr-body-text);
  transition: color 0.3s ease-in-out;
}
.form-style .password-toggle-icon i:hover {
  color: var(--clr-body-text);
}
.form-style .submit {
  padding: 12px 18px;
  border: none;
  color: var(--clr-white);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(var(--clr-primary-code));
  display: inline-block;
  text-align: center;
}
.form-style .checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.form-style .checkbox input {
  position: absolute;
  width: 0;
  left: 50px;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.form-style .checkbox .checkmark {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 3px;
  outline: 1px solid var(--clr-from-border);
  transition: all 0.2s ease;
}
.form-style .checkbox:hover .checkmark {
  background: #ffffff;
  transition: all 0.2s ease;
}
.form-style .checkbox input:checked ~ .checkmark {
  background: rgba(var(--clr-primary-code));
  outline: 1px solid rgba(var(--clr-primary-code));
}
.form-style .checkbox .checkmark::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 40%;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 1px 1px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}
.form-style .checkbox input:checked ~ .checkmark::after {
  opacity: 1;
  transition: all 0.2s ease;
}

.edit-resume .color-tx-1 .form-label {
  color: var(--clr-black);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.edit-resume .color-tx-1 label {
  color: var(--clr-black);
  font-weight: 600;
  font-size: 14px;
  display: flex;
}
.edit-resume .color-tx-1 .form-control {
  color: var(--clr-black) !important;
  font-size: 14px;
  border-radius: 6px;
}
.edit-resume .color-tx-1 .form-control::-moz-placeholder {
  color: var(--clr-black) !important;
  font-size: 14px;
}
.edit-resume .color-tx-1 .form-control::placeholder {
  color: var(--clr-black) !important;
  font-size: 14px;
}
.edit-resume .color-tx-2 .form-label {
  color: var(--clr-black-2);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.edit-resume .color-tx-2 label {
  color: var(--clr-black-2);
  font-weight: 600;
  font-size: 14px;
  display: flex;
}
.edit-resume .color-tx-2 .form-control {
  color: var(--clr-black-2) !important;
  font-size: 14px;
  border-radius: 6px;
}
.edit-resume .color-tx-2 .form-control::-moz-placeholder {
  color: var(--clr-black-2) !important;
  font-size: 14px;
}
.edit-resume .color-tx-2 .form-control::placeholder {
  color: var(--clr-black-2) !important;
  font-size: 14px;
}

.dashboard .box-style h6 {
  font-size: 18px;
}
.dashboard .side-nav {
  height: 100vh;
  padding: 20px 14px;
}
.dashboard .side-menu {
  padding: 10px 16px;
  border-radius: 5px;
  color: var(--clr-body-text);
  font-weight: 500;
}
.dashboard .side-menu.active {
  color: #fff;
  background: rgba(var(--clr-primary-code));
}
.dashboard .side-menu.active span {
  color: #fff;
}
.dashboard .side-menu:hover {
  color: #fff;
  background: rgba(var(--clr-primary-code));
}
.dashboard .side-menu:hover span {
  color: #fff;
}
.dashboard .custom-btn {
  padding: 10px 12px;
}
.dashboard .box-contact-icon {
  height: 50px;
  width: 50px;
  color: rgba(var(--clr-primary-code));
}
.dashboard .border-top-bottom {
  border-top: 1px solid var(--clr-border);
}
.dashboard .border-top-bottom:last-child {
  border-bottom: 1px solid var(--clr-border);
}
.dashboard .height-75 {
  height: 75px;
}
.dashboard .box-padding {
  padding: 26px 20px;
}
.dashboard .custom-btn-1 {
  padding: 10px 12px;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.notification-list .box-contact-icon {
  height: 50px;
  width: 50px;
}
.notification-list .box-contact-icon i {
  color: var(--clr-black);
  font-size: 26px;
}
.notification-list .notification-item i {
  color: var(--clr-black);
}
.notification-list .notification-item .date-time-w {
  width: 145px;
}
.notification-list .notification-item .options-vertical {
  background: none;
  border: none;
}

.notification-delete {
  display: none;
  position: absolute;
  right: 30px;
}

.cust-tn-white {
  border-radius: 5px;
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.0588235294);
  padding: 10px;
  color: var(--clr-body-text);
}

.cust-tn-white.show {
  display: block;
}

label {
  color: var(--clr-body-text);
}

.edit-resume .table > :not(caption) > * > * {
  border-bottom-width: 0px;
}
.edit-resume .btn-nav-accordion[aria-expanded=true] {
  color: rgba(var(--clr-primary-code));
  border: 1px solid rgba(var(--clr-primary-code));
}
.edit-resume .collapse.show {
  border-radius: 10px;
  box-shadow: none;
}
.edit-resume .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0px 0px 3px #c9c9c9;
}
.edit-resume .view {
  margin-bottom: 24px;
}
.edit-resume .view h6 {
  color: var(--clr-body-text);
}
.edit-resume .btn-check:focus + .btn,
.edit-resume .btn:focus {
  outline: 0;
  box-shadow: none;
}
.edit-resume .tab-group .btn.active {
  background-color: rgba(var(--clr-primary-code));
  color: var(--clr-white);
  position: relative;
}
.edit-resume .tab-group .btn.active:after {
  content: "";
  bottom: 0;
  position: absolute;
  bottom: -10px;
  left: 45% !important;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid rgba(var(--clr-primary-code));
  transition-delay: 1s;
}

.edit-resume a {
  font-size: 18px;
  font-weight: 500;
  color: #6a7381;
  text-decoration: none;
}

/* resume view */
.tab-group {
  width: 100%;
  border-radius: 4px;
  background-color: #f5faf0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 10px 0;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.tab-group form {
  margin: 0;
}

.tab-group .btn.active {
  background-color: #595959;
  color: #ffffff;
  position: relative;
}

.btn.active,
.btn:active {
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.tab-group .btn {
  background-color: #f7f7f7;
  color: #595959;
  border: none;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 15px 0;
  text-transform: none;
  border-radius: 4px;
  width: 25%;
  margin-left: -4px !important;
}

.tab-group {
  width: 100%;
  border-radius: 4px;
  background-color: #f5faf0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 10px 0;
}

.tab-group form {
  margin: 0;
}

.tab-group .btn i {
  display: block;
}

.tab-group .btn i {
  font-size: 18px;
}

.tab-group .btn:hover {
  box-shadow: none;
  color: #424242;
  outline: none;
}

.tab-group .btn.active {
  background-color: #595959;
  color: #ffffff;
  position: relative;
}

.tab-group .btn.active:after {
  content: "";
  bottom: 0;
  position: absolute;
  bottom: -10px;
  left: 40% !important;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #595959;
}

.tab-group.assessment {
  background-color: #f7f7f7;
}

.tab-group.assessment .btn {
  width: 25%;
  margin: 0 !important;
}

.tab-group.assessment.b2c .btn {
  width: 33.33%;
  margin: 0 !important;
  border-radius: 4px !important;
}

@media only screen and (min-width: 0) and (max-width: 991px) {
  .tab-group .btn,
  .tab-group.assessment .btn {
    width: 100%;
    margin: 0 !important;
    text-align: left;
    padding: 10px 0 10px 15px;
    box-shadow: none;
  }
  .tab-group.assessment .btn i {
    margin-right: 10px;
  }
  .tab-group .btn i {
    display: inline-block;
  }
  .tab-group .btn.active:after {
    display: none;
  }
  .tab-group .btn,
  .tab-group.assessment.b2c .btn {
    width: 100%;
    margin: 0 !important;
    text-align: left;
    padding: 10px 0 10px 15px;
    box-shadow: none;
  }
}
.tab-group .btn.active {
  background-color: #0d6efd;
  color: #ffffff;
  position: relative;
}

.tab-group .btn.active:after {
  content: "";
  bottom: 0;
  position: absolute;
  bottom: -10px;
  left: 45% !important;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #0d6efd;
  transition-delay: 1s;
}

.hide {
  display: none;
}

.btn-update {
  border: 1px solid rgba(13, 109, 253, 0.337254902);
  color: var(--clr-white) !important;
  background: #0d6dfd;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin: 10px;
  padding: 8px 15px;
  border-radius: 5px;
}

.btn-default {
  border: 1px solid var(--clr-from-border);
  color: var(--clr-body-text);
  background: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 10px;
  padding: 8px 12px;
  border-radius: 5px;
}

.btn-update:hover {
  background: #0154d1;
}

.btn-default:hover {
  background: var(--clr-from-border);
}

.edit-btn {
  text-decoration: none;
  background-color: rgba(var(--clr-primary-code), 0.1) !important;
  color: var(--clr-black);
  border: 1px solid rgba(var(--clr-primary-code), 0.5);
  font-weight: 700;
  padding: 5px 12px;
  font-size: 14px;
  border-radius: var(--border-radius-1);
  transition: 0.3s;
}
.edit-btn:hover {
  transition: 0.3s;
  background-color: rgba(var(--clr-primary-code), 1) !important;
  color: var(--clr-white);
}

.edit-btn:hover {
  background: rgba(156, 162, 173, 0.5764705882);
}

.delete-btn {
  text-decoration: none;
  color: var(--clr-red) !important;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 12px;
  background: rgba(156, 162, 173, 0.3960784314);
  border-radius: 5px;
  margin-left: 5px;
}

.delete-btn:hover {
  background: rgba(156, 162, 173, 0.5764705882);
}

[dir=rtl] .dropdown-toggle::after {
  margin-right: 0.255em;
}

[dir=rtl] .circular .circular-item .time-location {
  text-align: right;
}

[dir=rtl] .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0;
}

[dir=rtl] .nav-right-items .input-group .fa.fa-search {
  right: 20px;
}

[dir=rtl] .me-2 {
  margin-left: 0.5rem !important;
}

[dir=rtl] .text-start {
  text-align: right !important;
}

[dir=rtl] .dropdown-menu {
  text-align: right !important;
}

[dir=rtl] a.dropdown-item::before {
  margin-right: 0 !important;
  margin-left: 10px;
}

[dir=rtl] .nav-right-items .input-group .form-control {
  padding: 10px 26px 10px 10px;
}

[dir=rtl] .form-style .form-control {
  padding: 11px 1.75rem;
}

[dir=rtl] .form-check .form-check-input {
  margin-left: 0.5em;
}

[dir=rtl] .form-style .password-toggle-icon {
  right: 90%;
  left: 10px;
}

[dir=rtl] .nav-right-items .input-group img {
  right: 23px;
}

[dir=rtl] .form-style .google-signup img {
  margin-left: 10px;
}

[dir=rtl] .slide .job {
  right: 50%;
  left: auto;
}

[dir=rtl] .slide .employers {
  right: 85%;
  left: auto;
}

[dir=rtl] .slide .companies {
  right: 88%;
  left: auto;
}

[dir=rtl] .custom-btn {
  position: relative;
}

[dir=rtl] .custom-btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

[dir=rtl] .custom-btn img {
  margin-left: 0;
}

[dir=rtl] .cateogrys .bg-color-gra .cateogry-items .cateogry-name {
  text-align: right;
}

@media only screen and (max-width: 991px) {
  [dir=rtl] .custom-btn img {
    right: 10px;
    top: 35%;
  }
}
[dir=rtl] .title-box .custom-btn {
  padding: 12px 26px;
}

[dir=rtl] .form-check .form-check-input {
  float: right;
}

[dir=rtl] .title-link {
  display: flex;
  flex-direction: row-reverse;
}

[dir=rtl] {
  /* ==== navbar rtl starts ========*/
  /* ==== navbar rtl ends ========*/
  /* ========= hero section rtl ========*/
  /* ========== popular-circular start =========*/
  /* ========== popular-circular ends =========*/
  /* ========== Testimonial start =========*/
  /* ========== Testimonial start =========*/
  /* ========== blog start =========*/
  /* ========== blog ends =========*/
  /* ========== best choice start =========*/
  /* ========== best choice Ends =========*/
  /* ========= footer start ========*/
  /* ========= footer Ends ========*/
}
[dir=rtl] .nav .navbar-light .navbar-nav .nav-item:first-child .nav-link {
  display: flex;
  align-items: center;
}
[dir=rtl] .dropdown-menu[data-bs-popper] {
  left: auto;
}
[dir=rtl] .nav .navbar-light .navbar-nav a.dropdown-item {
  position: relative;
}
[dir=rtl] .nav .navbar-light .navbar-nav .dropdown-item {
  text-align: right;
}
[dir=rtl] .custom-btn-signin {
  flex-direction: row-reverse;
}
[dir=rtl] .custom-btn-1 i {
  margin-right: 0;
  margin-left: 5px;
}
[dir=rtl] .hero-three .slider-content .form-container .input-container .form-control {
  padding-left: 0;
  padding-right: 42px;
}
[dir=rtl] .hero-three .slider-content .form-container .input-container i {
  left: auto;
  right: 15px;
}
[dir=rtl] .hero-three .slider-content .form-container .border-start {
  border-left: 0 !important;
  border-right: 1px solid #dee2e6 !important;
}
[dir=rtl] .hero-three .slider-content .form-container .ps-4 {
  padding-left: 0 !important;
  padding-right: 1.5rem !important;
}
[dir=rtl] .hero-three .slider-content .form-container .form-select {
  background-position: left;
}
[dir=rtl] .hero-three .slider-img {
  left: 150px;
  right: auto;
}
[dir=rtl] .hero-three .slider-img .hero-badge {
  right: auto;
  left: 0;
}
[dir=rtl] .hero-three .slider-img .hero-badge.two {
  right: -80px;
  left: auto;
}
[dir=rtl] .ms-auto {
  margin-left: 0 !important;
  margin-right: auto !important;
}
[dir=rtl] .btn-two {
  flex-direction: row-reverse;
}
[dir=rtl] .offcanvas.search-canvas .offcanvas-body .search-container .icon-magnifier {
  left: auto;
  right: 20px;
}
[dir=rtl] .offcanvas.search-canvas .offcanvas-body .search-container .icon-close {
  right: auto;
  left: 20px;
}
[dir=rtl] .offcanvas.search-canvas .offcanvas-body .search-container .form-control {
  padding-left: 0.75rem;
  padding-right: 50px;
}
[dir=rtl] .navbar.three .navbar-nav .nav-item .sub-menu li a:before {
  margin-right: 0;
  margin-left: 12px;
}
[dir=rtl] .dropdown .nav-link {
  padding-right: 0 !important;
  padding-left: 25px !important;
}
[dir=rtl] .dropdown .nav-link:after {
  right: auto;
  left: 10px;
}
[dir=rtl] .nav-item.dropdown .nav-link:after {
  right: auto;
  left: 0;
}
[dir=rtl] .navbar.three .navbar-nav .nav-item .sub-menu li a {
  padding: 0.8rem 10px;
  padding-right: 10px;
  padding-left: 65px;
}
[dir=rtl] .dropdown .sub-menu li a {
  padding-right: 10px;
  padding-left: 65px;
  text-align: right !important;
}
[dir=rtl] .popular-circular-three .job-card .company-logo {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .testimonial .testimonial-three .swiper-slide .card .testimonial-auth .auth-info h6 {
  padding-left: 0;
  padding-right: 45px;
}
[dir=rtl] .testimonial .testimonial-three .swiper-slide .card .testimonial-auth .auth-info h6:before {
  left: auto;
  right: 0;
}
[dir=rtl] .candidate-card .info-line i {
  margin-right: 0;
  margin-left: 5px;
}
[dir=rtl] .blog-three .card .article-date i {
  margin-right: 0;
  margin-left: 5px;
}
[dir=rtl] .blog-three .card .read-more {
  flex-direction: row-reverse;
  justify-content: start;
}
[dir=rtl] .btn-read-more {
  display: inline-flex;
  justify-content: start;
  flex-direction: row-reverse;
  align-items: center;
}
[dir=rtl] .category-three .swiper-navigation {
  flex-direction: row-reverse;
  justify-content: end !important;
}
@media (max-width: 991px) {
  [dir=rtl] .category-three .swiper-navigation {
    flex-direction: row-reverse;
    justify-content: start !important;
  }
  [dir=rtl] .nav-item.dropdown .nav-link:after {
    right: 0;
    left: auto;
    margin-right: 45px;
  }
}
[dir=rtl] .best-choice .right-img .flag-benifit {
  right: auto;
  left: 15px;
}
[dir=rtl] .best-choice .right-img .flag-benifit.two {
  right: 10px;
  left: auto;
}
[dir=rtl] .footer-two .footer-row-two .fo-links a {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .footer-two .footer-row-two .fo-links a:before {
  left: auto;
  right: 0;
}

.footer-one {
  font-size: 15px;
}
.footer-one .footer-logo-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: -10px;
}
.footer-one hr {
  opacity: 0.1;
}
.footer-one p,
.footer-one span {
  --clr-body-text: #d0d2d3;
  color: var(--clr-body-text);
}
.footer-one h6 {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-one ul {
  padding: 0;
  margin: 0;
}
.footer-one ul li {
  list-style: none;
  margin-bottom: 9.5px;
}
.footer-one ul li a {
  font-weight: 400;
  line-height: 1.563em;
  font-size: 16px;
  text-decoration: none;
  --clr-body-text: #d0d2d3;
  color: var(--clr-body-text);
  transition: 0.2s;
}
.footer-one ul li a:hover {
  color: rgba(var(--clr-primary-code));
  transition: 0.2s;
}
.footer-one .contact i {
  color: rgba(var(--clr-primary-code));
}
.footer-one .top-social li {
  height: 36px;
  width: 36px;
  margin-bottom: 0;
}
.footer-one .top-social li a {
  font-size: 16px;
  color: var(--clr-white);
  line-height: 1;
}
.footer-one .top-social li a:hover {
  color: rgba(var(--clr-primary-code));
}
.footer-one .copy-right a {
  text-decoration: none;
}
.footer-one .fb-page-container .page-inner a {
  color: var(--clr-black);
}
.footer-one .fb-page-container .page-inner a:hover {
  color: rgba(var(--clr-primary-code));
}

.footer-two {
  background-color: var(--bg-black);
}
.footer-two .footer-row-one h4 {
  border-top: 1px solid var(--clr-border-1);
  color: var(--clr-white);
}
.footer-two .footer-row-one p {
  color: var(--clr-gray-2);
}
.footer-two .footer-row-one .fo-social a {
  text-decoration: none;
  font-size: 16px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--clr-border-1);
  color: var(--clr-white);
  line-height: 45px;
  text-align: center;
  transition: 0.3s;
}
.footer-two .footer-row-one .fo-social a:hover {
  background: rgba(var(--clr-primary-code));
  transition: 0.3s;
}
.footer-two .footer-row-two .fo-title {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--clr-white);
}
.footer-two .footer-row-two .fo-links a {
  text-decoration: none;
  display: block;
  color: var(--clr-gray-2);
  transition: 0.3s;
  padding-left: 20px;
  position: relative;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.563em;
  font-size: 16px;
}
.footer-two .footer-row-two .fo-links a:last-child {
  margin-bottom: 0;
}
.footer-two .footer-row-two .fo-links a:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gray-2);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
}
.footer-two .footer-row-two .fo-links a:hover {
  color: rgba(var(--clr-primary-code));
  transition: 0.3s;
}
.footer-two .footer-row-two .fo-links a:hover::before {
  background: rgba(var(--clr-primary-code));
  transition: 0.3s;
}
.footer-two .footer-row-two .address.border-bottom {
  border-color: var(--clr-border-1) !important;
}
.footer-two .footer-row-two .address .fo-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: rgba(var(--clr-primary-code));
  border: 1px solid var(--clr-border-1);
  border-radius: 50%;
  text-align: center;
}
.footer-two .footer-row-two .address a {
  text-decoration: none;
  color: var(--clr-gray-2);
}
.footer-two .footer-row-two .footer-img {
  width: 100%;
  height: 131.09px;
}
.footer-two .footer-row-two .footer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-two .footer-row-two .title-one {
  font-size: 18px;
  color: var(--clr-white);
}
.footer-two .footer-row-two .fb-page {
  background-color: var(--bg-white);
}
.footer-two .footer-row-two .fb-page .page-logo {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-2);
  overflow: hidden;
}
.footer-two .footer-row-two .fb-page .page-logo a {
  text-decoration: none;
}
.footer-two .footer-row-two .fb-page .page-logo a img {
  width: 100%;
}
.footer-two .footer-row-two .fb-page .page-name {
  text-decoration: none;
  color: var(--clr-black);
  font-size: 18px;
}
.footer-two .footer-row-two .fb-page .page-name:hover {
  text-decoration: underline;
  color: rgba(var(--clr-primary-code));
}
.footer-two .footer-bottom {
  border-top: 1px solid var(--clr-border-1);
}

#scrtop {
  position: fixed;
  bottom: 20px;
  text-decoration: none;
  right: 30px;
  z-index: 99;
  font-size: 14px;
  border: 1px solid var(--clr-border-1);
  outline: none;
  background-color: rgba(var(--clr-primary-code));
  color: var(--clr-white);
  cursor: pointer;
  border-radius: var(--border-radius-1);
  width: 40px;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
#scrtop:hover {
  background-color: rgba(var(--clr-primary-code), 0.9);
}

#scrtop.show {
  transition: 1s;
  visibility: visible;
  opacity: 1;
  height: 40px;
}

@media only screen and (min-width: 1400px) {
  .hero-three .slider-img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 150px;
  }
  .hero-three .slider-img::before {
    content: "";
    position: absolute;
    left: -80px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: rgba(var(--clr-primary-code), 1);
    z-index: -1;
    bottom: -15%;
  }
}
@media only screen and (min-width: 991px) {
  .navbar.three .offcanvas {
    position: static;
    display: flex;
    flex-direction: row;
    background-color: transparent;
    transform: translate(0) !important;
    visibility: visible !important;
  }
  .navbar.three .offcanvas.show {
    transform: translate(0) !important;
  }
  .navbar.three .offcanvas.offcanvas-start {
    width: 100%;
    border-right: 0;
  }
  .navbar.three .offcanvas .offcanvas-body {
    padding: 0;
    overflow: visible;
  }
  .border-lg-start {
    border-left: 1px solid #dee2e6 !important;
  }
  .border-lg-0 {
    border: 0 !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
}
@media only screen and (max-width: 1400px) {
  .gap-90 {
    gap: 30px;
  }
  .nav-right-items .input-group {
    width: 175px;
    overflow: hidden;
  }
  .slide .show-slide-info {
    display: none;
  }
  .slide .slide-info {
    margin-top: 80px;
  }
  .slide-image img {
    width: 400px;
  }
}
@media only screen and (max-width: 1050px) {
  .main-header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
  }
}
@media only screen and (max-width: 991px) {
  .main-header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between !important;
  }
  .dropdown-menu {
    top: auto !important;
    transform: translateY(0) !important;
    width: 100%;
    left: 0;
  }
  .navbar.three .navbar-nav .nav-item .nav-link {
    color: var(--clr-black);
  }
  .navbar.three .navbar-nav .nav-item .sub-menu {
    position: absolute;
    transform: translateX(0);
    width: 100%;
    left: 0;
  }
  .navbar.three .navbar-nav .nav-item:hover .sub-menu {
    transform: translate(0);
  }
  .navbar.three .nav-end a {
    color: var(--clr-black);
  }
  .nav .navbar-light .navbar-nav .nav-link {
    padding: 10px !important;
  }
  .navbar.three .navbar-nav .nav-item .nav-link {
    padding: 10px 0.5rem;
  }
  .hero-three {
    height: auto;
  }
  .hero-three .slider-img {
    bottom: 0;
    right: 0;
  }
  .title-box .custom-btn {
    padding: 8px 10px;
  }
  .top-header {
    padding: 0;
  }
  .custom-btn {
    padding: 10px;
    font-size: 14px;
  }
  .custom-btn img {
    width: 10px;
  }
  .slide-image img {
    width: 300px;
  }
  footer ul li {
    margin-top: 0;
  }
  footer .container div div {
    margin-bottom: 0.75rem;
  }
  .box-style .title-box .row div div {
    margin-right: 0px !important;
  }
  .hero-three .slider-content .form-container .input-container .form-control {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .hero-three .slider-content .form-select {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .hero-three .slider-content .custom-btn {
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 16px !important;
  }
  .best-choice .right-img .flag-benifit {
    top: 100px !important;
  }
  .best-choice .right-img .flag-benifit.two {
    top: auto !important;
    bottom: 40px !important;
  }
  .logo-thumb {
    padding-top: 80%;
  }
  .blog-two.card {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .py-80 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .slide .container {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .slide .container .slide-info {
    margin-top: 3rem;
    margin-bottom: 3rem;
    z-index: 1;
  }
  .slide .container .slide-info p {
    max-width: 100%;
    margin-right: 5%;
  }
  .slide .container .slide-image {
    position: absolute;
    right: -8.5rem;
    top: 100px;
    height: 100%;
    z-index: 0;
  }
  .slide .container .slide-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .hero-three .slider-img {
    right: -8rem;
    bottom: 0;
    top: 150px;
  }
  .nav-item.dropdown .sub-menu {
    width: 100% !important;
  }
  .nav-item.dropdown .nav-link:after {
    right: auto;
    margin-left: 5px;
  }
  .nav-item.dropdown .nav-link:after {
    right: auto;
  }
  .navbar.three .navbar-nav .nav-item.dropdown .nav-link:after {
    right: auto;
    margin-left: 48px;
  }
  .mb-40 {
    margin-bottom: 20px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .mb-70 {
    margin-bottom: 40px;
  }
  .mb-80 {
    margin-bottom: 50px;
  }
  .mt-40 {
    margin-top: 20px;
  }
  .mt-50 {
    margin-top: 30px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .pt-60 {
    padding-top: 30px;
  }
  .pb-80 {
    padding-bottom: 40px;
  }
  .section-margin-top {
    margin-top: 60px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-padding-top {
    padding-top: 60px;
  }
  .section-padding-bottom {
    padding-bottom: 60px;
  }
  p,
  a {
    font-size: 12px;
  }
  ul li {
    font-size: 12px;
  }
  .top-header {
    padding: 0;
  }
  .custom-btn {
    padding: 10px;
    font-size: 12px;
  }
  .custom-btn i {
    margin-left: 0px;
  }
  .slide .container {
    gap: 10px;
  }
  .slide .slide-info {
    margin-top: 20px;
  }
  .box-info {
    padding-top: 30px;
  }
  .dashboard .side-nav {
    height: 100%;
  }
  .form-style .sign-content {
    width: 350px;
  }
  .box-style .title-box .row div div {
    border-bottom: 1px solid #ddd;
  }
  .box-style .title-box .row div.border-start {
    border: 0 !important;
  }
  .box-style .title-box .row div:last-child button {
    margin-top: 5px;
  }
  .branding-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (max-width: 580px) {
  .slide .slide-info {
    margin-top: 10px;
  }
  .h-80 {
    height: 50px;
  }
}
/* =========== Best choice start =========*/
.animate-up {
  animation: moveUp 7s linear 0s infinite;
}

.animate-left {
  animation: moveRight 7s linear 0s infinite;
}

.best-choice .right-img {
  position: relative;
  background-color: rgba(var(--clr-primary-code), 0.1);
  padding-top: 100%;
}
.best-choice .right-img > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.best-choice .right-img .flag-benifit {
  position: absolute;
  top: 140px;
  right: 15px;
  box-shadow: var(--box-shadow);
}
.best-choice .right-img .flag-benifit p {
  font-size: 13px;
  font-weight: 500;
}
.best-choice .right-img .flag-benifit.two {
  top: auto;
  right: auto;
  left: 10px;
  bottom: 80px;
}

/* =========== Best choice Ends =========*/
/* ======== animate css Start ======== */
@keyframes moveUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(25px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide_1 {
  0% {
    transform: translate(0) rotate(0deg);
  }
  15% {
    transform: translate(10px, 10px) rotate(45deg);
  }
  30% {
    transform: translate(10px, -15px) rotate(20deg);
  }
  45% {
    transform: translate(-10px, -25px) rotate(50deg);
  }
  60% {
    transform: translate(0, 25px) rotate(35deg);
  }
  75% {
    transform: translate(-10px, -15px) rotate(-20deg);
  }
  90% {
    transform: translate(-5, -5px) rotate(-20deg);
  }
  100% {
    transform: translate(0) rotate(0deg);
  }
}
@keyframes slide_2 {
  0% {
    transform: translate(0) rotate(0deg);
  }
  25% {
    transform: translate(15px, -5px) rotate(15deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(10deg);
  }
  75% {
    transform: translate(5px, -5px) rotate(25deg);
  }
  100% {
    transform: translate(0) rotate(0deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ======== animate css Ends ======== */
/* ======== Testimonial section Start =========*/
.testimonial {
  background: var(--clr-bg-2);
}
.testimonial .testimonial-two .swiper-slide .card,
.testimonial .testimonial-three .swiper-slide .card {
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease-in-out;
}
.testimonial .testimonial-two .swiper-slide .card .icon img,
.testimonial .testimonial-three .swiper-slide .card .icon img {
  height: 50px;
}
.testimonial .testimonial-two .swiper-slide .card .testimonial-auth div:last-child h5 a,
.testimonial .testimonial-three .swiper-slide .card .testimonial-auth div:last-child h5 a {
  font-size: 18px;
  color: var(--clr--black);
  text-decoration: none;
}
.testimonial .testimonial-two .swiper-slide .card .testimonial-auth div:last-child h5 a:hover,
.testimonial .testimonial-three .swiper-slide .card .testimonial-auth div:last-child h5 a:hover {
  color: rgba(var(--clr-primary-code));
}
.testimonial .testimonial-two .swiper-slide .card .testimonial-auth div:last-child p,
.testimonial .testimonial-three .swiper-slide .card .testimonial-auth div:last-child p {
  font-size: 14px;
  line-height: 1;
}
.testimonial .testimonial-two .swiper-slide .card:hover,
.testimonial .testimonial-three .swiper-slide .card:hover {
  box-shadow: var(--box-shadow-2);
  transition: all 0.3s ease-in;
}
.testimonial .testimonial-three .swiper-slide .card .icon {
  width: 46px;
  height: 46px;
  background-color: rgba(var(--clr-primary-code));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial .testimonial-three .swiper-slide .card .icon img {
  height: 22px;
  width: 22px;
}
.testimonial .testimonial-three .swiper-slide .card p {
  font-weight: 400;
}
.testimonial .testimonial-three .swiper-slide .card .testimonial-auth {
  background: #FAFAFA;
  padding: 24px 20px;
  border: 1px solid var(--clr-border);
  border-radius: var(--border-radius-1);
}
.testimonial .testimonial-three .swiper-slide .card .testimonial-auth .auth-info h5 a {
  font-size: 18px;
  color: var(--clr--black);
  text-decoration: none;
}
.testimonial .testimonial-three .swiper-slide .card .testimonial-auth .auth-info h5 a:hover {
  color: rgba(var(--clr-primary-code));
}
.testimonial .testimonial-three .swiper-slide .card .testimonial-auth .auth-info h6 {
  position: relative;
  padding-left: 45px;
  color: rgba(var(--clr-primary-code));
}
.testimonial .testimonial-three .swiper-slide .card .testimonial-auth .auth-info h6:before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: rgba(var(--clr-primary-code));
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.testimonial .testimonial-three .swiper-slide .card .testimonial-auth .auth-ratings {
  color: #ffc107;
  font-size: 0.9rem;
}
.testimonial .testimonial-three .swiper-slide .card:hover {
  box-shadow: var(--box-shadow-2);
  transition: all 0.3s ease-in;
}

.swiper-pagination-bullet {
  background: transparent;
  border: 1px solid var(--clr-black);
  opacity: 1 !important;
  margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--clr-black);
  border: 1px solid var(--clr-black);
}

/* ======== Testimonial section Ends =========*/
.newslatter-container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.newslatter-container .news-left {
  background-color: rgba(var(--clr-primary-code));
}
.newslatter-container .news-left h3,
.newslatter-container .news-left p {
  color: var(--clr-white);
}
.newslatter-container .news-right {
  background-color: var(--bg-white);
}
.newslatter-container .custom-btn {
  text-decoration: none;
  color: var(--clr-black);
  background: var(--bg-white);
  border-radius: 5px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease-in;
}
.newslatter-container .custom-btn:hover {
  --bg-white: #111;
  background: var(--bg-white);
  color: var(--clr-white);
  transition: all 0.3s ease-in;
}

/* ========= Top Company Start ========*/
.company__container {
  box-shadow: var(--box-shadow);
  transition: 0.2s;
}
.company__container-top {
  position: relative;
}
.company__container-top .icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 14px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: rgba(var(--clr-primary-rgb), 0.08);
  color: rgba(var(--clr-primary-code));
  transition: 0.3s;
  cursor: pointer;
}
.company__container-top .icon:hover, .company__container-top .icon.following {
  background: rgba(var(--clr-primary-code), 1) !important;
  color: var(--clr-white);
}
.company__container-top .company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.company__container-top .company-logo img {
  height: 40px;
}
.company__container-top h5 a {
  color: var(--clr-black);
  text-decoration: none;
  transition: 0.3s;
  font-size: 20px;
}
.company__container-top h5 a:hover {
  color: rgba(var(--clr-primary-code));
  transition: 0.3s;
}
.company__container-top p {
  font-size: 15px;
}
.company__container-bottom {
  border-top: 1px dashed #ddd;
  background-color: #fafcff;
}
.company__container-bottom h6 {
  color: var(--clr-black);
  font-size: 17px;
}
.company__container-bottom h6 a {
  color: var(--clr-black);
  transition: 0.3s;
}
.company__container-bottom h6 a:hover {
  color: rgba(var(--clr-primary-code));
  transition: 0.3s;
}
.company__container-bottom div {
  font-size: 14px;
}
.company__container:hover {
  box-shadow: var(--hover-shadow);
  transition: 0.2s;
  transform: translateY(-5px);
}

/* ========= Top Company Ends ========*/
.step-card {
  background: linear-gradient(135deg, rgba(var(--clr-primary-rgb), 0.1), var(--bg-white));
  border-radius: var(--border-radius-2);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}
.step-card .step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}
.step-card .step-icon img {
  width: 45px;
  height: 45px;
}
.step-card .step-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--clr-black);
  margin-bottom: 15px;
}
.step-card .step-desc {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.step-card .read-more {
  color: var(--clr-black);
  font-weight: 500;
  text-decoration: none;
}
.step-card .read-more i {
  transition: transform 0.3s ease;
}
.step-card .read-more:hover {
  color: rgba(var(--clr-primary-code));
}
.step-card .read-more:hover i {
  transform: translateX(5px);
}

/* ======= Future candidate style start ======== */
.candidate-card {
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  height: 100%;
  box-shadow: var(--box-shadow);
}
.candidate-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-5px);
}
.candidate-card h5 {
  font-size: 20px;
  text-decoration: none;
  transition: 0.2s;
  color: var(--clr-black);
}
.candidate-card h5:hover {
  color: rgba(var(--clr-primary-code));
  transition: 0.2s;
}
.candidate-card .designation {
  font-weight: 600;
}
.candidate-card p {
  font-size: 15px;
}
.candidate-card .candidate-img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  background-color: beige;
}
.candidate-card .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}
.candidate-card .rating .badge-rating {
  background-color: rgba(var(--clr-primary-rgb), 0.08);
  color: rgba(var(--clr-primary-code));
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.75rem;
  margin-left: 5px;
}
.candidate-card .info-line {
  border-top: 1px dashed #ddd;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-black);
}
.candidate-card .info-line i {
  color: #ff7f50;
  margin-right: 5px;
}
.candidate-card .btn-profile {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  transition: background-color 0.3s ease;
}
.candidate-card .heart-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 14px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: rgba(var(--clr-primary-rgb), 0.08);
  color: rgba(var(--clr-primary-code));
  transition: 0.3s;
  cursor: pointer;
}
.candidate-card .heart-icon.following, .candidate-card .heart-icon:hover {
  transition: 0.3s;
  background: rgba(var(--clr-primary-code));
  color: var(--clr-white);
}

.p-badge {
  position: relative;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.p-badge img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.p-badge span {
  position: absolute;
  bottom: 0;
  left: 50%;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(var(--clr-primary-rgb), 1), #ff6b6b);
  border-radius: 24px;
  padding: 10px;
  display: inline-block;
  font-weight: 600;
  font-size: 12px !important;
  color: #fff;
  /* margin: auto; */
  transform: translateX(-50%);
}

.successfull {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 14px;
  width: 36px;
  height: 36px;
  line-height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(var(--clr-primary-rgb), 1);
  color: rgba(var(--clr-primary-rgb), 1);
  transition: 0.3s;
  cursor: pointer;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(var(--clr-primary-code)); /* LinkedIn blue */
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 20px;
  position: absolute;
  top: 15px;
  right: 15px;
}

/* ======= Future candidate style Ends ======== */
.branding-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: var(--border-radius-2);
}
.branding-swiper .swiper-slide img {
  height: 40px;
}

.fixed-banner {
  position: fixed;
  background-color: #fff;
  border-radius: 10px;
  z-index: 1055;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  padding: 1rem;
  max-width: 360px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fixed-banner.show {
  opacity: 1;
  transform: translateY(0);
}
.fixed-banner.fade-out {
  opacity: 0;
  transform: translateY(20px);
}
.fixed-banner--top-left {
  top: 20px;
  left: 20px;
}
.fixed-banner--top-center {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.fixed-banner--top-right {
  top: 20px;
  right: 20px;
}
.fixed-banner--center-left {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.fixed-banner--center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fixed-banner--center-right {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.fixed-banner--bottom-left {
  bottom: 20px;
  left: 20px;
}
.fixed-banner--bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) !important;
}
.fixed-banner--bottom-right {
  bottom: 20px;
  right: 20px;
}
.fixed-banner--sm {
  max-width: 280px;
}
.fixed-banner--md {
  max-width: 360px;
}
.fixed-banner--lg {
  max-width: 480px;
}
.fixed-banner--xl {
  max-width: 600px;
}
.fixed-banner--full {
  width: 100%;
  left: 0;
  right: 0;
  border-radius: 0;
}
.fixed-banner__content {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}
.fixed-banner__actions {
  display: flex;
  gap: 0.5rem;
}
.fixed-banner__actions .btn {
  flex: 1 1 50%;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--border-radius-3);
}
.fixed-banner__actions .btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}
.fixed-banner__actions .btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}
.fixed-banner__actions .btn-success {
  background-color: var(--bg-primary, #198754);
  border-color: var(--bg-primary, #198754);
}
.fixed-banner__actions .btn-success:hover {
  background-color: var(--hover-primary, #198754);
  border-color: var(--hover-primary, #198754);
}
@media (max-width: 576px) {
  .fixed-banner {
    max-width: none;
    border-radius: 8px;
    left: 10px !important;
    right: 10px !important;
  }
  .fixed-banner--top-center, .fixed-banner--bottom-center {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .fixed-banner--center-left, .fixed-banner--center-right {
    top: 50%;
    transform: translateY(-50%);
  }
}/*# sourceMappingURL=style.css.map */