@import url("./common.css");
html,
body {
  overflow-x: hidden;
  overflow: visible;
  scroll-padding-top: 180px;
}
p,
li,
a {
  font-size: 1rem;
  color: #343434;
  text-align: justify;
  font-family: var(--font-roboto);
}

h2 {
  font-family: var(--font-ubuntu);
  color: #343434;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}
h3 {
  font-family: var(--font-ubuntu);
  color: #343434;
  font-size: 1.6rem;
  font-weight: 700;
}
/*h2 {
  font-family: "Acme Gothic" !important;
  color: #343434;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 3px;
}
h3 {
  font-family: "Acme Gothic" !important;
  color: #343434;
  font-size: 1.6rem;
  font-weight: bold;
}*/
h5 {
  font-family: var(--font-ubuntu);
  color: #17b1cb;
  font-weight: bold;
  font-size: 1rem;
}
.arms-btn {
  background-color: #17b1cb;
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  width: max-content;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid transparent;
}
.arms-btn:hover {
  color: #17b1cb;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid #17b1cb;
}

.arms-white-btn{    
  background-color: #fff;
  color: #17b1cb;
  font-weight: bold;
  padding: 12px 25px;
  width: max-content;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #17b1cb;
}

.arms-white-btn:hover {
  color: #fff;
  background-color: #17b1cb;
  text-decoration: none;
  border: 1px solid transparent;
}

ul {
  list-style: none;
}
.section-padding {
  padding: 60px 0;
}

/* -----header------- */

.menuBar {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 100;
}

/* --------Header Topbar--------- */

.topbar {
  display: flex;
  justify-content: space-between;
  padding: 8px 30px;
  background-color: #145883;
}

.topbar-contact {
  display: flex;
  gap: 20px;
}
.topbar-contact a {
  color: #fff;
  font-weight: bold;
}
.topbar-contact div {
  color: #fff;
}

.topbar-contact a:hover {
  color: #fff;
  text-decoration: none;
}
.topbar-contact div:nth-child(1) a {
  padding-left: 5px;
}
.topbar-contact div:nth-child(2) a {
  padding-left: 5px;
}

.topbar-social-icons {
  display: flex;
  gap: 5px;
}
.topbar-social-icons div:nth-child(1) a {
  padding-left: 0;
}
.topbar-social-icons div:nth-child(2) a {
  padding-left: 0;
}

.topbar-page-links {
  display: flex;
  gap: 10px;
}
.topbar-page-links,
.topbar-page-links a {
  color: #fff;
  padding-right: 5px;
}
.topbar-page-links a:hover {
  color: #fff;
  text-decoration: none;
}

/* ------navbar--------- */

.menuBar {
  background-color: transparent;
}
.navbar-brand img {
  width: 160px;
  height: auto;
}
.logo-grey {
  display: none;
}
.navbar-nav {
  margin-left: auto;
}
.navbar-nav a {
  color: #fff;
  font-size: 1.05rem;
  text-align: left;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link.active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px !important;
  color: #fff;
}
.navbar-nav .nav-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px !important;
  color: #fff;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link i {
  font-size: 14px;
  font-weight: bold;
}
.navbar-nav .dropdown-menu {
  padding: 0;
}
.navbar-nav .dropdown-menu a {
  font-size: 1rem;
  color: #272727;
  padding: 15px 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-shadow: none;
}
.navbar-nav .dropdown-item:hover {
  color: #17b1cb;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent !important;
}
.nav-item.dropdown:hover > .nav-link,
.nav-item.dropdown.show > .nav-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px !important;
  color: #fff;
  transition: all 0.3s ease;
}
.nav-item {
  position: relative;
}
.nav-item .dropdown-menu {
  display: block;
  position: absolute !important;
  width: 320px;
  top: 100%;
  left: 0;
  margin: 0 auto;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 20px;
}
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.nav-link.dropdown-toggle::after {
  transition: transform 0.3s ease-in-out;
}
.nav-item.dropdown:hover .nav-link.dropdown-toggle::after,
.nav-item.dropdown.show .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

.mobile-menu {
  display: none;
}
.menubar-social-icons {
  display: none;
}
.logo-mobile-menu {
  display: none;
}
.nav-item img {
  height: 20px;
  margin-left: 6px;
}
.hamburger div{
  margin: 5px;
  transition: all 0.3s ease;
  width: 30px;
}
.hamburger .line1{
  width: 20px;
  height:3px;
  margin-left: auto
    
}
.hamburger .line2{
  width: 30px;
  height:3px;
}
.hamburger .line3{
  width: 20px;
  height:3px;
}
.menuBar .hamburger div {
  background-color: #17b1cb;
}
.toggle .line1{
  transform: rotate(-45deg) translate(-5px,6px);
  width: 30px;
}
.toggle .line2{
  transition: all 0.7s ease;
  width:0;
}
.toggle .line3{
  transform: rotate(45deg) translate(-5px,-6px);
  width: 30px;
}
.head-contact{
  display: none;
}
.navbar-toggler {
  width: 42px;
  padding: 0;
}

/*------------- Sub-menu ------------*/

.sub-menu .logo-white {
  display: none;
}
.sub-menu .logo-grey {
  display: block;
}
.sub-menu .navbar-nav a {
  color: #272727;
}
.sub-menu .navbar-nav .nav-link.active {
  color: #17b1cb;
}
.sub-menu .navbar-nav .nav-link:hover {
  color: #17b1cb;
}
.sub-menu .nav-item.dropdown:hover > .nav-link,
.sub-menu .nav-item.dropdown.show > .nav-link {
  color: #17b1cb;
}
.sub-menu .nav-item .dropdown-menu {
  padding: 28px 20px 0;
}

/* ------sticky---------- */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff !important;
  box-shadow: 0 0 10px 0 rgb(0, 0, 0) !important;
}
.sticky .navbar-nav a {
  color: #272727;
}
.sticky .logo-grey {
  display: block;
}
.sticky .logo-white {
  display: none;
}
.sticky .navbar-nav .nav-link.active {
  color: #17b1cb;
}
.sticky .navbar-nav .nav-link:hover {
  color: #17b1cb;
}
.sticky .nav-item.dropdown:hover > .nav-link,
.sticky .nav-item.dropdown.show > .nav-link {
  color: #17b1cb;
}
.sticky .nav-item .dropdown-menu {
  padding: 28px 20px 0;
}
.sticky .navbar-toggler svg path {
  fill: #17b1cb;
}

/* ---------banner video--------- */
.home-banner {
  position: relative;
  width: 100%;
  height: 98vh;
  overflow: hidden;
  margin-top: -115px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 80%;
}
.video-content h2 {
  color: #fff;
  font-size: 3.5rem !important;
  text-shadow: 4px 4px 6px #0000008e;
  text-align: center;
}
.video-content p {
  color: #fff;
  font-size: 1.25rem !important;
  font-weight: bold;
  text-shadow: 2px 2px 4px #0000007c;
  text-align: center;
}
.home-banner .screen {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #34343466;
  z-index: 2;
}
#background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* -----home-employee------- */

.home-employee {
  margin-top: -180px;
}
.home-employee .home-employee-box {
  background: linear-gradient(
    180deg,
    rgb(23, 177, 203),
    rgb(18, 90, 134)
  );
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 0 6px #00000052;
}
/* .home-employee-icon{
  border-right: 2px solid  #d3d3d3;
  margin-bottom: 20px;
} */
 .home-employee-icon {
  position: relative;
  margin-bottom: 20px;
}
.home-employee-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 50px;
  border-right: 2px solid #fff;
}

