@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700&display=swap");
@font-face {
  font-family: "Avant Garde BT";
  src: url("../assets/avant-garde-bt-bold.ttf");
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #FFFFFF;
  color: #000000;
}

img {
  max-width: 100%;
  display: block;
}

/* 
  NOTAS REDISEÑO

  - Armar mixins con los estilos de cada categoría
  - Ponerle nombre de clase semántico a cada parte de un componente, por ejemplo hero--title
  - Dentro de .hero-title, en default poner los estilos de mobile con @heading-sm (por ejemplo)
  - Con media queries dentro de cada breakpoint poner el estilo con @estilo-tamaño (ej @display-md en desktop)

*/
body {
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  font-weight: 500;
}

p,
li {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Avant Garde BT", serif;
  margin-top: 0;
  font-weight: 700;
}

label {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
}

.section-title {
  font-weight: 700;
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 32px;
}

.section-subtitle {
  font-weight: 700;
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 24px;
}

.main-text {
  line-height: 1.8;
}

.main-text-bold {
  font-weight: 700;
}

.link {
  color: #FF8B00;
  transition: all 0.2s ease-in-out;
}
.link:hover {
  color: #FF4E00;
  transition: all 0.2s ease-in-out;
}

.line-through {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

@media (min-width: 768px) {
  p,
  li {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    font-size: 18px;
  }
  label {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .section-title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 36px;
  }
}
.btn {
  border-radius: 0;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1rem;
  border: none;
}
.btn__primary {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 18px;
  padding: 0.75rem 3rem;
  background-color: #FF8B00;
  text-transform: uppercase;
}
.btn__secondary {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  padding: 0.75rem 1rem;
  background-color: #FF8B00;
  text-transform: uppercase;
}
.btn__primary, .btn__secondary {
  transition: all 0.25s ease-in-out;
}
.btn__full-width {
  width: 100%;
}

.btn__primary:hover,
.btn__primary:focus,
.btn__primary:active,
.btn__secondary:hover,
.btn__secondary:focus,
.btn__secondary:active {
  background-color: #FF4E00;
  border: none;
  color: #FFFFFF;
}

.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
  border: none;
}

.card {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.2ms ease-in-out;
}
.card:hover, .card:focus {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  transition: all 0.2ms ease-in-out;
}

.card-service-detail {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.card-service-detail__img {
  width: 120px;
  height: 120px;
}
.card-service-detail__title {
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 24px;
}
.card-service-detail__title span {
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 24px;
  color: #E73500;
}
.card-service-detail__text {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 18px;
}

.description__title {
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 28px;
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  line-height: 1.4;
}

.description__text {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .description__title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 32px;
  }
  .description__text,
  .description__title {
    /* max-width: 500px; */
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .description__title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 36px;
  }
  .description__text {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    font-size: 20px;
  }
}
.form-control,
.form-select {
  border-radius: 0;
  border-bottom-color: #FFFFFF;
  border-left-color: #FFFFFF;
  border-right-color: #FFFFFF;
  border-top-color: #FFFFFF;
}

.error__message {
  display: flex;
}

.error__icon {
  width: 20px;
  height: 20px;
}

.none {
  display: none;
}

.contact-form-error {
  color: #D8D8D4;
  font-size: 1rem;
}

input.error,
input.error:focus,
textarea.error,
textarea.error:focus {
  border-color: #A32600;
  border-width: 2px;
}

input.valid,
input.valid:focus,
textarea.valid,
textarea.valid:focus {
  border-color: #008148;
  border-width: 2px;
}

.hero__title {
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 36px;
  max-width: 650px;
  margin: 0 auto;
}

