@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*colors*/
/*Font Size*/
/*excepciones*/
html {
  scroll-behavior: smooth;
}

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

body {
  --fs-base: 1rem;
  --fs-xxs: 0.625rem;
  --fs-xs: 0.75rem;
  --fs-sm: 1.25rem;
  --fs-md: 1.5rem;
  --fs-lg: 1.75rem;
  --fs-xl: 2rem;
  --fs-xxl: 2.25rem;
  --fs-links: 0.875rem;
}
body a {
  text-decoration: none;
}
body ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
body p {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
}

.css-button-2 {
  color: #0e4194;
  font-weight: 600;
  padding: 5px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  z-index: 0;
  background-color: transparent;
  overflow: hidden;
  border: 1.5px solid #0e4194;
  border-radius: 5px;
  font-size: var(--fs-base);
}
.css-button-2:hover {
  color: #fff;
}
.css-button-2:hover:after {
  height: 100%;
}
.css-button-2:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  background-color: #0e4194;
}

body.admin-bar #nav {
  top: 32px; /* altura de wpadminbar en desktop */
}

header {
  position: sticky;
  width: 100%;
  transition: 0.3s linear;
  top: 0;
  z-index: 999;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* animación suave */
}

.itg-nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4em;
  transition: inherit;
}

/* Estado reducido al hacer scroll */
header.scrolled .itg-nav {
  height: 60px; /* más bajo cuando haces scroll */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.itg-menu {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}
.itg-menu li {
  position: relative;
}
.itg-menu li a {
  color: #0e4194;
  font-weight: 600;
  font-size: var(--fs-base);
}
.itg-menu li a:hover {
  color: #FFA800;
  border-bottom: 2px solid #FFA800;
}
.itg-menu .current-menu-item a {
  color: #FFA800;
  font-weight: bold;
  border-bottom: 2px solid #FFA800;
}

.itg-icon__menu {
  display: none;
}

@media (max-width: 768px) {
  body.admin-bar #nav {
    top: 46px !important; /* altura de wpadminbar en móvil */
  }
  .itg-nav {
    padding: 0 2em;
    overflow: hidden;
  }
  .itg-menu {
    height: calc(100vh - 60px);
    width: 100%;
    position: fixed;
    top: 60px;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translate(100%);
    transition: transform 0.3s;
    background-color: #30475D;
    padding: 25px;
    z-index: 99;
  }
  .itg-menu li a {
    color: #FFF;
  }
  .itg-menu__change {
    transform: translate(0%);
  }
  .itg-icon__menu {
    cursor: pointer;
    z-index: 100;
    display: block;
  }
  .itg-icon__menu i {
    font-size: 25px;
  }
}
footer {
  position: relative;
  background-color: #EAF1F8;
}

