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

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

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth; } }
ol,
ul {
  padding-left: 2rem; }

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0; }

b,
strong {
  font-weight: bolder; }

small {
  font-size: 0.875em; }

a {
  color: inherit;
  text-decoration: none; }

a:hover {
  color: #D0D76C; }

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none; }

img,
svg {
  vertical-align: middle; }

button {
  border-radius: 0; }

button:focus:not(:focus-visible) {
  outline: 0; }

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
select {
  text-transform: none; }

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button; }

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer; }

::-moz-focus-inner {
  padding: 0;
  border-style: none; }

/*Remove number input spin*/
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

/*UTILITIES*/
.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-grid {
  display: grid !important; }

.d-table {
  display: table !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

.d-none {
  display: none !important; }

.img-mobile {
  display: inline; }

.img-desktop {
  display: none; }

/*lg*/
@media (min-width: 992px) {
  .img-mobile {
    display: none; }

  .img-desktop {
    display: inline; } }
.header-style {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #000; }

/*sm*/
@media (min-width: 576px) {
  .header-style {
    font-size: 28px; } }
/*md*/
@media (min-width: 768px) {
  .header-style {
    font-size: 32px; } }
/*lg*/
@media (min-width: 992px) {
  .header-style {
    font-size: 3.6vw; } }
.page-container {
  width: 100%;
  background-color: #FFF;
  font-family: "Montserrat";
  position: relative; }

.navbar-container {
  width: 100%;
  padding: 12px MIN(4.8vw, 30px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 1500; }
  .navbar-container::before {
    content: "";
    width: MIN(8vw, 40px);
    height: 1px; }

/*lg*/
@media (min-width: 992px) {
  .navbar-container {
    padding: 1.6vw 3.1vw; }
    .navbar-container::before {
      display: none; } }
.navbar-container.light {
  background: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 80%); }
  .navbar-container.light .light {
    display: block; }
  .navbar-container.light .dark {
    display: none; }
  .navbar-container.light .navbar-menu_anchor svg {
    fill: #000; }

.navbar-container.dark {
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%); }
  .navbar-container.dark .light {
    display: none; }
  .navbar-container.dark .dark {
    display: block; }
  .navbar-container.dark .navbar-menu_anchor svg {
    fill: #FFF; }

/*lg*/
@media (min-width: 992px) {
  .navbar-container.dark .navbar-menu_link {
    color: #FFF; }
    .navbar-container.dark .navbar-menu_link.btn {
      border-color: #FFF; } }
.navbar-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  padding: 3.2vw MIN(4.8vw, 30px) 0;
  background-color: transparent; }
  .navbar-menu.active {
    background-color: #211E1E; }
    .navbar-menu.active .navbar-menu_anchor svg {
      fill: #fff; }
    .navbar-menu.active .navbar-menu_box {
      display: block; }

/*lg*/
@media (min-width: 992px) {
  .navbar-menu {
    position: static;
    padding: 0;
    order: 2; }
    .navbar-menu.active {
      background-color: transparent; }
      .navbar-menu.active .navbar-menu_anchor svg {
        fill: #000; }
      .navbar-menu.active .navbar-menu_box {
        display: flex; } }
.navbar-menu_anchor {
  display: block;
  width: MIN(8vw, 40px); }

/*lg*/
@media (min-width: 992px) {
  .navbar-menu_anchor {
    display: none; } }
.navbar-menu_box {
  display: none; }

/*lg*/
@media (min-width: 992px) {
  .navbar-menu_box {
    display: flex; } }
.navbar-menu_link {
  display: block;
  padding: 1em;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #FFF;
  border-bottom: solid 1px #FFF; }
  .navbar-menu_link:last-child {
    border-bottom: none; }
  .navbar-menu_link:hover {
    color: #D0D76C;
    font-weight: 700; }

/*sm*/
@media (min-width: 576px) {
  .navbar-menu_link {
    font-size: 14px; } }
/*md*/
@media (min-width: 768px) {
  .navbar-menu_link {
    font-size: 16px; } }
/*lg*/
@media (min-width: 992px) {
  .navbar-menu_link {
    padding: 0.8vh 1vw;
    margin: 0 0.6vw;
    font-size: 1.8vw;
    color: #211E1E;
    border-bottom: 0; }
    .navbar-menu_link:hover {
      color: #211E1E;
      font-weight: 700; }
    .navbar-menu_link.btn {
      border: solid 1px #211E1E;
      border-radius: 4px; } }
.navbar-terrasocios_logo {
  width: 29vw; }
  .navbar-terrasocios_logo img {
    width: 100%;
    height: auto; }

/*lg*/
@media (min-width: 992px) {
  .navbar-terrasocios_logo {
    margin-top: 1.2vw;
    order: 1; } }
.navbar-ara_logo {
  width: MIN(44px, 8vw);
  height: auto; }
  .navbar-ara_logo img {
    width: 100%;
    height: auto; }

/*lg*/
@media (min-width: 992px) {
  .navbar-ara_logo {
    width: 4.5vw;
    order: 3; } }
.hero-container {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr 1fr;
  justify-items: center;
  background-image: url("../assets/images/background_img_mobile.png.webp");
  background-size: cover;
  background-position: center 30%; }
  .hero-container::before {
    content: "";
    width: 100%;
    height: 14vw; }

/*lg*/
@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 51% 1fr;
    grid-template-rows: auto 1fr;
    background-image: url("../assets/images/background_img_desktop.png.webp");
    background-position: center 0;
    align-content: center;
    align-items: end; }
    .hero-container::before {
      height: 13vw;
      grid-column: 1 / 3; } }
.hero-title {
  width: 70%;
  max-width: 320px;
  align-self: start;
  margin-top: 10vh;
  color: #000;
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2; }
  .hero-title span {
    font-size: 25px;
    font-weight: 700; }
  .hero-title .big {
    font-size: 28px; }

/*sm*/
@media (min-width: 576px) {
  .hero-title {
    font-size: 28px; }
    .hero-title span {
      font-size: 30px; }
    .hero-title .big {
      font-size: 34px; } }
/*md*/
@media (min-width: 768px) {
  .hero-title {
    font-size: 32px; }
    .hero-title span {
      font-size: 34px; }
    .hero-title .big {
      font-size: 40px; } }
/*lg*/
@media (min-width: 992px) {
  .hero-title {
    width: 100%;
    max-width: none;
    padding: 0 5.4vw;
    margin-top: 0;
    margin-bottom: 14vh;
    color: #FFF;
    font-size: 3.8vw;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: end; }
    .hero-title span {
      font-size: 3.8vw; }
    .hero-title .big {
      font-size: 4.8vw; } }
.hero-box {
  width: 70%;
  max-width: 300px;
  align-self: end;
  margin-bottom: 10vh;
  background-color: #FFF;
  border-radius: 40px;
  padding: MIN(14%, 70px) MIN(8%, 40px) MIN(12%, 60px);
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2; }

/*sm*/
@media (min-width: 576px) {
  .hero-box {
    max-width: 320px;
    font-size: 26px; } }
/*md*/
@media (min-width: 768px) {
  .hero-box {
    max-width: 350px;
    font-size: 32px; } }
/*lg*/
@media (min-width: 992px) {
  .hero-box {
    width: 93%;
    max-width: none;
    padding: 20vh 18% 15vh;
    border-radius: 4vw;
    margin-bottom: 9vh;
    margin-left: 7%;
    font-size: 3.4vw;
    grid-column: 1 / 2;
    grid-row: 2 / 3; } }
.hero-btn {
  margin-top: 42px;
  display: block;
  width: 100%;
  padding: 12px 16px;
  background-color: #000;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #FFF; }
  .hero-btn:hover {
    color: #D0D76C; }

/*sm*/
@media (min-width: 576px) {
  .hero-btn {
    font-size: 16px; } }
/*md*/
@media (min-width: 768px) {
  .hero-btn {
    font-size: 18px; } }
/*lg*/
@media (min-width: 992px) {
  .hero-btn {
    margin-top: 8vh;
    padding: 1vw 1.6vw;
    font-size: 2.0vw; } }
.terrasocios-container {
  width: 100%;
  max-width: 560px;
  background-color: #FFF;
  padding: 0 32px;
  margin: 32px auto; }

/*lg*/
@media (min-width: 992px) {
  .terrasocios-container {
    max-width: none;
    margin: 11.6vw 0 6vw;
    padding: 0 3.2vw;
    display: grid;
    grid-template-columns: 1fr 57%;
    grid-column-gap: 2.4vw; } }
.terrasocios-title {
  margin-bottom: 16px; }

@media (min-width: 1024px) {
  .terrasocios-title {
    margin-bottom: 0;
    grid-area: 1 / 2 / 2 / 3; } }
.terrasocios-img {
  width: 100%;
  margin-bottom: 22px; }
  .terrasocios-img img {
    width: 100%;
    height: auto; }

/*lg*/
@media (min-width: 992px) {
  .terrasocios-img {
    margin-bottom: 0;
    overflow: hidden;
    grid-area: 1 / 1 / 3 / 2; } }
.terrasocios-box {
  width: 100%;
  background-color: #FFF;
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3); }
  .terrasocios-box span {
    font-weight: 600; }
  .terrasocios-box br {
    margin-bottom: 24px; }

/*sm*/
@media (min-width: 576px) {
  .terrasocios-box {
    font-size: 24px; } }
/*md*/
@media (min-width: 768px) {
  .terrasocios-box {
    font-size: 28px; } }
/*lg*/
@media (min-width: 992px) {
  .terrasocios-box {
    padding: 0.8vw 2vw;
    font-size: 3.2vw;
    margin-bottom: 0;
    grid-area: 2 / 2 / 3 / 3; }
    .terrasocios-box br {
      margin-bottom: 4vw; } }
.terrasocios-btn {
  display: block;
  width: 100%;
  background: #82901d;
  background: linear-gradient(90deg, #82901d 0%, #c6c773 80%);
  border-radius: 12px;
  padding: 14px 42px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #000; }
  .terrasocios-btn:hover {
    color: #fff; }

/*sm*/
@media (min-width: 576px) {
  .terrasocios-btn {
    font-size: 24px; } }
/*md*/
@media (min-width: 768px) {
  .terrasocios-btn {
    font-size: 28px; } }
/*lg*/
@media (min-width: 992px) {
  .terrasocios-btn {
    width: auto;
    padding: 1.2vw 6.4vw;
    margin: 4.6vw auto 0;
    font-size: 3.2vw;
    grid-column: 1 / 3; } }
.proceso-container {
  width: 100%;
  background-color: #EFEFEC;
  padding: 24px 0 36px; }

/*lg*/
@media (min-width: 992px) {
  .proceso-container {
    padding: 7.5vw 0 6vw; } }
.proceso-content {
  width: 100%;
  max-width: 560px;
  padding: 0 36px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; }

/*lg*/
@media (min-width: 992px) {
  .proceso-content {
    max-width: none;
    padding: 0 6.4vw 0 9.6vw;
    grid-template-columns: 54% 46%;
    grid-template-rows: auto auto 1fr;
    align-items: start; } }
.proceso-title {
  margin-bottom: 54px; }

/*lg*/
@media (min-width: 992px) {
  .proceso-title {
    margin-bottom: 3.6vw; } }
.proceso-text {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #211E1E;
  margin-bottom: 32px; }

/*sm*/
@media (min-width: 576px) {
  .proceso-text {
    font-size: 24px; } }
/*md*/
@media (min-width: 768px) {
  .proceso-text {
    font-size: 28px; } }
/*lg*/
@media (min-width: 992px) {
  .proceso-text {
    font-size: 3.2vw;
    margin-bottom: 4.8vw; } }
.proceso-btn {
  display: block;
  width: 70%;
  padding: 14px 16px;
  background-color: #211E1E;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #FFF;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: 8%; }

/*sm*/
@media (min-width: 576px) {
  .proceso-btn {
    font-size: 16px; } }
/*md*/
@media (min-width: 768px) {
  .proceso-btn {
    font-size: 18px; } }
/*lg*/
@media (min-width: 992px) {
  .proceso-btn {
    width: 62%;
    padding: 1.4vw 1.6vw;
    font-size: 2vw;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto; } }
.proceso-img {
  width: 72%;
  margin-bottom: 0; }
  .proceso-img img {
    width: 100%;
    height: auto; }

/*lg*/
@media (min-width: 992px) {
  .proceso-img {
    width: 100%;
    grid-row: 1 / 4;
    grid-column: 2 / 3;
    margin-top: 7vw; } }
.beneficios-container {
  width: 100%;
  background-color: #FFF;
  padding: 0 12vw;
  margin: 36px auto; }

/*lg*/
@media (min-width: 992px) {
  .beneficios-container {
    max-width: none;
    padding: 0 6.4vw;
    margin: 7.2vw 0; } }
.beneficios-title {
  margin-bottom: 36px; }

/*lg*/
@media (min-width: 992px) {
  .beneficios-title {
    margin-bottom: 6.4vw; } }
.beneficios-text {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 38px; }
  .beneficios-text span {
    font-weight: 700; }

/*sm*/
@media (min-width: 576px) {
  .beneficios-text {
    font-size: 24px; } }
/*md*/
@media (min-width: 768px) {
  .beneficios-text {
    font-size: 28px; } }
/*lg*/
@media (min-width: 992px) {
  .beneficios-text {
    font-size: 3.2vw;
    margin-bottom: 6.2vw; } }
.beneficios-info {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 42px; }

/*lg*/
@media (min-width: 992px) {
  .beneficios-info {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 0; } }
.beneficios-item {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .beneficios-item img {
    width: 119px;
    height: auto;
    margin-bottom: 4px; }
  .beneficios-item div {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: #000; }

/*sm*/
@media (min-width: 576px) {
  .beneficios-item img {
    width: 138px;
    margin-bottom: 12px; }
  .beneficios-item div {
    font-size: 24px; } }
/*md*/
@media (min-width: 768px) {
  .beneficios-item img {
    width: 166px;
    margin-bottom: 20px; }
  .beneficios-item div {
    font-size: 28px; } }
/*lg*/
@media (min-width: 992px) {
  .beneficios-item img {
    width: 20vw;
    margin-bottom: 3.2vw; }
  .beneficios-item div {
    font-size: 3.2vw;
    padding: 0 3.8vw; } }
.territorio-container {
  width: 100%;
  max-width: 560px;
  background-color: #FFF;
  padding: 0 20px;
  margin: 60px auto 48px; }

/*lg*/
@media (min-width: 992px) {
  .territorio-container {
    padding: 0 7.2vw;
    margin: 15vw 0 4.8vw;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr; } }
.territorio-title {
  margin-bottom: 50px; }

/*lg*/
@media (min-width: 992px) {
  .territorio-title {
    margin-bottom: 3.2vw;
    grid-area: 1 / 4 / 2 / 8;
    width: 110%;
    margin-left: -10%; } }
.territorio-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 12px; }

/*lg*/
@media (min-width: 992px) {
  .territorio-info {
    width: 110%;
    margin-left: -10%;
    margin-bottom: 0;
    grid-area: 2 / 4 / 3 / 8; } }
.territorio-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.territorio-item_circle {
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); }

/*sm*/
@media (min-width: 576px) {
  .territorio-item_circle {
    width: 74px;
    height: 74px;
    font-size: 32px;
    margin-bottom: 12px; } }
/*md*/
@media (min-width: 768px) {
  .territorio-item_circle {
    width: 90px;
    height: 90px;
    font-size: 40px;
    margin-bottom: 14px; } }
/*lg*/
@media (min-width: 992px) {
  .territorio-item_circle {
    width: 10.5vw;
    height: 10.5vw;
    font-size: 4.8vw;
    margin-bottom: 1.6vw; } }
.territorio-item_text {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #000; }

/*sm*/
@media (min-width: 576px) {
  .territorio-item_text {
    font-size: 16px; } }
/*md*/
@media (min-width: 768px) {
  .territorio-item_text {
    font-size: 18px; } }
/*lg*/
@media (min-width: 992px) {
  .territorio-item_text {
    font-size: 2vw; } }
.territorio-img {
  width: 100%;
  grid-area: 2 / 3 / 3 / 6; }
  .territorio-img img {
    width: 100%;
    height: auto; }

/*lg*/
@media (min-width: 992px) {
  .territorio-img {
    margin-top: -7vw;
    grid-area: 3 / 1 / 4 / 7; } }
.footer-container {
  width: 100%;
  background-color: #211E1E;
  padding: 0 7.5vw; }

/*lg*/
@media (min-width: 992px) {
  .footer-container {
    padding: 0 4vw; } }
.footer-info {
  width: 100%;
  border-bottom: solid 2px #FFF;
  display: flex;
  justify-content: space-between;
  padding: 6.2vw 0 4.6vw; }

/*lg*/
@media (min-width: 992px) {
  .footer-info {
    padding: 6.2vw 2vw; } }
.footer-links a {
  display: block;
  text-align: left;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #FFF;
  padding: 4px 0; }
.footer-links a:hover {
  color: #D0D76C; }

/*sm*/
@media (min-width: 576px) {
  .footer-links a {
    font-size: 16px;
    padding: 8px 0; } }
/*md*/
@media (min-width: 768px) {
  .footer-links a {
    font-size: 20px;
    padding: 10px 0; } }
/*lg*/
@media (min-width: 992px) {
  .footer-links {
    display: grid;
    grid-template-columns: 1fr auto;
    align-content: center;
    grid-column-gap: 2.4vw; }
    .footer-links a {
      font-size: 2.4vw;
      padding: 1.2vw 0; }
    .footer-links a:nth-child(1) {
      grid-column: 1 / 2; }
    .footer-links a:nth-child(2) {
      grid-column: 1 / 2; }
    .footer-links a:nth-child(3) {
      grid-column: 2 / 3;
      grid-row: 1 / 2; }
    .footer-links a:nth-child(4) {
      grid-column: 2 / 3; } }
.footer-img {
  margin-top: -8px;
  width: 35px; }
  .footer-img img {
    width: 100%;
    height: auto; }

/*sm*/
@media (min-width: 576px) {
  .footer-img {
    margin-top: -16px;
    width: 62px; } }
/*md*/
@media (min-width: 768px) {
  .footer-img {
    margin-top: -24px;
    width: 84px; } }
/*lg*/
@media (min-width: 992px) {
  .footer-img {
    margin-top: 0;
    width: 10.6vw; } }
.footer-media {
  width: 100%;
  padding: 4.3vw 0; }

/*lg*/
@media (min-width: 992px) {
  .footer-media {
    padding: 6.2vw 0; } }
.footer-media_title {
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: #FFF;
  margin-bottom: 4.3vw; }

/*sm*/
@media (min-width: 576px) {
  .footer-media_title {
    font-size: 16px; } }
/*md*/
@media (min-width: 768px) {
  .footer-media_title {
    font-size: 20px; } }
/*lg*/
@media (min-width: 992px) {
  .footer-media_title {
    font-size: 2.4vw;
    margin-bottom: 4.2vw; } }
.footer-media_grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center; }

/*sm*/
@media (min-width: 576px) {
  .footer-media_grid {
    grid-template-columns: 1fr 1fr; } }
/*md*/
@media (min-width: 768px) {
  .footer-media_grid {
    grid-template-columns: 1fr 1fr 1fr; } }
/*lg*/
@media (min-width: 992px) {
  .footer-media_grid {
    grid-template-columns: auto auto auto;
    grid-column-gap: 3.2vw; } }
.footer-media_link {
  width: min-content;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #FFF;
  padding: 8px 0; }
  .footer-media_link a {
    margin-right: 6px; }
  .footer-media_link a:hover img {
    height: 22px; }
  .footer-media_link img {
    height: 20px;
    width: auto; }

/*sm*/
@media (min-width: 576px) {
  .footer-media_link {
    font-size: 16px; }
    .footer-media_link a {
      margin-right: 8px; }
    .footer-media_link a:hover img {
      height: 26px; }
    .footer-media_link img {
      height: 24px; } }
/*md*/
@media (min-width: 768px) {
  .footer-media_link {
    font-size: 20px; }
    .footer-media_link a {
      margin-right: 10px; }
    .footer-media_link a:hover img {
      height: 32px; }
    .footer-media_link img {
      height: 28px; } }
/*lg*/
@media (min-width: 992px) {
  .footer-media_link {
    font-size: 2.4vw; }
    .footer-media_link a {
      margin-right: 1.2vw; }
    .footer-media_link a:hover img {
      height: 3.6vw; }
    .footer-media_link img {
      height: 3.2vw; } }
.steps-layout {
  width: 100%;
  height: 50vh;
  overflow-y: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: visible; }
  .steps-layout.step-1 {
    background-image: url("../assets/images/background_img_mobile.png.webp"); }
  .steps-layout.step-2 {
    background-image: url("../assets/images/background_img_mobile.png.webp"); }
  .steps-layout.step-3 {
    background-image: url("../assets/images/background_img_mobile.png.webp");
    background-position: center 25%; }

/*lg*/
@media (min-width: 992px) {
  .steps-layout {
    min-height: 100vh;
    height: auto;
    background-size: cover;
    background-position: center; }
    .steps-layout.step-1 {
      background-image: url("../assets/images/background_img_desktop.png.webp"); }
    .steps-layout.step-2 {
      background-image: url("../assets/images/background_img_desktop.png.webp"); }
    .steps-layout.step-3 {
      background-image: url("../assets/images/background_img_desktop.png.webp"); } }
.steps-container {
  width: 100%;
  min-height: 100vh;
  padding-top: 14vw;
  padding-bottom: 3vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end; }

/*lg*/
@media (min-width: 992px) {
  .steps-container {
    display: grid;
    grid-template-columns: auto auto;
    padding-top: 10.5vw;
    padding-bottom: 0;
    align-items: end;
    align-content: center;
    justify-content: space-between; } }
.steps-box {
  width: 70%;
  max-width: 370px;
  margin-bottom: 5.5vh;
  padding: 16px 0 28px;
  background-color: #FFF;
  border-radius: 36px;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3); }

@media (max-width: 768px) {
  .steps-box {
    position: absolute;
    top: 70%
  }
}

/*lg*/
@media (min-width: 992px) {
  .steps-box {
    width: 48vw;
    max-width: none;
    padding: 3.6vh 0 2.8vh;
    margin-bottom: 4.2vh;
    margin-left: 4.6vw; } }
.steps-title {
  padding: 0 18%;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 22px; }

/*sm*/
@media (min-width: 576px) {
  .steps-title {
    font-size: 20px;
    margin-bottom: 26px; } }
/*md*/
@media (min-width: 768px) {
  .steps-title {
    font-size: 22px;
    margin-bottom: 32px; } }
/*lg*/
@media (min-width: 992px) {
  .steps-title {
    padding: 0;
    font-size: 2.5vw;
    margin-bottom: 3.6vh; }
    .steps-title.small {
      padding: 0 12vw; } }
.steps-form {
  display: flex;
  flex-direction: column;
  padding: 0 MIN(44px, 5.5%); }

  input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/*lg*/
@media (min-width: 992px) {
  .steps-form {
    padding: 0 4.8vw; } }
.custom-label {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 18px; }
  .custom-label.last {
    margin-bottom: 22px; }
  .custom-label div {
    margin-bottom: 10px; }
  .custom-label input {
    padding: 10px 16px;
    display: block;
    width: 100%;
    background-color: #DCDDDB;
    border: 0;
    border-radius: 11px; }

/*sm*/
@media (min-width: 576px) {
  .custom-label.last {
    margin-bottom: 30px; } }
/*md*/
@media (min-width: 768px) {
  .custom-label {
    font-size: 15px; }
    .custom-label.last {
      margin-bottom: 38px; } }
/*lg*/
@media (min-width: 992px) {
  .custom-label {
    font-size: 1.6vw;
    margin-bottom: 1.8vh; }
    .custom-label div {
      margin-bottom: 0.6vh; }
    .custom-label.last {
      margin-bottom: 4.2vh; } }
.steps-item {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 12px;
  justify-content: center;
  grid-column-gap: 4px; }
  .steps-item span {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 2px; }
  .steps-item.mb-extra {
    margin-bottom: 36px; }

/*lg*/
@media (min-width: 992px) {
  .steps-item span {
    font-size: 1.6vw; } }
.form-btn {
  width: 60%;
  padding: 8px 16px;
  background-color: #211E1E;
  border-radius: 8px;
  border: solid 1px #211E1E;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #FFF;
  margin: 0 auto; }
  .form-btn:hover {
    color: #D0D76C; }

/*sm*/
@media (min-width: 576px) {
  .form-btn {
    font-size: 16px; } }
/*md*/
@media (min-width: 768px) {
  .form-btn {
    font-size: 18px; } }
/*lg*/
@media (min-width: 992px) {
  .form-btn {
    font-size: 2vw; } }
.retutrn-btn {
  display: block;
  padding: 8px 12px;
  background-color: transparent;
  border-radius: 8px;
  border: solid 1px #211E1E;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #211E1E; }
  .retutrn-btn:hover {
    background-color: #82901d;
    border-color: #82901d;
    color: #FFF; }

/*sm*/
@media (min-width: 576px) {
  .retutrn-btn {
    font-size: 16px; } }
/*md*/
@media (min-width: 768px) {
  .retutrn-btn {
    font-size: 18px; } }
/*lg*/
@media (min-width: 992px) {
  .retutrn-btn {
    margin-right: 6.4vw;
    padding: 1vw 2.4vw;
    border: solid 0.1vw #FFF;
    font-size: 2vw;
    color: #FFF; } }
.topbar-container {
  width: 100%;
  padding: 16px 12px;
  display: grid;
  grid-template-columns: 1fr MIN(32%, 265px) 1fr;
  align-items: start;
  position: absolute;
  top: 0;
  z-index: 1500; }

/*lg*/
@media (min-width: 992px) {
  .topbar-container {
    padding: 0.6vw 1.2vw;
    grid-template-columns: 1fr 1fr;
    align-items: center; } }
.topbar-logo {
  grid-column: 2 / 3;
  width: 100%;
  justify-self: center; }
  .topbar-logo img {
    width: 100%;
    height: auto; }

/*lg*/
@media (min-width: 992px) {
  .topbar-logo {
    grid-column: 1 / 2;
    width: 26vw;
    justify-self: start;
    margin-left: 2.8vw; } }
.topbar-close {
  grid-column: 3 / 4;
  width: MIN(6.5vw, 54px);
  justify-self: end;
  background-color: transparent;
  border: 0;
  padding: 1vw; }
  .topbar-close svg {
    width: 100%;
    height: auto; }

/*lg*/
@media (min-width: 992px) {
  .topbar-close {
    grid-column: 2 / 3;
    width: 6vw;
    padding: 1vw; } }
.confirmacion-layout {
  min-height: 100vh;
  background-image: url("../assets/images/confirmacion_background.png.webp");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  align-items: start;
  align-content: start;
  padding-top: 16vw; }

/*lg*/
@media (min-width: 992px) {
  .confirmacion-layout {
    grid-template-columns: 47vw 1fr;
    grid-template-rows: auto auto auto auto;
    justify-content: space-between;
    justify-items: center;
    align-items: start;
    align-content: center;
    padding-top: 9.5vw;
    padding-left: 6vw; } }
.confirmacion-img {
  width: MIN(62%, 375px);
  margin-top: 2vh;
  margin-bottom: 38px; }
  .confirmacion-img img {
    width: 100%;
    height: auto; }

/*lg*/
@media (min-width: 992px) {
  .confirmacion-img {
    width: 47vw;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -6vw;
    grid-area: 1 / 2 / 5 / 3; } }
.confirmacion-title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #82901D;
  margin-bottom: 24px; }

/*sm*/
@media (min-width: 576px) {
  .confirmacion-title {
    font-size: 32px;
    margin-bottom: 24px; } }
/*md*/
@media (min-width: 768px) {
  .confirmacion-title {
    font-size: 40px;
    margin-bottom: 24px; } }
/*lg*/
@media (min-width: 992px) {
  .confirmacion-title {
    font-size: 4.8vw;
    margin-bottom: 5.2vw; } }
.confirmacion-text {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  width: 75%;
  max-width: 280px;
  margin-bottom: 48px; }
  .confirmacion-text span {
    font-weight: 600;
    font-size: 20px; }

/*sm*/
@media (min-width: 576px) {
  .confirmacion-text {
    font-size: 20px;
    max-width: 330px;
    margin-bottom: 48px; }
    .confirmacion-text span {
      font-size: 24px; } }
/*md*/
@media (min-width: 768px) {
  .confirmacion-text {
    font-size: 22px;
    max-width: 400px;
    margin-bottom: 48px; }
    .confirmacion-text span {
      font-size: 28px; } }
/*lg*/
@media (min-width: 992px) {
  .confirmacion-text {
    font-size: 2.4vw;
    width: 48vw;
    max-width: none;
    margin-bottom: 6vw; }
    .confirmacion-text span {
      font-size: 3.2vw; } }
.confirmacion-btn {
  display: block;
  padding: 12px 36px;
  background-color: #211E1E;
  border-radius: 8px;
  border: solid 1px #211E1E;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #FFF;
  margin-bottom: 32px; }
  .confirmacion-btn:hover {
    background-color: #82901d;
    border-color: #82901d;
    color: #FFF; }

/*sm*/
@media (min-width: 576px) {
  .confirmacion-btn {
    font-size: 16px; } }
/*md*/
@media (min-width: 768px) {
  .confirmacion-btn {
    font-size: 18px; } }
/*lg*/
@media (min-width: 992px) {
  .confirmacion-btn {
    padding: 0.8vw 8vw;
    font-size: 2vw;
    margin-bottom: 0; } }
/*sm*/
/*md*/
/*lg*/
/*xl*/
/*xxl*/

/*# sourceMappingURL=styles.css.map */