.home-employee-icon svg {
  width: 60px;
  display: block;
  margin: 0 auto;
}
.home-employee h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 0;
}
.home-employee h3{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.home-employee p {
  color: #fff;
  line-height: 120%;
  text-align: left;
}
.home-employee-info .col-xl-3,
.home-employee-info .col-xl-2,
.home-employee-info .col-xl-4{
  padding: 0 3px;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  margin: 0 0 3px;
}
.home-employee-content{
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 15px;
}
.home-employee-content h5{
  color: #343434;
  font-size: 1.275rem;
  text-align: center;
  padding: 5px 0 15px;
  border-bottom: 1px solid #ccc;
}
.home-employee-info .col-6{
  padding: 5px 0;
} 
.home-employee-info{
  margin: 0;
}
.home-employee-info{
  color: #343434;
}
.home-employee-info span{
  font-weight: bold;
}
.home-employee-content{
  font-family: var(--font-roboto);
  color: #000;
}
.home-employee .arms-btn {
  margin: 20px auto 0;
  padding: 12px 10px;
  text-align: center;
  width: 100%;
}
.home-employee-content .swiper {
  height: 170px;
}
.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-p-box{
  min-height: 282px;
}

/* -----------welcome------------ */
.worldwide-employees-details{
  text-align: center;
  margin-bottom: 10px;
}
.worldwide-employees-details h4 {
  color: #17b1cb;
  font-size: 54px;
  font-family: "Ubuntu", sans-serif !important;
  margin: 16px 0 0;
}
.worldwide-employees-details p {
  color: #666667;
  text-align: center;
   min-height: 48px;
}
.welcome .worldwide-employees-details{
  min-height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.worldwide-employees-details {
  border: 1px solid #ccc;
  border-radius: 12px;
}
.worldwide-employees-1{
  padding-bottom: 10px;
}
.welcome-content .arms-btn{
  margin: 10px 0 0;
  width: 100%;
  text-align: center  ;
}
.welcome-image img{
  border-radius: 12px;
}

/* ---------our solutions------------ */

.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
  margin-bottom: 30px;
}

.solution-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.solution-card .overlay {
  position: absolute;
  z-index: 10;
  top: 27%;
  left: 0;
  width: 100%;
  padding: 30px 15px 15px;
}
.solution-card .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.icon-wrapper svg {
  width: 80px;
  height: 80px;
  transition: transform 1s ease-in-out;
}
.solution-card:hover .icon-wrapper svg {
  transform: rotateY(180deg);
}
.solution-card .icon-wrapper {
  perspective: 800px;
}
.solution-card h4 {
  font-family: var(--font-ubuntu);
  font-weight: bold;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.solution-card p {
  font-size: 1rem;
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.3;
}
.solution-card a {
  color: #fff;
  text-decoration: underline;
}
.solution-card a:hover {
  color: #fff;
}

/* ------careers--------- */

.careers {
  position: relative;
  width: 100%;
  height: 650px; /* 320px */
  overflow: hidden;
}
.careers .job-seekers-apply {
  background-color: #fff;
}
.careers .job-seekers-apply p {
  text-shadow: none;
}
.careers-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
#career-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(50% + 70px);
  z-index: 1;
  pointer-events: none;

}
.career-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #105a86;
  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
}
.carrers-content {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  position: relative;
  z-index: 5;
}
.carrers-content h2 {
  color: #fff;
  text-align: center;
  text-shadow: 4px 4px 6px #0000008e;
  font-size: 3rem;
}
.carrers-content p {
  color: #fff;
  margin: 0;
  text-align: center;
  text-shadow: 4px 4px 6px #00000093;
}
.careers .arms-btn {
  margin-top: 15px;
}
.careers .arms-white-btn {
  margin-top: 15px;
}

/*----------services--------  */

.service .nav-link svg {
  width: 30px;
  height: auto;
  margin-right: 15px;
}

.service .nav-link {
  padding: 0.5rem 0;
}

.service .nav-item a {
  color: #272727;
  text-align: left;
  font-size: 1.25rem;
  display: flex;
  align-items: start;
  position: relative;
}

.service .nav-item a::after {
  content: "";
  width: 15%;
  height: 1px;
  background-color: #656768;
  position: absolute;
  bottom: -5px;
  left: 11%;
}
.service .nav-item:last-child a::after {
  display: none;
}

.service .nav-pills .nav-link.active,
.service .nav-pills .nav-link:hover,
.service .nav-pills .show > .nav-link {
  color: #17b1cb !important;
  background-color: #fff !important;
}

.service .nav-pills .nav-link.active svg path,
.service .nav-pills .nav-link:hover svg path,
.service .nav-pills .show > .nav-link svg path {
  fill: #17b1cb !important;
}

.service .nav-item {
  padding: 15px 0;
}

.tab-image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.tab-image img {
  border-top-left-radius: 130px;
  width: 100%;
}
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  width: 100%;
  height: 350px;
  background: linear-gradient(0deg, #ffffff, #ffffff00, transparent);
}

.service-overlay-content {
  display: flex;
  padding: 0 30px;
  position: absolute;
  bottom: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.decorative-line {
  width: 58%;
  height: 1px;
  background-color: #656768;
  border: none;
  margin: 20px 10px 0 auto;
}

.service-overlay-content h5 {
  color: #343434;
  font-size: 1.6rem !important;
}
.service-overlay p {
  color: #343434;
  text-align: left;
  padding: 5px 0;
  border-radius: 12px;
  font-weight: 400;
  margin-top: 5px;
  width: 80%;
}
.service .tab-arrow {
  width: 40px;
  height: 40px;
  background-color: #17b1cb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-left: 10px;
}
.service .tab-arrow i {
  color: #fff;
  font-size: 18px;
  margin-left: 2px;
}

/* ----------staffing-partner----------- */

 .staffing-partner {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.staffing-partner .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.staffing-partner .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(50% + 160px);
}
.testimonial-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #105a86;
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}
.staffing-partner h2 {
  color: #fff;
}
.staffing-partner h5 {
  color: #fff;
}
.icon-box-container {
  padding: 10px;
  border: 1px solid #ffce00;
}
.staffing-partner .icon-box {
  background-color: #ffce00;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-content h4 {
  text-align: center;
  font-family: var(--font-ubuntu);
  font-size: 2.5rem;
  font-weight: bold;
  margin: 5px 0;
}
.icon-content p {
  text-align: center;
  font-weight: 400;
}
.staffing-partner-content p {
  color: #fff;
}

/*----------------- Testimonials ---------------*/

.testimonial-content {
  padding: 10px 30px 20px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.302);
  border-radius: 12px;
  border-top: 6px solid #17b1cb;
  margin-bottom: 30px;
  min-height: 282px;
}
.testimonial-icon {
  margin: 10px auto;
}
.testimonial-icon img {
  display: block;
  margin: 0 auto;
}
.testimonials h5 {
  text-align: center;
}
.testimonials h2{
  text-align: center;
  margin-bottom: 25px;
}
.testimonial-content p {
  text-align: center;
  margin-bottom: 15px;
}

.testimonial-content h6 {
  color: #17b1cb;
  font-family: var(--font-ubuntu);
  text-align: center;
}
.testimonial-content p {
  font-size: 1rem;
  color: #656768;
  text-align: center;
}
.testimonials-page .testimonial-content > p:nth-of-type(1){
  height: auto;
  overflow: none;
}