.itg-footer {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 0 50px 0;
  max-width: 1140px;
  margin: 0 auto;
}
.itg-footer ul li {
  font-size: var(--fs-base);
  color: #797575;
  margin-bottom: 5px;
}
.itg-footer ul li a {
  font-size: var(--fs-base);
  color: #797575;
}
.itg-footer__title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #0e4194;
}
.itg-footer__subtitle {
  font-size: var(--fs-base);
  color: #797575;
}
.itg-footer__info {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.itg-footer__info i {
  font-size: 25px;
  color: #0e4194;
}
.itg-footer__cont {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.itg-footer__services {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.itg-footer__legal {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.itg-blofinal {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  font-size: var(--fs-base);
  color: white;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #bcbcbc;
  background-color: #0e4194;
}

.floatWapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1;
}
.floatWapp:hover {
  animation: hithere 1s ease;
}
.floatWapp .my-floatWapp {
  margin-top: 16px;
}

.hithere {
  animation: hithere 1s ease;
}

@keyframes hithere {
  30% {
    transform: scale(1.05);
  }
  40%, 60% {
    transform: rotate(-20deg) scale(1.05);
  }
  50% {
    transform: rotate(20deg) scale(1.05);
  }
  70% {
    transform: rotate(0deg) scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.scroll-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #0e4194;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.scroll-to-top:hover {
  background: #3a7dce;
  transform: scale(1.02);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .itg-footer {
    flex-direction: column;
    padding: 20px;
  }
  .itg-footer__info {
    width: 100%;
  }
  .itg-footer__cont {
    width: 100%;
  }
  .itg-footer__services {
    width: 100%;
  }
  .itg-footer__legal {
    width: 100%;
  }
}
.itg-header-title {
  padding: 50px 0;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.itg-header-title__text {
  font-size: var(--fs-xxl);
  color: #0e4194;
  font-weight: 700;
  margin: 0;
}
.itg-header-title__description {
  font-size: var(--fs-sm);
  color: #797575;
  font-weight: 400;
}

@media (max-width: 768px) {
  .itg-header-title__text {
    text-align: center;
  }
  .itg-header-title__description {
    text-align: center;
  }
}
.itg-form-contact {
  max-width: 524px;
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.15) !important;
  border-radius: 32px !important;
  padding: 30px !important;
  border-radius: 10px !important;
}

.itg-cards-icon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.itg-cards-icon .itg-card-icon {
  width: 220px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.itg-cards-icon .itg-card-icon i {
  font-size: 50px;
  color: #0e4194;
}
.itg-cards-icon .itg-card-icon__title {
  font-size: var(--fs-sm);
  color: #0e4194;
  font-weight: 700;
  margin: 0;
  line-height: 22px;
}
.itg-cards-icon .itg-card-icon__subtitle {
  font-size: var(--fs-base);
  color: #797575;
  line-height: 18px;
}

.itg-cards-colors {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-template-rows: 1fr;
  gap: 20px;
  max-width: 1024px;
  margin: 0 auto;
}
.itg-cards-colors .itg-card-colors {
  width: 100%;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
}
.itg-cards-colors .itg-card-colors span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0e4194;
  border-radius: 5px;
}
.itg-cards-colors .itg-card-colors i {
  font-size: 35px;
  color: #0e4194;
}
.itg-cards-colors .itg-card-colors__subtitle {
  font-size: var(--fs-md);
  color: #0e4194;
  font-weight: 700;
  margin: 0;
  line-height: 22px;
}
.itg-cards-colors .itg-card-colors__title {
  font-size: var(--fs-sm);
  color: #797575;
  font-weight: 500;
  line-height: 18px;
}

.itg-marquee-wrapper {
  max-width: 800px;
  overflow: hidden;
  margin: 0 auto;
}

.itg-marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  -webkit-animation: itg-marquee-move 10s linear infinite;
  animation: itg-marquee-move 10s linear infinite;
}
.itg-marquee p {
  display: inline-block;
  margin: 0;
}
.itg-marquee p img {
  margin: 0 2rem;
  height: 5.5rem;
  max-width: initial;
  cursor: pointer;
}
.itg-marquee:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/* 👇 IMPORTANTE: fuera del wrapper */
@-webkit-keyframes itg-marquee-move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes itg-marquee-move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
.itg-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 1100px;
  margin: 20px auto;
}

.itg-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d9e4f5;
  border-radius: 12px;
  padding: 15px 20px;
  text-decoration: none;
  color: #000;
  min-width: 200px;
  transition: all 0.3s ease;
}

.itg-card:hover {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.itg-card .icon {
  background: #e6f0ff;
  color: #0e4194;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: 15px;
  font-size: 20px;
  flex-shrink: 0;
}

.itg-card .text {
  font-size: 15px;
  line-height: 1.2;
}

.itg-card .text strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .itg-card-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 10px;
    /* ocultar scrollbar en navegadores modernos */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    justify-content: flex-start;
  }
  .itg-card-group::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
  }
  .itg-card {
    flex: 0 0 auto;
    min-width: 220px;
  }
}
.itg-titletext {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1024px;
  margin: 50px auto;
}
.itg-titletext__title {
  font-size: var(--fs-xxl);
  color: #0e4194;
  font-weight: 700;
  margin: 0;
}
.itg-titletext__cont {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.itg-titletext__cont__text {
  font-size: var(--fs-base);
  color: #797575;
  font-weight: 400;
  text-align: justify;
}
.itg-titletext a {
  color: #0e4194;
  font-weight: 500;
}

@media (max-width: 768px) {
  .itg-titletext {
    padding: 0 30px;
  }
}
.itg-simple {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1024px;
  margin: 50px auto;
}
.itg-simple img {
  width: 100%;
  border-radius: 5px;
}
.itg-simple__title {
  font-size: var(--fs-xxl);
  color: #0e4194;
  font-weight: 700;
  margin: 0;
}
.itg-simple__cont {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.itg-simple__cont__text {
  font-size: var(--fs-base);
  color: #797575;
  font-weight: 400;
  text-align: justify;
}
.itg-simple__cont__vineta {
  display: flex;
  flex-direction: column;
}
.itg-simple__cont__vineta__text {
  font-size: var(--fs-base);
  color: #797575;
  font-weight: 400;
  text-align: justify;
}
.itg-simple a {
  color: #0e4194;
  font-weight: 500;
}

@media (max-width: 768px) {
  .itg-simple {
    padding: 0 30px;
  }
}
.itg-card-eazy {
  margin: 0 auto;
  max-width: 1024px;
  display: flex;
  gap: 40px;
}
.itg-card-eazy__title {
  font-size: 3rem;
  color: #0e4194;
  font-weight: 600;
  margin: 0;
  text-align: right;
  line-height: 45px;
}
.itg-card-eazy__subtitle {
  font-size: var(--fs-base);
  color: #797575;
  line-height: 25px;
  text-align: justify;
}
.itg-card-eazy__cont1 {
  position: relative;
  width: 50%;
  min-width: 320px;
  text-align: center;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.itg-card-eazy__cont2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .itg-card-eazy {
    flex-direction: column !important;
    padding: 0 30px;
  }
  .itg-card-eazy__cont1 {
    width: 100%;
  }
  .itg-card-eazy__cont2 {
    width: 100%;
  }
  .itg-card-eazy__title {
    font-size: 2rem;
  }
}
.itg-image-block {
  margin: 0 auto;
  max-width: 1024px;
  display: flex;
  width: 100%;
}
.itg-image-block__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .itg-image-block {
    padding: 0 30px;
  }
}
.itg-description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
  width: 400px;
}

