:root{
  --main-blue: #0086FF;
  --second-blue: #150047;
  --main-black: #080705;
  --main-green: #2FEDAF;
  --theme-light1: #FFF2F1;
  --theme-light2: #FFEDE1;
}


html{
  font-size: 15px;
}

.grecaptcha-badge{display: none!important;}

body{
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size:1rem;
  font-weight: 400;
  line-height: 1.3;
}

.container {
  max-width: 1300px;
}

.yellow-txt{
  color: #f9af32;
}

.top-phone{
  line-height: 52px;
  font-weight: 500;
}

a.glink img {margin-right: 8px!important;}

.logo-desc{
  width: 280px;
  padding-left: 30px;
  margin-left: 30px;
  font-size: 14px;
  border-left: 1px solid rgba(255,255,255,.1);
  color: #fff;
}

.logo-desc .widget{
  margin: 0;
}


/* Links
--------------------------------------------- */
a {
	color: var(--main-blue);
}

a:hover,
a:focus,
a:active {
	color: var(--main-blue);
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

#masthead{
  position: relative;
  z-index: 99;
}


img.custom-logo{
  width: 180px;
  transition: all 300ms ease;
}

.admin-bar #main-header{
  top: 84px;
}

#main-header{
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.home #main-header{
    background: var(--second-blue);
    border: none;
}

#main-header.fixed{
  top: 0;
}

.admin-bar #main-header.fixed{
  top: 32px;
}

#site-navigation{
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

#main-header.fixed #site-navigation{
  padding-top: 0;
  padding-bottom: 0;
  background: var(--second-blue);
}

#main-header.fixed .logo-desc {
  color: #272b34;
}

/* #main-header.fixed .navbar-nav li a{
  color: #040303;
} */

#main-header.fixed .navbar-nav li a:hover{
  color: var(--main-blue);
}

@media (min-width: 1200px) {

  #main-header.fixed  img.custom-logo {
    width: 142px;
  }

}

/* Nav toggler */

#navigation-toggler {
	width: 40px;
	height: 24px;
	position: relative;
	padding: 0;
	background: transparent;
	transform: rotate(0);
	transition: .5s ease-in-out;
	cursor: pointer;
	margin-top: 0;
	margin-bottom: 0;
	border: none;
	outline: none;
  margin-right: 15px;
}
#navigation-toggler span {
	 display:block;
	 position:absolute;
	 height: 2px;
	 width:50%;
	 background: #FFF;
	 opacity:1;
	 transform:rotate(0);
	 transition:.25s ease-in-out
}

#navigation-toggler span:nth-child(even) {
 left:50%;
 border-radius:0 9px 9px 0
}
#navigation-toggler span:nth-child(odd) {
 left:0;
 border-radius:9px 0 0 9px
}
#navigation-toggler span:nth-child(1),#navigation-toggler span:nth-child(2) {
 top:0
}
#navigation-toggler span:nth-child(3),#navigation-toggler span:nth-child(4) {
 top:10px
}
#navigation-toggler span:nth-child(5),#navigation-toggler span:nth-child(6) {
 top:20px
}
#navigation-toggler.open span:nth-child(1),#navigation-toggler.open span:nth-child(6) {
 transform:rotate(45deg)
}
#navigation-toggler.open span:nth-child(2),#navigation-toggler.open span:nth-child(5) {
 transform:rotate(-45deg)
}
#navigation-toggler.open span:nth-child(1) {
 left:0;
 top:4px
}
#navigation-toggler.open span:nth-child(2) {
 left:calc(50% - 5px);
 top:4px
}
#navigation-toggler.open span:nth-child(3) {
 left:-50%;
 opacity:0
}
#navigation-toggler.open span:nth-child(4) {
 left:100%;
 opacity:0
}
#navigation-toggler.open span:nth-child(5) {
 left:0;
 top:18px
}
#navigation-toggler.open span:nth-child(6) {
 left:calc(50% - 5px);
 top:18px
}

/* Dropdown */

