*, *:before, *:after {
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

img {
  display: block;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

ul, li {
  list-style: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, picture, svg {
  display: block;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #4d4d4d;
  line-height: 1.4;
  background: #fff;
  position: relative;
}

a {
  text-decoration: none;
  transition: all 0.4s ease;
  color: #4d4d4d;
}

p {
  line-height: 1.4;
}

strong {
  font-weight: 600;
}

a.button {
  display: block;
  overflow: hidden;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid;
  border-color: #b68c5a;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  background: #b68c5a;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
}
a.button:before, a.button > span {
  padding: 0.6em 1.8em;
  transition: transform 0.3s;
  transition-timing-function: ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
a.button > span {
  color: #fff;
  font-weight: 500;
  display: flex;
  gap: 12px;
}
a.button > span .icon-a {
  width: 22px;
}
a.button:before {
  color: #b68c5a;
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  transform: translate3d(-100%, 0, 0);
}
a.button:hover:before {
  transform: translate3d(0, 0, 0);
}
a.button:hover > span {
  transform: translate3d(0, 100%, 0);
}

.whatsapp-button {
  width: 58px;
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 30;
}
.whatsapp-button svg {
  transition: all 0.3s ease-out;
}
.whatsapp-button:hover svg {
  transform: scale(1.1);
}

.swiper-button {
  background: none;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
}
.swiper-button:after {
  content: none !important;
}
.swiper-button .arrow {
  display: block;
  transform: rotate(-0.75turn);
  height: 32px;
}
.swiper-button-next {
  left: auto;
  right: 0;
}
.swiper-button-next .arrow {
  transform: rotate(0.75turn);
}
@media (min-width: 1024px) {
  .swiper-button .arrow {
    height: 20px;
  }
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

input, textarea, select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #000;
  border-radius: 20px;
  font-size: 16px;
  transition: border 0.3s;
  margin: 0;
}

input:focus, textarea:focus {
  border-color: #3498db;
  outline: none;
}

.submit-btn {
  background: #b68c5a;
  color: white;
  border: 1px #b68c5a solid;
  border-radius: 20px;
  padding: 12px 28px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 22px auto 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.submit-btn span {
  display: flex;
  gap: 12px;
}
.submit-btn span .icon-a {
  width: 22px;
}

.submit-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.required {
  color: #e74c3c;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  color: white;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 1001;
}
.notification.success {
  background: #2ecc71;
  opacity: 1;
  transform: translateX(0);
}
.notification.error {
  background: #e74c3c;
  opacity: 1;
  transform: translateX(0);
}

.loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 100px;
  animation: spin 1s ease-in-out infinite;
  margin: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.popup-overlay.active .popup-content {
  transform: scale(1);
}

@media (min-width: 1024px) {
  .button:before, .button > span {
    padding: 1em 2.2em;
  }
}
@media (min-width: 1200px) {
  .come-in {
    transform: translateY(250px);
    animation: come-in 0.8s ease forwards;
  }
  .come-in:nth-child(odd) {
    animation-duration: 0.6s;
  }
  .already-visible {
    transform: translateY(0);
    animation: none;
  }
}
@keyframes come-in {
  to {
    transform: translateY(0);
  }
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  z-index: 10;
  padding: 20px;
  background: #fff;
}
.header .logo {
  width: 110px;
  height: auto;
}
.header__toggle {
  width: 27px;
}
.header__toggle-line {
  display: block;
  background: #274832;
  width: 100%;
  height: 4px;
  margin-bottom: 4px;
  opacity: 1;
  transition: opacity 600ms ease 200ms, top 300ms ease, left 300ms ease, background 300ms ease, transform 300ms ease 450ms;
}
.header__toggle-line:nth-child(1) {
  transform-origin: center;
}
.header__toggle-line:nth-child(3) {
  transform-origin: center;
}
.header.is-active {
  position: fixed;
  z-index: 11;
}
.header.is-active .header__toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header.is-active .header__toggle-line:nth-child(2) {
  opacity: 0;
}
.header.is-active .header__toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header.fixed {
  top: 0;
  position: fixed;
  z-index: 10;
  animation: headerFix 0.5s ease-out;
  pointer-events: none;
  padding: 10px 30px;
}
@media (min-width: 1024px) {
  .header {
    top: 0;
    z-index: 10;
    height: 118px;
    padding: 0 30px;
  }
  .header .logo {
    width: 170px;
  }
  .header__toggle {
    display: none;
  }
  .header.is-active {
    z-index: 10;
  }
  .header.fixed {
    height: 70px;
  }
  .header.fixed .logo {
    width: 100px;
  }
}
@media (min-width: 1440px) {
  .header .logo {
    width: 200px;
  }
}

.menu-top {
  display: none;
}
@media (min-width: 1024px) {
  .menu-top {
    width: calc(100% - 210px);
    height: 48px;
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    padding: 12px 0 12px 30px;
    background: #274832;
    position: relative;
    left: 210px;
    z-index: 12;
  }
  .menu-top .icon {
    fill: #fff;
    width: 22px;
  }
  .menu-top a {
    transition: all 0.3s ease;
    color: #fff;
  }
  .menu-top a.itemlink {
    display: flex;
    gap: 12px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  .menu-top a:hover {
    color: #b68c5a;
  }
  .menu-top a:hover .icon {
    fill: #b68c5a;
  }
}
@media (min-width: 1440px) {
  .menu-top {
    width: calc(100% - 260px);
    left: 260px;
  }
}

.menu {
  z-index: 11;
  width: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 100%;
  height: 100%;
  padding: 160px 30px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #274832;
  transition: opacity 400ms ease, left 100ms ease 600ms;
}
.menu.is-visible {
  left: 0;
  opacity: 1;
  transition: left 100ms ease, opacity 400ms ease 200ms;
  overflow: scroll;
}
.menu .menu-inner {
  overflow-x: scroll;
  margin: 0;
  padding-bottom: 30px;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.menu .menu-inner li {
  margin-bottom: 22px;
}
.menu .menu-inner li a {
  font-size: 24px;
  color: #fff;
  pointer-events: auto;
}
@media (max-width: 767px) and (orientation: landscape) {
  .menu {
    min-height: 100%;
    height: auto;
    overflow-x: scroll;
  }
}
@media (min-width: 1024px) {
  .menu {
    position: absolute;
    width: calc(100% - 210px);
    left: 210px;
    top: 48px;
    opacity: 1;
    background: #fff;
    padding: 0 0 0 30px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
  }
  .menu .menu-inner {
    overflow-x: visible;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 0px;
    pointer-events: all;
  }
  .menu .menu-inner .menu-list {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .menu .menu-inner .menu-list li {
    line-height: 1.6;
    margin: 0;
    position: relative;
  }
  .menu .menu-inner .menu-list li a {
    font-size: 16px;
    color: #4d4d4d;
    padding: 0 12px;
    transition: all 400ms ease;
  }
  .menu .menu-inner .menu-list li a:hover {
    color: #b68c5a;
  }
  .menu.fixed {
    top: 0;
    position: fixed;
    animation: headerFix 0.5s ease-out;
  }
}
@media (min-width: 1440px) {
  .menu {
    width: calc(100% - 260px);
    left: 260px;
  }
}

@keyframes headerFix {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}
.footer {
  background-color: #fff;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.footer .logo {
  width: 140px;
}
.footer .menu-footer li {
  margin-bottom: 12px;
}
.footer .menu-footer a {
  display: block;
  line-height: 2;
}
.footer .menu-footer span {
  display: none;
}
.footer_burakko {
  color: #000;
  text-align: center;
  display: block;
  padding: 18px 0;
  transition: color 0.3s ease;
  border-top: 1px #000 solid;
}
.footer_burakko:hover {
  color: #000;
}
@media (min-width: 1024px) {
  .footer {
    align-items: flex-start;
    padding: 60px;
    text-align: left;
  }
  .footer .menu-footer a, .footer .menu-footer-h a {
    display: inline;
    padding-bottom: 3px;
    margin: 0 12px;
    border-bottom: 1px solid transparent;
  }
  .footer .menu-footer a:hover, .footer .menu-footer-h a:hover {
    border-color: #000;
  }
  .footer .menu-footer span, .footer .menu-footer-h span {
    display: inline;
  }
  .footer p {
    margin-left: 12px;
  }
  .footer_burakko {
    font-size: 14px;
  }
}

.hero {
  background-image: url("../img/hero-m.jpg");
  background-blend-mode: multiply;
  background-color: #274832;
  /* Modern browsers: prefer WebP */
  background-image: -webkit-image-set(url("../img/hero-m.webp") type('image/webp') 1x, url("../img/hero-m.jpg") type('image/jpeg') 1x);
  background-image: image-set(url("../img/hero-m.webp") type('image/webp') 1x, url("../img/hero-m.jpg") type('image/jpeg') 1x);
  background-size: cover;
  min-height: 100vh;
  padding: 160px 30px 100px;
  color: #fff;
}
.hero .content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
}
.hero h1 {
  font-size: 36px;
}
.hero h2 {
  color: #b68c5a;
  font-size: 20px;
}
.hero p {
  font-size: 18px;
}
.gracias .hero {
  height: 100vh;
}
@media (max-width: 767px) and (orientation: landscape) {
  .hero .img-hero {
    max-width: 50vw;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .hero {
    background-image: url("../img/hero.jpg");
    /* Modern browsers: prefer WebP */
    background-image: -webkit-image-set(url("../img/hero.webp") type('image/webp') 1x, url("../img/hero.jpg") type('image/jpeg') 1x);
    background-image: image-set(url("../img/hero.webp") type('image/webp') 1x, url("../img/hero.jpg") type('image/jpeg') 1x);
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: auto;
  }
  .hero .content {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: calc(100vh - 48px);
    padding: 70px 60px 0px 60px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero .button {
    margin-top: 18px;
  }
  .hero .img-hero {
    max-width: 400px;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 130px 100px 60px 100px;
  }
  .hero h1 {
    font-size: 64px;
  }
}
@media (min-width: 1440px) {
  .hero {
    background-image: linear-gradient(rgba(29, 29, 27, 0.3), rgba(29, 29, 27, 0.3)), url("../img/hero-h.jpg");
    /* Modern browsers: prefer WebP */
    background-image: linear-gradient(rgba(29, 29, 27, 0.3), rgba(0, 0, 0, 0.3)), -webkit-image-set(url("../img/hero-h.webp") type('image/webp') 1x, url("../img/hero-h.jpg") type('image/jpeg') 1x);
    background-image: linear-gradient(rgba(29, 29, 27, 0.3), rgba(0, 0, 0, 0.3)), image-set(url("../img/hero-h.webp") type('image/webp') 1x, url("../img/hero-h.jpg") type('image/jpeg') 1x);
  }
}
@media (min-width: 1860px) {
  .hero {
    justify-content: center;
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2021-6-17 11:30:43
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
.weare {
  padding: 60px 30px;
}
.weare h2 {
  font-size: 38px;
  color: #274832;
}
.weare h4 {
  font-size: 20px;
  color: #b68c5a;
}
.weare .content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
}
.weare .team {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 48px;
}
.weare .team li {
  background-color: #274832;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding-bottom: 8px;
  max-width: 360px;
  position: relative;
}
.weare .team li::after {
  content: "";
  background-color: #b68c5a;
  height: 26px;
  border-radius: 0 0 20px 20px;
  width: 100%;
  position: absolute;
  bottom: -6px;
  left: 0;
  z-index: -1;
}
.weare .team picture {
  border-radius: 20px;
  overflow: hidden;
}
.weare .team h3 {
  font-size: 18px;
  padding: 10px 0 6px;
}
.weare blockquote {
  color: #274832;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.weare blockquote:before {
  content: "";
  display: block;
  background: url("../img/icon-bq-first.svg") no-repeat;
  background-size: contain;
  width: 60px;
  height: 48px;
}
.weare blockquote:after {
  content: "";
  display: block;
  background: url("../img/icon-bq-last.svg") no-repeat;
  background-size: contain;
  width: 60px;
  height: 48px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .weare .team {
    flex-direction: row;
  }
  .weare blockquote {
    font-size: 32px;
    padding: 0 60px;
  }
}
@media (min-width: 1024px) {
  .weare {
    padding: 90px 60px;
    display: grid;
    grid-template-columns: 42% auto;
    gap: 40px;
  }
  .weare h2 {
    font-size: 48px;
  }
  .weare h4 {
    font-size: 24px;
  }
  .weare .content {
    grid-column: 1/2;
    margin: 0;
  }
  .weare .team {
    grid-column: 2/3;
    flex-direction: row;
    margin: 0;
  }
  .weare blockquote {
    grid-column: 1/3;
    font-size: 48px;
    padding: 0 60px;
  }
  .weare blockquote:before {
    width: 60px;
    height: 48px;
  }
  .weare blockquote:after {
    width: 60px;
    height: 48px;
  }
}
@media (min-width: 1440px) {
  .weare {
    padding: 100px 90px;
    row-gap: 80px;
  }
  .weare blockquote {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1260px;
    justify-self: center;
  }
  .weare blockquote span {
    flex: 1 1 auto;
  }
  .weare blockquote:before {
    width: 120px;
    height: 78px;
    flex: 2 0 auto;
  }
  .weare blockquote:after {
    width: 120px;
    height: 78px;
    flex: 2 0 auto;
  }
}

.wedo {
  padding: 60px 30px;
  background: #e6e6e6;
}
.wedo h2 {
  font-size: 38px;
  color: #274832;
  margin-bottom: 22px;
}
.wedo h4 {
  font-size: 20px;
  color: #b68c5a;
  margin-bottom: 8px;
}
.wedo p {
  font-weight: 600;
  margin-bottom: 48px;
}
.wedo .items li {
  background: url("../img/icon-check.svg") no-repeat left center;
  background-size: 32px;
  margin-bottom: 18px;
  padding-left: 48px;
  min-height: 32px;
}
@media (min-width: 768px) {
  .wedo {
    text-align: center;
  }
  .wedo .items {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .wedo .items li {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .wedo {
    padding: 90px 60px;
  }
  .wedo h2 {
    font-size: 48px;
  }
  .wedo h4 {
    font-size: 24px;
  }
  .wedo p {
    max-width: 1260px;
    margin: 0 auto 52px;
  }
  .wedo .items {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1260px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .wedo {
    padding-top: 120px;
  }
}

.accounting {
  padding: 60px 30px;
}
.accounting h2 {
  font-size: 38px;
  color: #274832;
  margin-bottom: 22px;
}
.accounting h2 + p {
  font-weight: 600;
  margin-bottom: 48px;
}
.accounting .items li {
  background-color: #e6e6e6;
  border-radius: 20px;
  padding: 40px 30px 30px;
  margin-bottom: 38px;
  position: relative;
}
.accounting .items li::after {
  content: "";
  background-color: #b68c5a;
  height: 26px;
  border-radius: 0 0 20px 20px;
  width: 100%;
  position: absolute;
  bottom: -6px;
  left: 0;
  z-index: -1;
}
.accounting .items li:last-child {
  margin: 0;
}
.accounting .items .icon {
  background-color: #fff;
  width: 120px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 18px;
}
@media (max-width: 767px) and (orientation: landscape) {
  .accounting .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .accounting .items li:last-child {
    margin-bottom: 38px;
  }
}
@media (min-width: 768px) {
  .accounting {
    text-align: center;
  }
  .accounting .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 30px;
    text-align: left;
  }
  .accounting .items li {
    margin-bottom: 8px;
  }
}
@media (min-width: 1024px) {
  .accounting {
    padding: 90px 60px;
  }
  .accounting h2 {
    font-size: 48px;
  }
  .accounting h2 + p {
    max-width: 760px;
    margin: 0 auto 52px;
  }
  .accounting .items {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    max-width: 1260px;
    margin: 0 auto;
  }
  .accounting .items p {
    padding-right: 20%;
  }
  .accounting .items li:first-child p {
    padding: 0;
  }
}

.salary {
  padding: 0px 30px 30px;
}
.salary h2 {
  font-size: 38px;
  color: #274832;
  margin-bottom: 22px;
}
.salary .items {
  margin-bottom: 48px;
  padding-left: 18px;
}
.salary .items li {
  list-style: disc;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .salary {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    min-height: auto;
  }
  .salary .content {
    flex: 0 0 55%;
    order: 2;
  }
  .salary .items {
    margin: 0;
  }
  .salary .img-salary {
    flex: 0 0 40%;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .salary {
    padding: 0px 60px 60px;
  }
  .salary h2 {
    font-size: 48px;
    margin-bottom: 42px;
  }
  .salary h2 span {
    display: block;
  }
}
@media (min-width: 1200px) {
  .salary {
    padding: 0px 60px 60px;
    max-width: 1260px;
    margin: 0 auto;
  }
  .salary .content {
    flex: 0 0 55%;
  }
}
@media (min-width: 1200px) {
  .salary {
    padding: 0px 0px 60px;
  }
}

.outsourcing {
  background-image: url("../img/bg-outsourcing-m.jpg");
  /* Modern browsers: prefer WebP */
  background-image: -webkit-image-set(url("../img/bg-outsourcing-m.webp") type('image/webp') 1x, url("../img/bg-outsourcing-m.jpg") type('image/jpeg') 1x);
  background-image: image-set(url("../img/bg-outsourcing-m.webp") type('image/webp') 1x, url("../img/bg-outsourcing-m.jpg") type('image/jpeg') 1x);
  background-blend-mode: multiply;
  background-color: #274832;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 30px 100px;
  color: #fff;
  padding: 60px 30px;
}
.outsourcing h2 {
  font-size: 38px;
  color: #b68c5a;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .outsourcing {
    background-image: url("../img/bg-outsourcing.jpg");
    /* Modern browsers: prefer WebP */
    background-image: -webkit-image-set(url("../img/bg-outsourcing.webp") type('image/webp') 1x, url("../img/bg-outsourcing.jpg") type('image/jpeg') 1x);
    background-image: image-set(url("../img/bg-outsourcing.webp") type('image/webp') 1x, url("../img/bg-outsourcing.jpg") type('image/jpeg') 1x);
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .outsourcing {
    padding: 90px 60px;
  }
  .outsourcing h2 {
    font-size: 48px;
  }
  .outsourcing p {
    max-width: 1260px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .outsourcing {
    background-image: url("../img/bg-outsourcing-h.jpg");
    /* Modern browsers: prefer WebP */
    background-image: -webkit-image-set(url("../img/bg-outsourcing-h.webp") type('image/webp') 1x, url("../img/bg-outsourcing-h.jpg") type('image/jpeg') 1x);
    background-image: image-set(url("../img/bg-outsourcing-h.webp") type('image/webp') 1x, url("../img/bg-outsourcing-h.jpg") type('image/jpeg') 1x);
  }
}

.clients {
  padding: 60px 30px;
}
.clients h2 {
  font-size: 38px;
  color: #b68c5a;
  margin-bottom: 62px;
}
.clients img {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (max-width: 767px) and (orientation: landscape) {
  .clients .items {
    justify-content: flex-start;
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .clients {
    text-align: center;
  }
  .clients .items {
    justify-content: center;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .clients {
    padding: 90px 60px 60px;
  }
  .clients h2 {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .clients .swiper-container {
    max-width: 1260px;
    margin: 0 auto;
  }
  .clients img {
    max-height: 100px;
    width: auto;
    margin: auto;
  }
}

.contacto .wrapper {
  padding: 30px;
  background-color: #e6e6e6;
}
.contacto .form-content {
  background-color: #274832;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 60px;
}
.contacto h2 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 42px;
}
.contacto h4 {
  font-size: 28px;
  color: #b68c5a;
}
.contacto h5 {
  color: #b68c5a;
  font-weight: 600;
}
.contacto .items {
  margin-bottom: 32px;
}
.contacto .items li {
  background: url("../img/icon-place.svg") no-repeat left center;
  background-size: 48px;
  padding-left: 62px;
  margin-bottom: 12px;
}
.contacto .items li.phone {
  background-image: url("../img/icon-phone.svg");
}
.contacto .items li.email {
  background-image: url("../img/icon-mail.svg");
}
.contacto .img-contacto {
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contacto .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
    text-align: left;
  }
  .contacto .form-content {
    margin: 0;
  }
  .contacto .items {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .contacto {
    padding: 30px;
  }
  .contacto .wrapper {
    border-radius: 30px;
    max-width: 1260px;
    margin: 0 auto;
  }
  .contacto h2 {
    font-size: 48px;
    text-align: center;
  }
  .contacto h5 {
    font-size: 20px;
    text-align: center;
  }
  .contacto .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .contacto {
    padding-top: 100px;
  }
  .contacto .items a:hover {
    color: #b68c5a;
  }
}

.contact {
  background: #000;
  color: #fff;
  padding: 60px 30px 30px;
  text-align: center;
}
.contact h2 {
  font-size: 26px;
  margin-bottom: 22px;
}
.contact #contactFormBottom {
  margin-bottom: 42px;
}
.contact #contactFormBottom p {
  margin: 12px 0;
}
.contact #contactFormBottom .button {
  background-color: #000;
  border-color: #000;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
}
.contact #contactFormBottom .button:hover {
  background-color: white;
  color: #000;
}
@media (min-width: 768px) {
  .contact {
    padding: 60px;
  }
  .contact h2 {
    margin: 0 auto 32px;
  }
  .contact #contactFormBottom {
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .contact h2 {
    font-size: 38px;
    margin-bottom: 48px;
  }
  .contact #contactFormBottom {
    max-width: 680px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .contact #contactFormBottom * {
    margin: 0;
  }
  .contact #contactFormBottom input {
    height: 44px;
  }
  .contact #contactFormBottom #mensaje, .contact #contactFormBottom p {
    grid-column: 1/3;
  }
  .contact #contactFormBottom .button {
    grid-column: 1/3;
    justify-self: center;
    cursor: pointer;
  }
}
/*# sourceMappingURL=main.css.map */