.itg-subject {
  display: flex;
  justify-content: center;
}

.itg-form_pse {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-volver {
  background: none;
  border: none;
  color: #114484; /* azul corporativo, cámbialo si quieres */
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-volver:hover {
  color: #0d2f60;
  text-decoration: underline;
}

.itg-input[type=text],
.itg-input[type=email],
.itg-input[type=number],
.itg-select,
.itg-textarea {
  width: 100%;
  height: 45px;
  padding: 10px;
  background: none;
  border: none;
  outline: none;
  color: #797575;
  font-size: 12px;
  font-weight: 400;
  border-radius: inherit;
  box-shadow: 0 0 5px #ddd;
  border-radius: 5px;
  background: #FFF;
}

.itg-select {
  background: url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png") no-repeat right;
  outline: none;
  background-size: 20px 20px;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-size: 15px 15px;
  background-position-x: 98%;
}
.itg-select::-ms-expand {
  display: none;
}

.itg-button {
  background: white;
  background: RGBA(17, 68, 132, 1);
  color: white;
  border: none;
  font-weight: 600;
  padding: 10px;
  color: white;
  border-radius: 20px;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
  display: block;
  padding: 10px 30px 10px 30px;
  font-size: 14px;
}
.itg-button::after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  left: calc(50% - 0.75em);
  top: calc(50% - 0.75em);
  border: 0.2em solid transparent;
  border-right-color: white;
  border-radius: 50%;
  animation: button-anim 0.7s linear infinite;
  opacity: 0;
  -webkit-animation: button-anim 0.7s linear infinite;
}
.itg-button:disabled {
  opacity: 0.5;
  cursor: no-drop;
  top: 0;
}

.itg-button.loading {
  color: transparent;
  padding: 10px 30px 10px 30px;
}
.itg-button.loading::after {
  opacity: 1;
}

@keyframes button-anim {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.itg-info {
  position: relative;
  padding: 40px;
  max-width: 600px;
  margin: 50px auto;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #F4F4F4;
}
.itg-info h2 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
  color: #e82127;
  line-height: 20px;
}
.itg-info h4 {
  color: #797575;
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  line-height: 20px;
}
.itg-info h3 {
  color: #797575;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 20px;
}
.itg-info_titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.itg-info_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.itg-info_cont .itg-row {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #7b7b7b;
}
.itg-info_resultado {
  display: flex;
  justify-content: center;
  text-align: center;
}
.itg-info_resultado h3 {
  font-weight: bolder;
}
.itg-info_resultado_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.itg-info_resultado_container div:nth-child(2) {
  background-color: #EFE8E5;
}
.itg-info_resultado div div:nth-child(2) {
  border: solid 1px;
  border-radius: 5px;
  text-align: center;
  width: 250px;
}

/*  */
.itg-grid-info {
  max-width: 724px;
  margin: 10px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.itg-specard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--sidebar-color-fondo);
  box-shadow: 0 8px 4px rgba(0, 0, 0, 0.0392156863), 0 0 4px rgba(0, 0, 0, 0.2509803922);
  border-radius: 5px;
  padding: 20px;
  min-height: 100px;
}
.itg-specard .itg-specard_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.itg-specard .itg-specard_header .itg-specard-title {
  color: #0e4194;
  font-size: 0.75rem;
  font-weight: 500;
}
.itg-specard .itg-specard_body .itg-specard-title {
  color: #0e4194;
  font-size: 1.25rem;
  font-weight: 500;
}
.itg-specard .itg-speicon {
  display: flex;
  align-items: center;
}
.itg-specard .itg-speicon i {
  font-size: 16px;
  color: rgb(17, 68, 132);
}

