@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import "reset.css";
@import "variable.css";
@import "global.css";
@import "home.css";
@import "animation.css";
@import "search.css";
@import "vacancy.css";
@import "dashboard.css";
@import "sidebar.css";
@import "personal-profile.css";
@import "components.css";
@import "jobs.css";
@import "abc-corp.css";
@import"company-profile.css";






  .top-section{
    display: flex;
    align-items: baseline;
    gap:4rem;
 
  }
  .other-pages {
    margin:0;
    padding:0;
  }
  .main {
    padding:2rem;
    display:flex;
    gap:1rem;
  }

  
/* Dashbaord End */

  .top-section{
    width: 100%;
    height: 70px;
    position: sticky;
    top: 0;
    background-color: var(--white-color);
    box-shadow: 0 3px 3px var(--shadow-color);
    padding:0.5rem;
    z-index: 10;
  }
  .top-section .logo  {
    margin:0.5rem 0 0 2rem;

  }
  .top-section .logo img {
    height:40px;
    width:auto;
  }



.header {
margin-top:1rem;
display: flex;
margin-left: auto;
margin-right:4rem;
gap: 1rem; 
align-items: center;
}

.dropdown-container {
  display: flex;
  flex-direction: column;
}

.dropdown {
  display: flex;
  font-size: 16px;
  cursor: pointer;
}
.dropdown a.abc-follow-btn i.fa-plus {
  margin-right:5px;

}
.candidates-menu .dropdown{
  width:180px;
}
.candidates-menu .dropdown span{
  font-size: 14px;
}

.fa-angle-up {
  position: relative;
  left:10px;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.fa-angle-down {
  position: relative;
  left:10px;
  font-size: 1rem;
  transition: transform 0.3s ease;
}



.rotate-dropdown-arrow {
  transform: rotate(-180deg);
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  border-radius: 4px;
  margin-top: 48px;
  width: 180px;
  box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.3);
  background: #fafafa;
  transform-origin: top left;
}
.dropdown-menu li {
  line-height: 30px;
}
.candidates-menu .dropdown-menu {
  right:76px;
}

.dropdown-menu span {
  padding: 10px;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dropdown-menu span:hover {
  background: #eee;
}
.dropdown-item.active, .dropdown-item:active{
  background-color:var(--primary-color);
}
#openDropdown:checked + .dropdown-menu {
  display: flex;
  animation: openDropDown 0.4s ease 0s 1 forwards;
}

@keyframes openDropDown {
  from { transform: rotateX(50deg); }
  to { transform: rotateX(0deg); }
}

.dropdown-menu span a {
  font-size: 13px;
}
.dropdown-menu.show {
  transform: translate(-58px, 41px)!important ;

} 


.header__user {
margin: 0 4rem 0 1rem; }
.header__user a {
  /* font-size: min(1.1em,2.5vh,2vw); */
  font-size: 14px;

}
.header__hamburger-menu {
fill: var(--text-color); }
.header__hamburger-menu :hover {
fill: var(--primary-color); }
.userlog {
  display:flex;
  gap:0.5rem;
  align-items:center ;
}
.dropdown a{
  font-size: 14px;
}
.dropdown ul.dropdown-menu li a {
  font-size:13px;
}
.contact-details {
  gap:5rem;
}
.contact-details .maps{
border:5px dotted var(--primary-color);
border-radius: 10px;

}
.contact-details .maps iframe {
  border-radius: 10px; 
}
.contact-info h2{
  text-align: left;
}
.single-widget {
  align-items: center;
  margin-bottom: 20px;
}

.single-widget .widget-icon {
  background: #e4f0fa none repeat scroll 0 0;
  font-size: 18px;
  height: 40px; 
  width: 40px;
  border-radius:50%;
  line-height: 42px;
  margin-right: 20px;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  color: var(--primary-color);

}



