@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-out-center {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes vibrate-1 {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@font-face {
  font-family: "Speedee";
  src: url(../fonts/Speedee/Speedee_Rg.ttf) format("truetype");
}
@font-face {
  font-family: "Speedee Bold";
  src: url(../fonts/Speedee/Speedee_Bd.ttf) format("truetype");
}
@font-face {
  font-family: "Speedee Light";
  src: url(../fonts/Speedee/Speedee_Lt.ttf) format("truetype");
}
@font-face {
  font-family: "Speedee Italic";
  src: url(../fonts/Speedee/Speedee_It.ttf) format("truetype");
}
:root {
  font-size: clamp(1rem, 1rem + (1vw - 0.234375rem) * 0.5178, 1.1rem);
  min-height: 0vw;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Speedee", Arial, Helvetica, sans-serif;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

.navbar {
  width: 100%;
  height: 60px;
  box-shadow: 0px 3px 13px -3px rgba(0, 0, 0, 0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 4;
}
.navbar__container {
  width: 100%;
  height: 100%;
  min-width: 300px;
  max-width: 750px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.navbar__container__button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}
.navbar__logo img {
  height: 40px;
  padding-left: 10px;
}
.navbar__menu--desktop {
  display: none;
}
.navbar__menu--desktop a {
  margin-inline: 10px;
}
.navbar__menu--mobile {
  width: 100%;
  position: absolute;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 15px -8px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 60px;
  height: 300px;
  display: none;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  color: #1d5030;
}
.navbar__menu--mobile a {
  font-size: 1.6rem;
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar__menu--mobile .yellow {
  color: #ffb81c;
}
.navbar .hamburger {
  margin-right: 15px;
}

.transparent {
  position: fixed;
  z-index: 3;
  height: 100vh;
  width: 100vw;
  background-color: rgb(21, 21, 21);
  opacity: 60%;
  display: none;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
body .top_svg {
  position: absolute;
  z-index: -1;
  width: 100%;
  display: flex;
  justify-content: center;
}
body .top_svg svg {
  width: 100%;
  max-width: 750px;
}

.introduction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 220px;
}
.introduction h1 {
  color: white;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 20px;
}
.introduction img {
  height: 150px;
}

.player {
  margin-top: 10px;
  display: none;
  justify-content: center;
}
.player .plyr {
  max-width: 750px;
  min-width: 300px;
  margin-inline: 10px;
  aspect-ratio: 16/9;
  display: flex;
  justify-self: center;
}

.player-image {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  min-width: 300px;
  margin-inline: auto;
  margin-top: 100px;
  cursor: pointer;
}
.player-image img {
  width: 100px;
}
.player-image p {
  color: #1d5030;
  width: 100px;
  background-color: #ffb81c;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 1px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0.6rem 0.3rem;
  font-weight: 900;
  font-size: 1.4rem;
  border: 3px solid #1d5030;
  border-radius: 0.4em;
  box-shadow: 0.1em 0.1em;
  letter-spacing: 1px;
}

:root {
  --plyr-color-main: #ffb81c;
}

.resources {
  margin-bottom: 160px;
  position: relative;
  z-index: 1;
}
.resources .nominas {
  max-width: 750px;
  min-width: 300px;
  margin-top: 20px;
  margin-left: 15px;
  margin-inline: auto;
}
.resources .nominas a {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.resources .nominas a p {
  font-size: 2.3rem;
  color: #1d5030;
  align-self: center;
}
.resources .nominas a img {
  width: 90px;
}

.workplace {
  max-width: 750px;
  min-width: 300px;
  margin-top: 10px;
  margin-inline: auto;
  cursor: pointer;
}
.workplace a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: none;
}
.workplace a p {
  font-size: 2.3rem;
  color: #1d5030;
  align-self: center;
  margin-top: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.workplace a img {
  width: 140px;
  margin-top: 7px;
}

.app {
  max-width: 750px;
  min-width: 300px;
  margin-top: 10px;
  margin-inline: auto;
  cursor: pointer;
}
.app a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: none;
}
.app a p {
  font-size: 2.3rem;
  color: #1d5030;
  align-self: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.app a img {
  width: 110px;
  margin-top: 7px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.app__paragraph {
  display: flex;
  flex-direction: column;
}
.app__paragraph--margin {
  margin-top: 20px;
}

.form {
  max-width: 750px;
  min-width: 300px;
  margin-top: 10px;
  margin-inline: auto;
  cursor: pointer;
}
.form a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: none;
}
.form a p {
  font-size: 2.3rem;
  color: #1d5030;
  align-self: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-left: 10px;
}
.form a img {
  width: 100px;
  margin-top: 7px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form__paragraph {
  display: flex;
  flex-direction: column;
}
.form__paragraph--margin {
  margin-top: 20px;
}

.apps {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 10px;
}
.apps img {
  width: 40px;
  height: 40px;
  margin-top: 20px;
  margin-inline: 30px;
}
.apps button {
  width: 100px;
  height: 40px;
  border: 3px solid #ffb81c;
  border-radius: 1rem;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  padding: 5px 0px;
  text-align: center;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  background-color: transparent;
  margin-inline: 20px;
}

.workplace-in {
  animation: slide-in-fwd-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms both;
}

.workplace-out {
  animation: slide-in-fwd-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms reverse both;
}

.buttons {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 20px;
  min-width: 300px;
  max-width: 750px;
  margin-inline: auto;
}
.buttons .workplace-app {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.buttons .workplace-app .app-button-container {
  display: none;
  flex-direction: row;
}
.buttons .workplace-app .app-button-container p {
  padding-left: 10px;
  color: #1d5030;
  font-size: 1.5rem;
  cursor: pointer;
}
.buttons .workplace-app .workplace-in {
  animation: slide-in-fwd-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms both;
}
.buttons .workplace-app .workplace-out {
  animation: slide-in-fwd-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms reverse both;
}
.buttons .workplace-app .workplace-buttons {
  display: none;
  flex-direction: row;
  margin-left: 30px;
}
.buttons .workplace-app img {
  height: 70px;
  cursor: pointer;
}
.buttons .workplace-app p {
  align-self: center;
  margin-left: 5px;
  font-size: 1.3rem;
  width: 40px;
}
.buttons .workplace-chat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  min-width: 300px;
}
.buttons .workplace-chat .chat-button-container {
  display: none;
  flex-direction: row;
}
.buttons .workplace-chat .chat-button-container p {
  padding-left: 10px;
  color: #1d5030;
  font-size: 1.5rem;
  cursor: pointer;
}
.buttons .workplace-chat .workplace-in {
  animation: slide-in-fwd-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms both;
}
.buttons .workplace-chat .workplace-out {
  animation: slide-in-fwd-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms reverse both;
}
.buttons .workplace-chat .workplace-chat-buttons {
  display: none;
  align-items: center;
  flex-direction: row;
  margin-left: 30px;
}
.buttons .workplace-chat img {
  height: 70px;
  cursor: pointer;
}
.buttons .workplace-chat p {
  align-self: center;
  margin-left: 5px;
  font-size: 1.3rem;
  width: 40px;
}
.buttons button {
  margin-inline: 10px;
  width: 100px;
  height: 40px;
  border: 3px solid #ffb81c;
  border-radius: 1rem;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  padding: 5px 0px;
  text-align: center;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  background-color: transparent;
}

.android {
  display: none;
  justify-content: center;
}
.android button {
  width: 100px;
  height: 40px;
  border: 3px solid #ffb81c;
  border-radius: 1rem;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  padding: 5px 0px;
  text-align: center;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  background-color: transparent;
}

.ios {
  display: none;
  justify-content: center;
}
.ios button {
  width: 100px;
  height: 40px;
  border: 3px solid #ffb81c;
  border-radius: 1rem;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  padding: 5px 0px;
  text-align: center;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  background-color: transparent;
}

.fred {
  max-width: 750px;
  min-width: 300px;
  margin-top: 10px;
  margin-left: 15px;
  margin-inline: auto;
}
.fred a {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.fred a p {
  font-size: 2.3rem;
  color: #1d5030;
  align-self: center;
  letter-spacing: 3px;
}
.fred a img {
  width: 100px;
  margin-right: 10px;
}

.mcdonalds {
  max-width: 750px;
  min-width: 300px;
  margin-top: 10px;
  margin-left: 15px;
  margin-inline: auto;
}
.mcdonalds a {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.mcdonalds a p {
  font-size: 2.3rem;
  color: #1d5030;
  align-self: center;
  letter-spacing: 3px;
}
.mcdonalds a img {
  width: 100px;
  margin-right: 10px;
}

footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .copyright {
  color: #1d5030;
  text-align: center;
}

.svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 0;
}
.svg svg {
  max-width: 768px;
  min-width: 300px;
}

hr {
  margin-top: 10px;
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  min-width: 300px;
  max-width: 750px;
  margin-inline: auto;
}

.active {
  display: flex !important;
}

.player-in {
  display: flex;
  animation: scale-in-center 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.player-out {
  display: flex;
  animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.vibrate {
  animation: vibrate-1 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
}

.form-mb-5 {
  margin-bottom: 20px;
}

.form-pt-3 {
  padding-top: 12px;
}

.form-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 48px 0 48px;
  flex-direction: column;
}

.form-form-wrapper {
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
  background: white;
}

.form-form-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #1d5030;
  margin-bottom: 12px;
}

.form-form-label-2 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.form-form-input {
  width: 100%;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: white;
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
  outline: none;
  resize: none;
}

.form-form-input:focus {
  border-color: #ffb81c;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.form-btn {
  text-align: center;
  letter-spacing: 1px;
  font-size: 16px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #ffb81c;
  color: white;
  cursor: pointer;
}

.form-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.form--mx-3 {
  margin-left: -12px;
  margin-right: -12px;
}

.form-px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-full {
  width: 100%;
}

@media (min-width: 540px) {
  .sm\:w-half {
    width: 50%;
  }
}
.text {
  padding: 1.2rem;
  color: #1d5030;
  text-align: justify;
  font-size: 1.1rem;
  margin: 15px 0 15px;
  max-width: 750px;
  width: 100%;
  margin-inline: auto;
  line-height: 1.2rem;
}

.hide {
  display: none;
  flex-direction: column;
}

.message-sent {
  margin: 20px 0 20px;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.message-sent h1 {
  color: #1d5030;
  text-align: center;
}
.message-sent img {
  width: 150px;
}

.ofertas {
  max-width: 750px;
  min-width: 300px;
  margin-top: 10px;
  margin-inline: auto;
  cursor: pointer;
}
.ofertas a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: none;
}
.ofertas a p {
  font-size: 2.3rem;
  color: #1d5030;
  align-self: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ofertas a img {
  width: 110px;
  margin-top: 7px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ofertas__paragraph {
  display: flex;
  flex-direction: column;
}
.ofertas__paragraph--margin {
  margin-top: 20px;
}

.img-ofertas {
  display: none;
}
.img-ofertas img {
  width: 100%;
  margin-inline: auto;
  padding: 20px 30px 20px 30px;
  max-width: 500px;
  cursor: pointer;
}/*# sourceMappingURL=employees.css.map */