
.init {
	color: white;
}
	
:root {
	--size-disc: 60px;
	--size-indisc: 35px;
	--size-icodisc: 38px;
	--bg-light: #f4f4f4;
	--bg-strong: #f5f7fa;
	--bg-strong-end: #c3cfe2;
	--ml-primary: 1rem;
	--primary-color: #0047ab;
	--secondary-color: #7030a0;
    --menu-color: #000;
	--atention-color: #ff502e;
}
	
body {
	/* background-color: var(--bg-light); */
  background-color: white;
}
	
@font-face {
  font-family: Abel;
  src: url('/medias/css/fonts/Abel-Regular.ttf') format('truetype');
  font-style: normal;
  font-style: normal;
}

@font-face {
  /* Ubuntu Bold */
  font-family: Ubuntu;
  src: url('/medias/css/fonts/Ubuntu-Bold.ttf') format('truetype');
  font-style: normal;
  font-style: normal;
}

/* @font-face {
  font-family: Ubuntu;
  src: url('/medias/css/fonts/Ubuntu-Regular.ttf') format('truetype');
  font-style: normal;
  font-style: normal;
} */


* {
  scroll-behavior: smooth;
}

#bodywebsite, .bodywebsite {
	position: absolute;
}

.bodywebsite div, 
.bodywebsite p, 
.bodywebsite label, 
.bodywebsite li, 
.bodywebsite span, 
.bodywebsite input, 
.bodywebsite select, 
.bodywebsite a,
#bodywebsite div, 
#bodywebsite p, 
#bodywebsite label, 
#bodywebsite li, 
#bodywebsite span, 
#bodywebsite input, 
#bodywebsite select, 
#bodywebsite a {
  font-family: Abel;
}


.fa, .far, .fas { font-family: "Font Awesome 5 Free"!important; }
.fab { font-family: "Font Awesome 5 Brands"!important; }

.bodywebsite h1, .bodywebsite h2, .bodywebsite h3,
#bodywebsite h1, #bodywebsite h2, #bodywebsite h3 {
  font-family: Ubuntu;
}

.bodywebsite h1,
#bodywebsite h1 {
  font-size: 3rem;
}

.bodywebsite h2,
#bodywebsite h2 {
  font-size: 2rem;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-atention {
  color: var(--atention-color);
}



.fill-white {
  fill: white;
}

.rsoc {
  display: flex;
  justify-content: space-around;
  margin-top: 29px;
}

.rsoc a,
.second-col a {
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.content {
  padding: calc(var(--ml-primary) / 2) calc(var(--ml-primary) + 20px);
}

.topic {
  font-family: Ubuntu;
  font-size: 2.5rem;
  color: var(--secondary-color);
  width: 100%;
  text-align: center;
  display: inline-block;
}

.box-content {
  padding: calc(var(--ml-primary) / 2) var(--ml-primary);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.box-content > div {
  width: calc(50% - calc(var(--ml-primary) / 2) - 20px);
  min-width: 350px;
}

.box-content a {
	text-decoration: none;
}

.box-content .h2 {
	width: 100%;
  text-align: center;
  font-family: Ubuntu;
  color: var(--primary-color);
  font-weight: lighter;
  text-decoration: none;
}

.box-content h3 {
  font-family: Abel!important;
  font-size: 1.6rem;
  margin: 10px 20px;
  font-weight: lighter;
}

.box-content h3:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  margin: 0 5px 0 -15px;
  color: var(--atention-color);
  font-weight: 800;
}

.box-content p {
  font-size: 1.6rem;
  text-align: justify;
}

.box-content img {
  max-width: 350px;
  display: block;
  margin: auto;
}

.box-content button,
.tk-btn {
  font-family: Ubuntu!important;
  font-size: 1.4rem;
  padding: .6rem 2.2rem;
  color: white;
  margin: 1rem auto 0;
  display: block;
  transition: all 0.8s;
  cursor: pointer;
	width: fit-content;
}

.tk-btn-primary {
	--this-color: var(--secondary-color);
	background-color: var(--this-color);
	border: 2px solid var(--this-color);
}

.tk-btn-action {
	--this-color: var(--atention-color);
	background-color: var(--this-color);
	border: 2px solid var(--this-color);
}

.splide__list {
  cursor: grab;
}

.splide__list:active {
  cursor: grabbing;
}


.box-content button:hover,
.tk-btn:hover {
  background-color: transparent;
  color: var(--this-color);
}

.btn-hover:hover {
  background-color: white!important;
}

#goal {
  margin: 7rem auto;
  max-width: 1000px;
  text-align: center;
}

