/*---------------------------------------------
/////  Hirecon HTML  /////
----------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
/***********************
* Variable
* Common
* Button style 
* scroll to top
* side menu
* mobile-nav
* header
* banner one
* about one
* features
* service 
* work
* why-choose
* pricing
* cta
* testimonial
* blog
* brand
* team
* case-study
* faq
* footer
* blog details
***********************/
/***********************
* Variable
***********************/
:root {
    --hirecon-primary: #1C5540;
    --hirecon-secondary: #ECE8E0;
    --hirecon-dark-green: #163838;
    --hirecon-dark-secondary: #B69974;
    --hirecon-black: #121212;
    --hirecon-light-blue: #86A5A7;
    --hirecon-dark-grey: #0C2625;
    --hirecon-blue: #1E3FDB;
    --hirecon-light: #ffffff;
    --hirecon-grey: #696969;
    --hirecon-body-font:"Outfit", sans-serif;
    --hirecon-heading-font:"Space Grotesk", serif;
}
html {
    scroll-behavior: smooth;
}
/***********************
* Common
***********************/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: var(--hirecon-body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0;
    color: var(--hirecon-grey);
    text-transform: none;
    font-style: normal;
}
img {
    max-width: 100%;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   margin: 0px;
   font-family:var(--hirecon-heading-font) ;
   color: var(--hirecon-black);
}
h1 {
    font-size: 100px;
    font-weight: 600;
    line-height: 110px;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 24px;
}
h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 24px;
}
h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
}
h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
}
p {
    margin: 0 0 16px;
}
.post, .page{
    margin: 0;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
input:-webkit-autofill {
   -webkit-background-clip: text;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.gutter-x-20{
    --bs-gutter-x: 20px;
}
.gutter-x-10{
    --bs-gutter-x: 10px;
}
.gutter-x-3{
    --bs-gutter-x: 3px;
}
.gutter-y-3 {
    --bs-gutter-y: 3px;
}
.mb-70{
    margin-bottom: 70px;
}
/***********************
* Button style 
***********************/
.btn-primary {
    border: none;
    background:var(--hirecon-dark-green);
    color: var(--hirecon-light);
    border-radius: 7px;
    position: relative;
}
.btn-outline-primary{
    padding: 12px 20px;
    border: 1px solid var(--hirecon-dark-green);
    background-color:transparent;
    border-radius: 7px;
    color: var(--hirecon-dark-green);
}
.btn-outline-primary:hover{
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
    border-color: var(--hirecon-dark-green);
}
.btn-light {
    border-radius: 7px;
    border: none;
    background-color: var(--hirecon-light);
    color: var(--hirecon-dark-grey);
    position: relative;
}
.btn-light:hover{
    background-color: var(--hirecon-dark-grey);
    color: var(--hirecon-light);
}
.btn-link {
    padding: 0;
    text-decoration: none;
    line-height: 20px;
    font-weight: 500;
    color: var(--hirecon-light);
    background-image: linear-gradient(transparent calc(100% - 1px), #ffffff 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215,.61,.355,1) underline forwards;
}
.btn-link:hover{
    animation: 1s cubic-bezier(.215,.61,.355,1) underline-hover forwards;
}
.btn-block{
    width: 100%;
    text-align: center;
}
.btn-link:hover{
    color: var(--hirecon-light);
}
.btn-primary i, .btn-outline-primary i{
    font-size: 12px ;
    line-height: 12px;
    transition: all 0.5s;
}
.btn-outline-primary i{
    color: var(--hirecon-dark-green);
}
.btn-primary:hover{
    background-color:var(--hirecon-light);
    color: var(--hirecon-black);
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    background-color: transparent;
    color: inherit;
}
.theme-btn {
	padding: 0 2em;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.theme-btn > span {
	display: inline-block;
	padding: 1em 0;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
	opacity: 0;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.theme-btn::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
	padding: 1em 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.theme-btn:hover::before {
	opacity: 0;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.theme-btn:hover > span {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.theme-btn:hover > span:nth-child(1) {
	-webkit-transition-delay: 0.045s;
	transition-delay: 0.045s;
}
.theme-btn:hover > span:nth-child(2) {
	-webkit-transition-delay: 0.09s;
	transition-delay: 0.09s;
}
.theme-btn:hover > span:nth-child(3) {
	-webkit-transition-delay: 0.135s;
	transition-delay: 0.135s;
}
.theme-btn:hover > span:nth-child(4) {
	-webkit-transition-delay: 0.18s;
	transition-delay: 0.18s;
}
.theme-btn:hover > span:nth-child(5) {
	-webkit-transition-delay: 0.225s;
	transition-delay: 0.225s;
}
.theme-btn:hover > span:nth-child(6) {
	-webkit-transition-delay: 0.27s;
	transition-delay: 0.27s;
}
.theme-btn:hover > span:nth-child(7) {
	-webkit-transition-delay: 0.315s;
	transition-delay: 0.315s;
}
.theme-btn:hover > span:nth-child(8) {
	-webkit-transition-delay: 0.36s;
	transition-delay: 0.36s;
}
.theme-btn:hover > span:nth-child(9) {
	-webkit-transition-delay: 0.405s;
	transition-delay: 0.405s;
}
.theme-btn:hover > span:nth-child(10) {
	-webkit-transition-delay: 0.45s;
	transition-delay: 0.45s;
}
.theme-btn:hover > span:nth-child(11) {
	-webkit-transition-delay: 0.49s;
	transition-delay: 0.49s;
}
.theme-btn:hover > span:nth-child(12) {
	-webkit-transition-delay: 0.54s;
	transition-delay: 0.54s;
}
.theme-btn:hover > span:nth-child(13) {
	-webkit-transition-delay: 0.58s;
	transition-delay: 0.58s;
}
.theme-btn:hover > span:nth-child(14) {
	-webkit-transition-delay: 0.62s;
	transition-delay: 0.62s;
}
.theme-btn:hover > span:nth-child(15) {
	-webkit-transition-delay: 0.66s;
	transition-delay: 0.66s;
}
.theme-btn:hover > span:nth-child(16) {
	-webkit-transition-delay: 0.70s;
	transition-delay: 0.70s;
}
.theme-btn:hover > span:nth-child(17) {
	-webkit-transition-delay: 0.74s;
	transition-delay: 0.74s;
}
.theme-btn:hover > span:nth-child(18) {
	-webkit-transition-delay: 0.78s;
	transition-delay: 0.78s;
}
.theme-btn:hover > span:nth-child(19) {
	-webkit-transition-delay: 0.82s;
	transition-delay: 0.82s;
}
.theme-btn:hover > span:nth-child(20) {
	-webkit-transition-delay: 0.86s;
	transition-delay: 0.86s;
}
.theme-btn:hover > span:nth-child(21) {
	-webkit-transition-delay: 0.90s;
	transition-delay: 0.90s;
}
.theme-btn:hover > span:nth-child(22) {
	-webkit-transition-delay: 0.94s;
	transition-delay: 0.94s;
}
.theme-btn:hover > span:nth-child(23) {
	-webkit-transition-delay: 0.98s;
	transition-delay: 0.98s;
}
.theme-btn > span.space {
    width: 7px;
}
/***********************
 * scroll to top 
***********************/
.scroll-to-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #fff;
    position: fixed;
    color: #000;
    z-index: 99;
    right: 30px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--hirecon-dark-green);
}
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}
.scroll-to-top i {
    font-size: 14px;
    transform: rotate(270deg);
}
.scroll-to-top  .scroll-to-top-text {
    font-size: 14px;
    line-height: 18px;
}
/***********************
 * header one
***********************/
.topbar-one {
    background-color:var(--hirecon-dark-green);
    padding: 11px 58px;
}
.topbar-one-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--hirecon-light);
}
.topbar-one-inner a{
    color: var(--hirecon-light);
}
.topbar-one-inner li{
    line-height: normal;
}
.topbar-one-inner p{
    margin-bottom: 0;
    line-height: 20px;
}
ul.topbar-one-info {
    display: flex;
    align-items: center;
    column-gap: 88px;
    overflow: hidden;
}
ul.topbar-one-info li{
    position: relative;
    line-height: normal;
    display: flex;
    align-items: center;
    column-gap: 7px;
}
ul.topbar-one-info li::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -42px;
    transform: translateY(-50%);
    height: 5px ;
    width: 5px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}
ul.topbar-one-info li p, ul.topbar-one-info li a{
    margin-bottom: 0;
    font-size: 16px;
    line-height: 20px;
    opacity: 80%;
}
ul.topbar-one-right-one{
    display: flex;
    align-items: center;
    column-gap: 30px;
    position: relative;
}
ul.topbar-one-right-one::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -42px;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.1);
}
.topbar-one-right {
    display: flex;
    align-items: center;
    column-gap: 80px;
}
ul.topbar-one-social-media {
    display: flex;
    column-gap: 20px;
    position: relative;
    padding-left: 30px;
}
ul.topbar-one-social-media::after{
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}
.main-header {
    background-color:#184545;
    padding: 0px 58px;
}
nav.main-menu {
    display: flex;
    align-items: center;
    column-gap: 134px;
}
.main-menu-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
ul.main-menu-list {
    display: flex;
    align-items: center;
    column-gap: 50px;
}
.main-menu-logo {
    flex-shrink: 0;
}
ul.main-menu-list li{
    display: flex;
    align-items: center;
    column-gap: 7px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 33.5px 0;
}
ul.main-menu-list li a{
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    position: relative;
}
.main-menu-right {
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.main-menu-right .header-call {
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: var(--hirecon-light);
}
.main-menu-right .header-call i{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
}
.side-menu {
    color: var(--hirecon-light);
    cursor: pointer;
    font-size: 25px;
}
ul.main-menu-list li.current-menu-parent>a, ul.main-menu-list li a:hover,ul.main-menu-list li ul li.current-menu-item a{
    color: var(--hirecon-light);
}
.main-header-two ul.main-menu-list li ul li.current-menu-item a{
    color: var(--hirecon-black);
}
ul.main-menu-list li a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--hirecon-light);
    height: 1px;
    width: 0;
    transition: all 0.5s;
}
ul.main-menu-list li.current-menu-parent>a::after,ul.main-menu-list li ul li.current-menu-item a::after{
    width: 100%;
}
ul.main-menu-list li a:hover::after{
    width: 100%;
}
ul.main-menu-list li ul {
    position: absolute;
    width: 230px;
    padding: 10px 0;
    top: 100%;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    z-index: 999;
    background-color: #184545;
    box-shadow: 0 0 60px 0 rgb(53 57 69 / 15%);
}
ul.main-menu-list>li:hover>ul, ul.main-menu-list li ul li:hover ul{
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
ul.main-menu-list li ul li {
    padding: 10px 25px;
}
ul.main-menu-list li ul li a {
    font-size: 16px;
    font-weight: 400;
}
.side-menu i{
    transition: all 0.5s;
    display: inline-block;
}
.header-right-end {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: end;
    cursor: pointer;
    display: none;
}
.header-right-end span {
    width: 38px;
    display: inline-block;
    height: 2px;
    background-color: #fff;
}
.header-right-end span:nth-child(2) {
    width: 26px;
}
.header-right-end span:nth-child(3) {
    width: 14px;
}
.sticky-header--cloned.sticky-fixed {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s;
    visibility: visible;
 }
.sticky-fixed {
    position: fixed ;
    transform: translateY(0);
    z-index: 999;
    transition: all 1.5s;
}
.sticky-header--cloned {
    position: fixed ;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
}
.main-menu ul .menu-item-has-children::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
}
.no-main-menu li {
    padding: 33.5px 0;
}
.no-main-menu li a{
    color: var(--hirecon-light);
}
ul.main-menu-list li ul li ul{
    position: absolute;
    width: 230px;
    padding: 5px 0;
    top: 0;
    right: -230px;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    z-index: 999;
    background-color: #184545;
    box-shadow: 0 0 60px 0 rgb(53 57 69 / 15%);
}
.main-menu-logo h2.site-title{
    margin-bottom: 0;
}
.side-menu-logo-box .site-title a{
    color: var(--hirecon-black);
    font-size: 40px;
}
.main-menu-logo h2.site-title a,.mobile-nav-content .logo-box .site-title a{
    color: var(--hirecon-light);
    font-size: 40px;
}
/***********************
 * main-header-two
***********************/
.main-header-two {
    position: absolute;
    width: 100%;
    background-color: transparent;
    padding: 0;
    z-index: 9999;
}
.main-header-two ul.topbar-one-info {
    column-gap: 30px;
}
.main-header-two ul.topbar-one-info li::before {
    display: none;
}
.main-header-two nav.main-menu {
    justify-content: space-between;
    column-gap: 0;
}
.main-header-two .main-menu-inner {
    column-gap: 50px;
    justify-content: end;
    margin-left: auto;
    width: auto;
    background-color: #fff;
    border-radius: 7px;
    padding: 0 30px;
}
.main-header-two .main-menu-right {
    column-gap: 25px;
}
.main-header-two .topbar-two {
    padding: 15px 0;
}
.main-header-two ul.main-menu-list li {
    padding: 21px 0;
}
.main-header-two ul.main-menu-list li a, .main-header-two .side-menu, .main-header-two ul.main-menu-list li {
    color: var(--hirecon-black);
}
.main-header-two ul.main-menu-list li a::after{
    background-color: var(--hirecon-black);
}
.main-header-two ul.main-menu-list li ul{
    background-color: #fff;
    border-radius: 0 0 7px 7px;
}
.main-header-two ul.main-menu-list li ul li{
    padding: 10px 25px;
}
/***********************
 * side menu
***********************/
.side-menu-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
}
.side-menu-wrapper.expanded{
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
}
.side-menu-overlay.side-menu-toggler {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000090;
    opacity: 0.9;
    height: 100%;
    width: 100%;
}
.side-menu-content {
    width: 100%;
    max-width: 420px;
    background-color: var(--hirecon-light);
    text-align: center;
    padding: 50px 30px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
    height: 100vh;
    margin-left: auto;
}
.side-menu-wrapper.expanded .side-menu-content{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
}
.side-menu-logo-box {
    margin-bottom: 50px;
}
.side-menu-logo-box img{
    filter: invert(1);
}
.side-menu-container p {
    margin-bottom: 30px;
}
.side-menu-container h4{
    margin-bottom: 20px;
}
.side-menu-container ul{
    margin-bottom: 40px;
}
.side-menu-container ul li {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.side-menu-container ul li i{
    line-height: 0;
    font-size: 20px;
    position: relative;
}
.side-menu-container ul li a{
    color: var(--hirecon-grey);
}
ul.side-menu-social-media {
    display: flex;
    justify-content: center;
    column-gap: 15px;
    flex-wrap: wrap;
}
ul.side-menu-social-media li a {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--hirecon-dark-green);
    color:var(--hirecon-light);
    position: relative;
    transition: all 0.5s;
    border: 1px solid var(--hirecon-dark-green);
}
ul.side-menu-social-media li a::before{
    content: "";
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50% ,-50%);
    height: 0%;
    width: 0%;
    border-radius: 100%;
    background-color: var(--hirecon-light);
    transition: all 0.5s;
    z-index: 0;
}
ul.side-menu-social-media li a:hover::before{
    height: 100%;
    width: 100%;
}
ul.side-menu-social-media li a:hover{
    color: var(--hirecon-dark-green);
}
.side-menu-toggler {
    position: absolute;
    right: 20px;
    height: 40px;
    width: 40px;
    top: 40px;
}
.side-menu-toggler span {
    height: 1px;
    display: inline-block;
    width: 100%;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.5s;
}
.side-menu-toggler span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}
/***********************
 * mobile-nav
***********************/
.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
 }
 .mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
 }
 .mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000090;
    opacity: 0.9;
 }
 .mobile-nav-content {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: var(--hirecon-dark-green);
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
 }
 .mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
 }
 .mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 42px;
    right: 15px;
 }
 .mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: var(--hirecon-light);
    transform: translate(-50%, -50%) rotate(45deg);
 }
 .mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
 }
 ul.mobile-menu-list {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 10px;
 }
 ul.mobile-menu-list li {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
 }
 ul.mobile-menu-list li:last-child {
    border: none;
 }
 .locked {
    position: fixed;
    width: 100%;
    top: 0;
 }
 ul.mobile-menu-list li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.5s;
    padding: 0 25px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
 ul.mobile-menu-list .menu-item-has-children ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #d5cdcd;
 }
 ul.mobile-menu-list .menu-item-has-children ul li a {
    padding-left: 35px;
 }
 .mobile-menu-list .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
 }
 .mobile-menu-list .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    float: right;
    transition: all 0.3s;
    line-height: 0px;
 }
  /***********************
 * banner one
***********************/
 .banner-section-one {
    background-color: var(--hirecon-dark-green);
 }
 .banner-left-one {
    padding: 99px 0;
    max-width: 575px;
    margin: auto;
    transform: translateX(-52px);
}
 .banner-heading h1 {
    color: var(--hirecon-light);
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 2px solid rgb(255 255 255 / 10%);
 }
 .banner-heading p {
    font-size: 18px;
    line-height: 35px;
    color: var(--hirecon-light);
    margin-bottom: 30px;
}
.banner-btn {
    display: flex;
    align-items: center;
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 20px;
}
.banner-btn .btn-link {
    padding-bottom: 5px;
}
 .banner-image-one {
    margin-left: -104px;
    height: 100%;
}
.banner-image-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  /***********************
 * banner two
***********************/
.banner-section-two {
    position: relative;
    background-image: url(../images/background/banner-image-2.jpg);
    background-size: cover;
    padding: 423px 0 100px 0;
}
.banner-section-two::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(22, 56, 56, 0.2) 0%, #163838 100%);
    background: -webkit-radial-gradient(50% 50% at 50% 50%, rgba(22, 56, 56, 0.2) 0%, #163838 100%);
}
.banner-left-two {
    position: relative;
    z-index: 1;
}
.banner-heading-two>span{
    color: var(--hirecon-light);
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.banner-heading-two h1{
    font-size: 65px;
    line-height: 71px;
    letter-spacing: -0.02em;
    color: var(--hirecon-light);
    margin-bottom: 40px;
}
.banner-cta-two {
    padding: 10px 0;
}
.banner-box-two,.banner-box-right-two {
    background-color: var(--hirecon-dark-green);
    padding: 40px;
    position: relative;
    color: var(--hirecon-light);
}
.banner-icon-two {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.03);
    font-size: 180px;
}
.banner-box-two h2{
    font-size: 65px;
    line-height: 83px;
    color: var(--hirecon-light);
    margin-bottom: 0;
}
.banner-box-two p{
    font-family: var(--hirecon-heading-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 0;
}
.banner-box-right-two{
    display: flex;
    justify-content: space-between;
    background-image: url(../images/background/banner-image-two-2.jpg);
    background-size: cover;
    position: relative;
}
.banner-box-right-two::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(22, 56, 56, 0.5) 0%, #163838 100%);
}
.banner-box-inner-two {
    position: relative;
}
.banner-image-two img+img{
    margin-left: -15px;
}
.banner-box-inner-two h5{
    font-size: 20px;
    line-height: 26px;
    text-decoration: underline;
    color: var(--hirecon-light);
}
.banner-box-title-two {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    column-gap: 20px;
}
.banner-box-inner-two p{
    line-height: 24px;
    margin-bottom: 0;
    max-width: 80%;
}
.banner-box-inner-two span{
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
}
.banner-box-inner-two h4{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
    color: var(--hirecon-light);
}
.banner-box-inner-two .btn-link {
    font-size: 12px;
    line-height: 14px;
    padding-bottom: 5px;
}
.banner-box-inner-two:last-child {
    flex-shrink: 0;
}
  /***********************
 * about one
***********************/
.about-section-one {
    padding: 130px 0;
}
.about-upper {
    margin-bottom: 50px;
}
.about-upper .heading-box {
    margin-bottom: 50px;
    padding-right: 50px;
}
.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 35px;
}
.about-upper p.lead{
    margin-bottom: 40px;
}
.about-btn .btn-link, .about-btn .btn-link:hover{
    color: var(--hirecon-black);
    padding: 0;
    background-image: linear-gradient(transparent calc(100% - 1px), #000000 1px);
    padding-bottom: 5px;
}
.about-btn .btn-link i{
    font-size: 14px;
}
.about-info-one {
    position: relative;
    width: 200px;
    height: 200px;
    margin-right: auto;
    border-radius: 100%;
    border: 1px solid rgba(28, 86, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-info-one p {
    font-size: 120px;
    font-weight: 600;
    line-height: 153.6px;
    letter-spacing: -0.03em;
    font-family: var(--hirecon-heading-font);
    color: var(--hirecon-black);
}
.about-info-one span{
    position: absolute;
}
.about-info-one span:nth-child(2) {
    font-weight: 500;
    line-height: 19.36px;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
    top: 30px;
    right: 42px;
}
.about-info-one span:last-child {
    color: var(--hirecon-light);
    line-height: 18px;
    background-color: var(--hirecon-dark-green);
    font-weight: 500;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 5px;
    bottom: 55px;
    right: -16px;
}
.about-box-one {
    position: relative;
    overflow: hidden;
}
.about-box-image-one img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.about-box-details-one {
    position: absolute;
    width: calc(100% - 20px);
    left: 10px;
    bottom: 10px;
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
    text-align: center;
    padding: 30px;
    transition: all 0.5s;
}
.about-box-icon-one {
    font-size: 50px;
    margin-bottom: 20px;
}
.about-box-title-one h4 {
    color: var(--hirecon-light);
    transition: all 0.5s;
}
.about-box-info-one {
    padding-top: 10px;
    transition: all 0.5s;
    opacity: 0;
}
.about-box-info-one p{
    color: var(--hirecon-grey);
}
.about-box-info-one .btn-link{
    justify-content: center;
    color: var(--hirecon-black);
    background-image: linear-gradient(transparent calc(100% - 1px), #000000 1px);
    padding-bottom: 5px;
}
.about-box-one:hover .about-box-details-one{
    background-color: var(--hirecon-light);
    color: var(--hirecon-dark-green);
}
.about-box-one:hover h4{
    color: var(--hirecon-black);
}
.about-box-one:hover .about-box-info-one {
    margin-bottom: 0 !important;
    opacity: 1;
}
 /***********************
 * features one
***********************/
.features-section-one {
    position: relative;
    z-index: 1;
}
.features-info-one h2.heading-title {
    margin-bottom: 40px;
}
.features-image-one {
    margin-left: -304px;
    position: relative;
}
ul.features-counter-one {
    margin-top: 40px;
}
ul.features-counter-one li h3 {
    font-size: 55px;
    line-height: 70px;
    letter-spacing: -0.03em;
    flex-shrink: 0;
    margin-bottom: 0;
    min-width: 110px;
}
ul.features-counter-one li p{
    margin-bottom: 0;
}
ul.features-counter-one li {
    display: flex;
    align-items: center;
    column-gap: 65px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(22, 56, 57, 0.1);
    margin-bottom: 38px;
}
.features-image-cta-one {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
    display: flex;
    align-items: center;
    column-gap: 40px;
    padding: 35px 40px;
    width: 65%;
    overflow: hidden;
}
.features-image-cta-one  h3{
    color: var(--hirecon-light);
    margin-bottom: 0;
    font-size: 27px;
}
.client-image {
    flex-shrink: 0;
}
.client-image img:last-child {
    margin-left: -20px;
}
.features-image-cta-one .link {
    font-size: 30px;
    transform: rotate(-45deg);
    color: var(--hirecon-light);
}
.features-image-cta-one::after{
    content: "";
    position: absolute;
    right: -6px;
    top: -70px;
    height: 102px;
    width: 102px;
    border-radius: 100%;
    border: 1px solid var(--hirecon-light);
    opacity: 0.1;
}
.features-image-cta-one::before{
    content: "";
    position: absolute;
    right: 14px;
    top: 75px;
    height: 102px;
    width: 102px;
    border-radius: 100%;
    border: 1px solid var(--hirecon-light);
    opacity: 0.1;
}
ul.features-counter-one li h3 sup:last-child {
    margin-left: -10px;
    font-size: 30px;
    top: -30px;
}
 /***********************
 * service one
***********************/
.service-section-one {
    padding: 200px 0 125px 0;
    background-color: var(--hirecon-secondary);
    margin-top: -75px;
    position: relative;
    overflow: hidden;
}
.service-section-one::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 215px;
    background-image: url(../images/shape/service-shape.png);
    background-position: bottom;
}
.service-section-one::before{
    content: "HR Services";
    position: absolute;
    bottom: -80px;
    left: -320px;
    font-family: var(--hirecon-heading-font);
    font-size: 300px;
    font-weight: 600;
    line-height: 384px;
    letter-spacing: -0.03em;
    color: rgba(18, 18, 18, 0.05);
}
.service-section-one .heading-box {
    width: 50%;
}
.service-section-one .heading-outer {
    align-items: center;
    margin-bottom: 75px;
}
.service-tag h5{
    font-size: 24px;
    position: relative;
    z-index: 1;
}
.service-tag {
    position: relative;
}
.service-tag::after {
    content: "10+";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 300px;
    font-weight: 700;
    line-height: 384px;
    letter-spacing: -0.03em;
    transform: translate(-50%, -50%);
    font-family: var(--hirecon-heading-font);
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.03) 0%, rgba(18, 18, 18, 0) 100%);
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text; 
}
.service-box-one {
    background-color: var(--hirecon-light);
    padding: 30px 40px;
    position: relative;
    z-index: 1;
    height: 100%;
}
.service-box-one:hover a.link i{
    transform: rotate(45deg);
    transition: all 0.2s;
}
.service-box-one::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--hirecon-dark-green);
    transition: all 0.8s;
    z-index: -1;
}
.service-box-one:hover::after{
    width: 100%;
}
.service-icon-one {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--hirecon-dark-green);
    transition: all 0.5s;
}
.service-icon-one i{
    font-size: 44px;
}
.service-title-one h4 {
    font-size: 20px;
    margin-bottom: 5px;
    transition: all 0.5s;
}
.service-title-one h4 a{
    color: var(--hirecon-black);
}
.service-details-one p{
    margin-bottom: 10px;
    transition: all 0.5s;
}
.service-box-one .link {
    color: var(--hirecon-light);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background-color: var(--hirecon-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
}
.service-box-one:hover .link{
    background-color: var(--hirecon-light);
    color: var(--hirecon-dark-green);
}
.service-lower-image-one {
    position: absolute;
    bottom: 0;
    right: 0;
}
.service-box-one:hover .service-icon-one, .service-box-one:hover .service-title-one h4 a, .service-box-one:hover .service-details-one p {
    color: var(--hirecon-light);
}
 /***********************
 * work one
***********************/
.work-section-one {
    padding: 130px 0;
}
.work-section-one .heading-box{
    margin-bottom: 94px;
}
.work-box-one {
    text-align: center;
}
.work-image-one {
    position: relative;
    width: fit-content;
    margin: auto;
}
.work-icon-one {
    position: absolute;
    top: -23px;
    left: 4px;
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
    font-size: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--hirecon-light);
    border-radius: 100%;
    height: 65px;
    width: 65px;
    z-index: 1;
}
.work-main-icon-one {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 0px;
    width: 0px;
    background-color: var(--hirecon-light);
    color: var(--hirecon-dark-green);
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: all 0.5s;
    overflow: hidden;
    z-index: 1;
}
span.devider {
    display: block;
    height: 1px;
    margin-top: 70px;
    margin-bottom: 60px;
    background-color: rgba(28, 86, 64, 0.1);
    position: relative;
}
span.devider::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -50%);
    background-color: var(--hirecon-dark-green);
    border-radius: 100%;
}
span.devider::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 40px;
    width: 40px;
    transform: translate(-50%, -50%);
    background-color: var(--hirecon-light);
    border-radius: 100%;
    border: 1px solid rgba(28, 86, 64, 0.1);
}
.work-box-title h4{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}
p.work-details {
    padding: 0 65px;
}
.work-image-one::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 0;
    width: 0;
    transition: all 0.5s;
    background-color: rgba(22, 56, 56, 0.85);
    border-radius: 100%;
}
.work-box-one:hover .work-image-one::after{
    height: 100%;
    width: 100%;
}
.work-box-one:hover .work-main-icon-one{
    height: 100px;
    width: 100px;
}
.work-box-one::after {
    content: "";
    position: absolute;
    top: 310px;
    left: 0;
    height: 1px;
    width: 0;
    background-color: var(--hirecon-dark-green);
    transition: all 0.8s;
    z-index: -1;
}
.work-box-one.work-process-box-1:hover::after{
    width: 17%;
}
.work-box-one.work-process-box-2:hover::after{
    width: 50%;
}
.work-box-one.work-process-box-3:hover::after{
    width: 84%;
}
 /***********************
 * why-choose one
***********************/
.why-choose-section-one {
    padding: 30px 0;
    background-color: var(--hirecon-dark-green);
    position: relative;
    max-width: 1780px;
    margin: auto;
}
.why-choose-image-one img {
    position: absolute;
    left: 24px;
    bottom: 0;
    z-index: 1;
}
.why-choose-shape img {
    position: absolute;
    bottom: 0;
    left: 0;
}
.why-choose-section-one .sub-title, .why-choose-section-one .heading-title, .why-choose-section-one p.lead{
    color: var(--hirecon-light);
}
.why-choose-section-one .heading-title{
    margin-bottom: 40px;
}
.why-choose-section-one p.lead{
    margin-bottom: 40px;
}
.why-choose-section-one .btn-light{
    display: inline-flex;
}
.why-choose-info-one {
    padding-left: 80px;
    padding-right: 100px;
    position: relative;
}
.why-choose-testimonial-one {
    margin-right: 18px;
    padding: 50px;
    background-color: #184545;
    border-radius: 10px;
    padding-bottom: 103px;
}
.why-choose-testimonial-box-one h5{
    color: var(--hirecon-light);
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 30px;
}
.why-choose-testimonial-box-one h4{
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--hirecon-light);
}
.why-choose-testimonial-box-one p{
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}
span.testimonial-devider-one {
    height: 1px;
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}
.why-choose-testimonial-one button.slick-arrow {
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 50px;
    position: absolute;
    bottom: 25px;
}
.why-choose-testimonial-one button.slick-next.slick-arrow {
    left: 156px;
}
 /***********************
 * why-choose two
***********************/
.why-choose-section-two {
    padding: 130px 0;
}
.why-choose-upper-box-two {
    display: flex;
    justify-content: end;
}
.why-choose-experience-box {
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--hirecon-dark-green);
    border-radius: 100%;
    padding-left: 55px;
    margin-left: -40px;
}
.why-choose-box-two img {
    position: relative;
    border-radius: 100% !important;
}
.why-choose-experience-box h3{
    font-size: 65px;
    line-height: 83px;
    margin-bottom: 0;
    letter-spacing: -0.03em;
}
.why-choose-experience-box p{
    margin-bottom: 0;
    line-height: 20px;
}
.why-choose-item-two {
    padding: 0 15px;
    padding-top: 70px;
}
.why-choose-item-two::after{
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    height: 1px;
    width: 100% ;
    background-color: rgba(22, 56, 56, 0.1);
}
.why-choose-item-two::before{
    content: "";
    position: absolute;
    top: 20px;
    left: 0px;
    height: 3px;
    width: 0;
    background-color: var(--hirecon-dark-green);
    transition: all 0.8s;
}
.why-choose-item-two.why-choose-about-1:hover::before{
    width:25% ;
}
.why-choose-item-two.why-choose-about-2:hover::before{
    width:50% ;
}
.why-choose-item-two.why-choose-about-3:hover::before{
    width:75% ;
}
.why-choose-item-two.why-choose-about-4:hover::before{
    width:100% ;
}
.why-choose-item-two .why-choose-icon-two {
    font-size: 50px;
    margin-bottom: 30px;
    color: var(--hirecon-dark-green);
}
.why-choose-item-two h4 {
    line-height: 28px;
    margin-bottom: 10px;
}
.why-choose-item-two p{
    margin-bottom: 0;
}
 /***********************
 * service two
***********************/
.service-section-two {
    padding: 130px 0;
    background-color: var(--hirecon-secondary);
    max-width: 1780px;
    margin: auto;
    overflow: hidden;
}
.service-section-two .heading-box {
    margin-bottom: 50px;
}
.accordion-header {
    font-size: 24px;
    line-height: 30px;
}
.accordion-button {
    padding: 25px 40px;
    column-gap: 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}
