@font-face {
  font-family: Allenoire;
  src: url(images/fonts/Allenoire\ Font.otf) format("opentype");
}
@font-face {
  font-family: Circular;
  src: url(images/fonts/CircularStd-Light.otf) format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: Circular;
  src: url(images/fonts/CircularStd-Medium.otf) format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: Circular;
  src: url(images/fonts/CircularStd-Black.otf) format("opentype");
  font-weight: 700;
}
html, body {
  margin: 0;
  overflow: hidden;
  width: 100vw;
}

html {
  overflow-y: auto;
}

body {
  overflow-y: hidden;
  position: absolute;
  right: 0;
  left: 0;
  width: 100vw;
}

:root {
  --green: #32FFC9;
  --blue: #0198FF;
}

* {
  font-family: Circular;
}

[fade-in], [fade-in] > [fade-in-child] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px) skewX(-10deg);
}

span[fade-in-child] {
  display: inline-block;
}

[fade-in].fade-in-appear, [fade-in].fade-in-appear > [fade-in-child] {
  visibility: visible;
  --fade-in-time: 1000ms;
  --fade-in-delay: 0s;
  animation: fadein var(--fade-in-time) ease var(--fade-in-delay) forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: black;
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.register {
  font-size: 20px;
  font-weight: 600;
  background-color: transparent;
  border: solid 2px black;
  height: 64px;
  padding: 0 24px;
  cursor: pointer;
  font-family: Helvetica;
  font-weight: 600;
  position: relative;
  z-index: 2;
  display: block;
  color: black;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.register::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: 100%;
  background-color: #fff;
  z-index: -1;
}

.register::after {
  content: " ";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 0%;
  background-color: #ff8673;
  z-index: -1;
  transition: height 150ms ease;
}

.register:hover:after {
  height: 100%;
}

.section-title {
  background-color: rgb(255, 173, 110);
  height: 140px;
  margin-top: 60px;
  padding-bottom: 64px;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
}

.section-title > div {
  max-width: 1050px;
  display: block;
  margin: 0 auto;
}

.section-title a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  display: block;
  margin-top: 8px;
  padding: 0 12px;
}

.section-title h1 {
  text-align: center;
  font-size: 64px;
}

.nav-bottom {
  display: flex;
  justify-content: center;
  padding: 12px 24px 64px;
  gap: 24px;
  margin-top: 32px;
}

.nav-bottom a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

section.columns {
  border-bottom: solid 2px black;
  padding-bottom: 64px;
  padding-top: 32px;
}

section.columns > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px;
}

section.columns h1 {
  font-size: 42px;
  font-family: Allenoire;
  font-weight: 500;
  text-transform: uppercase;
}

section.columns .description {
  margin-top: 20px;
}

section.columns img {
  margin: auto;
  display: block;
  max-width: 250px;
  max-height: 300px;
}

section.centered {
  border-bottom: solid 2px black;
  padding: 0 24px;
  padding-bottom: 64px;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

section.centered > p {
  max-width: 450px;
}

section.centered h2 {
  font-size: 36px;
  max-width: 350px;
  margin: 0;
}

section h3 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 12px;
}

section.centered h3 {
  max-width: 180px;
}

section.mosaic > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1050px;
  margin: auto;
  margin-bottom: -2px;
}

section.mosaic > div > div {
  flex: 1;
  min-width: 300px;
  widows: 2;
  display: grid;
  grid-template-rows: 60px 200px 1fr;
  gap: 12px;
  place-items: center;
  padding: 16px;
  border: solid 2px black;
  margin: -2px -1px 0px;
  position: relative;
}

section.mosaic > div > div:after {
  content: " ";
  position: absolute;
  border-top: solid 2px black;
  bottom: -2px;
  left: -50vw;
  width: 150vw;
}

section.mosaic > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

section.mosaic > div p {
  font-size: 14px;
}

section.mosaic > div h2 {
  margin-top: 6px;
  max-width: 260px;
  place-self: start;
}

section.content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 32px;
  margin-bottom: 72px;
}

section.content ul {
  margin-top: 12px;
  margin-bottom: 24px;
}

section.content li {
  margin-bottom: 12px;
}

@media screen and (max-width: 900px) {
  section.columns > div {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  section.columns h1 {
    font-size: 32px;
  }
}
header {
  display: flex;
  border-bottom: solid 2px black;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #fff;
}

header #brand {
  height: 42px;
  margin-right: 12px;
}