#goal h1 {
  font-size: 2rem;
  color: var(--primary-color);
  width: 100%;
}

#goal p {
  font-family: 'Abel';
  font-size: 1.8rem;
  margin: var(--ml-primary);
}


#finished {
  margin: 7px;
}



#finished strong {
  display: block;
  font-size: 1.5rem;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  font-weight: bold;
  width: 100%;
}

#report {
  overflow: auto;
  height: 400px;
  border: 1px solid gray;
  padding: 0 15px 15px;
  border-radius: 7px;
}

.splide__arrow {
  display: none !important;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rebeccapurple;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#report li {
  text-align: justify;
  font-size: 1.2rem;
}

#report li b {
  color: var(--atention-color);
}

#report h2 {
  color: var(--primary-color);
}

@keyframes cursor {
  to {
    border-left: 2px solid #FFF;
    box-shadow: 1px 1px 3px #03bcf4;
  }
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  box-sizing: border-box;
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: processing 2s forwards;
  animation-delay: 18s;
}

.loading .canvas {
  width: 100%;
  height: 7.5rem;
  font-size: 1.8rem;
  line-height: 1.8rem;

  position: relative;
  overflow: hidden;
}

.loading ul {
  list-style: none;
  padding: 0 2rem;
  margin: 0;
  animation: slideing 19s forwards;
  position: absolute;
}

.loading ul li {
  height: 7.5rem;
}

@keyframes slideing {

  0%,
  20% {
    margin-top: 0;
  }

  21%,
  40% {
    margin-top: -7.5rem;
  }

  41%,
  60% {
    margin-top: -15rem;
  }

  61%,
  80% {
    margin-top: -22.5rem;
  }

  81%,
  100% {
    margin-top: -30rem;
  }

}

.loading li {
  display: block;
  text-align: center;
  height: 5rem;
}

@keyframes processing {
  from {
    opacity: 1;
    width: 100%;
    height: 100%;
  }

  to {
    opacity: 0;
    background-color: transparent;
    color: transparent;
    font-size: 1px;
    height: 0px;
  }
}

.flash {
  animation: mkflash 1s;
}

@keyframes mkflash {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.msgok {
  border-radius: 5px;
  background: lightcyan;
  padding: 10px 20px;
  font-size: 1.2rem;
  text-align: center;
  box-shadow: 2px 2px 5px;
}

#intro {
  background-image: linear-gradient(to right, rgba(0, 0, 100, 0.4), rgba(0, 0, 100, .4)), url(/medias/image/Total-Kode/diagnostico.webp);
  background-size: 100% 100%;
  border-radius: 7px;
  padding: var(--ml-primary);
  background-size: cover;
  text-shadow: 3px 2px 3px #444;
  text-align: center;
}

#intro .title {
  font-family: Ubuntu;
  font-size: 2rem;
  font-weight: bold;
  color: var(--atention-color);
}

#intro .know {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

#intro .text {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

#questions,
#finished,
#intro {
  opacity: 0;
  animation: fadein 1s forwards;
  min-height: 500px;
}

#questions,
#finished {
  position: relative;
}

#questions {
  margin: 35px;
}

.make-contact {
  background-color: transparent;
  border-radius: 7px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
}

.fullwidth {
  width: 100%;
}

.make-contact input[type=text] {
  border-radius: 16px;
  padding: 5px 8px;
  border: 1px solid grey;
  margin: 5px;
  width: 250px;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


#first-ask {
  transition: opacity .8s;
}

#second-ask {
  transition: opacity 1s;
}