#contenedorPse {
  max-width: 800px;
  padding: 45px 70px;
  box-shadow: 0 8px 4px rgba(0, 0, 0, 0.0392156863), 0 0 4px rgba(0, 0, 0, 0.2509803922);
  border-radius: 5px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#contenedorPse button {
  align-self: flex-start;
}
#contenedorPse label {
  font-size: 14px;
  margin: 0;
  color: #797575;
}
#contenedorPse .contenedorPse-links {
  display: flex;
}
#contenedorPse .item-izquierda, #contenedorPse .item-derecha {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
}
#contenedorPse .item-derecha {
  padding: 0 35px;
  gap: 15px;
}
#contenedorPse .item-izquierda {
  gap: 30px;
}
#contenedorPse .item-izquierda-title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 10px;
}
#contenedorPse .item-izquierda-title i {
  font-size: 40px;
  color: rgb(17, 68, 132);
}
#contenedorPse .item-izquierda-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#contenedorPse .item-izquierda-container-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 25px;
}
#contenedorPse .input-valor {
  color: #797575;
}
#contenedorPse .input-valor:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Para Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Modal styling */
.itg-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.itg-modal-content {
  margin: 45vh auto;
  max-width: 400px;
  background-color: #fff;
  padding: 20px;
  animation: scales 0.5s ease;
  border-radius: 10px;
  box-shadow: 6.7px 6.7px 5.3px rgba(0, 0, 0, 0.02), 22.3px 22.3px 17.9px rgba(0, 0, 0, 0.03), 100px 100px 80px rgba(0, 0, 0, 0.05);
}
.itg-modal-tit {
  font-size: 24px;
  border-bottom: solid 1px #d7d7d7;
  padding-bottom: 10px;
}