.dropdown-toggle::after {
    width: 8px;
    height: 8px;
    border-width: 0 0 2px 2px;
    border-color: #DDD;
    border-style: solid;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.dropdown-menu .menu-item a {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Make dropdown visible on hover */
@media (min-width: 992px) {
  .dropdown > .dropdown-menu {
    position: absolute;
    top: 100%;
		text-align: center;
    z-index: 1000;
    float: none;
    min-width: 10rem;
    padding: 0;
    list-style: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    margin-top: 10px !important;
    display: block;
    visibility:hidden;
    min-width: 230px;
    box-shadow: rgba(0, 0, 0, 0.22) 10px 41px 57px -17px;
    transition: all  0.2s ease-in-out;
  }
  .dropdown:hover > .dropdown-menu {
    visibility:visible;
    display: block;
    opacity: 1;
    margin-top: 0px !important;
		-webkit-transition: all  0.2s ease-in-out;
    transition: all  0.2s ease-in-out;
  }



  .mega-menu-parent.dropdown .dropdown-menu {
	    position: absolute;
	    left:  0;
			width: 100%;
			transition: all 0.2s ease-in-out;
  }

	ul.dropdown-menu{
		background: #FFF;
	}
}

.dropdown-toggle.show + .dropdown-menu {
  visibility: visible;
  display: block;
  opacity: 1;
  margin-top: 0 !important;
}

.top-right .textwidget,
.top-left .textwidget{
  display: inline-block;
}

.top-right{text-align: right;}

.top-header{
  background: var(--main-blue);
  color: #FFF;
  height: 52px;
}

.top-header a{
  color: #FFF;
}

.widget_gtranslate{margin-top: 15px;}
/* Headers */

h1, h2, h3, h4, h5, h6 {
  
   font-optical-sizing: auto;
   font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.h1,
h1 {
 font-size:calc(1.375rem + 1.5vw)
}
@media(min-width:1200px) {
 .h1,
 h1 {
  font-size:2.5rem
 }
}
.h2,
h2 {
 font-size:calc(1.325rem + .9vw)
}
@media(min-width:1200px) {
 .h2,
 h2 {
  font-size:2rem
 }
}
.h3,
h3 {
 font-size:calc(1.3rem + .6vw)
}
@media(min-width:1200px) {
 .h3,
 h3 {
  font-size:1.75rem
 }
}
.h4,
h4 {
 font-size:calc(1.275rem + .3vw)
}
@media(min-width:1200px) {
 .h4,
 h4 {
  font-size:1.5rem
 }
}
.h5,
h5 {
 font-size:1.25rem
}
.h6,
h6 {
 font-size:1rem
}

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

/* Navigation */


.navbar-nav li a{
  color: #FFF;
  
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  padding: 35px 20px;
  position: relative;
  transition: .3s;
}

.navbar-nav li a:hover,
.navbar-nav li a:focus{
  color: var(--main-blue);
  text-decoration: none;
}


/* button */

#job-offers-search select{
  min-width: 180px;
  cursor: pointer;
}

/* Buttons */

.btn-wrapper {
  display: inline-flex;
  align-items: center;
}


.button {
  display: inline-block;
  color: #FFF;
  background: var(--main-blue);
  padding: 18px 35px;
  line-height: 1;
  min-width: 180px;
  position: relative;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
  border-radius: 30px;
  overflow: hidden ;
}

.button .button-text {
  position: relative;
}

.button::before {
  content: "";
  display: block;
  width: 100%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(.7)translateY(55%);
  background: var(--main-green);
  border-radius: 100%;
  transition: all .25s cubic-bezier(0,0,.31,.99);
}

.button:hover::before {
  transform: scaleX(2)scaleY(1)translateY(-15%);
}

.button-alt{
  display: block;
  color: var(--main-blue);
  font-weight: 600;
  margin-right: 10px;
  border-bottom: 1px solid;
  padding: 10px 0;
}

.button-alt.text-white{
  color: #FFF;
  border-color: #FFF;
}

.buuton-alt.text-white:hover{
  color: #FFF;
}

.circle-arrow-btn-alt{
  font-size: 11px;
  color: var(--main-black);
}

.arrow-text-white{
  color: #FFF;
}

.circle-arrow-btn {
  color: #FFF;
  background: var(--main-blue);
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border-radius: 50%;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: ;
}

.circle-arrow-btn.arrow-button-white{
  background: #FFF;
  color: var(--main-black);
}

.circle-arrow-btn:hover,
.circle-arrow-btn:focus {
  color: #FFF;
  background: var(--main-green);
  text-decoration: none;
}

.button.button-blue .circle-arrow-btn {
  background: var(--main-green);
  color: #FFF;
}



.button:hover,
.button:focus {
  color: #FFF;
  text-decoration: none;
}

.button.button-outline {
  background: transparent;
  border: 1px solid var(--main-black);
  color: var(--main-black);
}

.button.button-outline:hover,
.button.button-outline:focus {
  background: #040303;
  color: #FFF;
}

.circle-arrow-btn.arrow-button-outline{
    background: transparent;
  border: 1px solid var(--main-black);
  color: var(--main-black);
}

.button.button-white {
  background: #FFF;
  color: var(--main-black);
}

.button.button-white:hover,
.button.button-white:focus {
  background: var(--main-green);
  color: #FFF;
}

.main-btn {
 overflow: hidden;
 position: relative;
 z-index: 1;
 background-color: #f9af31;
 border-radius:30px;
 color:#232323;
 display:inline-block;
 font-size:15px;
 font-weight:500;
 height:52px;
 line-height:52px;
 overflow:hidden;
 padding:0 33px;
 position:relative;
 text-align:center;
 transition:.7s;
}

.hero-btn{
  height: 62px;
  line-height: 64px;
  overflow: hidden;
  padding: 0 52px;
  box-shadow: 0 4px 20px rgba(249,175,49,.6);
}

.main-btn.outline-btn{
  border: 1px solid #272727;
  background: transparent;
}

.main-btn.outline-btn:hover,
.main-btn.outline-btn:focus{
  background: #272727;
  color: #FFF;
}


.main-btn span {
 position:relative;
 z-index:99
}
.main-btn:hover {
  text-decoration: none;
  box-shadow: none;
 background-color:#232323;
 color:#fff;
}

/*=== Pulse Animation ===*/

.hero-button2 a > div > div,
.hero-button a > div > div{
  position: relative;
  padding: 15px 30px 15px 30px;
  background: #FFF;
  border-radius: 0!important;
  min-width: 160px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}


.hero-button a > div > div{
  background: var(--main-blue);
}

.hero-button2:hover a > div > div,
.hero-button:hover a > div > div{
  background: #040303;
}


.hero-button a > div > div:before,
.hero-button a > div > div:after,
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  background-color: var(--main-blue);
  -webkit-animation: pluse 3s ease infinite;
  -ms-animation: pluse 3s ease infinite;
  -o-animation: pluse 3s ease infinite;
  animation: pluse 3s ease infinite;
  width: 110%;
  height: 110%;
  border-radius: 10px 0;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
  border-radius: 5px;
}

.hero-button a > div > div:after,
.spinner:after {
  -webkit-animation: pluse 3s ease 3.3s infinite;
  -ms-animation: pluse 3s ease 3.3s infinite;
  -o-animation: pluse 3s ease 3.3s infinite;
  animation: pluse 3s ease 3.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}


.wpcf7-submit{
  border: none;
  margin-top: 30px;
  display: block;
  width: 100%;
}

/* hero */


.home-hero{
  position: relative;
  padding: 120px 0 0px 0;
  background-image: url('https://hr-partners.io/wp-content/uploads/2025/10/tlo_hr.jpeg');
  background-position: right;
  background-size: cover;
}

.hero-content{
  color: #FFF;
  padding-bottom: 100px;
}

.hero-content h1{
  font-size: 62px;
  line-height: 70px;
  margin-bottom: 30px;
}

.hero-content #job-offers-search{
  margin-top: 35px;
}