#buttons {
  transition: opacity 1.2s;
  position: absolute;
  text-align: right;
  width: 100%;
  bottom: 0;
}

.hidden {
  display: none;
}




.place-avance {
  margin-bottom: 1.5rem;
}

.place-avance,
.place-avance .avance {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: orange;
}

.place-avance .avance {
  background: purple;
  transition: width 0.4s;
  width: 25%;
}

.diagnostico {
  font-family: Ubuntu;
  user-select: none;
  max-width: 900px;
  margin: 0 auto !important;
}

.diagnostico .numrer {
  color: grey;
  font-size: 1rem;
  font-weight: 800;
}

.diagnostico .text {
  color: var(--atention-color);
  font-weight: 800;
  font-size: 1.4rem;
}

.diagnostico input.answer-value+label {
  font-size: 1.2rem;
  margin-right: 20px;
  margin-left: 10px;
}

.diagnostico input.answer-value {
  transform: scale(1.4);
  margin-left: 7px;
}

.diagnostico .second {
  margin: 1.5rem 0
}

.diagnostico .second.disable {
  color: grey !important;
}

.diagnostico .second.disable .text {
  color: grey !important;
}


.msgerror {
  width: 100%;
  text-align: center;
}

.copyright-bar a {
  color: white;
}

.copyright-bar {
  width: 80%;
  border-top: 1px solid;
  margin: 20px auto;
  padding-top: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  text-align: center;
  font-size: 1rem;
  padding-bottom: 25px;
}


.entradas {
  display: flex;
  overflow: auto;
  gap: 20px;
  justify-content: space-between;
}

.entrada {
  position: relative;
  width: 300px;
  height: 300px;
  background-size: cover;
}

.entrada .fecha {
  position: absolute;
  right: 0;
  top: 0;
  padding: 15px;
  background-color: orange;
  color: white;
  font-weight: 800;
  transition: all .5s;
}

.entrada .titulo {
  position: absolute;
  bottom: 0;
  padding: 5px;
  background: rgba(0, 0, 0, .5);
  width: 100%;
  font-weight: 800;
  color: white;
  font-size: 1.2rem;
  transition: all .5s;
}

.entrada .descripcion {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  transition: all .5s;
  color: white;
  opacity: 0;
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.entrada:hover .fecha {
  opacity: 0;
}

.entrada:hover .titulo {
  opacity: 0;
}

.entrada:hover .descripcion {
  opacity: 1;
}

#opinions-slider {
  height: 402;
  display: grid;
}
.grid, #customers-slider {
  display: grid;
}

.opinion {
  position: relative;
  font-size: 2rem;
  font-family: cursive;
  padding: var(--ml-primary);
  text-align: center;
}

.opinion div {
  overflow: hidden;
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  box-shadow: 2px 4px 5px grey;
}

.opinion p {
  max-width: 800px;
  margin: 35px auto;
}

.opinion p span {
  color: grey;
}

#customers-slider .splide__pagination {
  display: none;
}

.container {
  margin: calc(var(--ml-primary) / 2) var(--ml-primary);
}

.customers-container {
  background: white;
  padding: var(--ml-primary);
  font-size: 1.8rem;
}

#customers-slider.splide {
  height: 50px;
}

#customers-slider.splide img {
  height: 50px;
  display: block;
  margin: auto;
  filter: grayscale(1);
}

#customers-slider.splide img:hover {
  filter: grayscale(0);
}

.center {
  text-align: center !important;
}

.terms {
  font-size: 1rem;
  margin: 12px 8px 8px;
  width: 100%;
}

.wp p.fullwidth {
  text-align: center;
}

.floatcard {
  width: 100% !important;
  border-radius: 7px;
  box-shadow: 4px 4px 18px;
  background: white;
}

.ttlzoom-place * {
  /* font-family: Ubuntu; */
  font-weight: 600;
}

.ttlzoom-place {
  position: relative;
  margin-top: 20px;
}

.ttlzoom-place input {
  background: transparent;
  width: 100%;
  z-index: 2;
}

.ttlzoom-place textarea {
  padding: 8px;
  width: 100%;
  height: 100%;
  background: transparent;
}