.accordion-body {
    padding: 0px 80px 30px 100px;
}
.accordion-body p{
    margin-bottom: 0;
}
.accordion-item:first-of-type>.accordion-header .accordion-button{
    border-radius: 0;
}
.accordion-button:not(.collapsed){
    color: var(--hirecon-black);
    background-color: var(--hirecon-light);
    box-shadow: none;
    padding-bottom: 10px;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button i {
    font-size: 40px;
    color: var(--hirecon-dark-green);
}
.service-image-two {
    height: 100%;
    width: 100%;
    position: relative;
    /* margin-left: 64px; */
}
.service-left-two{
    padding-left: 80px;
}
.service-shape-1 img {
    position: absolute;
    top: 65px;
    left: 0;
    z-index: 2;
}
.service-shape-2 img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.service-shape-3 img {
    position: absolute;
    bottom: 0;
    right: 100px;
    z-index: 2;
}
.brand-logo img {
    position: absolute;
    top: 430px;
    left: 48px;
    padding: 30px 50px;
    background-color: var(--hirecon-dark-green);
    z-index: 2;
}
.service-image-two::before{
    content: "";
    position: absolute;
    top: 63%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background-color: var(--hirecon-light);
    height: 450px;
    width: 450px;
}
.service-image-two::after{
    content: "";
    position: absolute;
    top: 66%;
    left: 48%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    border: 1px solid rgba(28, 86, 64, 0.2);
    height: 450px;
    width: 450px;
    z-index: 1;
}
 /***********************
 * service three
***********************/
.service-section-three {
    position: relative;
}
.service-section-three::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 570px;
    background-color: var(--hirecon-secondary);
    z-index: -1;
}
.service-slider-three {
    margin-bottom: 70px;
}
.service-three-box{
    margin-bottom: 70px;
}
.service-three-box .service-item-three{
    padding-left: 0;
}
.service-item-image-three img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}
.service-slider-three .slick-track {
    margin-left: -240px;
}
.service-box-three {
    position: relative;
    overflow: hidden;
}
.service-item-three {
    padding-left: 30px;
}
.service-box-three::before{
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 100%;
     background: linear-gradient(180deg, rgba(22, 56, 56, 0.1) 0%, #163838 85%);
}
.service-details-three {
    position: absolute;
    bottom: -25px;
    left: 50px;
    width: calc(100% - 100px);
    color: var(--hirecon-light);
    transition: all 0.5s;
}
.service-box-three:hover .service-details-three{
    bottom: 35px;
}
.service-icon-three {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--hirecon-light);
}
.service-details-three h4{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}
.service-details-three h4 a{
    color: var(--hirecon-light);
}
.service-details-three p{
    margin-bottom: 20px;
}
.service-details-three .btn-link {
    padding: 0;
}
.service-counter-three {
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(22, 56, 56, 0.1);
}
.counter-three {
    display: flex;
    align-items: center;
    column-gap: 60px;
}
.counter-three p {
    max-width: 300px;
    margin-bottom: 0;
}
.counter-three h3{
    font-size: 55px;
    line-height: 70px;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    min-width: 140px;
    text-align: end;
}
.service-shape-box-four {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    height: 100%;
}
.service-shape-four-1, .service-shape-four-2, .service-shape-four-3, .service-shape-four-4,  .service-shape-four-5,  .service-shape-four-6{
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100%;
    top: 0%;
    left: 50%;
    transform: translate( -50%, -50%);
    z-index: -1;
}
@keyframes service-shape-anim {
    0% {
        width: 425px;
        height: 425px;
        opacity: 0.01;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;

    }
    100% {
        opacity: 0.1;
        width: 1250px;
        height: 1250px;
    }
}
.service-shape-four-1 {
    animation: 12s linear  infinite service-shape-anim;
}
.service-shape-four-2 {
    animation: 12s linear 2s infinite service-shape-anim;
}
.service-shape-four-3 {
    animation: 12s linear 4s infinite service-shape-anim;
}
.service-shape-four-4 {
    animation: 12s linear 6s infinite service-shape-anim;
}
.service-shape-four-5 {
    animation: 12s linear 8s infinite service-shape-anim;
}
.service-shape-four-6 {
    animation: 12s linear 10s infinite service-shape-anim;
}
 /***********************
 * faq one
***********************/
.faq-left-one {
    padding-right: 50px;
}
.faq-section-one .heading-title{
    margin-bottom: 50px;
}
.faq-section-one  .accordion-button:not(.collapsed){
    color: var(--hirecon-black);
    background-color: var(--hirecon-light);
    box-shadow: none;
    padding-bottom: 16px;
}
.faq-section-one .accordion-button:focus{
    box-shadow: none;
}
.accordion-item:first-of-type>.accordion-header .accordion-button, .accordion-item:first-of-type, .accordion-item:last-of-type, .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
    border-radius: 0;
}
.faq-section-one .accordion {
    background-color: var(--hirecon-secondary);
    padding: 10px;
}
.faq-section-one .accordion-item {
    margin-bottom: 10px;
    border: none;
}
.faq-section-one .accordion-item:last-child{
    margin-bottom: 0;
}
.faq-section-one .accordion-header button{
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    padding: 14px 20px;
}
.faq-section-one .accordion-body {
    padding: 0 20px 20px 20px;
}
.faq-section-one .accordion-body p{
    color: var(--hirecon-grey);
    margin-bottom: 0;
}
.faq-section-one .accordion-button::after{
    height: 35px;
    width: 35px;
    border: 1px solid rgba(22, 56, 56, 0.1);
    background-position: center;
    background-image: url(../images/plus-icon.png);
    background-size: auto;
}
.faq-section-one .accordion-button:not(.collapsed)::after{
    background-color: var(--hirecon-dark-green);
    background-image: url(../images/mines-icon.png);
}
 /***********************
 * service four
***********************/
.service-section-four {
    padding: 100px 0;
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
    max-width: 1780px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.service-section-four .heading-title{
    color: var(--hirecon-light);
    margin-bottom: 70px;
}
.service-left-four {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-right: 40px;
}
.service-right-four {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-left: 40px;
}
.service-box-four {
    padding: 30px 40px;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: #184545;
}
.service-title-four {
    display: flex;
    column-gap: 20px;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.service-title-four i {
    font-size: 50px;
}
.service-title-four h4 {
    font-size: 24px;
    line-height: 30px;
}
.service-title-four h4 a{
    color: var(--hirecon-light);
}
.service-box-four p{
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}
.service-image-four {
    position: relative;
}
.service-image-four img {
    position: absolute;
    max-width: 460px !important;
    height: 577px !important;
    left: 50%;
    transform: translateX(-50%);
}
 /***********************
 * team one
***********************/
.team-section-one {
    padding: 130px 0;
    overflow: hidden;
}
.team-section-one .heading-title{
    margin-bottom: 0;
}
.team-one {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(22, 56, 56, 0.1);
}
.team-box-one {
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
    position: relative;
    border-top: 1px solid rgba(22, 56, 56, 0.1);
    cursor: pointer;
}
.team-box-one::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: var(--hirecon-dark-green);
    transition: all 0.5s;
}
.team-box-one:hover::after{
    width: 100%;
}
.team-box-one span {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    border: 1px solid rgba(22, 56, 56, 0.1);
    transition: all 0.5s;
}
.team-box-one:hover span{
    color: var(--hirecon-light);
    background-color: var(--hirecon-dark-green);
}
.team-box-one .btn-link {
    color: var(--hirecon-grey);
    padding: 0;
    font-size: 20px;
}
.team-box-one .btn-link i{
    transform: rotate(-45deg);
    display: inline-block;
}
.team-title-one h4 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 5px;
}
.team-title-one h4 a{
    color: var(--hirecon-black);
}
.team-title-one p{
    line-height: 20px;
    margin-bottom: 0;
}
.team-image-one {
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: transform 0.4s ease-out;
    height: 230px;
    width: 230px;
    top: 50%;
    right: 0;
}
.team-box-one:hover .team-image-one{
    opacity: 1;
    transition: transform 0.4s ease-out;
}
 /***********************
 * case-study one
***********************/
.case-study-section-one {
    max-width: 1780px;
    margin: auto;
    overflow: hidden;
}
.case-study-one {
    display: flex;
    margin-bottom: 30px;
    column-gap: 30px;
}
.case-study-box-one {
    width: 20%;
    transition: all 0.5s;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}
