/*--------------------------------------------------------------
# Hero-jobhunt
 Section
--------------------------------------------------------------*/
#hero-jobhunt
 {
  width: 100%;
  height: 100vh;
  background: url("../images/P1111645.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero-jobhunt:before {
  content: "";
  background: rgb(0, 51, 124, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-jobhunt
 .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}

#hero-jobhunt
 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--white);
}

#hero-jobhunt
 h2 {
  color: var(--white);
  margin-bottom: 40px;
  font-size: 24px;
}


@media (min-width: 1024px) {
  #hero-jobhunt
   {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-jobhunt
   h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-jobhunt
   h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# jobhunt-information
--------------------------------------------------------------*/

.jobhunt-information
 .content ul {
    list-style: none;
    padding: 0;
  }
  
  .jobhunt-information
   .content p:last-child {
    margin-bottom: 0;
  }
  
  .jobhunt-information
   .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
  }
  
  /*--------------------------------------------------------------
# spontaneous-application
--------------------------------------------------------------*/
.spontaneous-application
{
  background-color: #f9f9f9;
}

.spontaneous-application
.content ul {
   list-style: none;
   padding: 0;
 }
 
 .spontaneous-application
  .content p:last-child {
   margin-bottom: 0;
 }
 
 .spontaneous-application
  .image {
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   min-height: 400px;
 }

 /*--------------------------------------------------------------
# Button-spontaneous-application
--------------------------------------------------------------*/
.button-spontaneous-application {
  margin:0px;
  background: var(--mainBlue);
  color: var(--white);
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

.button-spontaneous-application:hover {
  letter-spacing: 6px;
  text-decoration: none;
  color: #bb9f82;
}

@media (max-width: 992px) 
{
  .button-spontaneous-application {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}