.ttlzoom-place textarea,
.ttlzoom-place input,
.ttlzoom-place input:focus,
.ttlzoom-place input:active {
  border: none;
  border-bottom: 2px solid var(--primary-color);
  outline: none;
  padding-bottom: 6px;
}


.ttlzoom-place input:focus+.ttlzoom,
.ttlzoom-place input:not(:placeholder-shown)+.ttlzoom,
.ttlzoom-place input:hover+.ttlzoom,
.ttlzoom-place input+.ttlzoom:hover,
.ttlzoom-place textarea:focus+.ttlzoom,
.ttlzoom-place textarea:not(:placeholder-shown)+.ttlzoom,
.ttlzoom-place textarea:hover+.ttlzoom,
.ttlzoom-place textarea+.ttlzoom:hover {
  transform: translateY(-9px) scale(0.7);
  transform-origin: left top;
}

.ttlzoom {
  position: absolute;
  top: -3px;
  left: 5px;
  transform: translateY(7px);
  transition: transform 0.5s;
  z-index: 1;
  white-space: nowrap;
}

.ttlzoom-select {
  position: absolute;
  top: -3px;
  left: -2px;
  z-index: 1;
  transform: translateY(-9px) scale(0.7);
}

.contact {
  padding: 0 20px 33px;
}

.contact-text div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cname {
  font-family: Ubuntu;
  font-size: 1.2rem;
  margin-left: 10px;
}

.clip-start,
.clip-end,
.clip-footer {
  width: 100%;
  height: 50px;
}

.clip-start {
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  transform: translateY(1px);
}

.clip-end {
  clip-path: polygon(100% 0, 0 0, 0 100%);
  transform: translateY(-1px);
}

.clip-footer {
  clip-path: polygon(100% 100%, 0 0, 0 100%);
  transform: translateY(1px);
}

.bg-grad-blue {
  background: linear-gradient(90deg, var(--bg-strong) 0%, var(--bg-strong-end) 100%);
}

.bg-white {
  background: white;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-blue {
  background: var(--primary-color);
}


.pre-footer {
  background-color: transparent;
}

.footer {
  font-size: 1.2rem;
  color: white;
}

.footer ul,
.contains-list {
  list-style-image: url(/medias/image/Total-Kode/vineta.svg);
  padding-left: 15px;
}

.footer ul li {
  line-height: 1.6;
  margin-top: 10px;
}

.footer .content {
  padding-top: 6rem;
  position: relative;
}

.footer span {
  font-weight: 800;
}

.box-col-3,
.special-col-3 {
  width: 100% !important;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}

.box-col-3>* {
  width: calc((100% - 60px - (var(--ml-primary) * 2)) / 3);
  min-width: 300px;
}

.special-col-3 .first-col {
  padding-top: 50px;
  width: 300px;
  text-align: center;
}

.special-col-3 .second-col {
  text-align: center;
  width: 250px;
}




.grk-navbar {
  position: fixed;
  background-color: var(--bg-light);
  z-index: 100;
  box-shadow: 0 6px 33px #bbb;
  padding: 0.5rem var(--ml-primary);
  width: 100%;
}

.menu-flash {
  animation: mkflash 1s;
}

.grk-nav-item a {
	color: var(--menu-color);
}

.grk-navbar img {
  height: 3rem;
}

.grk-navbar-logo img {
  height: 40px;
  filter: drop-shadow(0 0 4px #fff);
}

.bg-menu a {
  color: white!important;
}

.bg-menu {
  padding: 1rem var(--ml-primary)!important;
  background-color: transparent;
  position: absolute!important;
  box-shadow: none!important;
  color: white;
}

.banner-body {
  position: absolute;
  color: white;
  font-family: Ubuntu, 'sans-serif';
  left: var(--ml-primary);
  top: 35%;
}

.banner-body strong {
  display: block;
  text-shadow: 0 0 10px #03bcf4, 0 0 20px #03bcf4, 0 0 40px #03bcf4, 0 0 80px #03bcf4, 0 0 160px #03bcf4;
  letter-spacing: 3px;
  font-size: 2.5rem;
  height: 5rem;
}

.banner-body strong::after {
  content: '';
  animation: cursor .6s infinite
}

.banner-body p {
  margin-top: 25px;
  font-size: 1.8rem;
  line-height: 2rem;
  width: 90%;
  display: inline-block;
  text-shadow: 3px 3px 2px var(--primary-color);
}

@keyframes changing {

  0%,
  33% {
    content: "Descubre el poder de la innovación con nuestras soluciones y transforma tu negocio para alcanza nuevos horizontes de éxito.";
  }

  34%,
  66% {
    content: "Confía en nuestra casa de software para obtener soluciones a medida que impulsarán la eficiencia, la productividad y el crecimiento de tu empresa.";
  }

  67%,
  100% {
    content: "Con nuestra casa de software, tendrás acceso a un equipo altamente capacitado, tecnología de vanguardia y un compromiso inquebrantable con la excelencia. ¡Elige calidad y resultados sobresalientes para tu negocio!";
  }

  0%,
  34%,
  67%,
  100% {
    opacity: 0;
  }

  1%,
  33%,
  35%,
  66%,
  68%,
  100% {
    opacity: .2;
  }

  2%,
  32%,
  36%,
  65%,
  69%,
  99% {
    opacity: .4;
  }

  3%,
  31%,
  37%,
  64%,
  70%,
  98% {
    opacity: .6;
  }

  4%,
  30%,
  38%,
  63%,
  71%,
  97% {
    opacity: .8;
  }

  5%,
  39%,
  62%,
  72% {
    opacity: 1;
  }

}

#banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0px -12px 9px 19px #081654;
}

#banner img {
  aspect-ratio: 5/3;
  object-fit: cover;
  height: 100%;
  animation: pulse 60s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-delay: 1s;
  transition-timing-function: cubic-bezier(0, 0, 1, 1);
}