.hero__text {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 18px;
  max-width: 525px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero__text {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    font-size: 20px;
  }
  .hero__title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 44px;
  }
}
@media (min-width: 1200px) {
  .hero__text {
    max-width: 575px;
  }
  .hero__title {
    max-width: 725px;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 56px;
  }
  .hero__text {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    font-size: 24px;
  }
}
/* .hero {
  // height: 120vh;
  // min-height: 700px;
  padding: 1em 0;
  display: flex;
  @include background-image;
  background-position: center;

  &__container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 1rem 3rem 1rem;
  }
}

#hero {
  background-image: url(../assets/hero_video.jpg);
  background-position: center;
  // background-color: $black;
}

.hero__title,
.hero__text,
.hero__title--highlight,
.hero__text--highlight {
  color: $black;
  text-align: center;
}

.hero__title {
  font-size: $size2;
  font-weight: 700;
  margin-bottom: 0;
}

.hero__text {
  color: $black;
  font-size: $size6;
  max-width: 525px;
  margin: 0 auto;
}

.hero__title--highlight {
  font-size: $size1;
  font-weight: 700;
}

.hero__text--highlight {
  font-size: $size4;
  font-weight: 700;
}

.hero__prices {
  max-width: 300px;
  gap: 1.5rem;
}


@media (min-width: 1200px) {
  .hero__title {
    font-size: $size1;
  }

  .hero__title--highlight {
    font-size: $sizeLarge;
  }

  .hero__text {
    font-size: $size5;
  }

  .hero__text--highlight {
    font-size: $size3;
  }

  .hero__prices {
    max-width: none;
  }
}

@media (min-width: 1500px) {
  .hero__title {
    font-size: $size1;
  }

  .hero__text {
    font-size: $size4;
    line-height: 1.6;
  }

  .hero__btn {
    font-size: $size5;
    padding: 1rem 1.5rem;
  }
}
 */
.content-illustration {
  max-width: 250px;
}

@media (min-width: 768px) {
  .content-illustration {
    max-width: 275px;
  }
}
@media (min-width: 1200px) {
  .content-illustration {
    max-width: 300px;
  }
}
.splide__logo {
  max-width: 150px;
  height: auto;
}

.spacer {
  height: 7vh;
}

@media (min-width: 992px) {
  .spacer {
    height: 10vh;
  }
}
.spacer__small {
  height: 5vh;
}

.whatsapp-icon__bg {
  background-color: #40C451;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem;
  border-radius: 50%;
  max-width: 54px;
  max-height: 54px;
}

.whatsapp__z-index {
  z-index: 9999 !important;
}

.whatsapp-icon__container {
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  position: fixed;
  bottom: 3rem;
  z-index: 9999 !important;
}
.whatsapp-icon__container .whatsapp-icon__bg {
  transition: all 0.4s ease-in-out;
}
.whatsapp-icon__container svg path {
  transition: all 0.4s ease-in-out;
}
.whatsapp-icon__container:hover .whatsapp-icon__bg {
  background-color: #FFFFFF;
  transition: all 0.4s ease-in-out;
}
.whatsapp-icon__container:hover svg path {
  fill: #40C451;
  transition: all 0.4s ease-in-out;
}

@media (min-width: 990px) {
  .whatsapp-icon__container {
    top: 5rem;
  }
}
.contacto {
  background-color: #16224B;
  color: #FFFFFF;
}
.contacto .section-title {
  color: #FFFFFF;
}

.form-disclaimer {
  color: #FFFFFF;
}

.btn__contacto {
  width: 95%;
  margin: 0 auto;
}

.contact-form-loader,
.contact-form-response {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .btn__contacto {
    width: 600px;
    margin: 0 auto;
  }
}
.data-description__title {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 20px;
}
.data-description__text {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 20px;
}

.data-container {
  background-image: url("https://dbmarketing.com.ar/assets/data-background-mobile.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  margin-bottom: -3px;
  background-size: 100%;
}

.data__container-sentimientos {
  background-color: #AFBCE9;
}

@media (min-width: 768px) {
  .data-description__title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .data-container {
    background-image: url("https://dbmarketing.com.ar/assets/data-background.svg");
  }
}
@media (min-width: 1200px) {
  .data-description__title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 28px;
  }
  .data-description__text {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    font-size: 24px;
  }
}
.proceso-trabajo {
  background-color: #FFE4C2;
}

.card-revision-ux {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #DFE4F6;
}
.card-revision-ux__title {
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 24px;
}
.card-revision-ux__highlight {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 18px;
}
.card-revision-ux__detalle-title {
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 20px;
}
.card-revision-ux__detalle-text {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 16px;
}
.card-revision-ux__img {
  height: 70px;
  width: 70px;
}