.all-jobs-link{
  display: inline-block;
  margin-top: 45px;
  font-weight: 500;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.all-jobs-link span{
  font-size: 70%;
  margin-left: 15px;
  color: #FFF;
}

.button.spinner{
  position: relative;
  z-index: 1;
}

.all-jobs-link:hover{
  text-decoration: none;
  color: #FFF;
}

.job-offer{
  height: 100%;
}

.job-offers-bg{
  background: #eaebea;
}

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

.job-atts{
  /* color: #7D8087; */
  font-size: 17px;
  font-weight: 600;
}

.job-atts span{
  display: block;
}

.job-atts span i{
  color: var(--main-blue);
}

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

.job-offer h2{
  font-size: 24px;
  color: #080705;
  margin: 15px 0 20px 0;
  min-height: 68px;
  padding-top: 15px;
  transition: all 0.3s ease;
}

.job-offer:hover h2{
  color: var(--main-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.job-offer-content{
  position: relative;
  overflow: hidden;
  padding: 45px 30px;
  background: #FFF;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-offer-content:before{
  content: '\e812';
  font-family: "pueoiconpack";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-size: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-200%,0%);
  color: rgba(0,0,0,0.03);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.job-offer-content:hover:before{
  transform: translate(-120%, -50%);
  opacity: 1;
}

.job-offer-content .overlay-link{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
}

.job-salary-wrap{
  text-align: right;
}

.job-offer a{
  color: #080705;
}

.latest-job-offers > div:first-child .job-offer-content{
  background:  var(--main-blue);
}

.latest-job-offers > div:first-child .job-salary,
.latest-job-offers > div:first-child .job-atts,
.latest-job-offers > div:first-child .job-atts i,
.latest-job-offers > div:first-child a,
.latest-job-offers > div:first-child .job-offer h2{
  color: #FFF;
}

.latest-job-offers > div:first-child .job-offer h2{
  font-weight: 600;
}

.job-salary{
  text-align: right;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 45px;
  font-size: 18px;
  color: var(--main-blue);
}

.new-offers{
  padding: 100px 0;
  background: #eaebea;
}

.new-offers .section-header h2{
  margin-bottom: 45px;
}


.hero__form{
  margin-left: 50px;
  box-shadow: 6px 5px 30px 0px rgba(0,0,0,0.12);
  background: #FFF;
  padding: 50px;
  border-radius: 10px;
}

.wpcf7-form-control-wrap .intl-tel-input {
  position: relative;
  display: block;
}

.wpcf7-not-valid-tip {margin-top: 10px;}

.form__title{
  font-size: 30px;
  margin-bottom: 30px;
}

.wpcf7 form .wpcf7-response-output {
  padding: 15px;
  border-radius: 10px;
}

.form-control.wpcf7-not-valid{
  border-color: #dc3232;
}

.wpcf7-spinner {display: none!important}

.form-control {
  height: auto;
  padding: 15px 25px;
  border: 1px solid #e4e7ee;
  border-radius: 25px;
}

.wpcf7-list-item {
  font-size: 13px;
  color: #888;
}

textarea.form-control{
  height: 150px;
  resize: vertical;
  min-height: 150px;
  max-height: 300px;
}

.form-control:focus{
  border-color: var(--main-blue);
  box-shadow: 0 4px 20px rgb(236, 110, 59, 0.1);
}

.breadcrumbs{color: #FFF; margin-top: 15px;}

/* About */

.about_us{
  padding: 100px 0;

}

.section-header.centered{
  text-align: center;
}

.section-header span{
  display: inline-block;
  line-height: 40px;
  font-weight: 500;
  color: var(--main-blue);
  margin-bottom: 5px;
}

.line-after span{
  display: inline-block;
}

.line-after span:after,
.section-header span::after {
  content: '';
  width: 42px;
  height: 1px;
  background-color: currentColor;
  display: inherit;
  margin-bottom: 5px;
  margin-left: 10px;
}

.section-header h2{
  font-size: 46px;
  line-height: 50px;
  font-weight: 500;
  color: var(--second-blue);
  margin-bottom: 20px;
}

.section-header p{
  color: #9b9b9b;
  margin-bottom: 45px;
}

.about__item{
  padding: 53px 30px;
  height: 100%;
  box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.1);
}

.home-slider-2{
  padding-bottom: 100px;
  margin-top: -100px;
}

.about__item img{
  margin-bottom: 20px;
}

.about__item h3{
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #040303;
}

.about__item p{
  margin: 0;
  color: #9b9b9b;
}

.about-wrap{

}

/* Why us */

.why-us{
  position: relative;
}

.why_text{
  padding: 100px 0;
  color: #FFF;
}

.why_text_2{
  padding-bottom: 100px;
  color: #FFF;
}

.why-us .image-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.why-us .image-bg:before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.33);
}

.why_text svg{
  width: 80px;
  height: 80px;
  margin-top: 15px;
}

.why-us .desc{
  color: #FFF;
  line-height: 1.5;
}

.why-us .desc .button{
  margin-top: 20px;
}

.why-us .section-header h2 {color: #FFF}

.shadow-1{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('https://hr-partners.io/wp-content/uploads/2024/04/shadow-1.png');
  background-repeat: no-repeat;
  background-position: center;
}

/* Request form */

.request-form{
  padding-top: 100px;
}

.request-form .form-wrapper{
  display: block;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}

/* Numbers */

.home-numbers{
  padding-bottom: 100px;
  padding-top: 100px;
}

.number__item{
  border: 1px solid #DDD;
  padding: 40px;
  border-radius: 25px;
}


.number__item h3{
  font-size: 50px;
  font-weight: 600;
  margin: 0;
  position: relative;
  line-height: 1;
  border-bottom: 1px solid #DDD;
  color: var(--second-blue);
  padding-bottom: 20px;
}

.number__item h3 svg{
  position: absolute;
  width: 26px;
  right: 0;
  top: 0;
  height: 26px;
  color: var(--main-blue);
}

.number__item span{
  font-weight: 400;
  color: #000;
  margin-top: 20px;
  display: block;
}

.our-services-footer h5{
  color: var(--main-blue);
}

/* Features */

.features{
  padding: 100px 0;
}

.our-f-header{
  margin-bottom: 50px;
}

.our_features__item{
  border: 1px solid #DDD;
  padding: 30px;
  border-radius: 25px;
}

.our_features__item .image{
  position: relative;
  display: inline-block;
}

.our_features__item .image::before{
 content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 10px;
  background: var(--main-green);
  border-radius: 10px;
  z-index: -1;
  border-radius: 50%;
}


.our_features__item p{
  color: #9b9b9b;
}
.our_features__item h4{
  margin: 20px 0;
  font-size: 20px;
}

.our_features__item img{
  width: 46px;
  -webkit-filter: grayscale(100) contrast(100);
  filter: grayscale(100) contrast(100);
}

.features__item{
  text-align: center;
  border-top: 1px solid rgba(12, 0, 0, 0.06);
  border-left: 1px solid rgba(12, 0, 0, 0.06);
  padding: 45px 30px;
  height: 100%;
}

.features-wrap {
  border-bottom: 1px solid rgba(12, 0, 0, 0.06);
  border-right: 1px solid rgba(12, 0, 0, 0.06);
}

.features__item img{
  width: 64px;
}

.features__item h4{
  margin-top: 20px;
}

.features-footer{
  padding-top: 45px;
  text-align: center;
}

/* Services */

.services{
  padding-bottom: 50px;
}

.services-top{
  background-color: #06070E;
  padding: 100px 0 150px 0;
}

.button.spinner{
  position: relative;
}

.site-footer .button:hover,
.services-top .button:hover{
  background: #FFF;
  color: #333;
}

.services .section-header h2{
  color: #FFF;
}

.services .section-header span {
  color: var(--main-blue);
}
.services .section-header p{
  color: #FFF;
  margin: 0;
}

.services-list{margin-top: -100px}

.services-button{
  text-align: right;
}

.services__item{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.services__item .image{
  position: relative;
  z-index: 1;
}

.services__item .image:before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to top, #040303 1%, #0000 100%);
  z-index: 9;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.services__item .text__wrap{
  position: absolute;
  z-index: 2;
  color: #FFF;
  padding: 30px;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: right;
}

.price_wrapper{
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--main-blue);
}

.price_wrapper span{
  color: #FFF;
}



.services__item h2{
  text-align: left;
}




/* Features */



/* Gallery */
.home-gallery-container{
  width: calc( 100% - ( 100% - 1300px ) / 2 ) ;
  margin-left: calc( ( 100% - 1300px ) / 2 );
}

.arrows-container{
  position: absolute;
  top: 0;
  height: 100%;
}


.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
}

.swiper-pagination-bullet-active {
  background: var(--main-blue);
}


.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 60px;
}