header .inner {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 24px 0 8px;
  margin: 0 auto;
}

header a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  font-weight: 500;
}

header .links {
  display: flex;
  gap: 24px;
  padding: 0 32px;
  border-left: solid 2px black;
  border-right: solid 2px black;
  margin: 0 24px;
  height: 100%;
  align-items: center;
}

header .links a:after {
  content: " ";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: rgb(0, 128, 255);
  left: 0;
  bottom: -2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 150ms;
}

header .links a:hover::after {
  transform: scaleX(1);
}

header .links a:hover {
  color: #464646;
}

header .user {
  font-weight: 800;
  display: flex;
  gap: 12px;
  align-items: center;
}

header .icon {
  width: 16px;
}

footer {
  background-color: black;
  color: rgb(255, 173, 110);
  overflow: hidden;
}

footer .content {
  max-width: 1050px;
  padding: 46px 24px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 2fr 1fr 1fr 1fr;
  gap: 24px;
}

footer .logo {
  max-width: 100px;
}

footer .logo img {
  width: 100%;
}

footer .links {
  max-width: 200px;
}

footer a {
  color: rgb(255, 173, 110);
  text-decoration: none;
  font-weight: 500;
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

footer a:hover {
  color: rgb(255, 203, 162);
}

footer p {
  font-size: 12px;
  line-height: 14px;
}

footer .right {
  grid-column: 5/6;
  margin-right: -12px;
}

header .menu {
  display: none;
  padding: 0px;
  background-color: transparent;
  border: none;
}

header .menu img {
  width: 36px;
}

aside.navmenu {
  position: fixed;
  left: 0;
  top: 62px;
  height: 100vh;
  width: 100%;
  color: black;
  background-color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  border-right: solid 2px black;
}

aside.navmenu .links {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

aside.navmenu .links a {
  font-size: 28px;
  text-align: center;
  text-decoration: none;
  color: black;
  border-bottom: solid 2px black;
  padding: 16px;
  font-weight: 500;
}

header .menu .closed {
  display: none;
}

@media screen and (max-width: 1100px) {
  header .inner {
    justify-content: space-between;
    width: 100%;
    padding: 0;
    padding-right: 12px;
  }
  header .user {
    display: none;
  }
  header .links {
    display: none;
  }
  header .menu {
    display: inline;
  }
  aside.navmenu {
    transition: transform 300ms;
  }
  aside.navmenu.open {
    transform: none;
  }
  header .menu.open img.closed {
    display: block;
  }
  header .menu.open img {
    display: none;
  }
  footer .content {
    display: flex;
    flex-direction: column;
  }
  footer .links {
    max-width: 100%;
    border-top: solid 1px #333;
    padding-top: 30px;
  }
  footer p {
    margin: 0;
  }
}
.trust .faq {
  max-width: 1020px;
  margin: auto;
  margin-top: 56px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  border-bottom: solid 2px black;
}
.trust .faq .question {
  padding: 22px;
  padding-left: 32px;
  /* background: linear-gradient(to bottom, #0c255c88, black 40%); */
  cursor: pointer;
  transition: border-color 150ms;
  border-top: solid 2px black;
}
.trust .faq h2 {
  margin: 0px;
  font-size: 36px;
  line-height: 36px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.trust .faq .content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 300ms;
}
.trust .faq .question.open .content {
  grid-template-rows: 1fr;
}
.trust .faq .contained {
  overflow: hidden;
  transform: translateY(2px);
  opacity: 0 !important;
  transition: opacity 300ms 150ms, transform 300ms 150ms;
}
.trust .faq .question.open .contained {
  opacity: 1 !important;
  transform: none;
}
.trust .faq p {
  margin-top: 16px;
}
.trust .faq .arrow {
  transition: transform 300ms;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 72px;
  margin: 0;
}
.trust .faq .question.open .arrow {
  transform: rotate(-135deg);
}
@media screen and (max-width: 930px) {
  .trust .faq .question h2 {
    font-size: 24px;
  }
  .trust .faq .question .arrow {
    width: 36px;
  }
}
.trust .faq .faq-hidden {
  display: none;
}
.trust .faq [faq-toggle] {
  align-self: flex-end;
  padding-right: 22px;
  border: none;
  background-color: transparent;
  color: #1f57cf;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.faq {
  max-width: 1020px;
  margin: auto;
  margin-top: 56px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  border-bottom: solid 2px black;
}

.faq .question {
  padding: 22px;
  padding-left: 32px;
  /* background: linear-gradient(to bottom, #0c255c88, black 40%); */
  cursor: pointer;
  transition: border-color 150ms;
  border-top: solid 2px black;
}

.faq h2 {
  margin: 0px;
  font-size: 36px;
  line-height: 36px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 100% !important;
}

.faq .content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 300ms;
}

.faq .question.open .content {
  grid-template-rows: 1fr;
}

.faq .contained {
  overflow: hidden;
  transform: translateY(2px);
  opacity: 0 !important;
  transition: opacity 300ms 150ms, transform 300ms 150ms;
}

.faq .question.open .contained {
  opacity: 1 !important;
  transform: none;
}

.faq p {
  margin-top: 16px;
}

.faq .arrow {
  transition: transform 300ms;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 72px;
}

.faq .question.open .arrow {
  transform: rotate(-135deg);
}

@media screen and (max-width: 930px) {
  .faq .question h2 {
    font-size: 24px;
  }
  .faq .question .arrow {
    width: 36px;
  }
}
.faq .faq-hidden {
  display: none;
}

.faq [faq-toggle] {
  align-self: flex-end;
  padding-right: 22px;
  border: none;
  background-color: transparent;
  color: #1f57cf;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.faq-title h1 {
  font-family: Allenoire;
  text-transform: uppercase;
  font-size: 46px;
  font-weight: 300;
  max-width: 420px;
  margin: 0px;
  margin-top: 24px;
}

.home .hiro {
  background-color: rgb(137, 181, 247);
  border-bottom: solid 2px black;
  padding-top: 64px;
}
.home .hiro .inner {
  display: grid;
  grid-template: "a b" auto "c d" auto/6fr 5fr;
  -moz-column-gap: 12px;
       column-gap: 12px;
  max-width: 1250px;
  width: 100%;
  margin: auto;
  position: relative;
  padding: 0 24px;
  box-sizing: border-box;
}
.home .hiro img {
  grid-row: 1/3;
  grid-column: 1/2;
  width: 100%;
  align-self: center;
}
.home .hiro .background {
  grid-row: 2/3;
  grid-column: 1/3;
  background-color: rgb(137, 181, 247);
  z-index: -1;
  position: absolute;
  left: -50vw;
  right: -50vw;
  height: 100%;
  border-bottom: solid 2px black;
}
.home .hiro h1 {
  grid-area: b;
  font-family: Allenoire;
  font-size: 60px;
  line-height: 56px;
  margin-bottom: 12px;
  font-weight: 400;
  text-align: right;
}
.home .hiro .content {
  grid-area: d;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 42px;
}
.home .hiro p {
  text-align: right;
}
.home .hiro .content p {
  max-width: 400px;
  font-size: 18px;
  font-weight: 300;
}
.home b {
  font-weight: 800;
}
.home .hiro .content p.legend {
  font-weight: 800;
  font-size: 12px;
  max-width: 100%;
  padding-top: 6px;
}
.home .services .title,
.home .testimonials .title,
.home .community .title {
  display: flex;
  max-width: 800px;
  padding: 0 24px;
  gap: 12px;
  align-items: center;
  margin: 120px auto;
}
.home .services img,
.home .testimonials img,
.home .community img {
  width: 180px;
}
.home .services h1,
.home .testimonials h1,
.home .community h1 {
  font-size: 56px;
  margin: 0;
  font-weight: 800;
}
.home .services .swiper-slide {
  background-color: rgb(255, 173, 110);
  padding: 16px;
  border: solid 2px black;
  margin-left: -2px;
  height: auto;
  display: grid;
  grid-template-rows: 64px 200px 1fr;
  box-sizing: border-box;
}
.home .services .swiper-slide.light {
  background-color: rgb(255, 203, 162);
}
.home .services .swiper-slide h2 {
  margin: 0px;
  margin-bottom: 24px;
  width: 100%;
}
.home .services .swiper-slide img {
  max-height: 200px;
  width: auto;
  max-width: 200px;
  place-items: center;
  align-self: center;
  justify-self: center;
}
.home .services .swiper-slide p {
  font-size: 16px;
  margin: 0px;
  font-weight: 300;
}
.home .services .nav,
.home .testimonials .nav {
  display: flex;
  margin-top: -2px;
}
.home .services .nav button,
.home .testimonials .nav button {
  flex: 1;
  background-color: black;
  border: solid 2px black;
  padding: 6px;
  cursor: pointer;
  margin-right: -2px;
}
.home .services .nav button:hover,
.home .testimonials .nav button:hover {
  background-color: #89b5f7;
}
.home .services .nav button img,
.home .testimonials .nav button img {
  height: 20px;
  width: auto;
}
.home .realtime {
  margin-top: 72px;
  padding: 0 24px;
  padding-bottom: 120px;
  border-bottom: solid 2px black;
}
.home .realtime .content {
  max-width: 640px;
  margin: 32px auto;
  position: relative;
  margin-top: 140px;
  margin-bottom: 120px;
}
.home .realtime .content div {
  width: 52%;
}
.home .realtime .content img {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
}
.home .realtime h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 46px;
  margin: 0;
  margin-bottom: 16px;
}
.home .realtime p {
  margin-bottom: 24px;
  font-weight: 300;
}
.home .realtime .center {
  max-width: 960px;
  margin: 0 auto;
}
.home .realtime hr {
  border: none;
  height: 1px;
  background-color: black;
  margin: 0px;
}
.home .realtime center p {
  text-transform: uppercase;
  font-size: 10px;
  margin: 0px;
  margin-bottom: 12px;
}
.home .trust {
  background-color: rgb(255, 173, 110);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 120px;
}
.home .trust h1 {
  font-size: 54px;
  max-width: 320px;
  text-align: center;
  line-height: 54px;
  margin-bottom: 12px;
}
.home .trust img {
  width: 100%;
  max-width: 460px;
  margin-top: 48px;
}
.home .trust p {
  max-width: 700px;
  text-align: center;
}
.home .home-news {
  display: grid;
  grid-template-columns: 1fr 1fr 32px;
  gap: 12px;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
  overflow: hidden;
}
.home .home-news > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .home-news h1 {
  font-size: 56px;
  margin: 0px;
}
.home .home-news > div {
  padding: 28px 32px;
}
.home .home-news .date {
  font-size: 12px;
  font-weight: 500;
  margin: 0px;
}
.home .home-news h2 {
  font-family: Allenoire;
  font-weight: 400;
  font-size: 22px;
  margin: 6px 0 12px;
}
.home .home-news .home-new {
  border-bottom: solid 1px black;
  padding-top: 12px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: block;
  color: black;
}
.home .home-news .home-new:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #e6e6e6;
  z-index: -1;
  height: 0%;
  transition: height 200ms;
}
.home .home-news .home-new:hover:before {
  height: 100%;
}
.home .testimonials {
  background-color: rgb(137, 181, 247);
  padding-top: 32px;
  position: relative;
}
.home .testimonials:before {
  content: " ";
  position: absolute;
  bottom: 42px;
  width: 100%;
  height: 120px;
  background-color: rgb(166, 203, 255);
}
.home .testimonials .swiper-slide {
  padding: 16px 32px;
  border: solid 2px black;
  margin-left: -2px;
  height: auto;
  display: grid;
  grid-template-rows: 1fr 120px;
  box-sizing: border-box;
}
.home .testimonials .swiper-slide.light {
  background-color: rgb(255, 203, 162);
}
.home .testimonials .swiper-slide p {
  font-size: 22px;
  margin: 0px;
}
.home .testimonials .author {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
}
.home .testimonials .author h3 {
  margin: 0px;
}
.home .testimonials .author h4 {
  margin: 0px;
  font-weight: 500;
}
.home .testimonials .thumbnail {
  width: 60px;
  height: 60px;
  background-color: black;
  border-radius: 100px;
}
.home .testimonials .title {
  align-items: flex-start;
  max-width: 760px;
}
.home .testimonials .title h1 {
  max-width: 320px;
}
.home .community {
  margin-top: 64px;
  margin-bottom: 72px;
  padding: 0 24px;
}
.home .community .title {
  max-width: 640px;
  gap: 32px;
}
.home .community .title h1 {
  max-width: 280px;
  font-size: 45px;
  line-height: 42px;
}
.home .community .center {
  max-width: 960px;
  margin: 0 auto;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
  display: flex;
  gap: 24px;
  padding: 32px 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -2px;
}
.home .community .center img {
  max-height: 36px;
  width: auto;
}
.home .community .register {
  margin: auto;
  margin-top: 56px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .home .hiro {
    grid-template: "a" auto "b" auto "c" auto "d" auto/1fr;
  }
  .home .hiro img {
    grid-area: a;
    max-width: 500px;
    place-self: center;
  }
  .home .hiro .background {
    grid-area: d;
  }
  .home .hiro h1 {
    text-align: center;
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 32px;
  }
  .home .hiro p {
    text-align: left;
  }
  .home .hiro .register {
    align-self: flex-start;
  }
  .home .hiro .content {
    align-items: flex-start;
    padding-top: 24px;
  }
}
@media screen and (max-width: 430px) {
  .home .hiro h1 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1100px) {
  .home .services .title,
  .home .testimonials .title,
  .home .community .title {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .home .services .nav button:hover,
  .home .testimonials .nav button:hover {
    background-color: black;
  }
  .home .services .nav button:active,
  .home .testimonials .nav button:active {
    background-color: #89b5f7;
  }
  .home .realtime .content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
  }
  .home .realtime .content div {
    width: 100%;
    text-align: center;
  }
  .home .realtime .content img {
    position: static;
  }
  .home .trust img {
    width: 70%;
  }
  .home .home-news {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home .testimonials .title h1,
  .home .community .title h1 {
    max-width: 100%;
  }
}

.page-template-page-nosotros .history {
  background-color: rgb(255, 173, 110);
  padding-bottom: 64px;
}
.page-template-page-nosotros .history h1 {
  font-size: 52px;
  font-weight: 500;
}
.page-template-page-nosotros .history .description {
  margin-top: 140px;
}
.page-template-page-nosotros .team {
  border-bottom: solid 2px black;
  padding-bottom: 0px !important;
  margin-bottom: 64px;
}
.page-template-page-nosotros .team .description {
  margin-top: 80px;
}
.page-template-page-nosotros .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 32px;
}
.page-template-page-nosotros .team-grid > div {
  display: grid;
  grid-template-rows: 300px auto auto auto;
  border: solid 2px black;
  margin: 0 -1px -2px;
  position: relative;
}
.page-template-page-nosotros .team-grid > div:after,
.page-template-page-nosotros .team-grid > div:before {
  content: " ";
  position: absolute;
  border-top: solid 2px black;
  top: -2px;
  left: -50vw;
  width: 150vw;
}
.page-template-page-nosotros .team-grid > div:after {
  top: 300px;
}
.page-template-page-nosotros .team-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-page-nosotros section.columns .team-grid h1 {
  margin: 12px 12px 0;
  font-family: Circular;
  text-transform: none;
  font-size: 22px;
}
.page-template-page-nosotros section.columns .team-grid h4 {
  font-weight: 500;
  margin: 12px 12px 12px;
}
.page-template-page-nosotros .team-grid p {
  margin: 0px 12px 24px;
}
@media screen and (max-width: 900px) {
  .page-template-page-nosotros .history .description {
    margin-top: 0px;
  }
  .page-template-page-nosotros .team .description {
    margin-top: 0px;
  }
  .page-template-page-nosotros .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    max-width: 500px;
  }
  .page-template-page-nosotros .team-grid > div {
    grid-template-rows: 280px auto auto;
  }
  .page-template-page-nosotros .team-grid h1 {
    font-size: 18px;
    margin-top: 18px;
  }
  .page-template-page-nosotros .team-grid > div:after {
    top: 280px;
  }
}