.itg-modal-body {
  margin-top: 5px;
}
.itg-modal-boton {
  display: flex;
  justify-content: flex-end;
}

#messa {
  font-size: 16px;
  padding: 10px 0;
}

#close-modal {
  float: right;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}

.floatWapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1;
}
.floatWapp:hover {
  animation: hithere 1s ease;
}
.floatWapp .my-floatWapp {
  margin-top: 16px;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-10-24 16:54:7
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation swirl-in-fwd
 * ----------------------------------------
 */
@-webkit-keyframes swirl-in-fwd {
  0% {
    -webkit-transform: rotate(-540deg) scale(0);
    transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}
@keyframes swirl-in-fwd {
  0% {
    -webkit-transform: rotate(-540deg) scale(0);
    transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}
.hithere {
  animation: hithere 1s ease;
}

@keyframes hithere {
  30% {
    transform: scale(1.05);
  }
  40%, 60% {
    transform: rotate(-20deg) scale(1.05);
  }
  50% {
    transform: rotate(20deg) scale(1.05);
  }
  70% {
    transform: rotate(0deg) scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.itg-cards-special {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.itg-cards-special .itg-card-special {
  width: 230px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 25px;
  background-color: white;
  gap: 15px;
  border-radius: 10px;
}
.itg-cards-special .itg-card-special span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0e4194;
  border-radius: 5px;
}
.itg-cards-special .itg-card-special span i {
  font-size: 35px;
  color: #0e4194;
}
.itg-cards-special .itg-card-special__title {
  font-size: var(--fs-sm);
  color: #0e4194;
  font-weight: 700;
  margin: 0;
  line-height: 22px;
}
.itg-cards-special .itg-card-special__subtitle {
  font-size: var(--fs-base);
  color: #797575;
  line-height: 18px;
}

.itg-card-contact {
  margin: 0 auto;
  max-width: 1024px;
  display: flex;
  gap: 60px;
}
.itg-card-contact .iframe {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: 400px;
  border-radius: 5px;
  border: #c7c3c3 solid 2px;
}
.itg-card-contact__title {
  font-size: var(--fs-lg);
  color: #0e4194;
  font-weight: 700;
  margin: 0;
}
.itg-card-contact__subtitle {
  font-size: var(--fs-base);
  color: #797575;
}
.itg-card-contact__cont1 {
  position: relative;
  width: 50%;
  min-width: 320px;
  text-align: center;
  border-radius: 10px;
}
.itg-card-contact__cont1 img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  height: 400px;
}
.itg-card-contact__cont1 .itg-barra {
  position: absolute;
  content: "";
  height: 75%;
  width: 40px;
  background-color: #0e4194;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-radius: 5px 5px 5px 5px;
  z-index: -1;
}
.itg-card-contact__cont2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.itg-card-contact__cont2__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.itg-card-contact__cont2__body__cont {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.itg-card-contact__cont2__body__cont i {
  color: #0e4194;
  font-size: 20px;
}

@media (max-width: 768px) {
  .itg-card-contact {
    flex-wrap: wrap;
    padding: 0 30px;
  }
  .itg-card-contact__cont1 {
    width: 100%;
  }
  .itg-card-contact__cont2 {
    width: 100%;
  }
}
.itg-up {
  display: none;
}

.itg-faqs {
  max-width: 1024px;
  margin: 0 auto;
}

#itg-faqs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#itg-faqs li .itg-faqs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  border-radius: 15px;
  padding: 15px;
  background-color: #EAF1F8;
}
#itg-faqs li .itg-faqs-head i {
  color: #797575;
}
#itg-faqs li .itg-faqs-head a {
  color: #797575;
  font-size: var(--fs-base);
}
#itg-faqs li ul li {
  line-height: 20px;
  padding: 10px 15px;
  font-size: var(fs-links);
}

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