* {
    box-sizing: border-box;
    margin: 0;
  }
  
  @font-face {
    font-family: laila;
    src: url(./font/Laila-Light.ttf);
  }
  
  @font-face {
    font-family: poppins;
    src: url(./font/Poppins-Regular.ttf);
  }
  
  body {
    height: 100%;
    font-family: "poppins", serif;
  }
  
  h1 {
    font-size: 36px;
    font-family: "laila", sans-serif;
  }
  
  h4 {
    font-size: 40px;
    font-family: "laila", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
  }
  
  p {
    font-size: 16px;
    color: #61727f;
    font-family: "poppins", serif;
  }
  
  button {
    padding: 1rem;
    font-size: 14px;
    border: thin solid #000;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    transition: all 0.5s;
  }
  
  button:hover {
    background-color: #AE9D84;
    border-color: white;
    color: white;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 95px;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    
  }
  
  .navbarContent {
    height: 100%;
    width: 100%;
    margin: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
  }
  
  .navbar__logo {
    flex: 0.4;
    padding: 10px 0;
  }
  
  .navbar__logo img {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
  }
  
  .navbar__menuIcon {
    /* position: absolute;
    left: 50%;
    transform: translateX(0); */
    flex: 0.2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .floatingNav {
    box-shadow: 0px 1px 10px #999;
    background-color: rgba(255, 255, 255, 1);
  }
  
  .menu_icon {
    /* flex: 0.33; */
  
    display: flex;
    flex-flow: column;
    cursor: pointer;
  }
  .line {
    width: 2.5rem;
    height: 0.2rem;
    background-color: black;
    margin-bottom: 0.5rem;
    transition: width 0.3s;
  }
  
  .line-1,
  .line-3 {
    width: 1.8rem;
  }
  
  .checked-line-1 {
    transform: rotate(-405deg) translate(-8px, 6px);
    width: 2.5rem;
  }
  
  .checked-line-2 {
    opacity: 0;
  }
  
  .checked-line-3 {
    transform: rotate(405deg) translate(-8px, -6px);
    width: 2.5rem;
  }
  
  .menu_icon:hover .line {
    width: 2.5rem;
  }
  
  .navbar__contactUs{
    flex: 0.4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  
  .menu {
    width: 100%;
    position: fixed;
    top: 0;
    height: 101vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 10;
    clip-path: circle(100px at 50% -15%);
    -webkit-clip-path: circle(100px at 50% -15%);
    transition: all 0.5s ease-out;
  }
  
  .menu_content {
    /* width: 100%; */
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .menu_content > ul {
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .menu_content li {
    width: 200px;
    height: 150px;
    margin-bottom: 30px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .menu_content li span {
    font-size: 2rem;
  }
  
  .menu ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #0E1F2F;
    text-decoration: none;
    transition: color 0.2s;
    text-align: left;
    font-size: 20px;
  }
  
  .menu ul li a:hover {
    color: #AE9D84;
  }
  
  .menu.showMenu {
    clip-path: circle(2000px at 50% -10%);
    -webkit-clip-path: circle(2000px at 50% -10%);
    overflow-y: visible;
  }

  
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("./assets/Careers and Contact/Reach new heights with the qualidad.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner2 {
  background: url("assets/Careers\ and\ Contact/Ready to take your business to next level.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

  
.overlay {
  position: absolute;
  width: 100%;
  height: calc(100vh);
  top: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.banner__content {
  position: relative;
  margin: 0 20px;
  text-align: center;
  max-width: 1000px;
  z-index: 3;
}

.banner__content > h1 {
  font-size: 5rem;
  color: white;
  margin-bottom: 3rem;
}

.banner__content > h4 {
  color: white;
}

.banner__content > p {
  color: white;
}

.banner__content  button {
  background-color: transparent;
  color: white;
  border-color: white;
  margin-top: 4rem;
}

.banner__content  button:hover {
  background-color: #AE9D84;
}

  
/*---------------------------------------------*/
.contactUsFormContainer{
  height: 500px;
  display: flex;
  padding: 2rem;
  flex-direction: column;
  align-items: center;
}

.contactUsContent{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  align-items: center;
  transform: translateY(-40%);
  z-index: 2;
}

.contactUsFormContainer h4{
  text-align: center;
  margin-bottom: 30px;
}

input {
    outline: none;
    border: none;
    font-family: "poppins", serif !important;
  }
  
  textarea {
  outline: none;
  border: none; 
  font-family: "poppins", serif;

  }
  

  /*==================================================================
  [ Contact - Area]*/
  
  .container-contact {
    width: 85vw;  
    max-width: 600px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    padding: 40px 0px 20px 0px;
    border: 1px solid #b3b3b3;
  }


  
  /*==================================================================
  [ Contact - Form ]*/
  
  .contact-form {
    width: 100%;
  }
  
  
  /*------------------------------------------------------------------
  [ Input ]*/
  
  .wrap-input {
    width: 90%;
    background-color: #fff;
    border: 1px solid #b3b3b3;
    border-radius: 7px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  
  
  .input {
    position: relative;
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    line-height: 1.2;
    font-size: 16px;
    font-weight: 400;
    height: 42px;
    padding-left: 10px;
    padding-right: 10px;
    text-transform: none;
  }
  
.wrap-phone-number-input{
  display: flex;
  width: 90%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.phone-code-input{
  width: 55%;
  background: #fff;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 400;
  height: 42px;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: none;
  outline: none;
  border-radius: 7px;
  border: 1px solid #b3b3b3;
  margin-right: 10px;
}

  /*---------------------------------------------*/
  
  input.input {
    padding: 0 15px 0 15px;
  }
  
  /* Chrome, Safari, Edge, Opera */
  .container-contact input::-webkit-outer-spin-button,
.container-contact input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.container-contact input[type=number] {
  -moz-appearance: textfield;
}
  
  textarea.input {
    min-height: 100px;
    padding: 19px 15px 0 15px;
  }
  

  
  /*------------------------------------------------------------------
  [ Button ]*/
  .container-contact-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
  }
  
  .contact-form-btn{
    width: 150px;
  }

  .contact-form-btn:hover:before {
    background-color: #AE9D84;
  }

  .contact-form-btn:disabled{
    background-color: #ccc;
    color: white;
    border: none;
  }
  
  .validate-input {
    position: relative;
  }
  

/* ////////////////////// */
/* The Modal (background) */
.modal {
  display: none; 
  position: fixed; 
  z-index: 10; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  border-radius: 4px;
  width: 80%;
  padding: 3rem;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

.modal-content > span {
  font-size: 5rem;
  color: #AE9D84;
}
.modal-content > h1 {
  margin: 40px 0 10px;
}
 

.modal-content > a {
  margin-top: 30px;
  text-decoration: none;
  color: #AE9D84;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.modal-content > a > span {
 font-size: 1.2rem;
 margin-right: 10px;
}


/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:50%; opacity:1}
}


/* //////////////////////////// */
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: rgba(14, 31, 47, 1);
  }
  
  .footer__content {
    padding: 4rem;
    display: flex;
    justify-content: space-around;
  }
  
  .footer__socialLinks {
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .socialLink {
    display: flex;
    color: white;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .socialLink span {
    font-size: 1.5em;
    margin-right: 10px;
  }
  
  .socialLink a {
    color: white;
  }
  .footerIntro {
    flex: 0.34;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  
  .footerIntro > img {
    max-width: 100%;
    object-fit: contain;
  }
  
  .footer__qualidadText {
    margin-top: 20px;
    max-width: 430px;
  }
  
  .footer__qualidadText > p {
    color: white;
    /* margin-left: 20px; */
    text-align: center;
  }
  
  .footer__qualidadLogo {
    max-width: 100%;
    height: 75px;
  }
  
  .footer__quickLinks {
    flex: 0.33;
    min-height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
  }
  
  .quickLinks__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer__quickLinks h4 {
    font-size: 32px;
  }
  
  .footer__quickLinks ul {
    height: 100%;
    list-style: none;
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .footer__quickLinks li {
    margin-bottom: 10px;
  }
  
  .footer__quickLinks ul > li > a {
    color: white;
    text-decoration: none;
  }
  
  .footer__contactUs {
    flex: 0.33;
  }
  
  .contact_logo {
    height: 30px;
    object-fit: contain;
  }
  
  .contactContainer {
    display: flex;
    color: white;
    margin-bottom: 10px;
  }
  .contactContainer > span {
    font-size: 1.5em;
    margin-right: 10px;
  }
  
  .footer__end {
    background-color: rgba(14, 31, 47, 1);
    padding: 1rem;
    display: flex;
    display: flex;
    justify-content: center;
  }
  
  .footer__end > p {
    color: #fff;
  }
  

  
  @media (max-width: 990px) {

    .footer h4{
      font-size: 28px;
    }
  
    .footer__content {
      padding: 2rem;
    }
  
    .footerIntro {
      flex: 0.4;
    }
  
    .footer__quickLinks {
      flex: 0.4;
    }
  
    .footer__contactUs {
      flex: 0.2;
    }
  
  }
  
  @media(max-width: 800px){
  
  h1 {
    font-size: 32px;
  }
  
  h4 {
    font-size: 36px;
  }
  
  p {
    font-size: 16px;
  }
  
  button {
    padding: 0.9rem;
    font-size: 12px;
  }
  
  .navbar__logo{
    padding-right: 4rem ;
  }
  

    .footer h4{
      font-size: 24px;
    }
  
    .footer__content {
      padding: 2rem 1rem;
    }
  
  
  }
  
  @media (max-width: 700px){
    
    h1 {
      font-size: 30px;
    }
    
    h4 {
      font-size: 32px;
    }
    
    p {
      font-size: 14px;
    }

    .banner__content > h1 {
      line-height: 3rem;
      font-size: 3rem;
      color: white;
    }
    
    button {
      padding: 0.9rem;
      font-size: 12px;
    }

    
    .footer h4{
      font-size: 20px;
    }
  
  
  }
  
  @media(max-width: 600px){
  
    h4{
      text-align: center !important;
    }

    .line{
      width: 2.0rem;
      height: 2px;
      background-color: black;
      margin-bottom: 0.5rem;
    }
    .line-1, .line-3{
      width: 1.5rem;
    }
    
  .menu_content > ul {
    width: 100%;
    padding: 0;
  }
  
  .menu_content li {
    width: 150px;
    height: auto;
    margin-bottom: 60px;
    margin-right: 0px;
  }
  
  .menu_content li span {
    font-size: 2rem;
  }
  
    .navbar{
      height: 80px;
      padding-right: 0 !important;
    }
    .navbarContent{
      margin: 0 30px;
    }
    .navbar__menuIcon{
      flex: 0.5;
      justify-content: flex-end;
    }
  
    .navbar__logo{
      flex: 0.5;
      padding-right: 10rem;
    }
  
    .navbar__contactUs{
      display: none;
    }

  .footer__content{ flex-direction: column; }
  .footerIntro{
    flex: 1;
  }
  .footer__quickLinks{
    flex: 1;
    margin-top: 30px;
  }
  .footer__end{
    text-align: center;
  }
  }