.case-study-box-one:hover{
    width: 40%;
}
.case-study-image-one {
    height: 530px;
    width: 100%;
}
.case-study-image-one img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
.case-study-details-one {
    position: absolute;
    bottom: 30px;
    left: 690px;
    padding: 30px 40px;
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
    width: calc(100% - 60px) !important;
    transition: all 0.8s 0.5s ;
}
.case-study-box-one:hover .case-study-details-one{
    left: 30px;
}
.case-study-box-one:not(:hover) .case-study-details-one{
    transition: none;
}
.case-study-details-one h4,.case-study-details-one h4 a{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    color: var(--hirecon-light);
}
.case-study-details-one span{
    opacity: 65%;
    margin-bottom: 10px;
    line-height: 20px;
}
.case-study-details-one .btn-link{
    padding: 0;
    font-size: 22px;
    transform: rotate(-45deg);
    background-image: none;
}
 /***********************
 * pricing one
***********************/
.pricing-section-one {
    padding: 130px 0;
}
.pricing-section-one .heading-title {
    margin-bottom: 20px;
}
.heading-details {
    max-width: 530px;
    margin: auto;
    margin-bottom: 40px;
}
.sweech-box {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-bottom: 50px;
    align-items: center;
}
.check-toggle {
    position: relative;
    line-height: 24px;
    padding: 8px 15px 10px 28px;
}
.check-toggle span {
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 20px;
    border-radius: 10px;
    background: var(--hirecon-dark-green);
    border: 1px solid rgba(0, 0, 0, 0.075);
    cursor: pointer;
}
.check-toggle span::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 11px;
    background: var(--hirecon-light);
    border: 1px solid rgba(0, 0, 0, 0.075);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    cursor: pointer;
}
.check-toggle.active span:before {
    left: 25px;
}
h5.monthly , h5.yearly{
     color: var(--hirecon-grey);
}
h5.monthly.active, h5.yearly.active{
    color: var(--hirecon-black);
}
h5.monthly, h5.yearly{
    cursor: pointer;
}
.pricin-box-one {
    border: 1px solid rgba(28, 86, 64, 0.1);
    box-shadow: 10px 4px 60px 0px rgba(201, 201, 201, 0.25);
    padding: 40px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pricin-box-icon-one {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--hirecon-dark-green);
}
.pricin-box-title-one h4 {
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 24px;
}
.pricin-box-details-one {
    margin-bottom: 20px;
    line-height: 20px;
}
.pricin-box-one h2 {
    font-size: 85px;
    line-height: 108.8px;
    margin-bottom: 30px;
}
.pricin-box-one h2 span{
    font-size: 20px;
    line-height: 20px;
    color: var(--hirecon-grey);
}
.pricin-box-one h2 span:first-child{
    position: relative;
}
.pricin-box-one h2 span:last-child{
    margin-left: -20px;
}
.pricin-box-devider-one {
    display: block;
    height: 1px;
    background-color: rgba(28, 86, 64, 0.1);
    margin-bottom: 40px;
}
ul.pricing-box-list-one {
    margin-bottom: 40px;
    height: 100%;
}
ul.pricing-box-list-one li{
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 23px;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
ul.pricing-box-list-one li i{
    color: var(--hirecon-black);
}
.pricin-box-one .btn-primary {
    justify-content: center;
    border: 1px solid var(--hirecon-dark-green);
    flex-shrink: 0;
}
.pricin-box-one.popular {
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
}
.pricing-tag {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    padding: 5px 10px;
    background-color: var(--hirecon-dark-secondary);
    text-transform: uppercase;
}
.pricin-box-one.popular  .pricin-box-icon-one,
.pricin-box-one.popular  .pricin-box-title-one h4,
.pricin-box-one.popular h2,
.pricin-box-one.popular h2 span,
.pricin-box-one.popular ul.pricing-box-list-one li i{
    color: var(--hirecon-light);
}
.pricin-box-one.popular  .pricin-box-devider-one{
    background-color: rgba(255, 255, 255, 0.1);
}
.pricin-box-one.popular .btn-primary{
    border: 1px solid var(--hirecon-light);
}
 /***********************
 * cta one
***********************/
.cta-section-one{
   padding: 100px 0;
}
.cta-section-one::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270deg, #163838 35%, rgba(22, 56, 56, 0.4) 100%);
    background: -webkit-linear-gradient(170deg, #163838 35%, rgba(22, 56, 56, 0.4) 100%);
}
.cta-box-one {
    position: relative;
    z-index: 1;
    color:var(--hirecon-light);
    padding-left: 70px;
}
.cta-box-one .heading-title {
    margin-bottom: 30px;
    color: var(--hirecon-light);
}
.cta-box-one .heading-details {
   margin-bottom: 30px;
}
.cta-box-lower {
    display: flex;
    justify-content: space-between;
}
ul.cta-list-one {
    margin-bottom: 40px;
}
ul.cta-list-one li{
    line-height: 21px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: var(--hirecon-light);
}
.cta-box-lower .btn-light{
    display: inline-flex;
}
.cta-icon-one {
    width: 170px;
    height: 170px;
    background-color: #184545;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    text-align: center;
}
.cta-icon-one i {
    font-size: 65px;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--hirecon-light);
}
.cta-icon-one p{
    font-family: var(--hirecon-heading-font);
    font-weight: 600;
    line-height: 20px;
    color: var(--hirecon-light);
}
 /***********************
 * cta two
***********************/
.cta-section-two {
    padding: 130px 0;
    color: var(--hirecon-light);
}
.cta-section-two::before{
    content: "" !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(22, 56, 56, 0.2) 0%, #163838 100%);
}
.cta-section-two .sub-title, .cta-section-two h2 {
    color: var(--hirecon-light);
}
.cta-section-two h2{
    margin-bottom: 30px;
}
.cta-section-two p{
    font-size: 18px;
    margin-bottom: 30px;
}
.cta-list-two {
    width: fit-content;
    padding: 40px 45px;
    background-color: var(--hirecon-light);
    margin-left: auto;
    color: var(--hirecon-dark-green);
    position: relative;
    bottom: -175px;
}
.cta-list-two ul li{
    display: flex;
    align-items: center;
    column-gap: 10px;
    line-height: 20px;
}
.cta-list-two ul li+li{
    margin-top: 20px;
}
 /***********************
 * testimonial one
***********************/
.testimonial-section-one {
    padding: 130px 0;
    padding-bottom: 196px;
}
.testimonial-section-one .heading-box {
    margin-bottom: 50px;
}
.testimonial-slider-one {
    background-color: var(--hirecon-secondary);
}
.testimonial-box-one {
    padding: 40px 70px;
}
.retting-icon-one {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--hirecon-dark-green);
}
.testimonial-title-one h4{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(22, 56, 56, 0.1);
}
.testimonial-details-one p{
    font-size: 24px;
    line-height: 40px;
    color: var(--hirecon-black);
    margin-bottom: 40px;
}
.testimonial-aother-one {
    display: flex;
    align-items: center;
    column-gap: 25px;
}
.aother-details-one h5{
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 7px;
}
.aother-details-one p{
    margin-bottom: 0;
    font-size: 14px;
    line-height: 18px;
}
.testimonial-right-one {
    height: 100%;
    background-image: url(../images/testimonial/testimonial-image.jpg);
    background-size: cover;
}
.testimonial-right-box-one {
    box-shadow: 10px 4px 60px 0px #A1A1A140;
    background-color: var(--hirecon-light);
    max-width: 300px;
    padding: 35px 40px;
    border-radius: 10px;
    margin: auto 20px 20px auto;
    position: relative;
    top: 88px;
}
.testimonial-right-box-one h6 {
    text-decoration: underline;
    line-height: 23px;
    margin-bottom: 16px;
}
.testimonial-image-one img+img{
    margin-left: -15px;
}
.testimonial-right-box-one .testimonial-devider-one{
    background-color: rgba(18, 18, 18, 0.1);
    margin-bottom: 32px;
}
.testimonial-right-box-one h2 {
    letter-spacing: -0.02em;
    margin-bottom: 0;
}
.testimonial-right-box-one p{
    font-size: 18px;
    margin-bottom: 0;
}
.testimonial-slider-one ul.slick-dots {
    position: absolute;
    bottom: -40px;
    left: 0;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.testimonial-slider-one ul.slick-dots li{
    line-height: 0;
}
.testimonial-slider-one ul.slick-dots li button{
    border:1px solid var(--hirecon-dark-green) ;
    background-color: transparent;
    font-size: 0;
    height: 7px;
    width: 7px;
    border-radius: 100%;
}
.testimonial-slider-one ul.slick-dots li.slick-active button{
    background-color: var(--hirecon-dark-green);
}
 /***********************
 * testimonial one
***********************/
.testimonial-section-two {
    padding-bottom: 130px;
    overflow: hidden;
    position: relative;
}
.testimonial-section-two .heading-title {
    margin-bottom: 70px;
}
.testimonial-box-two {
    display: flex;
    column-gap: 87px;
    align-items: center;
    max-width: 1015px;
    opacity: 0.6;
}
.slick-active .testimonial-box-two {
    opacity: 1;
}
.testimonial-author-two {
    padding: 30px 50px;
    flex-shrink: 0;
    position: relative;
    background-image: url(../images/background/testimonial-two.png);
    background-size: cover;
    background-position: center;
    width: 283px;
}
.testimonial-author-two img {
    margin-bottom: 30px;
}
.testimonial-author-title-two h5{
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 5px;
}
.testimonial-author-title-two p{
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}
.testimonial-details-two .retting-icon-one {
    margin-bottom: 10px;
}
.testimonial-details-two h4{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
}
.testimonial-details-two .lead{
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
    color: var(--hirecon-black);
    font-family: var(--hirecon-heading-font);
    margin-bottom: 0;
}
.testimonial-slider-two {
    width: 1640px;
    margin-bottom: 70px;
    position: unset;
}
.testimonial-item-two {
    padding-right: 150px;
}
.testimonial-slider-two ul.slick-dots {
    position: absolute;
    bottom: 0;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    column-gap: 10px;
}
.testimonial-slider-two ul.slick-dots li{
    line-height: 0;
}
.testimonial-slider-two ul.slick-dots li button{
    border: 1px solid var(--hirecon-dark-green);
    background-color: var(--hirecon-light);
    font-size: 0;
    border-radius: 100%;
    height: 10px;
    width: 10px;
}
.testimonial-slider-two ul.slick-dots li.slick-active button{
    background-color: var(--hirecon-dark-green);
}
 /***********************
 * blog one
***********************/
.blog-section-one {
    margin-bottom: -380px;
}
 .sub-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--hirecon-dark-green);
    margin-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.heading-outer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 70px;
}
.blog-section-one .heading-outer h2{
    margin-bottom: 0;
}
.blog-image-one {
    position: relative;
}
.blog-category-one {
   position: absolute;
   top: 10px;
   right: 10px;
   font-size: 14px;
   line-height: 18px;
   font-weight: 600;
   padding: 7px 14px;
   background-color: var(--hirecon-dark-green);
   text-transform: uppercase;
   color: var(--hirecon-light);
}
.blog-image-one img{
    width: 100%;
    height: 476px !important;
    object-fit: cover;
}
.blog-meta-one {
    padding-bottom: 20px;
    margin: 20px 0;
    display: block;
    font-weight: 500;
    line-height: 20px;
    color: var(--hirecon-grey);
    border-bottom: 1px solid rgba(22, 56, 56, 0.1);
    position: relative;
}
.blog-widget-box-one .blog-list-meta::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background-color: var(--hirecon-dark-green);
    transition: all 0.5s;
}
.blog-widget-box-one .blog-list-meta{
    position: relative;
}
.blog-title-one a{
    color: var(--hirecon-black);
}
.blog-widget-box-one:hover .blog-list-meta::after{
    width: 100%;
    border-bottom: 1px solid rgba(22, 56, 56, 0.1);
}
/***********************
 * blog two
***********************/
.blog-section-two {
    padding: 130px 0;
}
.blog-section-two .heading-box{
    margin-bottom: 70px;
}
.blog-meta-two {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
}
.blog-tag-two {
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
    padding: 7px 14px;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}