.testimonial-content > p:nth-of-type(1) {
  height: 120px;
  overflow: hidden;
}
.card-wrapper {
  padding: 0 5px !important;
}
.carousel-controls {
  text-align: right;
  margin-bottom: 30px;
}
.carousel-controls .btn {
  background-color: #fff;
  color: #343434;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  margin-left: 5px;
}

.carousel-controls .btn:hover {
  background-color: #17b1cb;
  color: #fff;
}
.testimonials-container {
  column-count: 3;
  column-gap: 30px;
  column-fill: balance;
  padding-bottom: 40px;
}

.testimonials-container .testimonials-box {
  display: block;
  margin: 0 0 30px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  width: 100%;
  padding: 10px 30px 20px;
  border-top: 6px solid #17b1cb;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.302);
  position: relative;
  transition: 0.3s;
}

.testimonials-box p {
  text-align: center;
  margin-bottom: 15px;
}

.testimonials-box h6 {
  color: #17b1cb;
  font-family: var(--font-ubuntu);
  text-align: center;
}

.testimonials-box p {
  font-size: 1rem;
  color: #656768;
  text-align: center;
}


/* -------blog------- */

.blog {
  background-color: #f4fcff;
}
.blog-content p {
  padding-right: 30px;
}
.blog-content a {
  color: #17b1cb;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.blog-content a:hover {
  color: #17b1cb;
}
.control-arrow {
  margin-top: 30px;
}
.control-arrow a {
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  margin-right: 5px;
  color: #343434;
  font-size: 1.25rem;
}
.control-arrow a:hover {
  background-color: #17b1cb;
  color: #fff !important;
}
.control-arrow a:hover {
  color: #343434;
}
.control-arrow .btn:focus {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.blog-card {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.235);
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.blog-card img {
  width: 100%;
}
.blog-card-content {
  padding: 15px 25px 20px;
  background-color: #fff;
}
.blog-card-content p {
  color: #17b1cb;
  font-weight: bold !important;
  margin-bottom: 4px;
}
.blog-card-content h6 {
  color: #272727;
  font-family: var(--font-roboto);
  font-weight: bold;
  font-size: 1.25rem;
  text-align: left;
}
.blog-author {
  color: #656768 !important;
  margin: 15px 0 30px 0 !important;
}
.blog-card-content a {
  color: #17b1cb;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.blog-card-content a:hover {
  color: #17b1cb;
}
.blog .swiper-wrapper {
  padding: 1px;
}

/*---------------- hr-consult -------------------*/


.hr-employers {
  margin-top: 30px;
  background-color: #fff;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  border: 2px solid #17b1cb;
}
.hr-employers:hover {
  background-color: #17b1cb;
}
.hr-employers-box {
  padding: 0 20px !important;
}
.hr-employers svg {
  margin-left: 30px;
  width: 70px;
  height: 70px;
}
.hr-employers svg path {
  fill: #17b1cb !important;
}
.hr-employers:hover svg path {
  fill: #fff !important;
}
.hr-employers h5 {
  color: #343434 !important;
  font-size: 1.2rem !important;
  margin: 10px 0;
}
.hr-employers:hover h5 {
  color: #fff !important;
}
.hr-employers .hr-consult-number {
  color: #343434;
}

.hr-job-seekers {
  margin-top: 30px;
  background-color: #fff;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  border: 2px solid #105a86;
}
.hr-job-seekers:hover {
  background-color: #105a86;
}
.hr-job-seekers-box {
  padding: 0 20px !important;
}
.hr-job-seekers svg {
  width: 70px;
  height: 70px;
}
.hr-job-seekers:hover svg path {
  fill: #fff;
}
.hr-job-seekers h5 {
  color: #343434 !important;
  font-size: 1.2rem !important;
  margin: 10px 0;
}
.hr-job-seekers:hover h5 {
  color: #fff !important;
}
.hr-job-seekers a {
  color: #105a86;
  text-align: left;
}
.hr-job-seekers .hr-consult-number {
  color: #343434;
}
.hr-contact {
  background-color: #105a86;
  padding: 80px 35px;
  height: 100%;
}
.hr-contact h5 {
  color: #fff !important;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.hr-contact .form-control:focus {
  outline: none !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
}
.hr-contact textarea {
  resize: none !important;
  padding-top: 5px !important;
}
.hr-contact button {
  width: 100%;
  border: none;
  background-color: #17b1cb;
  color: #fff;
  padding: 10px 0;
  border-radius: 8px;
  font-family: var(--font-roboto);
  font-weight: bold !important;
  border: 1px solid transparent;
}
.hr-contact button:hover{
  background-color: #fff;
  color: #17b1cb;
  border: 1px solid #17b1cb;
}

/*--------------- Footer ---------------*/

.footer {
  background-image: url("../../../static/sitecreationapp/images/footer_banner.webp"),
    linear-gradient(to bottom, #17b1cb, #125a86);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 60px 0 15px 0;
  background-blend-mode: multiply;
}
.footer img{
  width: 160px;
}
.footer h2 {
  color: #fff;
  font-size: 1.8rem !important;
  text-align: center;
}
.footer .subscribe-email {
  margin: 15px 0;
  display: flex;
  border-bottom: 1px solid #fff;
}
.footer .subscribe-email input {
  background-color: transparent;
  border: none;
  color: white;
  width: 100%;
  padding: 5px 10px;
}
.footer .subscribe-email input:focus {
  outline: none;
}
.footer .subscribe-email input::placeholder {
  color: rgb(255, 255, 255) !important;
  font-size: 0.9rem;
}
.footer .subscribe-email a {
  text-align: left;
  display: inline-block;
  width: 125px;
  color: #fff;
  text-decoration: underline;
}
.footer .subscribe-email i {
  font-size: 16px;
  color: #fff;
  margin-right: 5px;
}
.footer-icon{
  margin-top: 40px;
}
.footer-social-icons{
  display: flex;
  gap: 10px;
}
.footer-social-icons svg path{
  fill: #fff;
}
.footer h5 {
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
.footer ul {
  list-style: none;
  padding-left: 15px;
}
.footer ul li {
  padding: 2px 0;
  text-align: left;
}
.footer ul li a {
  color: #fff;
  text-align: left;
  display: flex;
}
.footer ul li a:hover {
  color: #fff;
  text-decoration: none;
}
.footer ul li i {
  font-size: 14px;
  margin-right: 3px;
  margin-top: 3px;
}
.footer-useful-link {
  display: flex;
  gap: 30px;
}
.footer-content {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.footer-bottom p,
.footer-bottom a {
  color: #fff;
}
.footer-terms p {
  text-align: right;
}
.footer-content-box i{
  display: none;
}
.footer-content-box ul li::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  background-color: transparent;
  margin-top: 8px;
}

/*----------- About Page --------------- */

/*-----------About Banner ---------------*/

.about-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/aboutusbanner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.about-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.about-banner h2 {
  color: #fff;
  text-align: center;
}
.about-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.about-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.about-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.about-banner svg {
  margin: 0 5px;
}

/*------------ about-ceo --------------*/
.about-ceo-2 .ceo-content {
  background: linear-gradient(180deg, rgb(23, 177, 203), rgb(18, 90, 134));
  padding: 100px 0 60px;
}

.about-ceo-2 .ceo-content img {
  position: relative;
  z-index: 10;
}

.about-ceo-2 h2,
.about-ceo-2 h5,
.about-ceo-2 p {
  color: #fff;
}

.about-ceo-2 .about-desc {
  padding-left: 30px;
}

.about-ceo-image {
  background-image: url("../../../static/sitecreationapp/images/amjad-about.webp");
  background-size: cover;
  background-position: bottom;
}



.about-ceo {
  background: linear-gradient(180deg, rgb(23, 177, 203), rgb(18, 90, 134));
  position: relative;
  padding: 80px 0;
}

.aboutceo-2 {
  display: none;
}

.about-ceo h2,
.about-ceo h5,
.about-ceo p {
  color: #fff;
}

.about-ceo h2 {
  font-size: 2.2rem;
}

.about-ceo h5 {
  margin-bottom: 0;
}

.ceo-image-container {
  width: 68%;
  position: absolute;
  bottom: -24.5%;
  left: 20%;
}

.ceo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ceo-content p {
  width: 90%;
}

.ceo-badge {
  float: right;
  margin: 30px 20px 0 0;
}

.ceo-badge img {
  max-width: 125px;
}
/*----- vision_mission ----*/

.vision_mission{
  background-color: #e5f9ff;
}
.ceo-vision {
  border-right: 1px solid #343434;
}
.ceo-vision h2 {
  font-size: 2rem !important;
  text-align: center;
  color: #17b1cb;
}
.ceo-vision p {
  text-align: center;
  color: #272727 !important;
  width: 80%;
  margin: 15px auto;
  line-height: 160%;
}
.ceo-mission h2 {
  font-size: 2rem !important;
  text-align: center;
  color: #17b1cb;
}
.ceo-mission p {
  text-align: center;
  color: #272727 !important;
  width: 80%;
  margin: 15px auto;
  line-height: 160%;
}

/* -----------welcome------------ */

.about-welcome-image {
  padding: 0 20px;
}
.about-welcome-image img {
  border-radius: 12px;
}
.about-welcome-content {
  padding: 0 20px 0 0;
}
.worldwide-employees-details h4 {
  color: #17b1cb;
  font-size: 40px;
  font-family: "Ubuntu", sans-serif !important;
}
.about-worldwide-employees-details p {
  color: #666667;
  text-align: left;
}

.about-worldwide-employees .col-6:first-child {
  border-right: 2px solid #d3d3d3;
}
.about-worldwide-employees .worldwide-employees-details {
  padding-left: 30px;
}
/*------------- why armsjobs -------------*/

.about-why h2 {
  text-align: center;
  margin-bottom: 20px;
}
.about-why .col-xl-6 {
  padding: 0 !important;
}
.industry-content {
  padding: 0 15px;
}
.about-why img{
  border-radius: 12px;
}
.industry-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-content h5 {
  color: #272727 !important;
  font-size: 1.25rem !important;
  text-align: center;
}
.industry-content p {
  text-align: center;
}
.commitment-content {
  padding: 0 15px;
}
.commitment-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.commitment-content h5 {
  color: #272727 !important;
  font-size: 1.25rem !important;
  text-align: center;
}
.commitment-content p {
  text-align: center;
}
.industry-specific-content {
  padding: 0 15px;
}
.industry-specific-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-specific-content h5 {
  color: #272727 !important;
  font-size: 1.25rem !important;
  text-align: center;
}
.industry-specific-content p {
  text-align: center;
}
.strict-compliance-content {
  padding: 0 15px;
}
.strict-compliance-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.strict-compliance-content h5 {
  color: #272727 !important;
  font-size: 1.25rem !important;
  text-align: center;
}
.strict-compliance-content p {
  text-align: center;
}
.client-centric-content {
  padding: 0 15px;
}
.client-centric-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.client-centric-content h5 {
  color: #272727 !important;
  font-size: 1.25rem !important;
  text-align: center;
}
.client-centric-content p {
  text-align: center;
}

.our-team-container .col-12 {
  padding: 0;
}
.our-team-container {
  position: relative;
}
.our-team-image img {
  width: 100%;
}
/* .our-team {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #135984;
  opacity: 0.8;
  padding: 15px 30px;
  width: 70%;
  border-radius: 21px;
} */
.our-team h2 {
  text-align: center;
  color: #fff;
}
.our-team p {
  text-align: center;
  color: #fff;
}

/*------------ Service Menu --------------*/

.service-link {
  margin-bottom: 30px;
}
.service-link ul {
  padding-left: 0;
  margin: 0;
}
.service-link > ul > li > div{
  border-bottom: 2px solid #fff;
  overflow: hidden;
  text-align: left;
  background-color: #17b1cb;
  cursor: pointer;
  border-radius: 12px;
  margin: 2px 0 1px !important;
}
.service-link li i {
  float: right;
}
.service-link a {
  display: block;
  color: #fff;
  font-weight: bold;
  background-color: transparent;
  text-align: left;
  padding: 15px 10px 15px 20px;
}
.service-link a:hover{
  text-decoration: none;
}
.service-link a:hover div,
.service-link li:hover div{
  text-decoration: none;
  background-color: #105a86;
  color: #fff;
}
.service-link .service-active div{
  background-color: #105a86;
}
.service-link ul ul{
  border-radius: 12px;
  border: 1px solid #719ab3;
  overflow: hidden;
  margin: 1px 0 5px;
}
.service-link ul ul li {
  background-color:  #fff;
  overflow: hidden;
}
.service-link ul ul a {
  color: #fff;
}
.service-link ul ul a:hover {
  text-decoration: none;
}
.toggle-icon {
  transition: transform 0.3s ease;
}
.chevron-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}
.service-link ul ul li a {
  background-color:  #fff;
  color: #343434;
  padding: 15px 10px 15px 30px;
  overflow: hidden;
}
.service-link ul ul li a:hover {
  background-color: #dfeff8;
  color: #343434;
}
.service-link ul ul li a.sub-active {
  background-color: #dfeff8;
  color: #343434;
}
.service-link ul ul li a.sub-active:hover {
  background-color: #dfeff8;
  color: #343434;
}
.service-link img {
  height: 20px;
  margin-left: 6px;
}

.service-contact {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-contact img {
  width: 100%;
  height: auto;
  display: block;
}

.service-contact-overlay {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 15px 15px;
}

.service-contact-overlay h4 {
  font-family: var(--font-ubuntu);
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
}
.service-contact-overlay p {
  text-align: center;
  color: #fff;
  padding: 0 5px;
}
.service-contact-overlay .arms-btn {
  box-shadow: 2px 2px 3px #00000049;
}

/*----------- Staffing Page --------------- */

/*-----------staffing Banner ---------------*/

.staffing-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/services_banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.staffing-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.staffing-banner h2 {
  color: #fff;
  text-align: center;
}
.staffing-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.staffing-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.staffing-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.staffing-banner svg {
  margin: 0 5px;
}

/*------------ Service staffing page content -----------*/

.service-heading {
  margin-bottom: 30px;
}
.service-heading h2 {
  font-size: 2rem !important;
}
.service-inner-heading {
  color: #105a86;
  font-size: 1.5rem !important;
  margin-top: 5px;
}
.staffing-page h5 {
  color: #272727;
  font-size: 1.25rem !important;
}
.service-inner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.staffing-page img{
  border-radius: 12px;
}

/*------------ Service industry page content -----------*/

.service-sub-page {
  padding: 5px;
  border: 1px solid #888888;
  border-radius: 12px;
  margin-bottom: 30px;
  min-height: 230px;
}
.service-sub-page h5 {
  color: #272727;
  text-align: center;
  margin: 20px 0 10px;
  font-size: 1.25rem !important;
}
.service-sub-page p{
  text-align: center;
  padding: 0 5px;
  min-height: 144px;
}
.service-sub-page img {
  border-radius: 12px 12px 0 0;
}
/*----------- Recruitment page -------------*/

.skilled-workforce-content img {
  margin-bottom: 30px;
}
.skilled-workforce-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.skilled-workforce-icon svg {
  width: 100px;
  height: 100px;
}
.skilled-workforce-icon h5 {
  color: #343434 !important;
}
.recruitment-page-content {
  margin-top: 30px;
}
.recruitment-page h2 {
  font-size: 1.4rem !important;
}
.recruitment-page h5 {
  color: #272727;
  font-size: 1.25rem !important;
}
.recruitment-page-content ul {
  list-style: none;
  padding-left: 0;
}
.recruitment-page img{
  border-radius: 12px;
}
.flexihire-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flexihire-table {
  border: 1px solid #c9c9c9;
  border-radius: 12px;
  padding: 10px 15px;
}
.flexihire-select .row{
  gap: 15px;
}
.flexihire-select {
  margin-top: -20px;
}

.flexihire-table th {
  color: #343434;
  font-family: var(--font-roboto);
}
.flexihire-table td {
  color: #272727;
  font-family: var(--font-roboto);
}

.flexihire-table-head{
  color: #105a86 !important;
  font-weight: bold;
}

/* .flexihire-opening {
  display: flex;
  gap: 20px;
  align-items: center;
} */

.flexihire-table h5 {
  color: #343434 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
}
.flexihire-table .form-control:focus {
  outline: none !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
}
.flexihire-table .select-label {
  color: #105a86;
  border: 1px solid #105a86;
  border-radius: 8px;
  cursor: pointer;
  width: 80px;
  text-align: center;
  font-size: 15px;
}
.flexihire-table .ondemand-select-label {
  color: #105a86;
  border: 1px solid #105a86;
  border-radius: 8px;
  cursor: pointer;
  width: 80px;
  text-align: center;
  font-size: 15px;
}
.flexihire-table .selected-row {
  background-color: #f4fcff;
}
.flexihire-table .selected-row .select-label {
  background-color: #105a86;
  color: #fff;
}
.flexihire-table .selected-row .ondemand-select-label {
  background-color: #105a86;
  color: #fff;
}
.flexihire-btn {
  background-color: #17b1cb !important;
  padding: 10px 25px;
  color: #fff !important;
  border-radius: 8px;
  border: 1px solid transparent !important;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
.flexihire-btn:hover {
  color: #17b1cb !important;
  background-color: #fff !important;
  border: 1px solid #17b1cb !important;
}
.modal-dialog {
  max-width: 800px !important;
}
.flexihire-table textarea#message.form-control {
  resize: none;
  padding-top: 10px !important;
}
.flexihire-table form {
  margin: 10px 0;
}
/* .flexihire-table .modal-header {
  margin: 10px 20px 0;
} */
.modal-title {
  color: #105a86;
  font-size: 2rem !important;
}
.flexihire-form-button {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}
.flexihire-form-button button {
  border: none;
  background-color: transparent;
  font-family: var(--font-roboto);
  font-weight: bold;
  color: #272727;
}
.modal-header .close {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 40px;
}
a.page-link {
  color: #272727 !important;
  border: 1px solid #c9c9c9 !important;
  box-shadow: none !important;
  border-radius: 8px;
  margin: 0 4px;
}
a.page-link:hover {
  background-color: #105a86 !important;
  color: #fff !important;
}
.page-item.active .page-link {
  color: #fff !important;
  background-color: #105a86 !important;
  border-color: none !important;
  box-shadow: none !important;
}

.key-benefits-cards {
  position: relative;
  overflow: hidden;
  margin: 15px 0;
}

.key-benefits-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.key-benefits-cards .key-benefits-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  padding: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(23, 177, 203, 0.81),
    rgba(18, 90, 134, 0.81)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.5s ease, height 0.5s ease,
    border-top-left-radius 0.5s ease;
  border-top-left-radius: 65px;
}

.key-benefits-cards:hover .key-benefits-overlay {
  height: 100%;
  border-top-left-radius: 0;
}
.key-benefits-overlay h5 {
  font-size: 1.25rem !important;
  color: #fff;
}

/*--------- emiratization-page --------*/
.emiratization-page .service-inner-heading{
  margin-bottom: 0;
}

.emiratization-page h5{
  font-size: 1.25rem !important;
  color: #272727;
}
.emiratization-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.emiratization-box {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
}
.emiratization-content p{
  margin-bottom: 0;
}
#emiratization-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(50% + 70px);
  z-index: 1;
  pointer-events: none;
}
/*---------- visa page --------------*/

/*--------------- Visa Content -------------*/
.visa-page h2 {
  font-size: 2rem !important;
}
.visa-page h3 {
  margin: 5px 0 10px;
}
.visa-page h5 {
  color: #272727 !important;
  font-size: 1.25rem !important;
}
.visa-page img{
  border-radius: 12px;
}

/*---------- compliance page --------------*/

/*--------------- compliance Content -------------*/

.compliance-page h5 {
  font-size: 1.8rem !important;
}
.compliance-page h5 {
  font-size: 1.25rem !important;
  color: #272727;
}
.Compliance-page-content ul {
  padding-left: 0;
}
.Compliance-page-content ul li {
  position: relative;
  padding-left: 1.5em;
}
.compliance-page img{
  border-radius: 12px;
}
.Compliance-page-content ul li::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #17b1cb;
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 8px;
  background-color: transparent;
}