/* MENU STYLES */
.menu-wrap {
  position: fixed;
  top: 0;
  right:50px;
  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 50px;
  height: 40px;
  padding: 1rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 1px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -6px;
  width: 100%;
  height: 1px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 6px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
} 

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
background-color:var(--white-color);
/* background-image: url(../images/logo.png);
background-repeat: no-repeat;
background-position: 800px 150px; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-wrap .menu .menu-header h1{
  font-weight: bold;
  font-size: 2rem;
}
.boardMembersArea {
  margin:20px 0;
}
.text-center {
  text-align: center!important;
}
.boardMembersArea img {
  background-color:#ddd;
  width: 110px;
  height: 110px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 100%;
  object-position: center;
}
.boardMembersArea span.heading2 {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: bold;
  display: block;
}
.boardMembersArea span.flat-heading {
  color: var(--secondary-color);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  line-height: 12px;
}
.boardMembersArea p {
  line-height: 35px;
  padding-right: 1rem;
}
/* .menu-wrap .menu > div {

  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
  z-index:1;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
} */
.header-menuWrap{
  text-align: center;
}
.tabs-container {
  background-color:rgb(228 240 250);
  width:70%;
  display: flex;
  transform: scale(0);
  transition: all 0.1s ease;
  z-index:1;
  padding: 10px;
  border-radius: 10px;
}

.contents{
  flex:1;
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 0px 1px 7px var(--shadow-color);

}
.tabs {
display: flex;
flex-direction:column;
overflow: hidden;
gap:5px;
margin-left:10px;
}
.tabs button{
  margin: 0;
  padding: 0.5rem 1.5rem;
  line-height: 2rem;
  margin-bottom: 1px;

}

.tab {
  background-color:var( --secondary-color);
  border: none;
  font-size: 16px;
  color:var(--white-color);
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
  border-radius:5px;
}

.tab:hover, .tab.active {
  background-color:var(--primary-color);
  border-radius:5px;

}


.tab-content {
  display: none;
  padding: 20px;
  overflow: hidden;
  
}
.tab-content :is(h2, p){
  color:var(--text-color);
}
.tab-content h2 {
  margin-bottom: 2rem;
  font-weight: 600;
}
.tab-content p {
  line-height: 24px;
  padding-right: 1rem;
}
.tab-vmbtn {
  float:right;
}

.tab-content.active {
  display: block;
}


/* MENU STYLES  ENDS*/