.blog-date-two {
    line-height: 20px;
    color: var(--hirecon-grey);
}
.blog-box-two h4 a{
    color: var(--hirecon-black);
    background-image: linear-gradient(transparent calc(100% - 1px), #20282d 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215,.61,.355,1) underline forwards;
}
.blog-box-two h4 a:hover{
    animation: 1s cubic-bezier(.215,.61,.355,1) underline-hover forwards;
}
.blog-box-two h4{
    font-size: 24px;
    margin-bottom: 20px;
}
.blog-box-two .btn-link{
    color: var(--hirecon-grey);
    padding: 0;
    background-image: linear-gradient(transparent calc(100% - 1px), #000000 1px);
    padding-bottom: 5px;
}
@keyframes underline {
    0% {
        background-size: 100% 100%;
        background-position-x: 100%
    }

    100% {
        background-size: 0 100%;
        background-position-x: 100%
    }
}
@keyframes underline-hover {
    0% {
        background-position-x: 0;
        background-size: 0 100%
    }
    100% {
        background-position-x: 0;
        background-size: 100% 100%
    }
}
/***********************
 * brand one
***********************/
.brand-section-one {
    padding: 130px 0;
    background-color: var(--hirecon-secondary);
    padding-top: 506px;
}
.brand-section-one .heading-box {
    margin-bottom: 70px;
}
.brand-inner-one {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.brand-item-one {
    padding: 60px 0;
    max-width: 323px;
    width: 100%;
    text-align: center;
    position: relative;
}
.brand-item-one::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid rgba(22, 56, 56, 0.1);
    border-left: 0;
    border-bottom: 0;
}
.brand-item-one:nth-child(1):after,
.brand-item-one:nth-child(5):after{
    border-left: 1px solid rgba(22, 56, 56, 0.1);
}
.brand-item-one:nth-child(5):after,
.brand-item-one:nth-child(6):after,
.brand-item-one:nth-child(7):after,
.brand-item-one:nth-child(8):after{
    border-bottom: 1px solid rgba(22, 56, 56, 0.1);
}
.brand-item-one img {
    filter: opacity(0.3);
    transition: all 0.5s;
}
.brand-item-one:hover img{
    filter: opacity(1);
}
.brand-item-one:hover::after{
    border: 1px solid var(--hirecon-dark-green) !important;
}
/***********************
 * brand two
***********************/
.brand-slider-two {
    margin-bottom: -10px;
    border-top: 1px solid rgba(22, 56, 56, 0.1);
}
.brand-box-two {
    padding: 80px 0;
    text-align: -webkit-center;
    border-left: 1px solid rgba(22, 56, 56, 0.1);
}
.brand-box-two img{
    filter: opacity(0.3);
    transition: all 0.5s;
}
.brand-box-two:hover img{
    filter: opacity(1);
}
/***********************
 * footer one
***********************/
.footer-one {
 background-color: var(--hirecon-dark-green);
}
.footer-widget {
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-widget h3 {
   color: var(--hirecon-light);
}
.footer-cta-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 50px;
}
.footer-cta-widget h3{
    margin-bottom: 0;
}
.footer-cta-widget .btn-primary{
    background-color:#184545;
    flex-shrink: 0;
}
.footer-logo {
    margin-bottom: 30px;
}
.footer-form-widget p {
    color: var(--hirecon-light);
    margin-bottom: 25px;
}
.footer-subscribe-form {
    position: relative;
}
.footer-subscribe-form .form-control {
    line-height: 20px;
    font-size: 16px;
    background-color: #184545;
    color: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 19px;
}
.footer-subscribe-form .form-control::placeholder {
    color: #fff;
}
.footer-subscribe-form button {
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
}
.footer-link-widget ul li{
    position: relative;
}
.footer-link-widget ul li a {
    color: rgba(255, 255, 255, 0.65);
    line-height: 35px;
    display: inline-block;
    transition: all 0.5s;
    position: relative;
}
.footer-link-widget ul li a:hover{
    padding-left: 15px;
    color: var(--hirecon-light);
}
.footer-link-widget ul li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 1px;
    background-color: var(--hirecon-light);
    transition: all 0.5s;
}
.footer-link-widget ul li a:hover::after{
    width: 100%;
}
.footer-link-widget h4, .footer-about-widget h4 {
    color: #fff;
    margin-bottom: 24px;
}
.footer-link-widget ul li i {
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    color: var(--hirecon-light);
}
.footer-link-widget ul li:hover i{
    opacity: 1;
    transition: all 0.5s 0.2s;
}
.footer-link-widget.fa-first {
    width: 70%;
    margin-left: auto;
}
.footer-about-inner {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.footer-about-inner i {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--hirecon-light);
    font-size: 18px;
    line-height: 18px;
    flex-shrink: 0;
}
.footer-about-inner span {
    font-size: 12px;
    line-height: 15px;
    color: var(--hirecon-light);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 7px;
}
.footer-about-inner p,.footer-about-inner a{
    color: var(--hirecon-light);
    margin-bottom: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}
.footer-about-inner{
    margin-bottom: 25px;
}
.social-media-widget {
    display: flex;
    column-gap: 80px;
    align-items: center;
    justify-content: end;
}
.footer-lower {
    padding: 30px 0;
}
.footer-lower p{
    margin-bottom: 0;
}
.footer-copy-right-one p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 20px;
}
.footer-copy-right-one a{
    color: var(--hirecon-light);
}
.footer-copy-right-one a, .social-media-widget p,.social-media-widget a  {
  color: var(--hirecon-light);
}
.footer-form-widget .site-title a{
    font-size: 40px;
    color: var(--hirecon-light);
}
.footer-form-widget{
    color: var(--hirecon-light);
}
/***********************
 * page hero
***********************/
.inner-page-hero {
    padding: 170px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}