@media (min-width: 576px) {
  .card-revision-ux__title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .card-revision-ux__title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .card-revision-ux__title {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 36px;
  }
  .card-revision-ux__highlight {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    font-size: 20px;
  }
  .card-revision-ux__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.navbar {
  background-color: #FFFFFF;
}
.navbar .nav-link,
.navbar .dropdown-item {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.navbar-dark,
.navbar-brand,
.navbar-nav,
.nav-link,
.dropdown-item {
  color: #000000 !important;
  transition: all 0.5s ease-in-out;
}
.navbar-dark:hover, .navbar-dark:focus,
.navbar-brand:hover,
.navbar-brand:focus,
.navbar-nav:hover,
.navbar-nav:focus,
.nav-link:hover,
.nav-link:focus,
.dropdown-item:hover,
.dropdown-item:focus {
  color: #FF8B00 !important;
  transition: all 0.5s ease-in-out;
}

.navbar-dark,
.navbar-toggler {
  color: rgba(255, 255, 255, 0.3);
}
.navbar-dark:hover, .navbar-dark:focus,
.navbar-toggler:hover,
.navbar-toggler:focus {
  color: rgba(255, 255, 255, 0.3);
}

.logo-img {
  max-width: 150px;
}

.footer__logo {
  max-width: 260px;
}

.footer {
  background-image: url(../assets/footer_bg.jpg);
  background-position: center left;
  background-size: cover;
}

.footer__icon {
  font-size: 40px;
}

.footer__text {
  color: #FFFFFF;
}

.footer__link {
  color: #FFFFFF;
}

.footer__link {
  color: #FFFFFF;
}
.footer__link:hover {
  color: #FF8B00;
  transition: all 0.5s ease-in-out;
}

.footer-copyright {
  background-color: #000000;
  color: #FFFFFF;
}
.footer-copyright__text {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 16px;
}

/* Footer aparece en scroll */
@media (min-width: 1250px) {
  main {
    min-height: 100vh;
    background-color: #FFFFFF;
    position: relative;
    z-index: 1;
  }
  .footer {
    position: sticky;
    bottom: 0;
    left: 0;
  }
}
.card-grid-servicios {
  background-color: #ECECEA;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.card-grid-servicios__img {
  width: 96px;
  height: 96px;
}
.card-grid-servicios__text {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  padding-bottom: 0;
}
.card-grid-servicios__title {
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 24px;
}

@media (min-width: 1200px) {
  .card-grid-servicios__img {
    width: 120px;
    height: 120px;
  }
}
.porque-elegirnos__subtitle {
  font-weight: 700;
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 20px;
}

.porque-elegirnos__text {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 16px;
}

.img-icon {
  width: 96px;
  height: 96px;
}

@media (min-width: 1200px) {
  .porque-elegirnos__subtitle {
    font-family: "Avant Garde BT", serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 24px;
  }
  .porque-elegirnos__text {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    font-size: 18px;
  }
}
.quienes-somos__card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #FFC885;
  color: #000000;
  border: none !important;
  border-radius: 0 !important;
}
.quienes-somos__card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quienes-somos__card .card-title {
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 24px;
}

.highlight-text {
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 20px;
  line-height: 1.8;
}

@media (min-width: 1400px) {
  .highlight-text {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    font-size: 24px;
  }
}
.card-soluciones {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #DFE4F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  cursor: pointer;
}
.card-soluciones__icon {
  width: 100px;
  height: 100px;
}
.card-soluciones__title {
  font-family: "Avant Garde BT", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 24px;
}
.card-soluciones__text {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  font-size: 16px;
}
.card-soluciones:hover, .card-soluciones:focus {
  box-shadow: none;
}

.soluciones-grid {
  display: grid;
  grid-gap: 16px;
  /* Mobile */
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: "preleads" "leadnav" "bd" "tlmkt" "data" "video" "mktdgtl" "web";
}

#card-precalificacion-leads {
  grid-area: preleads;
}

#card-base-datos {
  grid-area: bd;
}

#card-telemarketing {
  grid-area: tlmkt;
}

#card-lead-navigator {
  grid-area: leadnav;
}

#card-video {
  grid-area: video;
}

#card-marketing-digital {
  grid-area: mktdgtl;
}

#card-diseno-web {
  grid-area: web;
}

#card-data {
  grid-area: data;
}

