@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
/* -- Functions -- */
/* -- reset  -- */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
}
img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  display: block;
/* opcional */
  -o-object-fit: cover;
  object-fit: cover;
/* opcional */
  -o-object-position: center center;
  object-position: center center;
}
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}
p a {
  display: inline;
}
li {
  list-style-type: none;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
::-moz-selection {
  background-color: var(--blue-color);
  color: var(--white-color);
}
::selection {
  background-color: var(--blue-color);
  color: var(--white-color);
}
form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
  color: inherit;
  display: block;
/* opcional */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}
body {
/* opcional */
/* opcional */
  font-smooth: always;
/* opcional */
  -webkit-font-smoothing: antialiased;
/* opcional */
  -moz-osx-font-smoothing: grayscale;
}
/* -- Variables -- */
:root {
  --black-color: #000;
  --white-color: #fff;
  --gray-color: #f2f2f2;
  --blue-color: #1f299b;
  --light-blue-color: #e8f3ff;
  --orange-color: #ffa635;
  --dark-orange-color: #e89121;
  --red-color: #eb1c1c;
  --header-height: 5.375rem;
  --header-z-index: 50;
}
@media (max-width: 1024px) {
  :root {
    --header-height: 4.375rem;
  }
}
@media (max-width: 480px) {
  :root {
    --header-height: 3.75rem;
  }
}
/* -- Fonts -- */
/* -- Native Tags -- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--white-color);
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.2;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
figure {
  margin: 0;
}
/* -- Classes -- */
.limit {
  display: block;
  width: 100%;
  max-width: 82.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
}
.section {
  padding: 8.125rem 0;
}
.section +.section:not(.avoid) {
  padding-top: 0;
}
.section.footer {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .section {
    padding: 5.625rem 0;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 3.125rem 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 1.875rem 0;
  }
}
.section2 {
  padding: 4.6875rem 0;
}
.section2 +.section {
  padding-top: 0;
}
.section2.footer {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .section2 {
    padding: 2.8125rem 0;
  }
}
@media (max-width: 640px) {
  .section2 {
    padding: 1.5625rem 0;
  }
}
@media (max-width: 480px) {
  .section2 {
    padding: 0.9375rem 0;
  }
}
/* -- Elements -- */
.header {
  height: var(--header-height);
  background-color: var(--white-color);
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(31,41,155,0.18);
          box-shadow: 0 0.25rem 0.5rem rgba(31,41,155,0.18);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: var(--header-z-index);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  height: auto;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
.header__nav__item {
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0 1.25rem;
  font-weight: 500;
  color: var(--blue-color);
  height: 2.25rem;
  border-radius: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.header__nav__item:hover,
.header__nav__item.-active- {
  font-weight: 800;
  background-color: var(--light-blue-color);
}
.header__nav__logo {
  margin: 1.25rem auto 0;
  width: 6.25rem;
  display: none;
  height: auto;
}
.header__button {
  width: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
  display: none;
}
.header__button span,
.header__button::before,
.header__button::after {
  content: '';
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--blue-color);
  border-radius: 0.125rem;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.header__button.-active-::before {
  -webkit-transform: translate(0, 7px) rotate(45deg);
          transform: translate(0, 7px) rotate(45deg);
}
.header__button.-active-::after {
  -webkit-transform: translate(0, -7px) rotate(-45deg);
          transform: translate(0, -7px) rotate(-45deg);
}
.header__button.-active- span {
  -webkit-transform: scale(0);
          transform: scale(0);
}
@media (max-width: 1024px) {
  .header__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav {
    background-color: #fafafa;
    height: calc(100% - var(--header-height));
    width: 100%;
    -webkit-box-shadow: inset 0 0.25rem 0.5rem rgba(31,41,155,0.18);
            box-shadow: inset 0 0.25rem 0.5rem rgba(31,41,155,0.18);
    overflow: auto;
    padding: 1.5625rem 0.9375rem;
    position: fixed;
    top: var(--header-height);
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    display: none;
    gap: 0.3125rem;
  }
  .header__nav__item {
    padding: 0 0.625rem;
  }
  .header__nav__logo {
    display: block;
  }
  .header__nav.-active- {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo {
    width: 11.875rem;
  }
}
@media (max-width: 480px) {
  .header__logo {
    width: 8.75rem;
  }
  .header__button {
    width: 1.75rem;
    gap: 0.1875rem;
  }
  .header__button.-active-::before {
    -webkit-transform: translate(0, 6px) rotate(45deg);
            transform: translate(0, 6px) rotate(45deg);
  }
  .header__button.-active-::after {
    -webkit-transform: translate(0, -6px) rotate(-45deg);
            transform: translate(0, -6px) rotate(-45deg);
  }
}
.footer {
  max-width: 78.75rem;
  margin: 0 auto;
}
.footer__inset {
  background-color: var(--light-blue-color);
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  padding: 0 1.875rem;
}
.footer__header,
.footer__list {
  width: 100%;
  max-width: 65rem;
  margin: auto;
}
.footer__header {
  padding: 5rem 1.875rem;
  border-bottom: 0.125rem solid var(--blue-color);
}
.footer__logo {
  display: block;
  margin: 0 auto;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  padding: 6.25rem 0;
  color: var(--blue-color);
}
.footer__list strong {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.4375rem;
}
.footer__list p {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
}
.footer__list p a:hover {
  text-decoration: underline;
}
@media (max-width: 1280px) {
  .footer__inset {
    border-top-left-radius: 2.1875rem;
    border-top-right-radius: 2.1875rem;
  }
  .footer__header {
    padding: 3.125rem 0;
  }
  .footer__list {
    padding: 4.375rem 0;
  }
}
@media (max-width: 1024px) {
  .footer__inset {
    border-top-left-radius: 1.875rem;
    border-top-right-radius: 1.875rem;
  }
  .footer__header {
    padding: 2.5rem 0;
  }
  .footer__logo {
    max-width: 13.125rem;
    height: auto;
    margin: 0;
  }
  .footer__list {
    gap: 7.5rem;
    padding: 2.5rem 0;
  }
  .footer__list strong {
    font-size: 1.1875rem;
  }
  .footer__list p {
    font-size: 1.0625rem;
  }
}
@media (max-width: 768px) {
  .footer__inset {
    padding: 0 1.5625rem;
    border-top-left-radius: 1.5625rem;
    border-top-right-radius: 1.5625rem;
  }
  .footer__header {
    padding: 2.5rem 0 0;
    border: 0;
  }
  .footer__logo {
    max-width: 11.875rem;
  }
  .footer__list {
    padding: 2.5rem 0;
  }
  .footer__list strong {
    font-size: 0.8125rem;
  }
  .footer__list p {
    font-size: 0.8125rem;
  }
}
@media (max-width: 480px) {
  .footer__inset {
    padding: 0 1.25rem;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
  }
  .footer__header {
    padding: 1.875rem 0 0;
  }
  .footer__logo {
    max-width: 7.5rem;
  }
  .footer__list {
    padding: 1.875rem 0;
    gap: 1.875rem;
  }
}
.g-button {
  background-color: var(--orange-color);
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 1.0625rem;
  line-height: 1.3;
  width: 16.875rem;
  border-radius: 0.625rem;
  text-align: center;
  padding: 0.625rem 1.5625rem;
  -webkit-transition: background-color ease 0.25s;
  transition: background-color ease 0.25s;
  margin: 3.75rem auto 0;
}
.g-button:hover {
  background-color: var(--dark-orange-color);
}
@media (max-width: 1024px) {
  .g-button {
    margin-top: 2.5rem;
  }
}
@media (max-width: 480px) {
  .g-button {
    font-size: 0.75rem;
    width: 8.75rem;
    margin-top: 1.875rem;
  }
}
@media (max-width: 400px) {
  .g-button {
    margin-top: 1.4375rem;
  }
}
/* -- Templates -- */
/* -- Plugins or dependences -- */
