@font-face {
  font-family: 'Robotos';
  font-weight: 700;
  src: url(/assets/fonts/RobotoSlab-Bold.ttf) format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Robotos';
  font-weight: 600;
  src: url(/assets/fonts/RobotoSlab-Medium.ttf) format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  font-weight: 400;
  src: url(/assets/fonts/Manrope-Regular.ttf) format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  font-weight: 700;
  src: url(/assets/fonts/Manrope-Bold.ttf) format('truetype');
  font-display: swap;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body{
  height: 100%;
  overflow-x: hidden;
}

body{
  width: 100%;
  position: relative;
  font-family: 'Manrope', serif;
  font-size: 16px;
  color: #000;
}
img{
  max-width: 100%;
  height: auto;
}

/* MISC */
.relative{
  position: relative;
}
.tac{
  text-align: center;
}
/* MISC */

.Job{
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

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

.Job-line{
  height: 20px;
  background: #0b71af;
}

/*********************************** HERO ***********************************/
.JobHero{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-end;

  height: 100vh;
  padding-bottom: 65px;
  line-height: 1.2;
  color: #4b2525;

  background: url(/views/ref2/img/hero.webp) no-repeat 20% center;
  background-size: 1506px;
}

.JobHero-title{
  margin: 0 0 20px;

  font-family: 'Robotos', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2em;
}
.JobHero-pair{
  margin: 0 15px;
}
.JobHero-logo{
  display: none;
}
.JobHero-subtitle{
  padding: 20px;

  position: relative;

  font-family: 'Robotos', serif;
  font-size: 24px;

  border-radius: 0 0 25px 0;
  background: rgba(255, 204, 0, 0.8);
}
.JobHero-subtitle:before{
  content: '';

  width: 100%;
  height: 80px;

  position: absolute;
  bottom: 100%;
  left: 100%;

  background: #0b71af;
  border-top-left-radius: 50px;
}
.JobHero-more{
  margin: 25px auto 10px;

  font-family: 'Robotos', serif;
  font-size: 17.5px;
  font-weight: 700;
  text-align: center;
}
.JobHero-more:after{
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: 10px auto 0;

  border-style: solid;
  border-width: 30px 50px 0 50px;
  border-color: #0b71af transparent transparent transparent;

  position: relative;
  animation: topdown 2.5s linear infinite;
}
@keyframes topdown {
  0% {
    transform: 0;
  }
  25% {
    transform: translateY(-2px);
  }
  60% {
    transform: 0;
  }
  75% {
    transform: translateY(2px);
  }
  100% {
    transform: 0;
  }
}
.JobHero-contact{
  display: inline-flex;
  flex-flow: column;

  position: absolute;
  right: 15px;
  top: 15px;
}
.JobHero-phone{
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  color: #4b2525;

  transition: all 0.3s;
}
.JobHero-phone:hover{
  color: #fff;
}
.JobHero-wasap{
  display: inline-block;
  padding-right: 30px;

  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #4b2525;
  text-decoration: none;

  transition: all 0.3s;
}
.JobHero-wasap:hover{
  color: #fff;
}
.JobHero-wasap:after{
  content: ' ';
  background-image: url('/assets/icons/whatsapp.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  right: 0;
  animation-name: blink;
  animation-timing-function: linear;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes blick {
  50% {
    opacity: 0;
  }
}
/*********************************** HERO ***********************************/

/*********************************** FORM1 ***********************************/
.JobForm1{
  padding: 110px 0;

  background: url(/views/ref2/img/form1.webp);
  background-position: 13% center;
  background-size: cover;
}
.JobForm1-text{
  padding-bottom: 35px;
  margin: 100px 15px 0;

  position: relative;

  font-family: 'Robotos', serif;
  font-size: 18px;
  color: #fff;
  font-weight: 600;

  text-shadow: 0 0 1px black;
}
/* .JobForm1-body{} */
.JobForm1-header{
  margin: 30px 0;

  font-family: 'Robotos', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.JobForm1-form{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;

  padding: 0 15px;
}
.JobForm1-field{
  width: 100%;
}
.JobForm1-input{
  display: block;
  width: 100%;
  height: 34px;
  padding: 20px;
  border: 1px solid #989898;

  font-family: inherit;
  font-size: 16px;
  line-height: 1.42857143;
  color: #000;

  background-color: #fff;
  background-image: none;
  border-radius: 500px;
  box-shadow: none;
  transition: border-color ease-in-out .15s,
              box-shadow ease-in-out .15s;
}
.JobForm1-input:focus{
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
              0 0 8px rgba(102,175,233,.6);
  outline: 0;
}
.JobForm1-button{
  display: inline-block;
  width: 100%;
  height: 42px;
  padding: 12px;
  margin-bottom: 0;
  border: 0;

  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
  text-align: center;
  white-space: nowrap;

  background: #29adef;
  box-shadow: none;
  border-radius: 500px;
  outline: 0;
  transition: 0.25s ease all;

  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
}
.JobForm1-button:hover,
.JobForm1-button:focus{
  transform: scale(1.07);
  background: #00aff2;
}
.JobForm1-button:active{
  background: #0099ef;
}
/*********************************** FORM1 ***********************************/

/*********************************** FORM2 ***********************************/
.JobForm2{
  padding: 50px 0;
  background-image: url(/views/ref2/img/bg4.webp);
  background-size: cover;
  background-position: right center;
}
.JobForm2-body{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 10px;

  width: 400px;
  max-width: 100%;
  margin: 0 auto;

  position: relative;
}
.JobForm2-header{
  margin-bottom: 40px;

  font-family: 'Robotos', serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #0c6faf;
  white-space: nowrap;
}
.JobForm2-form{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;

  width: 100%;
}
.JobForm2-field{
  width: 100%;
}
.JobForm2-label{
  display: block;
  margin-bottom: 10px;

  font-family: 'Robotos', serif;
  font-weight: 700;
  color: #000;
}
.JobForm2-input{
  display: block;
  width: 100%;
  height: 34px;
  padding: 20px;
  border: 1px solid #989898;

  font-family: inherit;
  font-size: 16px;
  line-height: 1.42857143;
  color: #000;

  background-color: #fff;
  background-image: none;
  border-radius: 500px;
  box-shadow: none;
  transition: border-color ease-in-out .15s,
              box-shadow ease-in-out .15s;
}
.JobForm2-input:focus{
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
              0 0 8px rgba(102,175,233,.6);
  outline: 0;
}
.JobForm2-button{
  display: block;
  width: 250px;
  height: 42px;
  padding: 12px;
  margin: 20px auto 0;
  border: 0;

  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
  text-align: center;
  white-space: nowrap;

  background: #29adef;
  box-shadow: none;
  border-radius: 500px;
  outline: 0;
  transition: 0.25s ease all;

  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
}
.JobForm2-button:hover,
.JobForm2-button:focus{
  transform: scale(1.07);
  background: #00aff2;
}
.JobForm2-button:active{
  background: #0099ef;
}
.JobForm2-logo{
  display: none;
}
/*********************************** FORM2 ***********************************/

/*********************************** FORMFINAL ***********************************/
.JobFormFinal{
  padding: 40px;

  position: fixed;
  z-index: 99999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  overflow-x: hidden;
  overflow-y: auto;

  font-family: 'Robotos', serif;

  background-color: #000;
}
.JobFormFinal-body{
  max-width: 100%;
  width: 360px;
  padding: 15px;
  margin: 0 auto;

  position: relative;

  background-color: #fff;
  background-clip: padding-box;
  border-radius: 6px;
}
.JobFormFinal-close{
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;

  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;

  text-shadow: 0 1px 0 #fff;
  user-select: none;
  opacity: 0.5;
  cursor: pointer;
}
.JobFormFinal-close:hover{
  opacity: 1;
}
.JobFormFinal-logo{
  width: 200px;
  margin: 0 auto;
}
.JobFormFinal-form{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;

  padding: 15px;

  font-size: 12px;
}
.JobFormFinal-field{
  width: 100%;
}
.JobFormFinal-label{
  display: block;
  margin-bottom: 10px;

  font-family: 'Robotos', serif;
  font-weight: 700;
  color: #000;
}
.JobFormFinal-select,
.JobFormFinal-input{
  display: block;
  width: 100%;
  height: 34px;
  padding: 7px 15px;
  border: 1px solid #989898;

  font-family: inherit;
  line-height: 1.42857143;
  color: #000;

  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  box-shadow: none;
  transition: border-color ease-in-out .15s,
              box-shadow ease-in-out .15s;
}
.JobFormFinal-input:focus{
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
              0 0 8px rgba(102,175,233,.6);
  outline: 0;
}
.JobFormFinal-button{
  display: block;
  height: 34px;
  padding: 0 24px;
  margin: 20px auto 0;
  border: 0;

  font-family: inherit;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
  text-align: center;
  white-space: nowrap;

  background: #29adef;
  box-shadow: none;
  border-radius: 4px;
  outline: 0;
  transition: 0.25s ease all;

  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
}
.JobFormFinal-button:hover,
.JobFormFinal-button:focus{
  transform: scale(1.07);
  background: #00aff2;
}
.JobFormFinal-button:active{
  background: #0099ef;
}
/*********************************** FORMFINAL ***********************************/


@media (min-width: 768px) {
  .Job-container {
    width: 750px;
  }

  /*********************************** HERO ***********************************/
  .JobHero{
    background: url(/views/ref2/img/hero.webp) no-repeat center center;
    background-size: cover;
  }
  .JobHero-title{
    width: 50%;
    margin-left: auto;

    font-size: 52px;
  }
  .JobHero-pair{
    display: flex;
    align-items: flex-end;
    gap: 20px;

    position: relative;
    right: 5%;
  }
  .JobHero-logo{
    flex: 0 0 50%;
    display: block;
    text-align: right;
  }
  .JobHero-logo img{
    width: 300px;
  }
  .JobHero-subtitle{
    flex: 0 0 50%;
    font-size: 32px;
    font-weight: 700;
    border-bottom-right-radius: 115px;
  }
  .JobHero-more{
    margin: 50px auto 10px;
  }
  /*********************************** HERO ***********************************/

  /*********************************** FORM1 ***********************************/
  .JobForm1{
    background-position: center center;
  }
  .JobForm1-text{
    width: 585px;
    margin: 0 auto;

    font-size: 24px;
    font-weight: 600;
  }
  .JobForm1-text:before{
    content: '';
    width: calc(100% + 65px);
    height: 2px;

    position: absolute;
    top: -50px;
    right: 0;

    background: #0b71af;
  }
  .JobForm1-text:after{
    content: '';
    width: 100%;
    height: 2px;

    position: absolute;
    bottom: 0;
    right: 0;

    background: #0b71af;
  }
  /*********************************** FORM1 ***********************************/

  /*********************************** FORM2 ***********************************/
  .JobForm2-header{
    font-size: 40px;
  }
  /*********************************** FORM2 ***********************************/
}

@media (min-width: 992px) {
  .Job-container {
    width: 970px;
  }

  /*********************************** HERO ***********************************/
  /*********************************** HERO ***********************************/

  /*********************************** FORM1 ***********************************/
  .JobForm1-form{
    flex-flow: row nowrap;
    width: 66.666%;
    margin: 0 auto;
  }
  .JobForm1-field{
    flex: 0 1 33%;
    gap: 20px;
  }
  /*********************************** FORM1 ***********************************/
}

@media (min-width: 1200px) {
  .Job-container {
    width: 1170px;
  }

  /*********************************** HERO ***********************************/
  /*********************************** HERO ***********************************/

  /*********************************** FORM2 ***********************************/
  .JobForm2-logo{
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
    padding-right: 45px;
    border-right: 2px solid #0b71af;

    position: absolute;
    top: 0;
    right: calc(100% + 100px);
  }
  .JobForm2-logo img{
    max-width: 250px;
    width: 250px;
  }
  /*********************************** FORM2 ***********************************/
}

@media (min-width: 1400px) {
  .Job-container {
    width: 1340px;
  }
}