.page-template-page-servicios-min .section-title.servicios {
  background-color: rgb(241, 144, 121);
}
.page-template-page-servicios-min .section-nav {
  display: flex;
}
.page-template-page-servicios-min .section-nav {
  border-bottom: solid 2px black;
}
.page-template-page-servicios-min .section-nav a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: black;
  font-weight: 600;
  padding: 6px;
  font-size: 14px;
  background-color: rgb(241, 144, 121);
}
.page-template-page-servicios-min .section-nav a:first-child {
  border-right: solid 2px black;
}
.page-template-page-servicios-min .section-nav a.active {
  background-color: rgb(255, 173, 110);
}
.page-template-page-servicios-min .consulting {
  background-color: rgb(241, 144, 121);
}
.page-template-page-servicios-min .consulting h1 {
  margin-top: 0px;
}

.page-template-page-servicios-emp .section-title.servicios {
  background-color: rgb(241, 144, 121);
}
.page-template-page-servicios-emp .section-nav {
  display: flex;
}
.page-template-page-servicios-emp .section-nav {
  border-bottom: solid 2px black;
}
.page-template-page-servicios-emp .section-nav a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: black;
  font-weight: 600;
  padding: 6px;
  font-size: 14px;
  background-color: rgb(241, 144, 121);
}
.page-template-page-servicios-emp .section-nav a:first-child {
  border-right: solid 2px black;
}
.page-template-page-servicios-emp .section-nav a.active {
  background-color: rgb(255, 173, 110);
}
.page-template-page-servicios-emp .consulting {
  background-color: rgb(241, 144, 121);
}
.page-template-page-servicios-emp .consulting h1 {
  margin-top: 0px;
}
.page-template-page-servicios-emp .centered img {
  max-height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-template-page-servicios-emp .inmobiliarias {
  background-color: rgb(255, 173, 110);
  overflow: hidden;
  border-bottom: solid 2px black;
}
.page-template-page-servicios-emp .inmobiliarias .inner {
  max-width: 1050px;
  margin: auto;
  padding: 0 24px;
}
.page-template-page-servicios-emp .inmobiliarias h1 {
  font-family: Allenoire;
  font-size: 52px;
  font-weight: 500;
  line-height: 50px;
  max-width: 500px;
}
.page-template-page-servicios-emp .inmobiliarias > div > div {
  background-color: rgb(255, 203, 162);
}
.page-template-page-servicios-emp .testimonials {
  background-color: rgb(255, 173, 110);
}
@media screen and (max-width: 900px) {
  .page-template-page-servicios-emp .inmobiliarias h1 {
    font-size: 32px;
    line-height: 32px;
    max-width: 300px;
  }
}

.page-template-page-compra-venta .section-title.compraventa {
  background-color: rgb(137, 181, 247);
}
.page-template-page-compra-venta .step.columns {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: -26px;
  border-bottom: none;
}
.page-template-page-compra-venta .step.columns > div {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 64px;
  padding-top: 48px;
  position: relative;
}
.page-template-page-compra-venta .step.columns > div:nth-child(2n+1):before {
  content: " ";
  position: absolute;
  left: -50vw;
  top: 0;
  width: 200vw;
  height: 100%;
  z-index: -1;
  background-color: rgb(213, 230, 255);
  border-top: solid 2px black;
  border-bottom: solid 2px black;
}
.page-template-page-compra-venta .step.columns > div:after {
  position: absolute;
  bottom: 0px;
  left: -50vw;
  width: 200vw;
  content: " ";
}
.page-template-page-compra-venta .step.columns > div h1 {
  font-size: 320px;
  line-height: 170px;
  margin: 0px;
  margin-right: 32px;
  place-self: center;
  align-self: end;
  padding-top: 64px;
}
.page-template-page-compra-venta .step.columns .side-title {
  align-self: end;
  margin-left: -32px;
}
.page-template-page-compra-venta .step.columns h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  margin: 0px;
}
.page-template-page-compra-venta .step.columns .description {
  font-size: 12px;
}
.page-template-page-compra-venta .step.columns .description h3 {
  font-weight: 500;
  font-size: 14px;
}
.page-template-page-compra-venta .step.columns .description ul {
  margin-bottom: 24px;
}
.page-template-page-compra-venta .step.columns h4 {
  margin-bottom: 0;
}
.page-template-page-compra-venta .mosaic p {
  place-self: start;
}
@media screen and (max-width: 1050px) {
  .page-template-page-compra-venta .step.columns > div {
    grid-template-columns: 1fr 1fr;
    row-gap: 0px;
    max-width: 100% !important;
  }
  .page-template-page-compra-venta .step.columns > div h1 {
    grid-row: 1/3;
    align-self: start;
    margin-top: 6px;
    font-size: 240px;
    line-height: 140px;
  }
  .page-template-page-compra-venta .step.columns > div .description {
    grid-column: 2/3;
  }
  .page-template-page-compra-venta .step.columns .side-title {
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .page-template-page-compra-venta .step.columns > div {
    display: flex;
    flex-direction: column;
    max-width: 500px !important;
  }
  .page-template-page-compra-venta .step.columns > div h1,
  .page-template-page-compra-venta .step.columns > div h2,
  .page-template-page-compra-venta .step.columns > div h3,
  .page-template-page-compra-venta .step.columns > div h4 {
    text-align: center;
  }
  .page-template-page-compra-venta .step.columns > div h1 {
    align-self: center;
    font-size: 180px;
    line-height: 100px;
    padding-top: 24px;
  }
}

.page-template-page-noticias .section-title.news {
  background-color: rgb(211, 211, 211);
}
.page-template-page-noticias .columns.news > div {
  gap: 24px;
}
.page-template-page-noticias .columns.news > div > img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-page-noticias .columns.news > div h1 {
  text-transform: none;
  margin-top: 0px;
  margin-bottom: 12px;
}
.page-template-page-noticias .news-list {
  max-width: 1050px;
  margin: 0 auto;
}
.page-template-page-noticias .news-list > div {
  max-width: 600px;
  display: grid;
  grid-template-columns: 200px 1fr;
  border: solid 2px black;
  margin-top: -2px;
}
.page-template-page-noticias .news-list > div > div {
  padding: 12px;
}
.page-template-page-noticias .news-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-page-noticias .news-list h2 {
  font-family: Allenoire;
  font-weight: 400;
  margin: 0px;
}
.page-template-page-noticias .news-list p {
  font-size: 12px;
  margin: 0px;
}
.page-template-page-noticias .news-list a {
  color: black;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}
.page-template-page-noticias .news-load.centered {
  padding-bottom: 28px;
  border-top: solid 2px black;
  margin-top: -2px;
}
.page-template-page-noticias #loadmore {
  background-color: transparent;
  border: none;
  font-size: 16px;
  font-weight: 500;
}