/*---------- business page --------------*/

/*--------------- business Content -------------*/

.business-page h5 {
  font-size: 1.25rem !important;
  color: #272727;
}
.business-page img{
  border-radius: 12px;
}

/*--------------- Employers Page ----------------*/

/*----------- Employers Banner ---------------*/

.employers-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/employee-banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.employers-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.employers-banner h2 {
  color: #fff;
  text-align: center;
}
.employers-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.employers-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.employers-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.employers-banner svg {
  margin: 0 5px;
}

/*--------------------------*/

.employers-content h2 {
  font-size: 2rem !important;
}

/*-------------- Employers Content ---------------*/

.employers-form-content h2 {
  font-size: 2rem !important;
  text-align: center;
}
.employers-form-content p {
  text-align: center;
}

.employers_form h5 {
  color: #272727 !important;
  font-size: 1.1rem !important;
}
.employers_form .form-control:focus {
  outline: none !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
}
.request-talent-form textarea {
  resize: none !important;
  padding-top: 5px !important;
}
.company-details-form {
  margin-bottom: 30px;
}
.contact-person-form {
  margin-bottom: 30px;
}
.request-talent-form {
  margin-bottom: 30px;
}
.request-talent-form input[type="number"]::-webkit-inner-spin-button,
.request-talent-form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.employers-form-button {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.employers-form-button button {
  border: none;
  background-color: transparent;
  font-family: var(--font-roboto);
  font-weight: bold;
  color: #272727;
}
.employers-btn {
  background-color: #17b1cb !important;
  padding: 10px 25px;
  color: #fff !important;
  border-radius: 8px;
  border: 1px solid transparent !important;
}
.employers-btn:hover {
  color: #17b1cb !important;
  background-color: #fff !important;
  border: 1px solid #17b1cb !important;
}

/*--------------- Job Seekers Page ----------------*/

/*----------- Job Seekers Banner ---------------*/

.job-seekers-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/jobseeker-banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.job-seekers-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.job-seekers-banner h2 {
  color: #fff;
  text-align: center;
}
.job-seekers-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.job-seekers-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.job-seekers-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.job-seekers-banner svg {
  margin: 0 5px;
}

/*-------------------------------*/

.job-seekers-content h2 {
  font-size: 2rem !important;
}

/*----------------- job-seekers-advantages --------------*/

.job-seekers-advantages {
  background-color: #f4fcff;
}
.job-seekers-advantages h2 {
  font-size: 2rem !important;
  text-align: center;
}
.job-seekers-advantages-content {
  padding: 0 40px;
  margin-top: 30px;
}
.job-seekers-advantages-content svg{
  height: 60px;
  margin: 0 0 15px;
}
.job-seekers-advantages h5 {
  color: #343434 !important;
  text-align: center;
}
.job-seekers-advantages p {
  text-align: center;
}

/* <!--------------- job-seekers-find ----------------> */
.job-filters .form-control:focus {
  outline: none !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
}
.search-btn {
  background-color: #17b1cb !important;
  padding: 10px 25px;
  color: #fff !important;
  border-radius: 8px;
  border: 1px solid transparent !important;
}
.search-btn:hover {
  color: #17b1cb !important;
  background-color: #fff !important;
  border: 1px solid #17b1cb !important;
}

.grid-list .nav-pills .nav-link.active,
.grid-list .nav-pills .nav-link:hover,
.grid-list .nav-pills .show > .nav-link {
  color: #139aaf;
  background-color: transparent;
}

#list .job-card-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-seekers-find-heading h2 {
  font-size: 1.8rem !important;
  text-align: center;
}
.job-seekers-find-heading p {
  text-align: center;
}
.job-seekers-apply {
  margin: 20px 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.333);
  border-radius: 12px;
}
.job-card-head {
  background-color: #105a86;
  padding: 8px 16px;
  border-radius: 12px 12px 0 0;
  color: #fff;
  font-family: var(--font-ubuntu);
}
.direct-hire {
  font-size: 0.85rem;
  background-color: #2ca715;
  padding: 2px 4px;
  border-radius: 6px;
  display: inline-block;
  color: #fff;
}
.contract {
  font-size: 0.85rem;
  background-color: #eb9d09;
  padding: 2px 4px;
  border-radius: 6px;
  display: inline-block;
  color: #fff;
}
.job-card-head small {
  margin-left: 5px;
  font-size: 0.85rem;
}
.job-card-body {
  padding: 10px 16px 20px;
}
.job-card-body h5 {
  color: #343434 !important;
}
.job-card-body p {
  color: #656768 !important;
  text-align: left;
}
.job-card-body p span {
  color: #343434 !important;
  font-weight: bold;
}
.job-card-btn {
  display: flex;
  gap: 10px;
  align-items: center;
}
.job-card-body .arms-btn {
  width: 100% !important;
  text-align: center;
  padding: 10px 10px;
  height: 45px;
}