@keyframes pulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.5);
  }

}

.shadow {
  /* box-shadow: inset 0px -58px 23px -36px #152023; */
  box-shadow: inset 0px -58px 23px -36px #081654;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
	/* z-index: 101; */
}

.franja {
  background-color: var(--primary-color);
  border-radius: 50px;
  height: 30px;
  position: fixed;
  top: 15%;
  left: calc(var(--ml-primary) - 10px);
  height: 80%;
  width: 10px;
  z-index: -1;
}

.sello {
  position: fixed;
  right: 0;
  bottom: -120px;
  overflow: hidden;
  height: 400px;
  width: 400px;
  z-index: -1;
}

.sello img {
  position: absolute;
  filter: grayscale(0.5);
  opacity: 0.3;
  right: -51px;
  top: 50px;
  transform: scale(1.2);
}

.margin-menu {
  margin-top: 4rem;
}

.services {
  padding: calc(var(--ml-primary) + 20px);
}

.services h1 {
  text-align: center;
  color: var(--primary-color);
  width: 100%;
}

.services h2 {
  text-align: center;
  color: var(--secondary-color);
}

.services stron {
  color: var(--atention-color);
}

.services p {
  font-size: 1.4rem;
  text-align: justify;
}

.services .uselist {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  /* font-size: 1.8rem; */
  font-size: 1.4rem;
  gap: 20px;
  align-items: center;
}

.services .uselist li {
  width: 140px;
  height: 100px;
  /* height: 200px; */
  font-weight: 800;
  background-color: #d4d4d4;
  padding: 10px;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
}

.integration-grek {
  max-height: 270px;
  display: block;
  margin: auto auto 4rem;
}


.websites {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.webpages {
  max-width: 372px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px grey solid;
  border-right-color: #CCC;
  border-bottom-color: #CCC;
}

.webpages .info {
  position: absolute;
  opacity: 0;
  background-color: rgba(0, 0, 0, .6);
  margin: 5px;
  border-radius: 5px;
  padding: 5px;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 1.1rem;
  transition: opacity 0.7s;
  /* cursor: pointer; */
}

.webpages .info:hover {
  opacity: 1;
}

.webpages .info a {
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.bg-purple {
  background-color: blueviolet;
  color: white;
}

.bg-purple h2 {
  color: white;
}

.contains-list {
  font-size: 1.4rem;
  margin: auto 5px;
}

.paquetes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 3rem;
}

.paquetes > div {
  border-radius: 7px;
  box-shadow: 3px 3px 5px #fff;
  width: calc((100% - 40px) / 3);
  min-width: 300px;
  background: #fff;
  color: #000;
  font-size: 1.2rem;
  padding: 18px 5px;
}

.paquetes .name {
  /* font-family: 'Ubuntu Bold'; */
  font-family: Ubuntu;
  font-weight: 800;
  color: var(--primary-color);
  margin: 25px auto;
  text-align: center;
}

.paquetes .price {
  font-family: Ubuntu;
  font-weight: 800;
  color: var(--atention-color);
  border-bottom: 1px solid grey;
  padding-bottom: 25px;
  border-top: 1px solid grey;
  padding-top: 25px;
  font-size: 2rem;
  text-align: center;
}

.paquetes .include {
  margin: 25px;
}

.paquetes .include ul {
  list-style-image: url(/medias/image/Total-Kode/checkvin.svg);
  padding-left: 15px;
}

.paquetes .include li {
  margin-bottom: 4px;
}

.paquetes button {
  margin: auto;
  display: block;
}

.right-banner {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 2rem;
  margin-top: 3rem;
  z-index: 1;
}

.right-banner img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}

.right-banner h1 {
  text-align: center;
  width: 100%;
  text-shadow: 2px 2px 2px var(--bg-light);
}

.gotop {
  width: 55px;
  height: 55px;
  background: #999;
  position: sticky;
  top: calc(100vh - 230px);
  float: right;
  margin-right: 23px;
  border-radius: 10px;
  z-index: 200;
  color: white;
  text-align: center;
  padding-top: 10px;
}

.chat {
  left: unset;
  bottom: 94px;
  right: 20px;
  box-shadow: none;
}

.active .grk-navbar-nav {
  background-color: var(--bg-light)!important;

  /* display: grid; */
    /* position: absolute; */
    top: calc(var(--nvabar-height) + 10px);
    /* background-color: var(--background-menu); */
    /* white-space: pre-wrap; */
    width: 60%;
    height: 50vh;
    /* text-align: center; */
    /* margin: 0 auto; */
    /* padding: 0; */
    /* justify-content: stretch; */
    /* z-index: 25; */
    left: 40%;
    border-radius: 20px 0 0 20px;
    box-shadow: 5px 5px 15px black;
}

.bg-menu #btn-menu {
  background-color: transparent;
}
.bg-menu .btn-menu-line::before,
.bg-menu .btn-menu-line::after,
.bg-menu .btn-menu-line {
  background-color: white;
}
.bg-menu.active .btn-menu-line {
  background-color: transparent;
}

.active .grk-navbar-nav * {
  color: #000!important;
}

.right-banner p {
  line-height: 2rem;
  background-color: rgba(250, 250, 250, .5);
  padding: 15px;
  font-weight: 600;
}

.bg-purple h2,
.bg-purple p {
  color: white;
}

.s-service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px
}

.s-service-grid > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 350px;
}

.s-service-grid h3 {
  width: 100%;
  text-align: center;
}

.s-service-grid img {
  width: 70px;
  margin: auto;
}

.s-service-grid span {
  font-size: 1.3rem;
  margin-bottom: auto;
  text-align: justify;
  max-width: 350px;
}

.bg-back {
  position: relative;
  z-index: -2;
}

.solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.solution {
  cursor: pointer;
  width: 330px;
  text-align: -webkit-center;
  text-decoration: none;
  color: #000;
}

.solution>span {
  display: block;
}

.solution .logo {
  position: relative;
  font-size: 34px;
  font-family: Ubuntu;
  font-weight: 600;
  transition: filter 0.3s;
  height: 80px;
  width: 205px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  color: var(--atention-color);
}

.solution .logo span:first-child {
  color: var(--primary-color);
}

.solution .text {
  font-size: 1.8rem;
}

.solution .logo::before {
  content: "";
  background-image: url(/medias/image/Total-Kode/code.svg);
  background-size: 100% 100%;
  width: 18px;
  height: 40px;
  position: absolute;
  top: 21px;
  left: -30px;
}

.solution .logo:after {
  content: "";
  background-image: url(/medias/image/Total-Kode/codend.svg);
  background-size: 100% 100%;
  width: 35px;
  height: 40px;
  position: absolute;
  top: 21px;
  left: calc(100% + 10px);
}

.solution:hover .logo::after,
.solution:hover .logo::before {
  filter: opacity(0.5);
}

.solution:hover .logo {
  filter: drop-shadow(2px 2px 2px #666);
}

.solution:hover .text {
  filter: drop-shadow(2px 2px 2px var(--primary-color));
}

.customers-container {
  text-align: center;
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#cfdiTotal-Kode p {
    text-align: center;
}

#cfdiTotal-Kode .btn-link {
    display: block;
    text-align: center;
    margin: 18px;
    text-decoration: none;
}

#cfdiTotal-Kode {
    min-width: 400px;
}

#cfdiTotal-Kode img {
    display: block;
    margin: auto;
}

.form-control {
    padding: 3px 10px;
    border-radius: 8px;
    border: 1px solid darkgrey;
}

@media (min-width: 990px) {
  :root {
    --ml-primary: 2rem;
  }

  .floatcard {
    margin: calc(var(--ml-primary) * 1.5);
  }

  .webpages .info {
    font-size: 1.3rem;
  }

  .paquetes > div {
    font-size: 1.4rem;
  }

  .box-content button,
  .tk-btn {
    border-radius: 1.5rem;
  }

  .services .uselist {
    font-size: 1.8rem;
  }
  
  .services .uselist li {
    width: 200px;
    height: 200px;
  }

  .make-contact {
    background-color: white;
    margin: auto calc(var(--ml-primary) * 1.5);
    padding: 1.5rem;
  }
  

  .s-service-grid h3 {
    text-align: left;
  }
  
  .s-service-grid img {
    margin: 0 0 auto 0;
  }
  
  .s-service-grid span {
    width: 250px;
  }

  #goal h1 {
    font-size: 3rem;
  }

  #goal p {
    font-size: 2.2rem;
  }

  #finished {
    margin: 30px;
  }

  .topic {
    font-size: 4.5rem;
  }

  .banner-body {
    top: 40%;
  }

  .banner-body strong {
    letter-spacing: 6px;
    font-size: 3rem;
    height: 3rem;
  }

  .banner-body p {
    font-size: 2rem;
    line-height: 2.2rem;
    width: 70%;
  }


  .special-col-3 .first-col,
  .special-col-3 .second-col {
    text-align: left;
  }

  .copyright-bar {

    font-size: 1.2rem;
    padding-bottom: 0px;
  }


  .box-content > div {
    min-width: 450px;
  }

  .box-content img {
    max-width: 450px;
  }

  .loading .canvas {
    font-size: 2.3rem;
    line-height: 2.5rem;
  }


  .content {
    padding: calc(var(--ml-primary) / 2) calc(var(--ml-primary) + 20px);
    /* padding: calc(var(--ml-primary) + 20px); */
  }

  .right-banner {
    padding-top: 8rem;
    padding-bottom: 8rem;
    margin-top: 4rem;
  }

  .right-banner img {
    max-width: 700px;
  }

  .right-banner h1 {
    min-width: 700px;
    width: 50%;
  }

  .right-banner p {
    min-width: 700px;
    width: 50%;
    margin-top: 4rem;
    background-color: rgba(250, 250, 250, .4);
  }

}

@media (min-width: 1200px) {

  :root {
    --ml-primary: 4rem;
  }

  .banner-body strong {
    letter-spacing: 6px;
    font-size: 5rem;
    height: 5rem;
  }

  .banner-body p {
    font-size: 2.2rem;
    line-height: 2.4rem;
    width: 70%;
  }

  #banner img {
    height: 100%;
    width: 100%;
  }
}