.inner-page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #163838 5%, rgba(22, 56, 56, 0.4) 100%);
}
.hero-heading-title h2 {
   color: var(--hirecon-light);
}
ul.bradcrumb {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    color: var(--hirecon-light);
    align-items: center;
}
ul.bradcrumb li {
    position: relative;
}
ul.bradcrumb li a, ul.bradcrumb li span {
    color: var(--hirecon-light);
    font-size: 18px;
}
ul.bradcrumb li::before {
    content: "/";
    position: absolute;
    top: 46%;
    right: -25px;
    color: var(--hirecon-light);
    transform: translateY(-47%);
    font-size: 20px;
}
ul.bradcrumb li:last-child:before{
    display: none;
}
.inner-page-hero ul.bradcrumb span{
    color: var(--hirecon-light);
    font-size: 18px;
}
/***********************
 * blog-details
***********************/
.blog-details-section {
    padding: 100px 0;
}
.blog-list-box {
    position: relative;
    margin-bottom: 50px;
}
.search-widget {
    position: relative;
}
.widget-box{
    padding: 30px;
    background-color: var(--hirecon-secondary);
    border-radius: 7px;
}
.search-widget input {
    width: 100%;
    border: none !important;
    padding: 10px;
    background: #fff;
    padding-right: 40px;
    border-radius: 7px;
    padding-left: 20px;
}
.search-widget button {
    position: absolute;
    right: 20px;
    border: none;
    background: none;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
.widget-box h4 {
    margin-bottom: 20px;
    color: var(--hirecon-black);
    border-radius: 7px;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.category-widget ul li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #86a5a74f;
    position: relative;
}
.category-widget ul li::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background-color: var(--hirecon-primary);
    transition: all 0.5s;
}
.category-widget ul li:hover a{
    color: var(--hirecon-primary);
    padding-left: 10px;
}
.category-widget ul li a {
    padding: 10px 0;
    width: 100%;
    color: var(--hirecon-black);
    font-size: 18px;
    font-weight: 500;
}
ul.blog-list-meta {
    display: flex;
    padding: 15px 0;
    column-gap: 50px;
    border-bottom: 1px solid #e1e1e1;
    margin: 0 !important;
    margin-bottom: 20px !important;
}
.blog-list-image {
    position: relative;
}
.blog-list-tag{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 7px 15px;
    background-color: var(--hirecon-dark-green);
    text-transform: uppercase;
    color: var(--hirecon-light);
    letter-spacing: 1px;
}
ul.blog-list-meta li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
ul.blog-list-meta li a {
    color: var(--hirecon-grey);
}
.blog-list-box h4 {
    margin-bottom: 20px;
}
.recent-blog-widget-item {
    display: flex;
    column-gap: 15px;
    align-items: center;
}
.recent-blog-widget-item-title span{
    display: block;
    font-size: 12px;
    line-height: 20px;
}
.recent-blog-widget-item-title a{
    color: var(--hirecon-black) !important;
    font-weight: 500;
    background-image: linear-gradient(transparent calc(100% - 1px), #20282d 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215,.61,.355,1) underline forwards;
}
.recent-blog-widget-item-title a:hover{
    animation: 1s cubic-bezier(.215,.61,.355,1) underline-hover forwards;
}
@keyframes underline {
    0% {
        background-size: 100% 100%;
        background-position-x: 100%
    }
    100% {
        background-size: 0 100%;
        background-position-x: 100%
    }
}
@keyframes underline-hover {
    0% {
        background-position-x: 0;
        background-size: 0 100%
    }
    100% {
        background-position-x: 0;
        background-size: 100% 100%
    }
}
.recent-blog-widget-item+.recent-blog-widget-item{
    margin-top: 20px;
}
.single-blog-tag li{
    list-style: none;
}
.tag-widget ul, ul.single-blog-tag {
    display: flex;
    align-items: center;
    column-gap: 13px;
    row-gap: 16px;
    flex-wrap: wrap;
    margin: 0 !important;
}
.tag-widget ul li a, ul.single-blog-tag li a{
    padding: 6px 15px;
    color: var(--hirecon-light);
    background-color: var(--hirecon-primary);
    display: inline-block;
    border-radius: 7px;
    transition: all 0.5s;
    border: 1px solid var(--hirecon-primary);
    line-height: 24px;
}
.tag-widget ul li a:hover, ul.single-blog-tag li a:hover{
    color: var(--hirecon-primary);
    background-color: var(--hirecon-light);
    border: 1px solid var(--hirecon-primary) ;
}
.single-blog-list-image {
    display: flex;
    column-gap: 30px;
}
ul.blog-list-point {
    display: flex;
    flex-wrap: wrap;
}
ul.blog-list-point li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: var(--hirecon-black);
    font-size: 18px;
    line-height: 35px;
    font-weight: 500;
    width: 50%;
}
ul.blog-list-point li i {
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: var(--hirecon-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}
.blog-list-lead {
    padding: 40px ;
    background-color: var(--hirecon-secondary);
    color: var(--bs-black);
    font-size: 24px;
    line-height: 35px;
    border-radius: 7px;
}
.blog-list-lead p{
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hirecon-black);
}
.blog-list-lead span{
    position: relative;
    padding-left: 60px;
}
.blog-list-lead span::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--hirecon-black);
}
.single-blog-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single-blog-social-media {
    display: flex;
    column-gap: 15px;
    align-items: center;
}
.single-blog-social-media a{
    color: var(--hirecon-black);
}
.single-blog-social-media i{
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hirecon-primary);
    color: var(--hirecon-light);
    border-radius: 100%;
    position: relative;
    border: 1px solid var(--hirecon-primary);
    transition: all 0.5s;
}
.single-blog-social-media i::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    transform: translate(-50%,-50%);
    border-radius: 100%;
    background-color: var(--hirecon-light);
    transition: all 0.5s;
}
.single-blog-social-media i::before{
    position: relative;
    z-index: 1;
}
.single-blog-social-media i:hover::after{
    width: 100%;
    height: 100%;
}
.single-blog-social-media i:hover{
    color: var(--hirecon-primary);
}
.single-blog-pagination-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.single-blog-pagination {
    width: 48%;
}
.single-blog-pagination.next {
    text-align: end;
    margin-left: auto;
}
.single-blog-pagination a {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    color: var(--hirecon-black);
}
.single-blog-pagination a i{
    height: 20px;
}
.single-blog-pagination a i::before{
    font-size: 50px;
    line-height: 20px;
    display: inline-block;
}
.single-blog-pagination a span {
    text-transform: uppercase;
    letter-spacing: 3px;
}
.single-blog-pagination h5 a{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.single-blog-pagination-inner {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding: 35px;
    background-color: var(--hirecon-secondary);
    border-radius: 7px;
}
.single-blog-pagination.next a{
    justify-content: end;
}
.single-blog-pagination:hover a{
  color: var(--hirecon-primary);
}
.comment-box-item {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--hirecon-secondary);
}
.comment-meta {
    display: flex;
    flex-direction: column;
}
.comment-meta p{
    font-weight: 700;
    color: var(--hirecon-black);
    margin-bottom: 0;
}
.comment-meta span{
    font-size: 12px;
    line-height: 20px;
}
.comment-box-details {
    display: flex;
    flex-direction: column;
    row-gap: 9px;
}
.comment-text p{
    margin-bottom: 0;
}
a.comment-reply {
    color: var(--hirecon-black);
    padding: 7px 0;
    display: flex;
    column-gap: 10px;
    align-items: center;
    font-weight: 700;
}
a.comment-reply i {
    line-height: 0;
}
.comment-box-item+.comment-box-item{
    margin-top: 30px;
}
.comment-box-item.reply {
    padding-left: 80px;
}
.comment-meta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.comment-respond{
    background-color:var(--hirecon-secondary);
    padding: 40px;
    border-radius: 7px;
}
.comment-form-group-one {
    display: flex;
    column-gap: 30px;
    margin-bottom: 30px;
    position: relative;
}
.comment-form-group-one-inner {
    width: 100%;
}
.comment-form-group-one .form-control {
    padding: 15px;
    padding-left: 20px;
    border-radius: 7px;
    border: none;
    line-height: 30px;
    background-color: var(--hirecon-light);
}
.blog-sidebar.stcky {
    position: sticky;
    top: 100px;
}
ul.share-social-media {
    display: flex;
    column-gap: 10px;
    transition: all 1.5s ;
    max-width: 0;
    overflow: hidden;
    margin: 0 !important; 
}
.single-blog-social-media:hover ul.share-social-media{
    max-width: 1000px;
}
.widget-box{
    position: relative;
    margin-bottom: 30px;
}
.cat-item{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #86a5a74f;
    position: relative;
}
.cat-item a{ 
    padding: 10px 0;
    width: 100%;
    color: var(--hirecon-black) !important;
    font-size: 18px;
    font-weight: 500;
}
.cat-item:hover a {
    color: var(--hirecon-primary);
    padding-left: 10px;
}
.widget-box .tagcloud{
    display: flex;
    align-items: center;
    column-gap: 13px;
    row-gap: 16px;
    flex-wrap: wrap;
}
.widget-box .tagcloud a{
    padding: 6px 15px;
    color: var(--hirecon-light) !important;
    background-color: var(--hirecon-primary);
    display: inline-block;
    border-radius: 7px;
    transition: all 0.5s;
    border: 1px solid var(--hirecon-primary);
    line-height: 24px;
    font-size: 16px !important;
}
.widget-box .tagcloud a:hover{
    color: var(--hirecon-primary) !important;
    background-color: var(--hirecon-light);
    border: 1px solid var(--hirecon-primary);
}
.blog-list-box blockquote{
    padding: 40px;
    background-color: var(--hirecon-secondary);
    color: var(--bs-black);
    font-size: 24px;
    line-height: 35px;
    border-radius: 7px;
    border: 0;
    margin: 0;
}
.blog-list-box blockquote p:first-child{
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hirecon-black);
}
.blog-list-box blockquote p:last-child{
    position: relative;
    padding-left: 60px;
}
.blog-list-box blockquote p:last-child::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--hirecon-black);
}
li.cat-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background-color: var(--hirecon-primary);
    transition: all 0.5s;
}
li.cat-item:hover::after {
    width: 100%;
}
.blog-grid-section{
    padding: 100px 0;
}
.comment-image img{
    border-radius: 50%;
}
.recent-blog-widget-item img{
    width: 85px;
    height: 88px;
    object-fit: cover;
}
.banner-heading-two a.btn-light{
    margin-right: 20px;
}
.blog-image-two a img{
    width: 410px;
    height: 250px;
    object-fit: cover;
}
.service-two-faq{
    margin: auto;
    max-width: 1780px !important;
}
.testimonial-cta{
    margin: auto;
    max-width: 1780px !important;
}
.hirecon-image-height{
    height: 100% !important;
}
.fa-user:before {
    content: "\f007";
}
.testimonial-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../images/shape/why-choose-shape.png);
    width: 520px;
    height: 533px;
    z-index: 0;
}
.hirecon-unset{
    position: unset !important;
}
.blog-list-box h4 a{
    color: var(--hirecon-black);
}
.navigation .nav-links ul{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}
.navigation .nav-links ul li a,.navigation .nav-links ul li span{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50px;
    height: 50px;
    color: var(--hirecon-light);
    border: 1px solid var(--hirecon-light);
    background-color: var(--hirecon-dark-green);
    transition: all 0.3s;
    border-radius: 7px;
}
.main-menu ul .menu-item-has-children ul .menu-item-has-children::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    line-height: 0;
}
.main-menu ul .menu-item-has-children ul .menu-item-has-children:hover::before {
    transform: rotate(270deg);
}
.blog-comment li.comment{
    list-style: none;
}
.no-search-results .search-widget input{
    border: 1.5px solid #ece8e0;
}
.hirecon-job-section{
    padding: 100px 0;
}
.hirecon-job-section form label{
    color: var(--hirecon-black);
    font-size: 18px;
    font-weight: 500;
}
.blog-comment li.comment ol.children{
    margin-left: 50px;
}
.blog-comment li.comment + li.comment, .blog-comment li.comment ol.children li.comment{
    margin-top: 30px;
}
.comment-reply-link{
    color: var(--hirecon-dark-green);
    font-weight: 600;
}
.comment-form a{
    color: var(--hirecon-dark-green);
    font-weight: 500;
}
.testimonial-author-two img{
    width: 130px;
    height: 130px !important;
    object-fit: cover;
    border-radius: 100% !important;
}
.team-image-one img{
    width: 230px;
    height: 230px !important;
    object-fit: cover;
    border-radius: 100% !important;
}
.wp-block-columns{
    margin-bottom: 40px;
}
.blog-list-box p strong{
    font-weight: 600;
    color: var(--hirecon-black);
    font-size: 22px;
    font-family: var(--hirecon-heading-font);
}
.blog-list-box .wp-block-gallery {
    position: relative;
    margin-bottom: 40px;
}
ul.about-cta-one{
    margin-top: 40px;
}
ul.about-cta-one li {
    display: flex;
    align-items: center;
    column-gap: 65px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(22, 56, 57, 0.1);
    margin-bottom: 15px;
}
ul.about-cta-one li .about-icon-box{
    width: 190px;
}
ul.about-cta-one li .about-icon-box h4{
    margin-bottom: 20px;
}
ul.about-cta-one li .about-icon-box i{
    font-size: 50px;
    color: var(--hirecon-black);
}
ul.about-cta-one li .about-icon-box p{
    margin-bottom: 0;
}
ul.about-cta-one li:last-child{
    margin-bottom: 30px;
    border: none;
}
/* Solution Details */
.solution-details-section{
    padding: 100px 0;
}
.services-sidebar {
    background-color: var(--hirecon-secondary);
    padding: 30px;
    position: sticky;
    top: 110px;
    border-radius: 7px;
}
.services-block {
    margin-bottom: 40px;
}
.services-block h4 {
    margin-bottom: 16px;
}
.services-sidebar .service-category-widget ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
    padding: 10px 20px;
    background-color: var(--hirecon-light);
    position: relative;
}
.services-sidebar .service-category-widget ul li.active {
    background-color: var(--hirecon-dark-green);
}
.services-sidebar .service-category-widget ul li a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 5px 0;
    width: 100%;
    color: var(--hirecon-black);
    font-size: 18px;
    font-weight: 500;
}
.services-sidebar .service-category-widget ul li.active a,.services-sidebar .service-category-widget ul li.active a i {
    color: var(--hirecon-light);
}
.services-sidebar .service-category-widget ul li:hover a, .services-sidebar .service-category-widget ul li:hover a i{
    color: var(--hirecon-light);
}
.service-category-widget ul{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
.services-sidebar .service-category-widget ul li a i {
    line-height: 0;
    transition: all 0.5s;
}
.services-sidebar .service-category-widget ul li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    transition: all 0.5s linear;
    background-color: var(--hirecon-dark-green);
}
a.download-pdf {
    display: flex;
    justify-content: space-between;
    padding: 15px 18px;
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
    text-transform: uppercase;
    align-items: center;
}
a.download-pdf:hover{
    color: var(--hirecon-light);
}
.services-sidebar .service-category-widget ul li a i{
    color: var(--hirecon-black);
}
a.download-pdf i {
    line-height: 0;
    font-size: 30px;
}
a.download-pdf i:last-child {
    font-size: 20px;
}
.service-cta-widget {
    background-image: url(../images/blog/blog-image-1.jpg);
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 58px 20px;
}
.service-cta-widget::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(6, 21, 37, 0.7);
}
.service-cta-widget-inner {
    position: relative;
    text-align: center;
}
.service-cta-widget-inner img {
    max-width: 170px;
    margin: auto;
    margin-bottom: 24px;
}
.service-cta-widget-inner h3 {
    font-weight: 600;
    color: var(--hirecon-light);
    margin-bottom: 24px;
}
.service-cta-widget-inner p a {
    color: var(--hirecon-light);
    line-height: 35px;
    letter-spacing: -0.02em;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 24px;
}
.service-cta-widget-inner p a i {
    font-size: 20px;
}
.category-widget ul li:hover::after{
    width: 100%;
}
.service-category-widget ul li:hover::after{
    width: 100%;
}
.services-block:last-child{
    margin: 0;
}
.solution-details-section .blog-list-box{
    margin-bottom: 0;
}
/* Team Details */
.team-details-sidebar {
    padding: 30px;
    background-color: var(--hirecon-secondary);
}
.team-details-single-title {
    margin-bottom: 30px;
}
.team-details-img{
    margin-bottom: 40px;
    text-align: center;
}
.team-details-single-title h4 {
    color: var(--hirecon-black);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 4px;
}
.team-details-single-title p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.team-details-single-text {
    margin-bottom: 30px;
}
.team-details-single-text span {
    color: var(--hirecon-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 4px;
}
.team-details-single-text h4 {
    color: var(--hirecon-dark-green);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}
.team-details-single-social {
    display: flex;
    align-items: center;
    row-gap: 16px;
    flex-wrap: wrap;
    column-gap: 10px;
}
.team-details-single-social li a {
    color: var(--hirecon-light);
    background-color: var(--hirecon-primary);
    display: inline-block;
    border-radius: 100%;
    transition: all 0.5s;
    border: 1px solid var(--hirecon-primary);
    line-height: 24px;
}
.team-details-single-social li a i {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hirecon-primary);
    color: var(--hirecon-light);
    border-radius: 100%;
    position: relative;
    border: 1px solid var(--hirecon-primary);
    transition: all 0.5s;
}
.case-study-box .case-study-box-one{
    width: auto;
}
/* Case Study Sidebar */
.portfolio-sidebar {
    margin-bottom: 40px;
}
.stcky {
    position: sticky;
    top: 100px;
}
ul.portfolio-details-list {
    padding: 30px 50px;
    border-top: 2px solid var(--hirecon-primary);
    background-color: var(--hirecon-secondary);
}
ul.portfolio-details-list>li {
    display: flex;
    border-bottom: 1px solid var(--hirecon-grey);
    padding: 12px 0;
    flex-direction: column;
    row-gap: 10px;
}
ul.portfolio-details-list li span {
    color: var(--hirecon-dark-green);
}
.portfolio-sidebar .team-details-single-social{
    margin-left: 0;
}
.team-details-single-social i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    transform: translate(-50%,-50%);
    border-radius: 100%;
    background-color: var(--hirecon-light);
    transition: all 0.5s;
}
.team-details-single-social i:hover::after{
    height: 100%;
    width: 100%;
}
.team-details-single-social i::before{
    z-index: 1;
    position: relative;
}
.team-details-single-social i:hover{
    color: var(--hirecon-dark-grey);
}
ul.portfolio-details-list>li:last-child{
    border: none;
}
.portfolio-details-video {
    position: relative;
}
.portfolio-details-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50% , -50%);
    border-radius: 100%;
    backdrop-filter: blur(25px);
    box-shadow: 2px 2px 100px 0px rgba(255, 255, 255, 0.1) inset;
    color: var(--hirecon-black);
}
.portfolio-details-video img{
    height: 340px;
    width: 100%;
    object-fit: cover;
}
.team-details-section{
    padding: 100px 0;
}
@media only screen and (max-width: 1400px){
    .testimonial-cta::after {
        left: -150px;
    }
}
@media only screen and (max-width: 991px){
    .testimonial-cta::after {
        display: none;
     }
}
@media only screen and (max-width: 768px){
    .testimonial-cta::after {
       display: none;
    }
    .pricin-box-one h2 span:last-child{
        margin-left: 0;
    }
}
@media only screen and (max-width: 1450px){
    .service-image-two {
        margin-left: -29px;
    }
}
.casestudy-hover .case-study-details-one{
    width: calc(100% - 60px);
}
.blog-list-tag:hover{
    color: var(--hirecon-light);
}
.hirecon-our-team .btn-primary:hover, .blog-list-box .btn-primary:hover, .error-404 .btn-primary:hover, .main-header-two .btn-primary:hover{
    background-color: var(--hirecon-dark-green);
    color: var(--hirecon-light);
}
.error-404 {
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
}
.hirecon-no-menu ul li a{
    color: var(--hirecon-light);
}
.hirecon-service-challenge ul.cta-list-one li{
    margin-bottom: 12px;
}
.hirecon-service-challenge .cta-icon-one{
    background-color: #1638381f;
}
.hirecon-service-challenge ul.cta-list-one{
    margin-bottom: 0px;
}
/* Job Page */
.job_filters .search_jobs {
    background-color: var(--hirecon-secondary);
    padding: 30px;
    display: flex;
}
.job_filters .search_jobs input {
    width: 100%;
    border: 0;
    font-size: 14px;
    height: 64px;
    padding: 0 20px;
    color: var(--hirecon-dark-green);
    font-weight: 500;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.job_filters .search_jobs input[type=submit]{
    color: var(--hirecon-light);
}
.job_filters .search_jobs input[type=submit]:hover{
    color: var(--hirecon-dark-green);
}
.job_filters .search_jobs div.search_submit {
    padding-left: 16px;
    padding-top: 0;
}
.job_filters .job_types {
    display: flex;
    flex-wrap: wrap;
    padding:20px 0;
    border-bottom: 1px solid #ced5dd;
    background-color: white;
    border-top: none;
}
.job_filters .job_types {
    margin-bottom: 0;
}
.job_filters .job_types li{
    border: none;
}
ul.job_listings li.job_listing a img.company_logo {
    width: 130px;
    height: 130px;
    line-height: 144px;
    margin-right: 50px;
    text-align: center;
    background-color: #f0f3f9;
    flex-shrink: 0;
    position: relative;
    padding: 36px;
    margin-left: -42px;
}
.job_listings h3, .company_header strong{
    font-size: 24px !important;
    font-weight: 600;
    line-height: 40px !important;
    margin-bottom: 0px;
    color: var(--hirecon-dark-green);
}
.job_listings .location,.location,.location a,.date-posted, .salary{
    color: var(--hirecon-dark-green) !important;
}
.job_listings .company strong{
    color: var(--hirecon-grey);
    letter-spacing: 1px;
}
.job_listings .date{
    color: var(--hirecon-grey) !important;
}
.job_listings li a{
    display: flex !important;
    align-items: center;
}
.job_description li {
    margin-left: 30px;
    list-style: disc;
    color: var(--hirecon-black);
    padding: 5px 0;
}
.application_button{
    background-color: var(--hirecon-dark-green) !important;
    color: var(--hirecon-light) !important;
}
.application_button:hover{
    background-color: var(--hirecon-light) !important;
    color: var(--hirecon-dark-green) !important;
    border: 1px solid var(--hirecon-dark-green);
}
.job_application_email{
    color: var(--hirecon-dark-green);
    font-weight: 600;
}
.application_details p strong{
    color: var(--hirecon-grey);
    font-weight: 400;
}
.hirecon-blog-default{
    padding: 100px 0;
}
/* contact */
.contact-one__info {
    margin-bottom: 0;
    position: relative;
    margin-top: 20px;
}
.contact-one__info__item {
    display: flex;
    align-items: center;
}
.contact-one__info__icon {
    width: 80px;
    height: 80px;
    background-color: var(--hirecon-dark-green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: all 500ms ease;
    color: var(--hirecon-light);
    margin-right: 30px;
    flex-shrink: 0;
    border-radius: 7px;
}
.contact-one__info__content {
    margin-top: 8px;
}
.contact-one__info__text {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--hirecon-dark-green);
}
.contact-one__info__title {
    font-size: 20px;
    color: var(--hirecon-black);
    line-height: 30px;
    font-weight: 500;
}
.contact-one__info__title a {
    color: var(--hirecon-black);
}
.contact-one__info__item + .contact-one__info__item {
    margin-top: 15px;
}
.contact-one__info__icon i{
    font-size: 30px;
}
/* contact Form */
.contact-one__form {
    padding: 50px;
    position: relative;
    z-index: 10;
    background-color: #204478;
    overflow: hidden;
}
.form-one__group {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin: 0;
}
.form-one__control {
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    position: relative;
}
.form-one__control--full {
    grid-column-start: 1;
    grid-column-end: -1;
}
.contact-one__form .bootstrap-select > .dropdown-toggle, .contact-one__form input[type=text], .contact-one__form input[type=email], .contact-one__form textarea {
    padding: 0;
    height: 58px;
    width:100%;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}
.contact-form-box {
    background-color: var(--hirecon-secondary);
    padding: 47px 57px;
    border-radius: 7px;
}
.contact-form-group-one {
    column-gap: 30px;
    margin-bottom: 30px;
    position: relative;
}
.contact-form-group-one .form-control {
    padding: 15px;
    padding-left: 20px;
    border-radius: 7px;
    border: none;
    line-height: 30px;
    background-color: var(--hirecon-light);
}
.contact-form-one{
    display: flex;
    column-gap: 30px;
    position: relative;
}
.contact-form-group-one .form-control textarea{
    min-height: 350px;
}
.single_job_listing .company .company_header {
    min-height: auto;
    margin: 0;
}
.single_job_listing .company {
    padding: 30px 0;
    border: none;
    box-shadow: none;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.single_job_listing .job_description h4 {
    margin-bottom: 20px;
}
.single_job_listing .job_description ul {
    margin-bottom: 30px;
}
.single_job_listing .company img {
    float: none;
    height: auto;
    position: relative;
    vertical-align: middle;
    left: 0;
}
.single_job_listing .company .name {
    margin: 0;
    padding: 0;
}
.single_job_listing .company .name {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-direction: row-reverse;
}
.single_job_listing .company .company_video {
    border-top: 1px solid #eee;
    height: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 340px;
    margin-left: auto;
}
.about-image-two {
    text-align: end;
}
.about-section-one::after {
    content: "HR Services";
    position: absolute;
    bottom: -260px;
    left: -320px;
    font-family: var(--hirecon-heading-font);
    font-size: 220px;
    font-weight: 600;
    line-height: 384px;
    letter-spacing: -0.03em;
    color: rgba(18, 18, 18, 0.05);
}
.about-icon-box {
    padding-right: 20px;
    border-right: 1px solid #00000033;
}
.about-cta-one {
    margin-top: 30px;
}
.about-icon-box i {
    font-size: 40px;
    color: #184545;
    margin-bottom: 15px;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 9px;
    border: 1px solid #1845454f;
}
.about-icon-box i::before {
    transition: all 0.5s;
}
.about-icon-box:hover i::before {
    transform: scaleX(-1);
}
.about-icon-box h4 {
    margin-bottom: 10px;
}
.about-cta-one .col-lg-4:last-child .about-icon-box {
    border: none;
}
.contact-form-box p {
    margin: 0;
}
.features-image-cta-one:hover a {
    transform: rotate(0deg);
}
.side-menu-logo-box a img{
    width: 165px;
}
.about-image-two .testimonial-right-box-one{
    position: absolute;
    top: 320px;
    right: -100px;
    text-align: left;
}
.topbar-one a:hover, .footer-one a:hover{
    color: var(--hirecon-light);
}
.search_remote_position{
    display: none;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 999999;
}
.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
}
.loader-shape{
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ECE8E0;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite; 
}
.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ECE8E0;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ECE8E0;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
.loader img {
    width: 65px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.service-details-three .btn .icon {
    font-size: 13px;
}
.blog-box-two i.icon {
    font-size: 13px;
}
.banner-box-inner-two .theme-btn::before,.banner-box-inner-two  .theme-btn > span{
    padding: 5px 0;
}
.banner-box-inner-two  .theme-btn{
    padding: 0 16px;
}