.job-card-body .arms-white-btn {
  width: 100% !important;
  text-align: center;
  padding: 10px 10px;
  height: 45px;
}

/*---------------- Job seeker inner page ------------*/

.job-inner-content {
  border: 1px solid #c9c9c9;
  padding: 10px 15px;
  border-radius: 12px;
}
.job-inner-apply {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}
.job-inner-apply p {
  margin: 0;
  font-size: 1.25rem;
}
.job-inner-apply span {
  font-weight: bold;
}
.job-inner-apply .arms-btn {
  margin: 0;
  padding: 10px 50px;
}
.job-inner-details {
  list-style: none !important;
  padding-inline-start: 0 !important;
  display: flex;
  gap: 15px;
}
.job-inner-details i {
  color: #105a86;
  margin-right: 2px;
}
.job-inner-content h5 {
  color: #343434;
  font-size: 1.15rem !important;
  margin-top: 20px;
}
.job-inner-content ul {
  padding-inline-start: 20px;
}
.job-inner-content ul li::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #17b1cb;
  border-radius: 50%;
  position: absolute;
  left: 34px;
  margin-top: 7px;
  background-color: transparent;
}
.job-inner-details li::before {
  content: none !important;
}

.job-back {
  margin-bottom: 15px;
}

.job-back a {
  padding: 5px 20px 5px 10px;
  border: 1px solid #343434;
  border-radius: 6px;
  font-weight: bold;
}