.single .single-news {
  height: auto;
  padding-bottom: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.single .single-news > div {
  padding: 0 24px;
  box-sizing: border-box;
  width: 100%;
}
.single .single-news h1 {
  text-align: left;
  margin-bottom: 12px;
}
.single .single-news > img {
  width: 100%;
  height: 100%;
  border-left: solid 2px black;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .single-news-content {
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 120px;
  max-width: 800px;
}
@media screen and (max-width: 900px) {
  .single .single-news {
    grid-template-columns: 1fr;
  }
  .single .single-news > img {
    border-left: none;
    border-bottom: solid 2px black;
  }
  .single .single-news h1 {
    font-size: 32px;
  }
}

#contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 22px;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 400px;
  justify-content: center;
  margin-top: 120px;
  margin-bottom: 200px;
  gap: 12px;
}

#contact-form h2 {
  text-align: center;
  font-size: 38px;
}

#contact-form p {
  text-align: center;
  margin: 0;
  margin-bottom: 12px;
}

#contact-form input {
  padding: 12px 24px;
  border: solid 2px black;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  box-sizing: border-box;
}

#contact-form input::-moz-placeholder {
  color: #666;
}

#contact-form input::placeholder {
  color: #666;
}

#contact-form .tos {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  cursor: pointer;
  accent-color: black;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-self: center;
  margin-bottom: 12px;
}

