@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@-webkit-keyframes rotatedown {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  to {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
}
@keyframes rotatedown {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  to {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
}

@-webkit-keyframes expandDown {
  from {
    height: 0;
  }
  to {
    height: 150px;
    margin: 1.5rem 0;
  }
}

@keyframes expandDown {
  from {
    height: 0;
  }
  to {
    height: 150px;
    margin: 1.5rem 0;
  }
}

@-webkit-keyframes expandBack {
  from {
    height: 150px;
  }
  to {
    height: 0;
    margin: 0;
  }
}

@keyframes expandBack {
  from {
    height: 150px;
  }
  to {
    height: 0;
    margin: 0;
  }
}

@-webkit-keyframes leftToRight {
  from {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  to {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
  }
}

@keyframes leftToRight {
  from {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  to {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
  }
}

@-webkit-keyframes rightToLeft {
  from {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
}

@keyframes rightToLeft {
  from {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
}

.leftToRight {
  animation: leftToRight 0.65s forwards;
  -webkit-animation: leftToRight 0.65s forwards;
}

.rightToLeft {
  animation: rightToLeft 0.65s forwards;
  -webkit-animation: rightToLeft 0.65s forwards;
}

.expandDown {
  animation: expandDown 0.65s forwards;
  -webkit-animation: expandDown 0.65s forwards;
}

.expandBack {
  animation: expandBack 0.45s forwards;
  -webkit-animation: expandBack 0.45s forwards;
}

button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  gap: .5rem;
  padding: .7rem;
  font-size: 1.2rem;
  background-color: #DC9C33;
  color: #F5F5F5;
  max-width: 180px;
  -webkit-box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

button i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

button:focus, button:hover {
  background-color: #DC9C33;
  color: #231F20;
  cursor: pointer;
}

.form {
  width: 100%;
  padding: 4rem .5rem 8rem .5rem;
  background-color: #DC9C33;
  position: relative;
  background-image: url("../images/bg-worker.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form::after {
  content: "";
  width: 100%;
  background-color: rgba(220, 156, 51, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.form form {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  width: 100%;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: .7rem;
}

.input label {
  font-weight: 500;
  font-size: 15px;
}

.input input[type="text"], .input textarea {
  width: 100%;
  border: solid 1px #dadada;
  height: 40px;
  padding: 8px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.input textarea {
  min-height: 250px;
  max-height: 250px;
  min-width: 100%;
}

.send-button {
  margin: 1rem 0;
  padding: .6rem 1.2rem;
  font-size: .95rem;
  background-color: #231F20;
  color: #F5F5F5;
}

@media screen and (min-width: 768px) {
  .form {
    padding: 8rem 0 6rem 0;
  }
  .form form {
    max-width: 80%;
  }
}

@media screen and (min-width: 960px) {
  .form {
    padding: 0;
  }
  .form form {
    max-width: 700px;
  }
}

a {
  text-decoration: none;
  color: #231F20;
  position: relative;
  padding: 6px 12px;
  -webkit-transition: .3s ease-out;
  -webkit-transition: .3s all ease-out;
  transition: .3s all ease-out;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #DC9C33;
}

*, *::after, *::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  color: #231F20;
  size: 10px;
  line-height: 32px;
  background-color: #FFFFFF;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
  position: absolute;
  width: 100%;
  min-width: 320px;
  z-index: 99;
}

.logo {
  width: 100px;
  position: relative;
  z-index: 99;
  padding: .5rem 0;
}

.mobile {
  font-size: 2rem;
  padding: 1rem;
  color: #F5F5F5;
  position: relative;
  z-index: 99;
}

.mobile:hover {
  cursor: pointer;
  color: #DC9C33;
}

.mobile i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.top-line {
  width: 100%;
  background-color: #231F20;
  padding: 6px 0;
}

.top-line .phone {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px !important;
  letter-spacing: 0.025rem;
  border-top: none;
}

.top-line .phone a {
  font-family: 'Intel', sans-serif;
  font-size: 18px;
  font-weight: normal;
}

nav {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #231F20;
  left: -100%;
  top: 0;
  padding: 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #F5F5F5;
}

nav ul {
  width: 100%;
  height: calc(100% - 120px);
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav ul li {
  text-align: center;
  width: 100%;
  padding: 8px 0;
  margin-bottom: .7rem;
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
  -webkit-transition: .3s ease-out;
  -webkit-transition: .3s all ease-out;
  transition: .3s all ease-out;
  position: relative;
  padding: 6px 12px;
}

nav ul li:hover {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 3px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  background-color: rgba(35, 31, 32, 0.85);
  color: #DC9C33;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.phone {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0;
  border-top: solid 1px #272626;
}

.phone .titulo {
  color: #DC9C33;
  font-size: 18px;
}

.phone a {
  color: #F5F5F5;
  font-weight: 600;
  font-size: 22px;
}

main {
  width: 100%;
}

section {
  position: relative;
  width: 100%;
  min-width: 320px;
}

section:nth-child(1) .image-2 {
  width: 100%;
  min-height: 100dvh;
}

section:nth-child(1) .image-2::after {
  background-color: rgba(35, 31, 32, 0.6);
}

section:nth-child(1) .image-1 {
  display: none;
}

section:nth-child(2) .image-3 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

section:nth-child(2) .description {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

footer {
  width: 100%;
  background-color: #231F20;
  padding: 2rem;
  color: #E1E1E1;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
}

footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem 0;
}

footer .wrapper a {
  color: #F5F5F5;
}

footer .wrapper a:hover {
  color: #DC9C33;
}

footer .wrapper .menu-down {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.wrapper {
  width: 100%;
  max-width: 1320px;
  position: relative;
  margin: 0 auto;
  background: inherit;
  padding: 0 1rem;
}

#top {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../images/bg-worker.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#top::after {
  content: "";
  width: 100%;
  background-color: rgba(35, 31, 32, 0.75);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.hero {
  position: absolute;
  height: 380px;
  max-width: 650px;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 210px;
  left: 0;
  padding: 0 2rem;
  color: #E1E1E1;
}

.hero .slogan {
  display: block;
  font-size: 22px;
}

.hero .slogan .slogan-big {
  letter-spacing: 0.05rem;
  font-size: 44px;
  line-height: 46px;
  color: #DC9C33;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hero .frase {
  position: relative;
  padding: 1rem 0;
  margin-top: 2.5rem;
  margin-bottom: .7rem;
  font-size: 18px;
  font-style: italic;
  max-width: 40ch;
  color: #f1c174;
}

.hero .frase::before {
  content: "";
  width: 60px;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 4px solid #DC9C33;
}

.image {
  width: 100%;
  min-height: 320px;
  position: relative;
  background-image: url("../images/bg-worker.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.image::after {
  content: "";
  width: 100%;
  background-color: rgba(220, 156, 51, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.image-1 {
  width: 100%;
  min-height: 320px;
  position: relative;
  background-image: url("../images/bg-worker.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.image-2 {
  width: 100%;
  min-height: 320px;
  position: relative;
  background-image: url("../images/bg-worker-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
}

.image-2::after {
  content: "";
  width: 100%;
  background-color: rgba(220, 156, 51, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.image-3 {
  width: 100%;
  min-height: 320px;
  position: relative;
  background-image: url("../images/bg-worker-3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.image-3::after {
  content: "";
  width: 100%;
  background-color: rgba(220, 156, 51, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 6rem 2rem;
}

.description h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #DC9C33;
}

.description h2 {
  letter-spacing: 0.02rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 35px;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.description h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  border-bottom: solid 4px #DC9C33;
}

.description p {
  max-width: 50ch;
  margin-bottom: .5rem;
}

#whychooseus {
  background-color: #231F20;
  color: #F5F5F5;
}

.accord {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 0;
  margin-top: 1rem;
  width: 100%;
}

.accord .option {
  margin-bottom: 4px;
}

.accord .option .titulo {
  text-transform: uppercase;
  background-color: #312b2c;
  padding: .5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.accord .option .titulo .nombre {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.accord .option .titulo .icon {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  font-size: 14px;
}

.accord .option .titulo:hover {
  background-color: #DC9C33;
  cursor: pointer;
}

.accord .option .detail {
  font-size: 1rem;
  line-height: 30px;
  padding: 0 2rem;
  pointer-events: none;
  background-color: #231F20;
  height: 0;
  overflow: hidden;
}

.accord .active .titulo {
  background-color: #DC9C33;
}

.accord .active .titulo .icon {
  animation: rotatedown 0.45s forwards;
  -webkit-animation: rotatedown 0.45s forwards;
}

.accord .hide {
  display: none;
}

.flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 2rem;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #231F20;
  -webkit-box-shadow: 3px 2px 8px rgba(0, 0, 0, 0.05), -3px 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 3px 2px 8px rgba(0, 0, 0, 0.05), -3px 2px 8px rgba(0, 0, 0, 0.05);
}

.sticky .logo {
  width: 80px;
}

@media screen and (min-width: 620px) {
  .flex-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
  nav {
    -webkit-box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.25), -2px 1px 5px rgba(0, 0, 0, 0.25);
            box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.25), -2px 1px 5px rgba(0, 0, 0, 0.25);
  }
}

@media screen and (min-width: 720px) {
  .description {
    text-align: center;
  }
  .description h2::after {
    left: 0;
    right: 0;
    margin: auto;
  }
  .description p {
    min-width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .accord {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 960px) {
  .logo {
    width: 120px;
  }
  .mobile {
    display: none;
  }
  body {
    font-size: 16px;
  }
  nav {
    width: unset;
    height: auto;
    position: relative;
    background-color: transparent;
    left: 0;
    top: none;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 1.5rem;
    transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
  }
  nav ul {
    width: unset;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  nav ul li {
    text-align: center;
    width: auto;
    padding: 8px 16px;
    margin-bottom: 0;
    font-size: 1rem;
    margin-right: .5rem;
  }
  section:nth-child(1) .image-1 {
    display: initial;
  }
  section:nth-child(2) .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  section:nth-child(2) .description {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  section:nth-child(3) .description, section:nth-child(4) .description {
    max-width: 650px;
    margin-left: calc(100% - $description-width);
  }
  .grid {
    -ms-grid-columns: 48% 52%;
        grid-template-columns: 48% 52%;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
  .grid:nth-child(odd) {
    -ms-grid-columns: 53% 47%;
        grid-template-columns: 53% 47%;
  }
  .hero {
    margin-top: 250px;
  }
  .description {
    padding: 8rem 4rem;
    max-width: 650px;
    margin: auto;
    text-align: unset;
  }
  .description h2::after {
    left: 0;
    right: unset;
    margin: unset;
  }
  .description p {
    max-width: 40ch;
    min-width: 40ch;
    padding: 0;
  }
  .accord {
    max-width: 100%;
  }
  #aboutus, #contactus {
    height: 100vh;
  }
  .top-line {
    padding: 0;
  }
  .top-line .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .phone {
    display: none;
  }
}

@media screen and (min-width: 1360px) {
  body {
    font-size: 18px;
  }
  .flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #top {
    height: 850px;
  }
  .hero {
    height: 420px;
  }
  .hero .slogan {
    font-size: 1.65rem;
  }
  .hero .slogan .slogan-big {
    font-size: 4rem;
    line-height: 70px;
  }
  .hero .frase {
    font-size: 1.4rem;
  }
  footer {
    padding: 4rem 0;
    font-size: 14px;
  }
  footer .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .wrapper .menu-down {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

@media screen and (min-width: 1650px) {
  #top {
    height: 100vh;
  }
  .hero {
    margin-top: 300px;
  }
}
/*# sourceMappingURL=style.css.map */