.job-back a:hover {
  color: #343434;
  text-decoration: none;
}

/*--------------- Recent Job ---------------*/

.recent-job-widget {
  padding: 10px 15px 0;
}
.recent-job-heading {
  border-bottom: 1px solid #c9c9c9;
  margin-bottom: 15px;
}

/*--------------- faq Page ----------------*/

/*----------- faq Banner ---------------*/

.faq-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/faqs-banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.faq-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.faq-banner h2 {
  color: #fff;
  text-align: center;
}
.faq-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.faq-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.faq-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.faq-banner svg {
  margin: 0 5px;
}

/*-------------- Faq content --------------*/

.faq-page h2 {
  font-size: 1.8rem !important;
  text-align: center;
}
.accordion {
  margin-top: 15px;
}
.accordion .faq-item {
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}
.accordion .faq-item.active a {
  color: #fff;
  background-color: #105a86;
}
.accordion .faq-item.active a:hover {
  color: #fff;
}
.accordion .faq-item a {
  width: 100%;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.333);
  border-radius: 12px;
  text-align: left;
}
.accordion .faq-item a:hover {
  color: #343434;
}
.accordion i {
  float: right;
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.accordion .faq-item a:not(.collapsed) i {
  transform: rotate(180deg);
}
.accordion-desc {
  padding: 10px 20px;
}
.accordion-desc p {
  margin-bottom: 0;
}

/*--------------- Testimonial Page ----------------*/

/*----------- Testimonial Banner ---------------*/

.testimonial-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/testimonial-banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.testimonial-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.testimonial-banner h2 {
  color: #fff;
  text-align: center;
}
.testimonial-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.testimonial-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.testimonial-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.testimonial-banner svg {
  margin: 0 5px;
}

/*--------------- contact Page ----------------*/

/*----------- contact Banner ---------------*/

.contact-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/contactus-banner.webp");
  background-repeat: no-repeat;
  background-position: -115px 0;
  background-size: cover;
  position: relative;
}
.contact-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.contact-banner h2 {
  color: #fff;
  text-align: center;
}
.contact-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.contact-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.contact-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.contact-banner svg {
  margin: 0 5px;
}

/*----------------- contact page form ---------------*/

