@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", Sans-serif;
    --red:#233e5a;
    --white:#ffffff;

  }
  .container{

    max-width: 1350px;
    margin: 0 auto;
  }

  /* header start */


#hide-header {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #ffffff;
  /* padding: 10px 0 16px; */
  transition: 0.8s ease-in-out;
}

/* CONTAINER FLEX LAYOUT */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

/* LOGO */
.navbar_logo img {
  width: 168px;
  height: 65px;
}

/* NAVBAR LINKS LIST */
.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* NAVBAR ITEMS SPACING */
.navbar-nav li:not(:first-child) {
  margin-left: 30px;
}

/* LINK STYLE */
.navbar-nav .nav-link {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* ACTIVE & HOVER STATES */
.navbar-nav .nav-link.active {
  color: #233e5a;
}

.navbar-nav .nav-link:hover {
  color: #233e5a !important;
}

/* APPLY BUTTON */
.custom_login_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  min-width: 60px;
  height: 46px;
  font-size: 11px;
  font-weight: 600;
  background: #233e5a;
  color: #fff !important;
  margin-left: 60px;
  
}
.custom_login_button:hover {
  animation: pulse-shrink 0.7s ease-in-out;
}
@keyframes pulse-shrink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.94);
  }
  100% {
    transform: scale(1);
  }
}

/* APPLY BUTTON HOVER TRANSITION */
.custom_login_button:hover span {
  display: none;
}



  /* custom */

  body {
    transition: transform 1s;
  }

  .slide-right {
    transform: translateX(50%);
    overflow: hidden;
  }

  .mobile_body_overlay_on {
    display: block !important;
    z-index: 999;
  }

  .mobile_body_overlay {
    backdrop-filter: blur(10px);
    background-color: hsla(0, 0%, 81%, 0.8);
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
  }

  a,
  a:link,
  a:visited,
  a:active {
    color: #000;
    text-decoration: none;
    font-weight: bold;
  }

  .navlinks li {
    display: inline-block;
    margin: 20px 20px 0 0;
  }

  .logo {
    font-family: "Lobster", cursive;
    font-size: 20px;
  }

  .mobile-menu {
    float: left;
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    background: ffffff;
    width: 50%;
    height: 100%;
    padding: 20px;
    display: none;
  }

  .mobile-menu .logo {
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .mobile-menu .logo img {
    width: 40%;
    padding: 10px;
  }

  .mobile-menu .navlinks {
    /* position: relative; */
    position: sticky;
    top: 0;
  }

  .mobile-menu .navlinks li {
    display: flex;
    padding: 5px;
    margin: 0;
  }

  .mobile-menu a {
    color: #fff;
  }

  @media (max-width: 1200px) {
    .navbar_logo img {
      width: 70%;
    }
    .navbar .container {
      display: grid;
      grid-template-columns: 20% 80%;
    }
    a.nav-link {

      font-size: 15px;
      font-family: "Roboto", sans-serif;
      font-weight: 500;
    }
    .navbar-nav li:nth-child(7) {
      margin-left: 15px;
    }
    .custom_menu .custom_login_button {
      padding: 0px 15px !important;
    }
  }

  @media (max-width: 991px) {
    .navbar .container {
      display: flex;
      align-items: center;
    }
    .navbar-toggler:focus {
      box-shadow: 0 0 0 2px;
    }

    .mobile-menu {
      display: block;
    }

    .mobile-menu .logo {
      position: relative;
    }

    .mobile-menu .logo a {
      display: flex;
      justify-content: center;
    }

    .navbar-brand {
      width: 75%;
    }

    .navbar_logo img {
      width: 30%;
    }

    /* .navbar-collapse {
      display: flex;
    } */

    .navbar-nav li:nth-child(2),
    .navbar-nav li:nth-child(3),
    .navbar-nav li:nth-child(4),
    .navbar-nav li:nth-child(7) {
      margin-left: 15px;
      margin-left: 0px;
    }

    .navbar-nav .nav-link {
      display: flex;
      justify-content: center;
    }

    .mobile_menu_div {
      position: relative;
    }

    .mobile-menu i {
      position: absolute;
      top: 6%;
      right: 0;
      z-index: 999;
      font-size: 25px;
      color: #233e5a;
    }
    .preheader{
      display: none;
    }
  }

  @media (max-width: 650px) {
    .mobile-menu .logo img {
      width: 120px;
    }
    .preheader{
      display: none;
    }
  }

  @media screen and (max-width: 420px) {
    .slide-right {
      transform: translateX(100%);
    }

    .mobile-menu {
      width: 100%;
      /* transform: translateX(100%); */
    }
    .preheader{
      display: none;
    }
  }

  /* header end */
  .banner{
   background-image: url(https://recutify.com/wp-content/uploads/2025/07/5152.jpg);
    --background-overlay: '';
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
   
    background-color: transparent;
    background-image: linear-gradient(150deg, #1b9287 0%, #233e5a 100%);
    padding: 60px 0;
 }
  .banner-content h1{
    color: var(--white);
    text-align: left;
    font-weight: 700;

    font-size: 39px;
  }
  .filters-content{
    margin: 20px 0;
   }
  .select-1{
    padding: 15PX 15PX;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #444444;
    border: 1px solid #dddfe3;

  }
  /* Job Posting content list */
  .job-posting-content-post{
    list-style-type: none;

  }
.job-field-1 h2 a{
    color: #cc3366;
    font-size: 17px;
    font-weight: 400;
    margin-left: 20px;
}
.job-field-1 h2 a:hover{
    color: #1d1d1d;
    font-size: 17px;
    font-weight: 400;
    margin-left: 20px;
}
.job-field-2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    font-size: 15px;
    margin-right: 20px;
}
.job-field-2 h3{
    font-size: 15px;
    font-weight: 400;
    color: #7a7a7a;
}
.more-detail a{
  color: #cc3366 !important;
}
.more-detail a:hover{
  color: #000000 !important;
}
.job-field{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dddfe3;
    padding: 15px 5px;

}
.job-post-ul{
    border: 1px solid #dddfe3;
}


/* Second page */
.description-content{
    margin-top: 40px;
}
  .form-content{
    margin-top: 40px;
    border: 1px solid #dddfe3;

}
.form-1{
    margin: 30px 50px;
}
.form-1 input {
    width: 100%;
    height: 50px;
    margin: 10px 0;
    padding-left: 10px;
}
.form-1 textarea{
    min-width:100%;
    max-width: 100%;
    min-height: 60px;
    padding: 10px;
}
.form-1 h3{
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 20px;
}
.form-1 #button{
    background-color: var(--red);
    border: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}
.form-1 #file{
    margin-bottom: 0 ;
}
.label-istaric{
  color:#233e5a;
}
.job-posting button{
  width: 100%;
  border: 1px solid #dddfe3;
  background-color: #ffffff;
  color: #cc3366;
  height: 45px;
  margin: 20px 0;
  font-size: 15px;
}
.job-posting button:hover{
 color: #000000;
}
.description-content h3{
color: #333333;
font-size: 16px;
font-weight: 700;
line-height: 24px;
margin: 10px 0;
}
.description-content ul{
  margin-left: 30px;
  color: #333333;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  padding: 20px;

}
.description-content h3 span{
  font-weight: 400
}
form h6{
  font-weight: 400;
}