#contact-form a {
  text-decoration: underline;
  font-weight: 600;
  color: black;
}

#contact-form .register {
  width: 100%;
}

.page-template-page-educacion .section-title.news {
  background-color: rgb(211, 211, 211);
}
.page-template-page-educacion .columns.news > div {
  gap: 24px;
}
.page-template-page-educacion .columns.news > div > img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-page-educacion .columns.news > div h1 {
  text-transform: none;
  margin-top: 0px;
  margin-bottom: 12px;
}
.page-template-page-educacion .news-list {
  max-width: 1050px;
  margin: 0 auto;
}
.page-template-page-educacion .news-list > div {
  max-width: 600px;
  display: grid;
  grid-template-columns: 200px 1fr;
  border: solid 2px black;
  margin: 0 auto;
  margin-top: -2px;
}
.page-template-page-educacion .news-list > div > div {
  padding: 12px;
}
.page-template-page-educacion .news-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-page-educacion .news-list h2 {
  font-family: Allenoire;
  font-weight: 400;
  margin: 0px;
}
.page-template-page-educacion .news-list p {
  font-size: 12px;
  margin: 0px;
}
.page-template-page-educacion .news-list a {
  color: black;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}
.page-template-page-educacion .news-load.centered {
  padding-bottom: 28px;
  border-top: solid 2px black;
  margin-top: -2px;
}
.page-template-page-educacion #loadmore {
  background-color: transparent;
  border: none;
  font-size: 16px;
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */