/*!********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_product.sass ***!
  \********************************************************************************************************************************************************/
@charset "UTF-8";
.product-banner {
  width: 100vw;
  background: var(--gradient-bg-light-blue);
}
.product-banner__container {
  width: 100%;
  box-sizing: border-box;
  margin: auto;
}
.product-banner__image {
  display: block;
}
.product-banner__column {
  box-sizing: border-box;
}
.product-banner__title {
  color: var(--color1);
  display: flex;
  align-items: center;
  margin: auto;
  font-size: var(--fs-xl);
  font-weight: 700;
  font-family: var(--ff2);
}
.product-banner__icon {
  display: block;
  margin-right: 1rem;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
.product-banner__phrase {
  color: var(--color3);
  font-weight: 700;
  font-size: var(--fs-large);
  font-family: var(--ff1);
  margin: 1rem 0;
  display: block;
}
.product-banner__text, .product-banner__contact-text {
  color: var(--color1);
  margin: auto;
  font-size: var(--fs-regular);
  font-weight: 400;
  font-family: var(--ff1);
}
.product-banner__subtitle {
  color: var(--color1);
  margin: 1rem auto 0.2rem 0;
  font-size: var(--fs-mid);
  font-weight: 700;
  font-family: var(--ff2);
}
.product-banner__buttons {
  display: flex;
  margin-top: 2rem;
  align-items: center;
}
.product-banner__buttons .btn {
  width: max-content;
  margin-right: 0.5rem;
}

.product-desc {
  padding: 5rem 1rem;
  box-sizing: border-box;
}
.product-desc__title {
  margin: auto;
  text-align: center;
  color: var(--color1);
  width: max-content;
  font-size: var(--fs-xl);
  font-weight: 700;
  font-family: var(--ff2);
}
.product-desc__text {
  color: var(--color1);
  font-weight: 400;
  font-size: var(--fs-regular);
  font-family: var(--ff1);
  line-height: 1.6rem;
  margin: 2rem auto auto;
  width: 100%;
  max-width: var(--bp4);
}
.product-desc__text strong {
  font-weight: 700;
}

.why-kordata {
  background-color: var(--color6);
}
.why-kordata__container {
  padding: 5rem 1rem;
  box-sizing: border-box;
}
.why-kordata__title {
  color: var(--color1);
  margin: auto;
  font-weight: 700;
  font-size: var(--fs-xl);
  font-family: var(--ff2);
  width: 100%;
  max-width: 32rem;
  text-align: center;
}
.why-kordata__text {
  color: var(--color1);
  width: 100%;
  max-width: var(--bp4);
  font-size: var(--fs-regular);
  font-weight: 400;
  font-family: var(--ff1);
  line-height: 1.6rem;
  margin: 2rem auto auto;
}
.why-kordata .btn {
  width: max-content;
  margin: 1rem auto auto;
}

.benefits {
  padding: 5rem 0 0 0;
}
.benefits__title {
  text-align: center;
  color: var(--color1);
  width: 100%;
  max-width: 38rem;
  margin: auto auto 3rem auto;
  font-weight: 700;
  font-size: var(--fs-xl);
  font-family: var(--ff2);
  line-height: var(--fs-xl);
}

.benefit__image {
  width: 100vw;
  object-fit: cover;
  display: block;
  margin: 0;
}
.benefit__title {
  color: var(--color1);
  width: max-content;
  margin: auto;
  font-weight: 700;
  font-size: var(--fs-xl);
  font-family: var(--ff2);
}
.benefit__container {
  padding: 3rem 0;
  background: var(--gradient-bg-light-blue);
}
.benefit__content {
  width: 100%;
  max-width: var(--bp4);
  margin: auto;
  padding: 0 1rem;
  box-sizing: border-box;
}
.benefit__text {
  color: var(--color1);
  margin: auto;
  font-weight: 400;
  font-size: var(--fs-regular);
  font-family: var(--ff1);
  line-height: 1.61rem;
}
.benefit .btn {
  width: max-content;
  margin: 2rem auto auto auto;
}

.feature {
  padding: 1rem 0 0 0;
  margin-right: 2%;
  box-sizing: border-box;
  break-inside: avoid;
}
.feature__title {
  color: var(--color1);
  margin: auto auto auto 0;
  padding: 0.5rem;
  box-sizing: border-box;
  font-size: var(--fs-mid);
  font-weight: 700;
  font-family: var(--ff2);
}
.feature__head {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.feature__head:hover {
  background-color: rgba(148, 213, 0, 0.2);
}
.feature__text {
  margin: auto;
  padding-left: 0.5rem;
  padding-bottom: 0;
  color: var(--color1);
  font-size: var(--fs-regular);
  font-weight: 400;
  font-family: var(--ff1);
  line-height: 1.61rem;
  height: 0;
  overflow: hidden;
  transition: all 300ms ease-in-out;
  border-bottom: 5px solid var(--color3);
}
.feature__text--show {
  height: max-content;
  padding-bottom: 1rem;
}

.xross {
  width: 1rem;
  height: 1rem;
  position: relative;
  margin-right: 0.5rem;
}
.xross__line {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: var(--color1);
}
.xross__line--vertical {
  transition: all 300ms ease-in-out;
  transform: rotate(90deg);
  top: calc(0.5rem - 1px);
  left: 0;
}
.xross__line--horizontal {
  left: 0;
  top: calc(0.5rem - 1px);
}
.xross--active .xross__line--vertical {
  transform: rotate(0);
}

.add-info {
  background: var(--radial-gradient-blue);
}
.add-info__content {
  padding: 5rem 1rem;
  box-sizing: border-box;
  width: 100%;
  margin: auto;
}
.add-info__title {
  color: var(--color2);
  margin: auto;
  font-weight: 700;
  font-size: var(--fs-large);
  font-family: var(--ff2);
}
.add-info__entry {
  padding: 1rem 0;
}
.add-info__text {
  display: flex;
  flex-wrap: wrap;
  padding-left: 2rem;
  position: relative;
}
.add-info__text::before {
  position: absolute;
  left: 0;
  top: 10%;
  content: "✳";
  font-size: var(--fs-large);
  color: var(--color3);
}
.add-info__text, .add-info___text p {
  color: var(--color2);
  margin: auto;
  line-height: 1.6rem;
  font-weight: 400;
  font-family: var(--ff1);
  font-size: var(--fs-regular);
}
.add-info__text p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.add-info__text a {
  color: var(--color3);
}

.product-prices {
  background-color: var(--color6);
}
.product-prices__container {
  width: 100%;
  max-width: var(--bp1);
  padding: 5rem 1rem;
  box-sizing: border-box;
  margin: auto;
}
.product-prices__title {
  text-align: center;
  color: var(--color1);
  margin: auto;
  max-width: 32rem;
  line-height: var(--fs-xl);
  font-family: var(--ff2);
  font-weight: 700;
  font-size: var(--fs-xl);
}
.product-prices__text {
  text-align: center;
  color: var(--color1);
  margin: 2rem auto auto;
  line-height: 1.61rem;
  max-width: 32rem;
  font-family: var(--ff1);
  font-weight: 400;
  font-size: var(--fs-regular);
}
.product-prices .prices {
  margin-top: 3rem;
}

@media all and (min-width: 64rem) {
  .product-banner__container {
    max-width: var(--bp2);
    padding: 4rem 1rem;
    display: flex;
    align-items: center;
  }
  .product-banner__image {
    width: 50%;
  }
  .product-banner__column {
    width: 50%;
    padding: 0 3rem 0 0;
  }
  .benefit__grid {
    columns: 2;
  }
  .benefit__image {
    height: 20vw;
  }
  .add-info__content {
    max-width: var(--bp2);
  }
}
@media all and (max-width: 64rem) {
  .product-banner__container {
    padding: 1rem 1rem 3rem 1rem;
    max-width: var(--bp4);
    display: grid;
  }
  .product-banner__image {
    width: 100%;
    order: 0;
    margin: 2rem 0;
  }
  .product-banner__column {
    order: 1;
  }
  .product-banner__buttons {
    flex-wrap: wrap;
  }
  .product-banner__buttons .btn {
    margin: 0.5rem 0;
  }
  .benefit__grid {
    columns: 1;
  }
  .benefit__image {
    height: auto;
    aspect-ratio: 21/9;
  }
  .why-kordata__container {
    max-width: var(--bp4);
    margin: auto;
  }
  .product-desc {
    max-width: var(--bp4);
    margin: auto;
  }
  .add-info__content {
    max-width: var(--bp4);
  }
}
/*!************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_testimonios.sass ***!
  \************************************************************************************************************************************************************/
.testimonios {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(211, 248, 255) 83%);
  padding: 5rem 1rem;
}
.testimonios__container {
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  margin: 7rem auto auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.testimonios__title {
  text-align: center;
  margin: auto;
  width: max-content;
  color: var(--color1);
  font-weight: 700;
  font-size: var(--fs-xxl);
  font-family: var(--ff2);
}
.testimonios__text {
  text-align: center;
  margin: auto;
  color: var(--color1);
  font-weight: 400;
  font-size: var(--fs-regular);
  font-family: var(--ff1);
}
.testimonios__box {
  background-color: var(--color2);
  padding: 2rem;
  box-sizing: border-box;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
}
.testimonios__photo {
  display: block;
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  text-indent: -9999px;
  background-color: transparent;
  background-image: url(../js/../img/151dee42aa8ba346dfc0.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: -6rem auto 1rem auto;
}
.testimonios__cita {
  display: block;
  line-height: 1.27rem;
  color: var(--color1);
  font-weight: 500;
  font-size: var(--fs-small);
  font-family: var(--ff1);
  margin-bottom: 2rem;
}
.testimonios__divisor {
  width: 10rem;
  border: none;
  height: 3px;
  display: block;
  margin: 0.3rem auto 0.3rem 0;
  background-color: var(--color3);
}
.testimonios__nombre, .testimonios__company {
  color: var(--color5);
  margin: auto;
  font-weight: 700;
  font-size: var(--fs-regular);
  font-family: var(--ff1);
}
.testimonios__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 1rem auto;
}
.testimonios .material-symbols-outlined {
  color: var(--color3);
  display: block;
  margin: auto 0.1rem;
  font-size: 2.5rem;
}

@media all and (min-width: 64rem) {
  .testimonios__container {
    max-width: var(--bp2);
  }
  .testimonios__box {
    width: 32%;
  }
}
@media all and (max-width: 64rem) {
  .testimonios__container {
    flex-wrap: wrap;
    max-width: var(--bp4);
  }
  .testimonios__box {
    min-width: 20rem;
    margin: 3rem auto 4rem auto;
    width: 48%;
  }
}
/*!*******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_prices.sass ***!
  \*******************************************************************************************************************************************************/
.prices {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.prices__plan {
  width: 32%;
  margin: 0.666%;
  min-width: 20rem;
}

.plan {
  background-color: var(--color2);
  border-radius: 1rem;
  position: relative;
  border: 2px solid var(--color5);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  box-sizing: border-box;
}
.plan__recommended {
  font-weight: 600;
  font-size: var(--fs-regular);
  font-family: var(--ff2);
  width: max-content;
  text-align: center;
  color: var(--color1);
  background-color: var(--color2);
  border: 2px solid var(--color4);
  border-radius: 0.7rem;
  padding: 0.1rem 2rem;
  position: absolute;
  top: -0.8rem;
  left: 50%;
  margin-left: -82.5px;
}
.plan__top {
  width: 100%;
  height: 14rem;
  padding: 2rem 1rem 1rem 1rem;
  box-sizing: border-box;
  border-bottom: 1px solid var(--color6);
  border-radius: 1rem 1rem 0 0;
}
.plan__title {
  color: var(--color1);
  margin: auto auto 1rem auto;
  font-family: var(--ff2);
  font-weight: 700;
  font-size: var(--fs-large);
}
.plan__data {
  padding: 1rem 1rem 2rem 1rem;
  display: flex;
  width: 100%;
  align-content: space-between;
  flex-wrap: wrap;
  height: calc(100% - 13rem);
  box-sizing: border-box;
}
.plan__price {
  color: var(--color1);
  font-family: var(--ff1);
  display: block;
  margin: 0.5rem auto;
}
.plan__price--small {
  font-size: var(--fs-regular);
  font-weight: 400;
}
.plan__price--big {
  color: var(--color3);
  font-weight: 700;
  font-size: var(--fs-xxl);
}
.plan__description * {
  font-family: var(--ff1);
  font-weight: 400;
  font-size: var(--fs-regular);
  line-height: 1.61rem;
}
.plan__description strong {
  font-weight: 700;
}
.plan__description a {
  color: var(--color4);
  text-decoration: none;
}
.plan__description ul {
  padding-left: 1.5rem;
}
.plan .btn {
  width: max-content;
  margin: 2rem auto auto;
}
.plan__discount {
  color: var(--color1);
  font-family: var(--ff1);
  font-weight: 400;
  font-size: var(--fs-small);
  display: flex;
  align-items: center;
}
.plan__discount--highlight {
  margin-right: 0.2rem;
  padding: 0.2rem 0.5rem;
  background-color: var(--color4);
  width: max-content;
  color: var(--color2);
  display: block;
  border-radius: 0.8rem;
}
.plan--standard {
  border-color: var(--color4);
}
.plan--standard .plan__top {
  background-color: var(--color4);
}
.plan--standard .plan__title, .plan--standard .plan__price, .plan--standard .plan__discount, .plan--standard .plan__price--big {
  color: var(--color2);
}
.plan--standard .plan__discount--highlight {
  background-color: var(--color3);
  color: var(--color1);
}

@media all and (max-width: 64rem) {
  .prices__plan {
    margin-bottom: 3rem;
  }
}
/*!*****************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_faqs.sass ***!
  \*****************************************************************************************************************************************************/
.faqs {
  background: var(--radial-gradient-blue);
}
.faqs__container {
  width: auto;
  margin: auto;
  padding: 5rem 1rem;
}
.faqs__title {
  text-align: center;
  width: 100%;
  max-width: 32rem;
  margin: auto;
  font-weight: 700;
  font-size: var(--fs-xl);
  font-family: var(--ff2);
  line-height: var(--fs-xl);
  color: var(--color2);
}
.faqs__faq {
  padding: 2rem 0;
}

.faq:not(:last-child) {
  border-bottom: 1px dotted var(--color7);
}
.faq__question {
  color: var(--color2);
  margin: auto auto 1rem auto;
  font-weight: 600;
  font-size: var(--fs-mid);
  font-family: var(--ff2);
}
.faq__answer, .faq__answer * {
  color: var(--color2);
  font-family: var(--ff1);
  line-height: 1.61rem;
}

@media all and (min-width: 64rem) {
  .faqs__container {
    max-width: var(--bp2);
  }
}
@media all and (max-width: 64rem) {
  .faqs__container {
    max-width: var(--bp4);
  }
}
