#servicios, #nosotros, #contacto {
  padding-top: 55px;
}
@media (max-width: 575px) {
  #servicios, #nosotros, #contacto {
    padding-top: 32px;
  }
}

.header {
  width: 100%;
  height: 98px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 26px;
  transition: all 0.2s ease;
}
.header.is-sticky {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: #FFF;
  height: 70px;
  transition: all 0.2s ease;
}
.header .logo {
  margin-right: 70px;
}
.header .logo img {
  height: 48px;
  width: auto;
}
.header .menu {
  height: 50px;
  width: 600px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #F7F7FD;
}
.header .menu a {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 0px;
  text-decoration: none;
}
.header .menu a p {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #3D3D3D;
  margin: 0;
  font-weight: 500;
  transition: all 0.2s ease;
}
.header .menu a.active p {
  color: #3056D3;
}
.header .menu a:hover p {
  color: #3056D3;
  transition: all 0.2s ease;
}
.header .menu__mobile {
  display: none;
}
@media (max-width: 768px) {
  .header .menu__mobile {
    display: flex;
    position: fixed;
    top: 0;
    left: 100%;
    right: 0;
    padding: 0 15px;
    width: 100%;
    height: 100vh;
    z-index: 99;
    flex-direction: column;
    transition: all 0.1s ease-out;
  }
  .header .menu__mobile .menu__mobile--header {
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header .menu__mobile .menu__mobile--header .brand p {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: #FFF;
    margin: 0;
    letter-spacing: 2px;
  }
  .header .menu__mobile .menu__mobile--header button {
    background-color: transparent;
    border: 0px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .menu__mobile .menu__mobile--content ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header .menu__mobile .menu__mobile--content ul li {
    height: 48px;
    margin: 16px 0;
  }
  .header .menu__mobile .menu__mobile--content ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .header .menu__mobile .menu__mobile--content ul li a p {
    font-family: "Epilogue", sans-serif;
    font-size: 24px;
    color: #FFF;
    margin: 0;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 400;
  }
  .header .menu__mobile .menu__mobile--content ul li a:hover {
    text-decoration: none !important;
  }
  .header .menu__mobile .menu__mobile--bottom {
    margin-top: auto;
    margin-bottom: 20px;
  }
  .header .menu__mobile .menu__mobile--bottom p {
    font-family: "Epilogue", sans-serif;
    font-size: 16px;
    margin: 0;
    text-align: center;
    color: #FFF;
  }
  .header .menu__mobile.show {
    background-color: #3862FF;
    left: 0;
    transition: all 0.2s ease-in;
  }
}
.header .menu__mobile--button {
  display: none;
}
@media (max-width: 768px) {
  .header .menu__mobile--button {
    width: 48px;
    height: 48px;
    margin-left: auto;
    display: block;
  }
  .header .menu__mobile--button button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0px;
  }
}
.header .brand--mobile {
  display: none;
}
.header .logo--mobile {
  display: none;
}
@media (max-width: 768px) {
  .header {
    height: 63px;
    background-color: #3862FF;
    margin-bottom: 32px;
  }
  .header .logo {
    display: none;
  }
  .header .brand--mobile {
    display: block;
  }
  .header .brand--mobile p {
    font-family: "Epilogue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFF;
    margin: 0;
  }
}

.hero {
  position: relative;
  height: 568px;
}
.hero::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 31%, rgba(255, 255, 255, 0.7399334734) 71%, rgba(255, 255, 255, 0) 100%);
}
.hero .hero__text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .hero__text .brand {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: #3862FF;
  margin: 0 0 20px 0;
}
.hero .hero__text .big-text {
  font-family: "Epilogue", sans-serif;
  font-size: 54px;
  line-height: 56px;
  color: #3D3D3D;
  margin: 0 0 34px 0;
}
.hero .hero__text .small-text {
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  line-height: 115.7%;
  font-weight: 500;
  color: #525252;
  margin: 0;
}
@media (max-width: 992px) {
  .hero .hero__text {
    padding: 24px 48px;
  }
  .hero .hero__text .big-text {
    color: #FFF;
    font-size: 44px;
    line-height: 46px;
  }
  .hero .hero__text .small-text {
    color: #FFF;
    font-size: 16px;
    line-height: 22px;
  }
}
.hero .hero__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 0px;
}
.hero .hero__img img {
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .hero .hero__img {
    position: relative;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .hero .hero__img::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 23px;
  }
}
.hero .logo--mobile {
  display: none;
}
@media (max-width: 992px) {
  .hero {
    height: auto;
  }
  .hero::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero .logo--mobile {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
  }
  .hero .hero__text {
    padding: 16px;
    justify-content: flex-start;
    align-items: center;
    top: 80px;
  }
  .hero .hero__text .brand {
    color: #FFF;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
  }
  .hero .hero__text .big-text {
    font-size: 28px;
    line-height: 40px;
    color: #FFF;
    margin: 0 0 34px 0;
    text-align: center;
  }
  .hero .hero__text .small-text {
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    text-align: center;
    font-weight: 400;
  }
  .hero .hero__img img {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 24px;
  }
}
@media (max-width: 575px) {
  .hero .hero__img {
    height: 400px;
    border-radius: 0px;
  }
  .hero .hero__img img {
    height: 100%;
    border-radius: 0px;
  }
  .hero .hero__img::after {
    border-radius: 0px;
  }
  .hero .hero__text {
    height: calc(100% - 80px);
    justify-content: center;
  }
}