/* footer css start */

.footer-main {
  padding-top: 30px;
  background: #000;
}

.footer-second {
  background: #262A36;
  margin-bottom: -8px;
}

.address-main > div.col-lg-4 {

  padding-top:20px ;
}
.address-box {
  padding: 10px 0;
  margin-bottom: 30px;
}

.address-box2,
.address-box3 {
  display: flex;
  justify-content: center;
}

.add-content h5 {

  color: #ffffff;
  font-size: 18px;
    text-transform: uppercase;
  padding: 0;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: var(--footer-font-family);
}
.add-content p {
  font-size: 13px;
  color: #fff;
  font-weight: 300;
}
.add-content p a {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  word-wrap: break-word;
}
.add_content2 .add-content ul li a:hover{
  color : #cc1825 !important;
}
.add_content2 .add-content ul li a:hover {
  color: #cc1825;
}

.add-icon img {
  width: 50%;
  margin-bottom: 10px;

}

.add_content1 {
  padding-top: 10px;
}

.add_content2 ul {
  list-style: none;
  padding-left: 0;
  width: 100%;
}

.add_content2 ul li {
  margin-top: 10px;
}

.add_content2 ul a {
  color: #ffffff;
  font-weight: normal;
  font-family: var(--footer-font-family);
  font-weight: 400;
  font-size: 16px;
}
.add_content2 ul p {
  color: #ffffff;
  font-weight: normal;
  font-family: var(--footer-font-family);
  font-weight: 400;
  font-size: 16px;
}

.add_content2 ul a:hover {
  color: #1b9287;
}

.custom_envelope,
.custom_phone,
.custom_marker {
  color: #cc1825;
  font-size: 22px;
}

.footer_custom_icon_links:hover .custom_icon_text,


.custom_icon_address_text {
  margin-left: 15px;
}

.custom_icon_text,
.custom_icon_address_text {

  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  font-family: var(--footer-font-family);
}

.custom_branch_address {
  display: flex;
  align-items: center;
}

.poweredbyi8is {
  color: #ffffff !important;
}
.text-center h6{
  padding: 15px 0;
  font-size: 16px;
}
.ahadhr{
  opacity: inherit;
  


  display: flex;
  justify-content: center;
}
/* footer css end */

/* footer responsiveness start */
@media (max-width: 991px) {
  .address-main {
    display: grid;
    grid-template-columns: 34% 33% 33%;
  }

  .address-box {
    padding: 0;
    margin-bottom: 0;
  }

  .footer-main .socialmedia {
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .add-icon img {
    width: 158px;
  }

  .address-main {
    display: flex;
  }

  .address-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .add-icon {
    display: flex;
    justify-content: center;
  }

  .add-content {
    text-align: center;
  }

  .add_content2 ul a {
    justify-content: center;
  }

  .add_content2 ul {
    width: 100%;
  }

  .footer-main .socialmedia {
    display: flex;
    justify-content: center;
  }

  .address-main > div.col-lg-4 {
    margin-bottom: 10px;
  }

  .add-content p {
    margin-bottom: 5px;
  }
}

/* footer responsiveness end */