.contact-page h2 {
  text-align: center;
}
.contact-page p {
  text-align: center;
}
.contact-form {
  margin-top: 30px;
}
.contact-form input.form-control {
  height: calc(1.5em + 0.75rem + 8px) !important;
}
.contact-form .form-control:focus {
  outline: none !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
}
.contact-form textarea {
  resize: none !important;
  padding-top: 5px !important;
}
.contact-form-button {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.contact-form-button button {
  border: none;
  background-color: transparent;
  font-family: var(--font-roboto);
  font-weight: bold;
  color: #272727;
}
.contact-btn {
  background-color: #17b1cb !important;
  padding: 10px 25px;
  color: #fff !important;
  border-radius: 8px;
  border: 1px solid transparent !important;
}
.contact-btn:hover {
  color: #17b1cb !important;
  background-color: #fff !important;
  border: 1px solid #17b1cb !important;
}
.contact-email{
  text-decoration: underline;
}

.contact-email:hover{
  text-decoration: underline !important;
}
/*---------------- Contact-content -----------------*/

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  padding: 25px;
  border-radius: 12px;
}
.contact-card h4 {
  font-family: var(--font-ubuntu);
  font-weight: bold;
  color: #272727 !important;
}
.contact-card svg {
  width: 80px;
  margin-bottom: 15px;
}
.contact-card p {
  text-align: center;
  margin: 0;
}
.contact-card a:hover {
  color: #343434;
  text-decoration: none;
}
.contact-number,
.contact-time,
.contact-address {
  background-color: #e5f9ff;
  width: 100%;
  min-height: 160px;
  margin-top: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
}

/*--------------- blog Page ----------------*/

/*----------- blog Banner ---------------*/

.blog-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/blog-banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.blog-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.blog-banner h2 {
  color: #fff;
  text-align: center;
}
.blog-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.blog-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.blog-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.blog-banner svg {
  margin: 0 5px;
}

/*-------------- blog page ----------------*/

.blog-page p {
  color: #262626 !important;
}
.blog-page .blog-card {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.235);
  width: 100%;
  border-radius: 12px;
  margin-top: 30px;
}

/*---------- recent post widget -----------*/

.recent-search {
  border: 1px solid #8d8c8c;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.recent-search h5 {
  color: #343434 !important;
  font-size: 1.15rem !important;
}
.recent-search .form-control:focus {
  outline: none !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
}
.search-icon {
  position: absolute;
  top: 8px;
  right: 15px;
  color: #343434;
}
.recent-post {
  border: 1px solid #8d8c8c;
  padding: 10px 15px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.recent-post h5 {
  color: #343434 !important;
  font-size: 1.15rem !important;
}
.recent-post-image {
  display: flex;
  gap: 15px;
}
.recent-post-image img {
  height: 80px;
  width: 100px;
  margin-top: 10px;
}
.recent-post-image p {
  margin: 0;
  background-color: #105a86;
  padding: 2px 4px;
  color: #fff !important;
  font-size: 0.85rem !important;
  display: inline-block;
  border-radius: 8px;
}
.recent-post-image h5 {
  font-size: 1rem !important;
}
.recent-posted {
  display: flex;
  gap: 10px;
  margin: 5px 0 0;
}
.recent-posted {
  font-size: 0.85rem;
}
.recent-posted p {
  color: #888888 !important;
  font-size: 0.85rem;
}
.recent-post-box {
  margin: 10px 0 0;
}
/* .recent-post-box:first-of-type {
  border-bottom: 1px solid #8d8c8c;
} */
.categories {
  border: 1px solid #8d8c8c;
  padding: 10px 15px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.categories h5 {
  color: #343434 !important;
  font-size: 1.15rem !important;
}
.categories ul {
  padding-left: 0 !important;
}
.categories li {
  padding: 4px 0;
}
.category-list li::before {
  content: "●";
  color: #17b1cb;
  padding-right: 5px;
}

/* ----------blog-inner-page---------- */

.blog-posted {
  display: flex;
  gap: 10px;
  margin: 5px 0 0;
}
.blog-posted {
  font-size: 0.85rem;
}
.blog-posted i {
  color: #17b1cb;
  margin-right: 5px;
  font-size: 18px;
}
.blog-posted p {
  color: #272727 !important;
  font-size: 0.85rem;
}
.blog-inner-page img {
  margin-bottom: 30px;
  border-radius: 12px;
}
.blog-ul {
  padding-left: 20px;
}
.blog-ul li::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #17b1cb;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  margin-top: 7px;
  background-color: transparent;
}
.blog-p {
  margin: 0;
}
.blog-pagination{
  display: flex;
  justify-content: space-between;
}
.blog-pagination a:hover{
  color: #17b1cb !important;
  text-decoration: none !important;
}
/*--------------------*/

.error-msg {
  color: #fa6060;
  font-size: 1rem;
  margin-top: 5px;
}

.employers-error-msg {
  color: #ff0000;
  font-size: 1rem;
  margin-top: 5px;
}

.contact-error-msg {
  color: #ff0000;
  font-size: 1rem;
  margin-top: 5px;
}
.input-error {
  border-color: #ff0000 !important;
}
.footer-content-box-link a {
  color: #fff !important;
  text-decoration: none !important;
}
/*--------------- terms Page ----------------*/

/*----------- terms Banner ---------------*/

.terms-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/contactus-banner.webp");
  background-repeat: no-repeat;
  background-position: -115px 0;
  background-size: cover;
  position: relative;
}
.terms-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.terms-banner h2 {
  color: #fff;
  text-align: center;
}
.terms-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.terms-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.terms-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.terms-banner svg {
  margin: 0 5px;
}

/*----- terms-content -----*/

.terms-content .col-12{
  margin-bottom: 20px;
}
.terms-content h3{
  margin-bottom: 4px;
  font-size: 24px;
}
.terms-content p{
  margin-bottom: 8px;
}
.terms-content a{
  text-decoration: underline;
}
.terms-content a:hover{
  color: #17b1cb;
}


/*--------------- privacy Page ----------------*/

/*----------- privacy Banner ---------------*/

.privacy-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/contactus-banner.webp");
  background-repeat: no-repeat;
  background-position: -115px 0;
  background-size: cover;
  position: relative;
}
.privacy-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.privacy-banner h2 {
  color: #fff;
  text-align: center;
}
.privacy-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.privacy-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.privacy-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.privacy-banner svg {
  margin: 0 5px;
}

/*----- privacy-content -----*/
.privacy-ul {
  padding-left: 20px;
}
.privacy-content .col-12{
  margin-bottom: 15px;
}
.privacy-content h3{
  margin-bottom: 4px;
  font-size: 24px;
}
.privacy-content p{
  margin-bottom: 8px;
}
.privacy-p {
  margin-bottom: 4px !important;
}
.privacy-content a{
  text-decoration: underline;
}
.privacy-content a:hover{
  color: #17b1cb;
}
.privacy-content ul li::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #17b1cb;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  margin-top: 7px;
  background-color: transparent;
}

select.form-control{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray' class='bi bi-chevron-down' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/></svg>")
    no-repeat right 0.75rem center;
  background-size: 1rem;
  background-color: #fff;
}
.form-control{
  border-radius: 8px;
}

.login{
  background-color: #f1f1f1;
}

.login-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-button{
  border: none;
  font-family: var(--font-roboto);
  background-color: transparent;
  color: #fff;
}

.login a{
  color: #343434;
}

.login label{
  color: #343434;
  font-family: var(--font-roboto);
}

.login .form-control:focus {
  outline: none !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
}

.login .select-label {
  color: #105a86;
  border: 1px solid #105a86;
  border-radius: 8px;
  cursor: pointer;
  width: 80px;
  text-align: center;
}
.forgot a{
  text-decoration: underline;
}
.forgot a:hover{
  text-decoration: underline;
}
.login-btn {
  background-color: #17b1cb !important;
  padding: 10px 25px;
  color: #fff !important;
  border-radius: 8px;
  border: 1px solid transparent !important;
  width: 100%;
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
}
.login-btn:hover {
  color: #17b1cb !important;
  background-color: #fff !important;
  border: 1px solid #17b1cb !important;
}
.register-btn {
  background-color: #17b1cb !important;
  padding: 10px 25px;
  color: #fff !important;
  border-radius: 8px;
  border: 1px solid transparent !important;
  width: 100%;
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
}
.register-btn:hover {
  color: #17b1cb !important;
  background-color: #fff !important;
  border: 1px solid #17b1cb !important;
}
.login-image img{
  border-radius: 12px 0 0 12px;
  width: 100%;
  height: 100%;
}

.login-box{
  background-color: #fff;
  border-radius: 12px;
}
.login-content{
  padding-right: 30px;
}

.login .modal-title{
  font-size: 1.7rem !important;
  margin-bottom: 15px;
}
/*----------- profile Banner ---------------*/

.profile-banner {
  height: 230px;
  background-image: url("../../../static/sitecreationapp/images/services_banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.profile-banner-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.profile-banner h2 {
  color: #fff;
  text-align: center;
}
.profile-banner h5 {
  color: #17b1cb;
  text-align: center;
  margin-top: 15px;
  font-size: 1rem !important;
}
.profile-banner a {
  color: #fff;
  font-size: 1rem !important;
}
.profile-banner a:hover {
  color: #fff;
  text-decoration: none;
}
.profile-banner svg {
  margin: 0 5px;
}


/*  */


.profile-page p{
  margin: 0;
}
.profile-page p{
  color: #656768;
}
.profile-name h3{
  font-size: 30px;
}
.profile-name h3 span{
  font-size: 20px;
  font-family: var(--font-roboto);
}
.profile-page span{
  color: #343434;
  font-size: 18px;
  font-weight: bold;
  font-family: var(--font-roboto);
}
.profile-page .arms-btn{
  padding: 7px 25px;
  margin: 0 0 0 auto;
}
.profile-page img{
  border-radius: 12px;
  margin-bottom: 20px;
}
.profile-title{
  font-size: 1.6rem;
  color: #343434;
  padding-bottom: 5px;
  border-bottom: 1px solid #656768;
}
.profile-page i{
  color: #17b1cb;
  font-size: 20px;
}
.profile-page small{
  color: #656768;
  font-size: 12px;
  font-weight: 400;
  padding-left: 25px;
}
.job-history-title{
  background-color: #105a86;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  border-radius: 12px 12px 0 0;
}
.profile-page .table-bordered th{
  border: 1px solid #ccc !important;

}
.profile-page .table-bordered td{
  border: 1px solid #ccc !important;
}
.profile-page td{
  border-top: none !important;
}

.upload-btn {
  background-color: #17b1cb;
  color: #fff;
  font-weight: bold;
  padding: 6px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
}
.upload-btn:hover {
  color: #17b1cb;
  background-color: #fff;
  border: 1px solid #17b1cb;
}
.input-group input{
  border-radius: 8px !important;
}
.profile-edit .form-control:focus {
  outline: none !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
}
.profile-edit input[type="number"]::-webkit-inner-spin-button,
.profile-edit input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.profile-edit textarea {
  resize: none !important;
}
.profile-edit label{
  font-family: var(--font-roboto);
  margin-bottom: 4px;
}
.image-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.image-content p{
  font-size: 14px;
  text-decoration: none;
  margin: 0;
}
.image-content span{
  font-size: 14px;
}
.photo-box{
  position: relative;
}
.photo-box img{
  border-radius: 12px;
}
.personal-info .upload-btn{
  margin: 15px 0;
}
.documents-Upload .upload-btn{
  margin-left: 15px !important;
}
.note{
  font-size: 14px;
  text-decoration: none;
  color: #656768;
}
.profile-edit .profile-title{
  margin-bottom: 20px;
  /* border: none; */
}

.form-control{
  height: calc(1.8em + 0.85rem + 3px) !important;
}
textarea.form-control {
  height: auto !important;
}
.contact-page textarea.form-control {
  height: 100% !important;
}

.about-ai {
  background-image: url("../images/ai-bg2.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-ai-content-area {
  background-color: rgba(19, 89, 132, 0.88);
  padding: 40px;
  text-align: center;
  border-radius: 21px;
}

.about-ai-content-area h2,
.about-ai-content-area p {
  color: #fff;
  text-align: center;
}

.ai-image{
  display: none;
}

.about-ai .col-lg-6,
.about-ai .col-lg-3{
  padding: 0 !important;
}

.img-animation-box {
  overflow: hidden;
  display: inline-block;
  position: relative;
  border-radius: 12px !important;
}

.img-animation {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
  height: auto;
}

.img-animation:hover {
  transform: scale(1.05);
}

.login-dropdown{
  z-index: 1001;
}
form#forgot_password_form {
  margin-top: 50px;
}

span.select2-selection.select2-selection--multiple {
    padding-bottom: 15px;
    padding-top: 5px;
}
.custom-pagination .page-link {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    margin: 0 4px;
    padding: 6px 12px;
    color: #333;
    background-color: #fff;
    font-weight: 500;
}

.custom-pagination .page-item.active .page-link {
    background-color: #3b82f6; /* blue */
    border-color: #3b82f6;
    color: #fff;
}

.custom-pagination .page-item.disabled .page-link {
    color: #aaa;
    pointer-events: none;
    background-color: #f9f9f9;
}

.select2-container {
  width: 100% !important;
}
.hei {
    height: 93% !important;
}
.flexihire-opening {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
div#flexihire-results {
    width: 100%;
}
.send-otp {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
   
}
.modal-content {
    transition: box-shadow 0.3s ease;
    border: 1px;
    border-radius: 20px;
}
.btn-close-otp {
    margin-top: 2px;
    height: 16%;
    margin-right: 6px;
}
.profile-edit label.form-check-label{
  margin-top: 5px;
  display: flex;
  align-items: center;
}

.input-group > .intl-tel-input.allow-dropdown {
  flex: 1 1 auto;
  width: 1%;
}
.input-group > .intl-tel-input.allow-dropdown > .flag-container {
  z-index: 4;
}
.iti-flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags.png");

}
@media only screen and (min-resolution: 2dppx) {
  .iti-flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags@2x.png");
  }
}
.iti {
  display: block !important;
}
.hr-employers:hover {
  background-color: #17b1cb;
}

.hr-employers:hover a{
  background-color: #fff;
  color: #17b1cb;
}
.hr-employers a:hover {
  color: #17b1cb;
  text-decoration: none;
}
.hr-job-seekers:hover {
  background-color: #105a86;
}

.hr-job-seekers .arms-white-btn{
  border-color: #105a86;
  color: #fff;
  background-color: #105a86;
}

.hr-job-seekers:hover a {
  background-color: #fff;
  color: #105a86;
}
.hr-job-seekers a:hover {
  color: #105a86;
  text-decoration: none;
}
.login-content .arms-white-btn{
  padding: 10px 20px;
  border-radius: 8px;
}
.otp-text{
  font-size: 12px;
  color: #ff0000;
}
.job-no-text{
  text-align: center;
  margin-top: 6px;
}
.job-no-img {
    height: 200px;
    width: 200px;
    font-weight: bold;
}

.first-post {
  border-bottom: 1px solid #8d8c8c;
}