.services h2 {
  font-family: "Epilogue", sans-serif;
  font-size: 32px;
  line-height: normal;
  color: #3D3D3D;
  margin: 0 0 45px 0;
  text-align: center;
}
.services .services__box {
  display: flex;
  flex-wrap: wrap;
  border-radius: 36px;
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.13);
  padding: 0;
}
.services .services__box .item {
  padding: 34px 58px;
}
.services .services__box .item img {
  margin-bottom: 35px;
}
.services .services__box .item .title {
  font-family: "Epilogue", sans-serif;
  font-size: 28px;
  line-height: normal;
  font-weight: 500;
  color: #3D3D3D;
  margin: 0 0 8px 0;
}
.services .services__box .item .text {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #525252;
  margin: 0;
}
@media (max-width: 575px) {
  .services h2 {
    margin-bottom: 24px;
  }
  .services .services__box {
    border-radius: 0;
    box-shadow: none;
  }
  .services .services__box div:last-child .item {
    margin-bottom: 0px;
  }
  .services .services__box .item {
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
  }
  .services .services__box .item img {
    margin: 0 16px 0 0;
  }
  .services .services__box .item .title {
    margin: 0;
  }
  .services .services__box .item .text {
    margin: 8px 0 0 0;
  }
}
@media (max-width: 375px) {
  .services .services__box .item .title {
    font-size: 20px;
  }
  .services .services__box .item img {
    width: 45px;
  }
}

.we-are {
  padding: 70px 60px;
  background-color: #F7F7FD;
  border-radius: 36px;
}
.we-are h2 {
  font-family: "Epilogue", sans-serif;
  font-size: 40px;
  line-height: 62px;
  line-height: normal;
  color: #3D3D3D;
  margin: 0 0 55px 0;
  text-align: center;
}
@media (max-width: 992px) {
  .we-are .we-are__items div {
    margin-bottom: 38px;
  }
  .we-are .we-are__items div:last-child {
    margin-bottom: 0px;
  }
}
.we-are .item {
  border-radius: 36px;
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.13);
  padding: 38px 28px;
  height: 100%;
  background-color: #FFF;
}
.we-are .item .title {
  font-family: "Epilogue", sans-serif;
  font-size: 24px;
  line-height: normal;
  font-weight: bold;
  color: #3D3D3D;
  margin: 0 0 18px 0;
}
.we-are .item .text {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #525252;
  margin: 0;
}
.we-are .--bg-color {
  background-image: linear-gradient(to left bottom, #3963ff, #2e73ff, #2d81ff, #378eff, #489bff);
}
.we-are .--bg-color .title {
  color: #FFF;
}
.we-are .--bg-color .text {
  color: #FFF;
}
@media (max-width: 575px) {
  .we-are {
    padding: 0 16px;
    background-color: #FFF;
    border-radius: 0px;
  }
  .we-are h2 {
    margin: 0 0 32px 0;
  }
}

.contact {
  background-image: url("../img/bg-contact.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 100%;
}
.contact .title {
  font-family: "Epilogue", sans-serif;
  font-size: 54px;
  line-height: 62px;
  letter-spacing: -2px !important;
  color: #FFF;
  font-weight: normal;
  margin: 0 0 24px 0;
}
.contact .text {
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  line-height: 115.7%;
  color: #FFF;
  font-weight: normal;
}
.contact .contact__form {
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.3s linear;
}
.contact .contact__form form {
  padding: 16px 16px 16px 50px;
}
.contact .contact__form form .form__group {
  display: flex;
  align-items: center;
}
.contact .contact__form form .form__group input[type=text] {
  margin-left: 16px;
  margin-right: 16px;
}
.contact .contact__form form .form__group input[type=text]:first-child {
  margin-left: 0px !important;
}
.contact .contact__form form .form__group input[type=text]:last-child {
  margin-right: 0px !important;
}
.contact .contact__form form input[type=text] {
  font-family: "Epilogue", sans-serif;
  width: 100%;
  margin-bottom: 32px;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  padding: 15px;
  font-size: 16px;
  line-height: 24px;
}
.contact .contact__form form .button-primary {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px;
  border-radius: 8px;
  background-color: #002FFC;
  transition: all 0.2s ease;
}
.contact .contact__form form .button-primary p {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: #FFF;
  margin: 0;
}
.contact .contact__form form .button-primary:hover {
  background-color: #489bff;
  transition: all 0.2s ease;
}
@media (max-width: 1199px) {
  .contact .contact__form form {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .contact .contact__form form {
    padding: 32px 0 0 0;
  }
}
@media (max-width: 767px) {
  .contact .contact__form form .form__group {
    display: block;
  }
  .contact .contact__form form .form__group input[type=text] {
    margin-left: 0;
    margin-right: 0;
  }
}
.contact .contact__form.hidden {
  height: 50%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, height 1s, opacity 0.3s linear;
}
.contact .contact__info {
  overflow: hidden;
  transition: opacity 0.3s linear;
}
.contact .contact__info.hidden {
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, height 1s, opacity 0.3s linear;
}
.contact .msg-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.5s linear;
  position: absolute;
  top: 0;
  left: 0;
}
.contact .msg-form .small-text {
  font-family: "Epilogue", sans-serif;
  font-size: 24px;
  line-height: normal;
  color: #FFF;
  margin: 0 0 8px 0;
}
.contact .msg-form .title {
  font-family: "Epilogue", sans-serif;
  font-size: 54px;
  line-height: 62px;
  color: #FFF;
  margin: 0 0 24px 0;
}
.contact .msg-form .text {
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  line-height: 115.7%;
  color: #FFF;
  font-weight: normal;
}
.contact .msg-form * {
  text-align: center;
}
.contact .msg-form.hidden {
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
.contact .msg-form.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .contact {
    padding-top: 32px;
    padding-bottom: 16px;
  }
  .contact h5 {
    color: #FCD34D;
  }
  .contact h6 {
    margin-bottom: 16px;
  }
}

.footer {
  display: none;
}/*# sourceMappingURL=main.css.map */