/* Banner */
.banner {
  height:100px;
  background-color: var( --otherbg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  line-height: 25px;
}
.banner h3 {
  font-weight: 600;
}


.jobs-card-category {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.jobs-card-category .jobs-card-category-icon {
  background-color:#e6f0f9;
  border-radius: 10px;
  padding: 8px;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  transition:var(--hoverTransition);
  transition-property: color, background-color;
}
.jobs-card-category .jobs-card-category-label {
  padding-left: 10px;
  font-size: 11px;
  text-decoration: none;
  transition:var(--hoverTransition);
  transition-property: color;

}
/* Modal */

/* Modal Box Login */


.login-panel {
  border-radius: 0.5rem;
}

.login-panel .login-with-socialN h4 {
  font-weight: 300;
}
.login-panel .login-with-socialN button {
  margin-top: 1rem;
  width:100%;
}
.btn-social {
  display: block;
  background:var(--shadow-color);
  color: #0E141A;
  font-weight: 500;
  border: 1px solid var(--shadow-color);
  }
  .btn-social:hover{
    background:var(--shadow-color);
    color: #0E141A;
    font-weight: 500;
    border: 1px solid var(--primary-color);
  }
  .flex-socialN {
    display:flex;
    justify-content:space-evenly ;
    align-items: center;
    gap:10px;
  }
  .login-with-socialN .google span{
    margin:0 5px 0 0;
  }
  .login-with-socialN .btn-social.google:hover{
    border-color: #dc4d28;
    color: #dc4d28;
  }
  .login-with-socialN .google span svg {
    width:16px;
    height:16px;
  }
  .login-with-socialN .facebook span svg {
    width:16px;
    height:16px;
  }
  .login-with-socialN .btn-social.facebook:hover{
    border-color: #3b5998;
    color: #3b5998;
  }

.login-panel .divider {
  border-top: 1px solid var(--gray-color);
  position: relative;
  margin-top:2rem;
  z-index: 0;
}
.login-panel .divider p {
  position: absolute;
  top: -15px;
  left: 45%;
  z-index: 999;
  background-color:var(--shadow-color) ;
  border-radius: 50%;
  padding:8px;
  font-size: 10px;
}
.login-panel .login {
  display: flex;

}
.login-panel .login .form-group label,
.login-panel .register .form-group label {
  font-size:14px;
  font-weight:600;
  color:var( --text-color);
  margin:var(--ms-x) 0;
  line-height: var(--ms-x);
 
}
.login-panel .login .form-group input,
.login-panel .register .form-group input  {
  height: 40px;
  border-radius:var(--ms-1x);
  background: transparent;
  padding-left: 1rem;
  

}
.fp{
  text-align: right;
  font-size: 12px;

}
.mf {
  justify-content: space-between;
}
.link-container {
  text-align: left;
}
.link-container p {
  font-size: 12px;
}
.link-container a {
  color: #4484f2;
  text-decoration: none;
}


.footer{
  background: var(--primary-color);
    padding: 20px;
    text-align: center;
}
.footer p {
  color:var(--white-color);
}

/* Media Queries */
@media (max-width: 850px) {
  /* styles for screens with width less than 767px */

  .menu-wrap{
    top:20px;
  }
  .header {
   padding-top:10px;
   margin-left: unset;
  }
  .top-section {
    height:130px;
      display:flex;
      flex-direction: column;
      gap:1px;
      /* align-items: center; */
     
  }
  .header__user {
    display: flex;
    margin: 0;
  }
 .header__user a {
    font-size: 12px;
  }
  .menu-wrap .menu {
    align-items: baseline;
    padding-top:5rem;
    background-position: 165px 90px;

  }

  .flex-socialN{
    flex-direction: column;
  }
  .tabs-container {
    flex-direction: column;
    width: 95%;
    margin-left: 2.5%;
  }
  .tabs{
    order:-1;
  }
  .tab-content p{
    padding:0;
  }
  
}

.jobs {
  margin-top:1rem;
}
.row.aj, .row.rj {
    padding:1rem 5px;
}
.jobs-save a i.fa-bookmark {
  font-size: 1.2rem;

}



/* Table */
.table-responsive {
  display: block;
  width: 100%;
  height:300px;
  overflow: auto;
}
.abc-table table {
   width:100%;
}
.abc-table tr {
 border-bottom:1px solid var(--otherbg-color);
 border-left:1px solid var(--otherbg-color);
 border-right:1px solid var(--otherbg-color);
}
.abc-table tr th {
  background: var(--secondary-color);
  position: sticky;
  top:0;
  padding: 15px;
  vertical-align: middle;
  font-weight: 600;
  color:var(--white-color);

}
.abc-table tr td {
  background: var(--bodybg-color);
  padding: 15px;
  vertical-align: middle;
  
}

/* Data table */
.page-item.active .page-link {
  background-color: var(--primary-color);
  border-color:  var(--primary-color);
}
.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
  padding: 0.25rem 0.5rem;
  font-size: .875rem;
  border-radius: 40px;
}
.page-item:first-child .page-link {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.page-item:last-child .page-link {
  border-top-right-radius: 40px;
  border-bottom-right-radius:40px;
}
.page-item.disabled .page-link {
  font-size: 12px;
}
.page-item.active .page-link {
  font-size: 12px;
}
.card .card-body .d-flex{
  flex-wrap: wrap;
}

.delete-content {
  display: flex;
  flex-direction: column;
 align-items: center;
 gap:1rem;
}
.delete-content i.fa-trash-can {
  color:var(--primary-color);
  font-size:1.5rem;

}


.sj{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 1rem;
}

.sj img {
  width:auto;
  height:100px;
}
.sj .job-card{
  position: relative;
  display: flex;

  flex-direction: column;
  max-width:330px;

}
.sj .job-card .jobs-card-title{
  display: block;
  font-weight: 600;
  font-size: 16px;
  transition: var(--hoverTransition);
  transition-property: color;
  text-decoration: none;
}
#jobs .sj, .main-area .sj {
  margin-top: 1rem;

}
#jobs .sj .job-card .jobs-card-title, .main-area .sj .job-card .jobs-card-title{
  margin:1rem 0; 
}

.sj .job-card .jobs-card-details{
  display: flex;
  flex-direction: column;
  line-height: 0;
  font-size: 14px;
}
.sj.recent-jobs .job-card .jobs-card-details{
  font-size: 11px;
}
#jobs .sj .job-card .jobs-card-details{
  line-height: 18px;
  font-size: 11px;
}
.sj .job-card .date{
	font-size: 11px;
}
.sj .job-card .jobs-card-details .date{
	margin-bottom: 25px;
}
.sj .job-card .jobs-card-details .jobs-card-location {
  display: block;
  font-weight: 500;
  text-decoration: none;
  transition: var(--hoverTransition);
  transition-property: color;
}
.sj .job-card .jobs-card-details .jobs-card-location span {
  margin-right: 7px;
}
.sj .job-card .jobs-card-details .jobs-card-type {
  font-size: 11px;
}
.sj.recent-jobs .job-card .jobs-card-details .jobs-card-type {
  line-height: 26px;
}

.sj .job-card .jobs-save {
  position: absolute;
  right: 0;
  top: 105px;
}
.sj .job-card .jobs-save a svg {
  width:15px;
}
.sj .job-card .jobs-save a:hover svg {
  fill:var(--primary-color);
}

.truncate .text{
	white-space: nowrap;
    overflow: hidden;
    max-width: 285px;
    text-overflow: ellipsis;
}

.truncate .text.jobs-card-category-label{
	max-width: 255px;
}
  
@media (min-width:820px){
	.truncate .text {
		max-width: 285px;
	}
	.jobs-card-category-label.truncate .text{
		max-width: 255px;
	}
}

@media (min-width:1366px){
	.truncate .text {
		max-width: 145px;
	}
	.jobs-card-category-label.truncate .text{
		max-width: 115px;
	}
}

@media (min-width:1600px){
	.truncate .text {
		max-width: 200px;
	}
	.jobs-card-category-label.truncate .text{
		max-width: 170px;
	}
}

@media (min-width:1920px){
	.truncate .text {
		max-width: 285px;
	}
	.jobs-card-category-label.truncate .text{
		max-width: 255px;
	}
}

.truncate .text-tooltip {
  position: absolute;
  visibility: hidden;
  cursor: pointer;
  opacity: 0;
  transition: opacity 1s ease;
  font-weight: 500;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
  background:var(--secondary-color);

  color: white;
  box-shadow: 0px 0px 12px rgba(139, 139, 139, 0.4);
}
.truncate .text:hover + .text-tooltip {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}


/* Iris Services */
.iris-services {
  margin-top:5rem;

overflow: hidden;
min-height: 79vh;

}

.promos {
  max-width:60%;
  margin: 0 auto;
  margin-top:5rem;
  margin-bottom: 5rem;
  display: flex;
 
}
@media (max-width: 767px) {
.promos{
  flex-direction:column;

}
}
h1 {
 font-weight: 600;
 font-size:20px;
}
h1 span {
  color:var(--primary-color);
}

.promo {
  margin: 1em .5em 1.625em;
  padding: .25em 0 2em;
  background: #edf2f4;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.625;
  color: #f9f9f9;
  text-align: center;
  box-shadow: 1px 1px 5px 1px #8d99ae;
  transition: transform 0.5s; 
}
.promo.scale {
/*.promo:hover {*/
  transform: scale(1.1);
  z-index:1;
  
}
@media (min-width: 40em) {
  .promo {
    width: 66.666%;
    margin: 1em 0 0;
    border-radius:10px;
      }
  a.promo.first {
    border-right: none;
      
  }
  a:hover.promo.first {
    z-index: 1;
  }
  a.promo.second {
    border-left: none;
  }
  a:hover.promo.second {
    z-index: 1;
  }
}
.promo h4 {
  margin: .25em 0 0;
  font-size: 170%;
  font-weight: normal;
}
.promo .features {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #2b2d42;
}
.promo li {
  padding: .25em 0;
}
.promo li p.heading {
  color:#2b2d42;
  font-weight: 600;
}
.promo li p {
  color:#2b2d42;
}
.promo .brief {
  color: #2b2d42;
}
.promo .price {
  display: flex;
  flex-direction: column;
  margin: .5em 0;
  padding: .5em 0;
  background: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  color: #f9f9f9;
}
.promo .buy {
  margin: 1em 0 0;
}
.promo button {
  padding: 1em 3.25em;
  border: none;
  border-radius: 40px;
  background: #292b2e;
  color: #f9f9f9;
  cursor: pointer;
}
.promo button:hover {
  background: #27282b;
}

.scale button {
  background: #d90429;
}
.scale button:hover {
  background: #D10000;
}
@media (min-width: 40em) {
  
  .scale .price {
    color: #FFF;
  }
}

/* Iris Services Ends */