.swiper-button-next, .swiper-button-prev {
  cursor: pointer;
  color: #fff;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 30px;
}

.button-prev,
.button-next{
  position: absolute;
  bottom: 0;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  z-index: 3;
  text-align: center;
}

.button-prev:before,
.button-next:before{
  content: '';
  display: block;
  background: #eaebea;
  /* box-shadow: 0 4px 20px rgba(249,175,49,.6); */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #FFF;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: .3s;
}

.button-prev:hover:before,
.button-next:hover:before{
  background: var(--main-blue);
}

.button-prev:hover,
.button-next:hover{
  color: #FFF;
}



.button-prev:before{ left: 0}
.button-next:before{ right: 0}

.button-prev svg,
.button-next svg{
  fill: #fff;
}

.button-prev{
  right: 70px;
}

.button-prev svg{
  margin-right: -15px;
}

.button-next svg{
  margin-left: -15px;
}

.button-next{
  right: 15px;
}

.home-slider{
  padding-bottom: 100px;
}

/* Contact us */

.contact-form_wrapper{
  margin: 0;
}

.contact_form{
  padding-bottom: 100px;
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact-us .section-header{
  margin-bottom: 50px;
}

.contact_form .form-control{
  border-color: #FFF;
}

.contact-us{
  padding: 50px 0 0 0;
  background: #f0f3f9;
}

.contact-box-wrapper{
  margin-bottom: 100px;
  margin-top: 50px;
}


.contact_box{
  height: 100%;
  display: flex;
  -ms-flex-align: center !important;
  align-items: center !important;
  /* box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 40px 0px;
  background: #FFF;
  padding: 30px;
  border-radius: 10px; */
  font-size: 20px;
  font-weight: 600;
  
  margin-bottom: 15px;
  margin-top: 15px;
  color: #040303;
}

.contact_box .icon{
  margin-right: 20px;
  font-size: 18px;
  background: var(--main-blue);
  border-radius: 50%;
  line-height: 40px;
  width: 50px;
  text-align: center;
  padding-top: 5px;
  color: #FFF;
  height: 50px;
}

.contact_box .text{
  display: block;
}



  /* Footer */

  .site-footer{
    background-color: var(--second-blue);
    background-position: right bottom;
    background-size: Auto;
    background-attachment: scroll;
    color: #FFF;
    padding: 100px 0 0 0;
  }

  .site-footer a{
    color: #FFF;
    transition: all .3s;
  }

  .footer-area-1 img{
    width: 120px;
  }

  .footer-area-3,
  .footer-area-6,
  .footer-area-8{
    text-align: right;
  }

    .footer-area-8 a{
      color: #FFF;
    }


  .footer-foot ul{
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.4);
    text-align: right;
  }

    .footer-foot ul li{
      display: inline-block;
      display: inline-block;
      padding: 25px 0 0 30px;
      text-align: right;
    }


  .widget-title{
    margin-bottom: 15px;
    position: relative;
    font-size: 22px;
    color: var(--main-blue);
  }

  .footer-row-1{margin-bottom: 60px}

  .footer-row-3{
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .bottom-phone{
    font-weight: 500;
    font-size: 20px;
    margin-top: 10px;
    display: block;
  }


  .social-icons a{
    width: 44px;
    height: 44px;
    display: inline-block;
    line-height: 44px;
    text-align: center;
    background: #FFF;
    font-size: 18px;
    color: #000;
    transition: all .3s;
    border: 1px solid #FFF;
    border-radius: 50%;
    margin-right: 6px;
  }

  #main-header.fixed  .social-icons a{
    background: #eaebea;
    border-color: #eaebea;
  }

  .social-icons.contact-social a,
  #main-header.fixed .social-icons a:hover,
  #main-header.fixed .social-icons a:focus,
  .social-icons a:hover,
  .social-icons a:focus{
    background: var(--main-blue);
    border-color: var(--main-blue);
    color: #FFF;
  }


  .social-icons.contact-social a:hover{
    background: #040303;
    border-color: #040303;
    color: #FFF;
  }

  .footer-phone span{
    display: block;
    color: rgba(255,255,255,.6);
    margin-top: 68px;
    font-size: 17px;
  }

  .after-menu{
    display: flex;
    align-items: center;
  }

  .after-menu .social-icons{
    margin-right: 15px;
  }

  .after-menu .lang-item{
    display: inline-block;
  }

  .after-menu .lang-item a{
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 10px;
    color: #FFF;
  }

  .after-menu .lang-item a:hover{text-decoration: none;}

  .after-menu .current-lang a{color: var(--main-blue);}

  .after-menu ul{
    padding: 0;
    margin: 0;
    margin-right: 15px;
    list-style: none;
  }

  .footer-phone  a{
    font-size: 40px;
    color: #f9af31;
  }

  .txt-right{text-align: right;}
  .txt-right img{
    width: 64px;
  }

  .txt-right .icon{
    width: 64px;
    background: #444;
    border-radius: 50%;
    padding: 12px;
    display: inline-block;
  }

  #back_top {
    display: inline-block;
    background-color: var(--main-green);
    color: #FFF;
    width: 50px;
    cursor: pointer;
    padding: 10px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }

  .footer-area-1 svg{
    margin-top: 100px;
    width: 100px;
    height: auto;

  }

  .footer-area-2 h2{
    margin: 0;
    font-size: 40px;
  }

  #back_top svg{
    fill: #000;
    width: 25px;
    margin-top: 2px;
  }

  #back_top.show {
    opacity: 1;
    visibility: visible;
  }

/* ELementor */

.styled-list .elementor-icon-list-items li {
 position:relative;
 z-index:2;
 background:#fff;
 border-radius:30px;
 margin:0 0 20px;
 padding:.8rem 2rem;
 -webkit-box-shadow:0 10px 34px 0 rgba(18,21,24,.05);
 -moz-box-shadow:0 10px 34px 0 rgba(18,21,24,.05);
 box-shadow:0 10px 34px 0 rgba(18,21,24,.05)
}
.styled-list .elementor-icon-list-items li .elementor-icon-list-icon {
 width:2.4rem;
 height:2.4rem;
 background:#ffd45f;
 position:relative;
 text-align:center;
 display:inline-block;
 border-radius:50%;
 margin:0 1rem 0 0;
 line-height:1;
 color:#fff
}
.styled-list .elementor-icon-list-items li .elementor-icon-list-icon i {
 line-height:2.4rem;
 width:2.4rem
}

/* Elementor */

.styled-list .elementor-icon-list-items li {
 position:relative;
 z-index:2;
 background:#FFF;
 border-radius:50px;
 margin:0 0 20px;
 padding: 15px 30px;
 -webkit-box-shadow:0 10px 34px 0 rgba(18,21,24,.08);
 box-shadow:0 10px 34px 0 rgba(18,21,24,.08)
}
.styled-list .elementor-icon-list-items li .elementor-icon-list-icon {
 width:44px;
 height:44px;
 background:#f9af31;
 position:relative;
 text-align:center;
 display:inline-block;
 border-radius:50%;
 margin:0 1rem 0 0;
 line-height:1;
 color:#212529;
}
.styled-list .elementor-icon-list-items li .elementor-icon-list-icon i {
 line-height:44px;
 width:44px;
}