@media (min-width: 768px) {
  .card-soluciones__icon {
    width: 125px;
    height: 125px;
  }
  .soluciones-grid {
    grid-template-rows: 1fr, 0.5fr, 1fr, 0.5fr;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "preleads preleads leadnav leadnav" "tlmkt tlmkt tlmkt tlmkt" "bd bd data data" "video video video video" "mktdgtl mktdgtl web web";
    grid-gap: 16px;
  }
  #card-telemarketing {
    flex-direction: row;
    min-height: 260px;
    justify-content: space-around;
  }
  #card-telemarketing .card-soluciones__content {
    max-width: 400px;
  }
  #card-video {
    flex-direction: row;
    justify-content: space-around;
    min-height: 260px;
  }
  #card-video .card-soluciones__content {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .soluciones-grid {
    grid-template-rows: repeat(auto, 1fr);
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: "preleads preleads leadnav leadnav tlmkt tlmkt" "bd bd bd data data data" "video video mktdgtl mktdgtl web web";
  }
  #card-precalificacion-leads,
  #card-lead-navigator,
  #card-diseno-web {
    min-height: auto;
  }
  #card-telemarketing,
  #card-video {
    flex-direction: column;
  }
  #card-base-datos,
  #card-marketing-digital,
  #card-diseno-web {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1200px) {
  #card-precalificacion-leads,
  #card-lead-navigator,
  #card-base-datos,
  #card-telemarketing {
    min-height: 250px;
  }
  #card-video,
  #card-marketing-digital,
  #card-diseno-web {
    display: grid;
    grid-template-rows: 1fr, 2fr;
    grid-template-columns: 1fr;
    grid-template-areas: "img" "content";
  }
  #card-video .card-soluciones__content,
  #card-marketing-digital .card-soluciones__content,
  #card-diseno-web .card-soluciones__content {
    grid-area: content;
  }
  #card-video .card-soluciones__icon,
  #card-marketing-digital .card-soluciones__icon,
  #card-diseno-web .card-soluciones__icon {
    grid-area: img;
    margin: 0 auto;
  }
  #card-base-datos,
  #card-data {
    flex-direction: row-reverse;
  }
}
/* Backup de grilla con 6 cards */
/* .soluciones-grid {
	display: grid;
	grid-gap: 16px;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	grid-template-areas:
		"preleads"
		"bd"
		"tlmkt"
		"leadnav"
		"video"
		"mktdgtl";
}

#card-precalificacion-leads {
	grid-area: preleads;
}

#card-base-datos {
	grid-area: bd;
}

#card-telemarketing {
	grid-area: tlmkt;
}

#card-lead-navigator {
	grid-area: leadnav;
}

#card-video {
	grid-area: video;
}

#card-marketing-digital {
	grid-area: mktdgtl;
}

@media (min-width: 768px) {
	.card-soluciones__icon {
		width: 125px;
		height: 125px;
	}

	.soluciones-grid {
		grid-template-rows: 1fr, 0.5fr, 1fr, 0.5fr;
		grid-template-columns: repeat(4, 1fr);
		grid-template-areas:
			"preleads preleads bd bd"
			"tlmkt tlmkt tlmkt tlmkt"
			"leadnav leadnav video video"
			"mktdgtl mktdgtl mktdgtl mktdgtl";
		grid-gap: 16px;
	}

	#card-telemarketing,
	#card-marketing-digital {
		flex-direction: row;
		min-height: 260px;
		justify-content: space-around;

		.card-soluciones__content {
			max-width: 400px;
		}
	}
}

@media (min-width: 1200px) {
	.soluciones-grid {
		grid-template-rows: repeat(6, 1fr);
		grid-template-columns: repeat(4, 1fr);
		grid-template-areas:
			"preleads bd bd leadnav"
			"preleads bd bd leadnav"
			"preleads tlmkt tlmkt leadnav"
			"preleads tlmkt tlmkt leadnav"
			"video video mktdgtl mktdgtl"
			"video video mktdgtl mktdgtl";
	}

	#card-video,
	#card-base-datos {
		flex-direction: row;
		justify-content: space-around;
	}

	#card-telemarketing,
	#card-marketing-digital,
	#card-video,
	#card-base-datos {
		min-height: 200px;
	}
}
 */
.thankYouPage {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=main.css.map */