.form-quest{
  font-weight: 700;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.error-404{
  padding: 150px 0;
}

/* Video popup */

.popup-btn, .close-btn {

}




.popup-btn:hover {
  color: white;
  background-color: black;
}
.video-popup {
  display: none;
  width: 100%;
  height: 100vh;
  margin: auto;
  position: fixed;
  top: 0;
  box-shadow: 10px 10px 10px 10px black;
  z-index: 99999;
}
.popup-bg {
  background: rgba(0,0,0,1);
  width: 100%;
  height: 100vh;
  position: absolute;
}

.popup-container{
  height: 100vh;
  padding: 50px;
  width: 100%;
}


.popup-content {
  background: black;
  position: relative;
 overflow: hidden;
 width: 100%;
 padding-top: 50.25%;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.home-cta{
  background: var(--main-green);
}

.home-cta img{
  margin-top: -100px;
  max-width: 400px;
}

.home-cta-wrap{
  padding-left: 45px;
}

.home-cta h5{
  color: var(--second-blue);
  font-size: 46px;
  fobnt-weight: 500;
  margin-bottom: 20px;
}

.home-cta p{
  color: var(--second-blue);
  margin-bottom: 30px;
}





/* Blog */

.archive-header {
 background-image: url('https://hr-partners.io/wp-content/uploads/2025/10/tlo_hr.jpeg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 50px 0;
  color: #FFF;
  position: relative;
}

.archive-header:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #040303;
  opacity: 0.21;
}

.archive-header header{
  display: block;
  position: relative;
}

.slider-shape-bottom {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -1px;
  transform: rotate(180deg);
  z-index: 2;
  pointer-events: none;
}

.slider-shape-bottom svg {
  position: relative;
  left: 50%;
  display: block;
  z-index: -1;
  fill: #FFF;
  width: calc(285% + 1.3px);
  height: 46px;
  transform: translateX(-50%) rotateY(180deg);
}

.archive-post .text{
  padding: 20px;
}

.archive-post .btn-wrapper{
  align-items: end;
  padding: 0 20px 30px;
}

.site-pagination{
  display: block;
  width: 100%;
  margin-top: 50px;
  text-align: center;
}

.site-pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.site-pagination .page-numbers{
  display: block;
  font-weight: 600;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid #DDD;
  border-radius: 50%;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.site-pagination .page-numbers.current,
.site-pagination .page-numbers:hover{
  background: var(--main-blue);
  border-color: var(--main-blue);
  color: #FFF;
  text-decoration: none;
}

.h-100{
  height: 100%;
}


.archive-post .text h2{
  font-size: 26px;
  margin: 15px 0 0 0;
  font-weight: 600;
}

.archive-post .text h2 a{
  color: var(--second-blue);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.blog-archive-post{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #DDD;
  border-radius: 25px;
}


.archive-post .text h2 a:hover{
  text-decoration: none;
  color: var(--main-blue);
}
.tags-links a,
.cat-name a{
 color: var(--main-blue);
  border: 1px solid #DDD;
  border-radius: 20px;
  padding: 4px 21px;
  font-size: 13px;
  display: inline-block;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-weight: 500;
}

.tags-links{
  display: block;
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-paddings {
  padding-top: 100px;
  padding-bottom: 100px;
}

.tags-links a:hover,
.cat-name a:hover{
  background: var(--main-blue);
  border-color: var(--main-blue);
  color: #FFF;
  text-decoration: none;
}

.after-menu .button:hover{
  color: #080705;
  background: #FFF;
}

.post-nav-links{
 font-size: 20px;
  margin: 30px 0;
  border: 1px solid #DDD;
  padding: 45px 30px;
  border-radius: 25px;
}

.post-nav-links a{
  background: var(--second-blue);
  color: #fff;
  display: inline-block;
  box-shadow: 0 0 50px rgba(0,0,0,0.2);
  padding: 18px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 200ms ease;
}

.job-single-desc .single-salary{
 text-align: left;
  margin-top: 20px;
  font-size: 26px;
  border-bottom: 1px solid #DDD;
  padding-bottom: 15px;
} 

.job-single-desc .job-title{
  color: var(--second-blue);
  font-weight: 500;
  font-size: 40px;
}

.post-nav-links a:hover{
  text-decoration: none;
  background: var(--main-blue);
  color: #FFF;
}

.post-nav-links .prev,
.post-nav-links .next{
  width: 50%;
}

.post-nav-links .desc{
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
 padding: 0 20px;
}

.single-image{
  margin-bottom: 50px;
}

.job-form{
  box-shadow: 6px 5px 60px 0px rgba(0,0,0,0.1);
  background: #FFF;
  padding: 50px;
  border-radius: 25px;
}

.job-form h2{
  margin-bottom: 30px;
  font-size: 30px;
  color: var(--main-blue);
}

h2.blog-title{
  font-size: 42px;
  margin-bottom: 30px;
}

.post-nav-links .next{
  text-align: right;
}

.single-blog-post{
  width: 1100px;
  margin: auto;
  max-width: 100%;
}

.single-blog-post blockquote{
  background: var(--main-blue);
  color: #FFF;
  padding: 30px;
}

.archive-post .image img,
.single-image img{border-radius: 25px}

.single-blog-post blockquote p:last-child{
  margin: 0;
}

.job-title{
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 32px;
}

.job-single-desc{
  padding-right: 70px;
}

.job-atts{
  display: flex;
  gap: 10px;
}

.job-atts span{
  border: 1px solid #DDD;
  padding: 2px 10px;
  display: flex;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  gap: 3px;
}


.job-footer{
  display: block;
  margin-top: 30px;
  background: var(--main-blue);
  padding: 30px;
  border-radius: 25px;
  color: #FFF;
}

.job-footer{
  color: #FFF;
}

.job-footer a{
  color: #FFF;
  font-weight: 600;
  font-size: 20px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.job-footer a:hover{
  text-decoration: none;
  color: var(--second-blue);
}


.jotform-wrapper iframe{
  width: 100%;
  border: none;
  min-height: 1500px;
}

.jotform-wrapper .supernova{
  background: #FFF!important;
}


/* Responsive */

/* 1400px */
@media (max-width:1400px){

}

/* 1350px */
@media (max-width:1350px){
  #main-header .container {max-width: 100%;}
  .container {max-width: 1200px;}
}

/* 1300px */
@media (max-width:1300px){
  .home-gallery-container {
    width: 100%;
    margin-left: 0;
  }

  .navbar-nav li a { font-size: 14px}
}



/* 1200px */
@media (max-width:1200px){


    .after-menu .textwidget{
      display: block;
      width: 100%;
    }

    .after-menu .lang-item a {margin-left: 10px}

    .after-menu .social-icons {
      margin-right: 0;
      margin-top: 20px;
      margin-bottom: 30px;
    }

    .after-menu {
      display: block;
      text-align: center;
    }

    .logo-desc {
      margin-right: auto;
      color: #777;
      border-color: #CCC;
      padding-left: 20px;
      margin-left: 20px;
    }

    .dropdown-menu {border: none}

    #main-header {top: 0}

    #primary-menu-wrap{
      opacity: 0;
      overflow: hidden;
      max-height: 0;
      transition: all .3s;
    }

    #primary-menu-wrap.show{
      padding: 60px 0;
      opacity: 1;
      max-height: 999999px; /* important for animation */
    }

    #main-header {position: relative;}
    .admin-bar #main-header {top: 0;}

    .navbar{padding: 15px 15px!important;}
    .navbar-nav li {padding-left: 0;}
    .navbar-nav li a {
      font-size: 20px;
      padding: 12px 0;
    }

    .navbar-nav li a{
      display: block;
      text-align: center;
      color: #FFF;
    }

    .after-menu{justify-content: center;}
    .after-menu .main-btn{margin-top: 30px;}

    .container{
      padding-left: 30px;
      padding-right: 30px;
    }


    .call_form_wrapper {padding-right: 50px;}
    .call_us_2 .call_form_wrapper {margin-right: 0;}

    #main-header .social-icons a {
      background: #eaebea;
      border-color: #eaebea;
    }

    img.custom-logo {
      width: 160px;
      transition: all 300ms ease;
    }

    #main-header {
      background: var(--second-blue);
      border: none;
    }

    .job-form{margin-top: 45px}
    .job-single-desc {padding-right: 15px;}
    .job-salary.single-salary{
      text-align: left;
      margin-top: 10px;
    }
}

/* 991px */
@media (max-width:991px){
  .number__item{
    text-align: center;
    margin: 15px 0;
  }

  .home-cta-wrap{
    padding-left: 0;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 30px;
  }

   .home-cta{text-align: center;}


  .home-cta img{
    margin-top: 0;
    max-width: 300px;
  }


  .services-top .button{margin-top: 30px}
  .footer-area-1{margin-bottom: 30px}
  .why_text{
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-list-post{margin-bottom: 30px;}

  .home-hero{
    position: relative;
    padding: 60px 0 0px 0;
    overflow: hidden;
    background-image: url('https://hr-partners.io/wp-content/uploads/2025/10/tlo-mobile.jpeg');
    background-position: center;
    background-size: cover;
  }

  .hero-content {padding-bottom: 30px;}
  .all-jobs-link {color: #FFF; display: block;text-align: center;}

}

/* 767px */
@media (max-width:767px){

  .post-nav-links {
     display: block !important;
   }

  .post-nav-links .prev, .post-nav-links .next {
    text-align: center;
    width: 100%;
  }

  .swiper-pagination{display: none!important}

  .site-footer, .footer-area-3, .footer-area-6, .footer-area-8 {
    text-align: center;
  }

  .footer-area-2{margin-bottom: 15px;}
  .footer-area-6, .footer-area-5{margin-top: 15px;}


  .top-left{
    display: none;
  }

  .top-right .mobile-hide{
    display: none;
  }

  .our-services-footer{
    margin-top: 50px;
  }

  .footer-area-2 h2 {
    font-size: 30px;
  }

  .footer-area-1 svg {
    margin-top: 0;
    width: 60px;
    height: auto;
  }

  #job-offers-search button{
    display: block;
    width: 100%;
  }
}

/* 575px */
@media (max-width:575px){

  .job-form {padding: 30px}
  .job-single-desc .single-salary {font-size: 18px;}
  .job-single-desc .job-title {font-size: calc(1.375rem + 1.5vw);}

  .services-top .section-header{
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.3em;
  }

  img.custom-logo {
    transition: all 300ms ease;
  }

  .section-header h2 {line-height: 46px}
  .why_text svg{
    width: 60px;
    height: 60px;
  }
  .why_text {padding: 80px 15px 30px 15px;}

  .why_text .section-header span {color: #FFF}

  .logo-desc {
    width: 160px;
    padding-left: 15px;
    margin-left: 15px;
    font-size: 12px;
  }

  .our-services-footer {
    text-align: center;
  }

  .popup-container {padding: 20px;}

  .number__item h3 {font-size: 46px;}

  .shadow-1 {
    background-position: 5% 50%;
  }

  .our_features__item {
    text-align: center;
  }

  .home-gallery-container{
    padding-left: 15px;
    padding-right: 15px;
  }

  .type-job_offer .entry-content ul{
    padding-left: 0;
  }

  .home-cta h5 {font-size: 36px;}

 .new-offers,
  .home-numbers,
  .features {
    padding: 55px 0;
  }

  .job-offer h2 {
  font-size: 26px;
}

  .features .section-header{
    margin-bottom: 30px;
  }
  .section-header h2 {
    font-size: 36px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact_box {
    font-size: 16px;
    font-weight: 500;
  }

  .our_features__item img {
    width: 64px;
  }

  .hero-content h1 {
    font-size: 46px;
    line-height: 52px;
    margin-bottom: 15px;
  }

  .number__item{padding: 30px;}
  .job-offer-content{
    padding: 30px 20px;
  }

}

/* 400px */
@media (max-width:400px){
  #navigation-toggler {margin-right: 5px;}
}
