/* -------------------------------- 
Primary style
-------------------------------- */
:root {
  --white: #ffffff;
  --green-lt: #ecf3f5;
  --green-dk: #005a4b;
  --yellow: #ebeb00;
  --dark-lt: #2B3038;
  --dark-dk: #20242A;
}

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&display=swap');

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  color: var(--dark-dk);
  background-color: var(--white);
}

a {
  color: var(--dark-dk);
  text-decoration: none;
}

b {
  font-weight: bold;
}
em {
  font-style: italic;
}

/* -------------------------------- 
Navigation
-------------------------------- */
.cd-side-navigation {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  height: 100vh;
  width: 54px;
}

.cd-side-navigation::before {
  /* background color of the side navigation */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: -webkit-calc(100% - 4px);
  width: calc(100% - 4px);
  background-color: var(--white);
}

.cd-side-navigation ul {
  float: left;
  width: 100%;
  height: 100%;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cd-side-navigation li {
  display: block;
}

.cd-side-navigation li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: 15vh;
  margin: 0 auto;
  padding: 13px 13px 13px 13px;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--dark-dk);
  -webkit-transition: background-color 0.2s, color 0.2s;
  -moz-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.no-touch .cd-side-navigation a:hover {
  font-size: 1.8rem; /*2.0rem;*/
  font-weight: bolder;
  background-color: transparent;/*var(--white);*/
  opacity: 1;
  color: var(--yellow);
}

.cd-side-navigation a.selected,
.no-touch .cd-side-navigation a.selected:hover {
  background-color: transparent;
  color: var(--dark-dk);
  font-size: 1.8rem;
  font-weight: bolder;
  transition: all 0.5s cubic-bezier(0.6, 0, 0.5, 1);
}

/* -------------------------------- 
 Main Content
-------------------------------- */
.cd-main {
  height: 100vh;
  overflow: hidden;
}

.cd-section {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  padding-left: 49px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0s 0.5s;
  -moz-transition: -moz-transform 0s 0.5s;
  transition: transform 0s 0.5s;
}

.cd-section.overflow-hidden {
  /* this class is used to hide the scrolling bar while a new section is entering the viewport */
  overflow: hidden;
}

.cd-section .navi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: var(--white);
  z-index: 10;
}

.cd-section .logo {
  height: 30px;
  padding-right: 20px;
}

.cm-lgwpr {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  padding-right: 20px;
}

.cm-lgwpr img {
  height: 60%;
}

.kt-katlgtxt {
  width: min-content;
  font-family: "Baloo Bhaijaan 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 8px;
  padding-left: 0.3rem;
  padding-top: 0.2rem;
  color: var(--dark-dk);
}

.cd-section #particles-js {
  position: relative;
  height: -webkit-calc(100vh - 50px);
  height: calc(100vh - 50px);
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

.cd-section .cd-msgs {
  position: relative;
  height: -webkit-calc(100vh - 50px);
  height: calc(100vh - 50px);
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

.cd-section header {
  position: relative;
  height: -webkit-calc(100vh - 50px);
  height: calc(100vh - 50px);
  width: 100%;
  background: #83b0b9;
  overflow: hidden;
}

.cd-section.services header {
  background-color: #d35657;
}

.cd-section.projects header {
  background-color: #343943;
}

.cd-section.contact header {
  background-color: #e4b162;
}

.cd-section .cd-scroll {
  /* this is the arrow at the bottom of the header */
  display: block;
  position: absolute;
  bottom: 40px;
  left: -webkit-calc(50vw - (54px - 4px)/2);
  left: calc(50vw - (54px - 4px)/2);
  width: 30px;
  height: 30px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  -webkit-transition: -webkit-transform 0s 0.5s, visibility 0s 0.5s;
  -moz-transition: -moz-transform 0s 0.5s, visibility 0s 0.5s;
  transition: transform 0s 0.5s, visibility 0s 0.5s;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  background: url("../img/cd-icon-arrow-bk.svg") no-repeat center center;
}

.cd-section .cd-scroll:hover {
  width: 50px;
  height: 50px;
}

.cd-section.visible {
  /* this is the visible/selected section */
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s 0s;
  -moz-transition: -moz-transform 0.5s 0s;
  transition: transform 0.5s 0s;
}

.cd-section.visible .cd-scroll {
  visibility: visible;
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-animation: bounce-bottom 5s ease-out infinite both;
  animation: bounce-bottom 5s ease-out infinite both;
}

@-webkit-keyframes bounce-bottom {
  0% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}

@keyframes bounce-bottom {
  0% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}

.ar-title {
  position: absolute;
  top: 50%;
  left: 0;
  /* this prevents title from jumping when the section scroll bar is visible */
  width: calc(100vw - 70px);
  padding: 1em;
  color: var(--dark-dk);
  text-align: center;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-80px);
  -moz-transform: translateY(-50%) translateX(-80px);
  -ms-transform: translateY(-50%) translateX(-80px);
  -o-transform: translateY(-50%) translateX(-80px);
  transform: translateY(-50%) translateX(-80px);
  -webkit-transition: -webkit-transform 0s 0.5s, opacity 0s 0.5s;
  -moz-transition: -moz-transform 0s 0.5s, opacity 0s 0.5s;
  transition: transform 0s 0.5s, opacity 0s 0.5s;
}
.jumbo {
  padding: 10% 10% calc(10% - 20px);
}
.jumboAnim {
  padding: 10% 10%;
}
.ar-title h2,
.jumbo h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.jumbo h2 {
  color: var(--yellow);
}

.ar-title div {
  opacity: 0.8;
  font-size: 1.7rem;
}

.visible .ar-title {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.4s 0.3s, opacity 0.4s 0.3s;
  -moz-transition: -moz-transform 0.4s 0.3s, opacity 0.4s 0.3s;
  transition: transform 0.4s 0.3s, opacity 0.4s 0.3s;
}

.cd-content {
  padding: 2em 0;
  background-color: #ebebeb;
}

.cd-content p {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 2em;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #999999;
}

/* -------------------------------- 
 Loading Bar
-------------------------------- */
#cd-loading-bar {
  position: fixed;
  z-index: 2;
  left: 49px;
  width: 4px;
  visibility: hidden;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

#cd-loading-bar.index {
  background-color: var(--yellow);
}

#cd-loading-bar.services {
  background-color: var(--yellow);
}

#cd-loading-bar.projects {
  background-color: var(--yellow);
}

#cd-loading-bar.contact {
  background-color: var(--yellow);
}

#cd-loading-bar.loading {
  visibility: visible;
}

/*2 columnas*/
.doscol {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 5% 0;
  align-items: center;
}
.grArea {
  grid-template-areas: 'B' 'A';
}
.boxA {
  grid-area: A;
}
.boxB {
  grid-area: B;
}
.unocol {
  display: block;
}
.rowDk {
  background-color: var(--dark-dk);
}
.rowWh {
  background-color: var(--white);
}
.rowGrl {
  background-color: var(--green-lt);
}
.atencion {
  font-size: 2rem;
  color: var(--yellow);
  padding: 1em 1em;
  align-self: center;
}
.forDosCol {
  padding: 7%;
}
.listaCtr {
  padding: 7%;
  background-color: var(--dark-dk);
  color: var(--green-lt);
}
.texGl {
  color: var(--green-lt);
}
#listAR {
  line-height: 2.2em;
  list-style-image: url(../img/listic-ye.png);
  font-size: 1.6rem;
}
#listARGr {
  line-height: 2.2em;
  list-style-image: url(../img/listic-gr.png);
  font-size: 1.6rem;
}
#listARDk {
  line-height: 2.2em;
  list-style-image: url(../img/listic-dk.png);
  font-size: 1.6rem;
}
.parrafoAR {
  line-height: 2.2em;
  padding-bottom: 5%;
}
.graf2col {
  width: 90%;
  max-width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.graf {
  text-align: center;
}

.bajoGraf {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-dk);
}

.rowGl {
  background-color: var(--dark-lt);
  padding: 5% 0;
}

.teamWpr {
  margin: 0 auto;
  max-width: 56em;
  padding: 0 0 5%;
  background-color: var(--dark-lt);
  color: var(--green-lt);
}

.teamAv {
  max-width: 170px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: minmax(350px, auto);
  grid-gap: 2em;
}

.module {
  /* Demo-Specific Styles */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-content: space-evenly;
  text-align: center;
  /* Flex Fallback */
  margin-left: 5px;
  margin-right: 5px;
  flex: 1 1 250px;
}

.modCard {
  display: block;
}

.teamNombre {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--yellow);
  padding: 15px 0 0;
}

.foot {
  display: grid;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 50px;
  background-color: var(--white);
  z-index: 10;
  font-size: 0.7em;
  padding-right: 20px;
  color: var(--dark-lt);
}

/* If Grid is supported, remove the margin we set for the fallback */
@supports (display: grid) {
  .module {
    margin: 0;
  }
}

.titulo {
  color: var(--yellow);
  text-align: center;
  font-size: 1.3em;
  font-weight: 600;
  padding: 5% 2% 0;
}
.titulo2 {
  color: var(--dark-dk);
  text-align: left;
  font-size: 1.3em;
  font-weight: 600;
  padding: 5% 2% 0;
}
.titulo3 {
  color: var(--yellow);
  text-align: left;
  font-size: 1.3em;
  font-weight: 600;
  padding: 5% 2% 0;
}

.cd-section #mapkattt {
  position: relative;
  height: -webkit-calc(100vh - 100px);
  height: calc(100vh - 100px);
  width: 100%;
  background: var(--white);
  overflow: hidden;
  z-index: 1;
}

.embed-container {
	position: relative;
	height: 0;
	overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.kattDash {
  margin: 0 auto;
  padding-bottom: 160%;
  max-width: 1400px;
  z-index: 8;
}
.frKattDash{
  padding: 0 0 5%;
  position: relative;
}
.allDashb {
  margin: 0 auto;
  padding-bottom: 155%;
  max-width: 1400px;
}
.frallDashb{
  padding: 0 0 5%;
  position: relative;
}
.fotdash {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  z-index: 9;
  background-color: var(--dark-dk);
}
.fotAlldash {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 54px;
  z-index: 9;
  background-color: var(--green-lt);
}
.frmodExamp{
  position: relative;
}
.headMod {
  position: absolute;
  top: 0;
  width: 100%;
  height: 52px;
  z-index: 9;
  background-color: var(--white);
}
.modExamp {
  padding-bottom: 100%;
  max-width: 100vw;
  z-index: 8;
}
.planExamp {
  padding-bottom: 100%;
  max-width: 100vw;
}
.contGrid {
  position: absolute;
  top: 30%;
  left: 60px;
  z-index: 99;
}
.contCard {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-items: center;
}
.contWrp {
  width: 305px;
  height: 355px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-color: var(--white);
}
.urlframe {
  width: 100%;
  height: 100%;
  padding: 5px;
}

/*weDoen svg*/
#weDoen {
  animation: fill 0.5s ease forwards 3.5s;
}

#weDoen path:nth-child(1){ /*w*/
  stroke-dasharray: 417;
  stroke-dashoffset: 417;
  animation: line-anim 2s ease forwards;
}
#weDoen path:nth-child(2){ /*a*/
  stroke-dasharray: 234;
  stroke-dashoffset: 234;
  animation: line-anim 2s ease forwards 0.8s;
}
#weDoen path:nth-child(3){ /*t 165*/
  stroke-dasharray: 165;
  stroke-dashoffset: 165;
  animation: line-anim 2s ease forwards 1.6s;
}
#weDoen path:nth-child(4){ /*k*/
  stroke-dasharray: 254;
  stroke-dashoffset: 254;
  animation: line-anim 2s ease forwards;
}
#weDoen path:nth-child(5){ /*a*/
  stroke-dasharray: 234;
  stroke-dashoffset: 234;
  animation: line-anim 2s ease forwards 0.8s;
}
#weDoen path:nth-child(6){ /*n*/
  stroke-dasharray: 222;
  stroke-dashoffset: 222;
  animation: line-anim 2s ease forwards 1.6s;
}
#weDoen path:nth-child(7){ /*h*/
  stroke-dasharray: 301;
  stroke-dashoffset: 301;
  animation: line-anim 2s ease forwards;
}
#weDoen path:nth-child(8){ /*e*/
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: line-anim 2s ease forwards 0.8s;
}
#weDoen path:nth-child(9){ /*t*/
  stroke-dasharray: 165;
  stroke-dashoffset: 165;
  animation: line-anim 2s ease forwards 1.6s;
}
#weDoen path:nth-child(10){ /*kk*/
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
  animation: line-anim 2s ease forwards;
}
#weDoen path:nth-child(11){ /*a*/
  stroke-dasharray: 234;
  stroke-dashoffset: 234;
  animation: line-anim 2s ease forwards 0.17s;
}
#weDoen path:nth-child(12){ /*t*/
  stroke-dasharray: 165;
  stroke-dashoffset: 165;
  animation: line-anim 2s ease forwards 0.34s;
}
#weDoen path:nth-child(13){ /*a*/
  stroke-dasharray: 234;
  stroke-dashoffset: 234;
  animation: line-anim 2s ease forwards 0.51s;
}
#weDoen path:nth-child(14){ /*l*/
  stroke-dasharray: 143;
  stroke-dashoffset: 143;
  animation: line-anim 2s ease forwards 0.68s;
}
#weDoen path:nth-child(15){ /*y*/
  stroke-dasharray: 222;
  stroke-dashoffset: 222;
  animation: line-anim 2s ease forwards 0.85s;
}
#weDoen path:nth-child(16){ /*s*/
  stroke-dasharray: 225;
  stroke-dashoffset: 225;
  animation: line-anim 2s ease forwards 1.02s;
}
#weDoen path:nth-child(17){ /*a*/
  stroke-dasharray: 234;
  stroke-dashoffset: 234;
  animation: line-anim 2s ease forwards 1.19s;
}
#weDoen path:nth-child(18){ /*t*/
  stroke-dasharray: 165;
  stroke-dashoffset: 165;
  animation: line-anim 2s ease forwards 1.36s;
}
#weDoen path:nth-child(19){ /*o*/
  stroke-dasharray: 204;
  stroke-dashoffset: 204;
  animation: line-anim 2s ease forwards 1.53s;
}
#weDoen path:nth-child(20){ /*r*/
  stroke-dasharray: 137;
  stroke-dashoffset: 137;
  animation: line-anim 2s ease forwards 1.7s;
}
#weDoen path:nth-child(21){ /*tt*/
  stroke-dasharray: 206;
  stroke-dashoffset: 206;
  animation: line-anim 2s ease forwards;
}
#weDoen path:nth-child(22){ /*e*/
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: line-anim 2s ease forwards 0.6s;
}
#weDoen path:nth-child(23){ /*a*/
  stroke-dasharray: 234;
  stroke-dashoffset: 234;
  animation: line-anim 2s ease forwards 1.2s;
}
#weDoen path:nth-child(24){ /*m*/
  stroke-dasharray: 337;
  stroke-dashoffset: 337;
  animation: line-anim 2s ease forwards 1.7s;
}
#weDoen path:nth-child(25){ /*v*/
  stroke-dasharray: 183;
  stroke-dashoffset: 183;
  animation: line-anim 2s ease forwards;
}
#weDoen path:nth-child(26){ /*o*/
  stroke-dasharray: 204;
  stroke-dashoffset: 204;
  animation: line-anim 2s ease forwards 0.6s;
}
#weDoen path:nth-child(27){ /*o*/
  stroke-dasharray: 204;
  stroke-dashoffset: 204;
  animation: line-anim 2s ease forwards 1.2s;
}
#weDoen path:nth-child(28){ /*r*/
  stroke-dasharray: 137;
  stroke-dashoffset: 137;
  animation: line-anim 2s ease forwards 1.7s;
}
#weDoen path:nth-child(29){ /*j*/
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
  animation: line-anim 2s ease forwards;
}
#weDoen path:nth-child(30){ /*u*/
  stroke-dasharray: 221;
  stroke-dashoffset: 221;
  animation: line-anim 2s ease forwards 0.33s;
}
#weDoen path:nth-child(31){ /*l*/
  stroke-dasharray: 143;
  stroke-dashoffset: 143;
  animation: line-anim 2s ease forwards 0.66s;
}
#weDoen path:nth-child(32){ /*l*/
  stroke-dasharray: 143;
  stroke-dashoffset: 143;
  animation: line-anim 2s ease forwards 0.99s;
}
#weDoen path:nth-child(33){ /*i*/
  stroke-dasharray: 146;
  stroke-dashoffset: 146;
  animation: line-anim 2s ease forwards 1.32s;
}
#weDoen path:nth-child(34){ /*e*/
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: line-anim 2s ease forwards 1.7s;
}
#weDoen path:nth-child(35){ /*b*/
  stroke-dasharray: 263;
  stroke-dashoffset: 263;
  animation: line-anim 2s ease forwards;
}
#weDoen path:nth-child(36){ /*e*/
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: line-anim 2s ease forwards 0.2s;
}
#weDoen path:nth-child(37){ /*t*/
  stroke-dasharray: 165;
  stroke-dashoffset: 165;
  animation: line-anim 2s ease forwards 0.4s;
}
#weDoen path:nth-child(38){ /*e*/
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: line-anim 2s ease forwards 0.6s;
}
#weDoen path:nth-child(39){ /*k*/
  stroke-dasharray: 254;
  stroke-dashoffset: 254;
  animation: line-anim 2s ease forwards 0.8s;
}
#weDoen path:nth-child(40){ /*e*/
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: line-anim 2s ease forwards 1.0s;
}
#weDoen path:nth-child(41){ /*n*/
  stroke-dasharray: 222;
  stroke-dashoffset: 222;
  animation: line-anim 2s ease forwards 1.2s;
}
#weDoen path:nth-child(42){ /*e*/
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: line-anim 2s ease forwards 1.4s;
}
#weDoen path:nth-child(43){ /*n*/
  stroke-dasharray: 222;
  stroke-dashoffset: 222;
  animation: line-anim 2s ease forwards 1.6s;
}
#weDoen path:nth-child(44){ /*?*/
  stroke-dasharray: 192;
  stroke-dashoffset: 192;
  animation: line-anim 2s ease forwards 1.8s;
}

@keyframes line-anim {
  to{
    stroke-dashoffset: 0;
  }
}
@keyframes fill {
  from{
    fill: transparent;
  }
  to{
    fill: var(--yellow);
  }
}

/*Scrollbar*/
/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--dark-dk);
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--yellow); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--yellow); 
}

/* TEAM GALLERY */

.filters {
  margin: 0 auto;
  padding: 3% 10%;
}

/* ---- button ---- */

.buttFilter {
  display: inline-block;
  padding: 0.5em 1.0em;
  background-color: var(--dark-lt);
  border: 1px solid var(--yellow);
  border-radius: 5px;
  color: var(--white);
  font-family: sans-serif;
  font-size: 16px;
  cursor: pointer;
}

.buttFilter:hover {
  background-color: var(--yellow);
  color: var(--dark-lt);
}

.buttFilter:active,
.buttFilter.isChcd {
  background-color: var(--yellow);
}

.buttFilter.isChcd {
  color: var(--dark-lt);
}

.buttFilter:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

/* ---- button-group ---- */

.buttGroup:after {
  content: '';
  display: block;
  clear: both;
}

.buttGroup .buttFilter {
  float: left;
  margin-left: 0;
  margin-right: 1px;
}

/* ---- grid ---- */

.module2 {
  text-align: center;
  width: 33%;
  padding: 3% 2%;
}

.gridTm {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: minmax(350px, auto);
  grid-gap: 2em;
  background: var(--dark-lt);
  max-width: 1200px;
}

.filtGroup h3 {
  display: inline-block;
  vertical-align: top;
  line-height: 40px;
  margin-right: 1em;
  font-size: 16px;
  color: var(--yellow);
}

.filtGroup .buttGroup {
  display: inline-block;
}

/* NEW CARDS */

.cardsWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--dark-lt);
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 1200px;
  transform-style: preserve-3d;
}

.container .box {
  position: relative;
  width: 260px;
  height: 400px;
  margin: 25px;
  background: var(--dark-lt);
  border-radius: 10px;
  transform-style: preserve-3d;
}

.container .box:hover {
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.2),
      0px 0px 50px rgba(0, 0, 0, 0.2);
}

.container .box .name {
  position: absolute;
  bottom: 65px;
  left: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--yellow);
  width: 100%;
  transform-style: preserve-3d;
  transform: translate3d(0,0,75px);
  transition: all 0.5s ease-out;
  opacity: 1;
  z-index: 10;
}

.container .box:hover .name {
  transform: translate3d(0,10px,75px);
  bottom: 50px;
}

.container .box .circle {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 230px;
  height: 275px;
  transition: all 0.5s ease-out;

  border-radius: 8px;
  transform-style: preserve-3d;
  z-index: 10;
  opacity: 0;
  transform: translate3d(-50%,-50%,50px);
}

.container .box:hover .circle {
  background: rgb(235,235,0);
background: -moz-linear-gradient(162deg, rgba(235,235,0,1) 6%, rgba(43,48,56,1) 83%);
background: -webkit-linear-gradient(162deg, rgba(235,235,0,1) 6%, rgba(43,48,56,1) 83%);
background: linear-gradient(162deg, rgba(235,235,0,1) 6%, rgba(43,48,56,1) 83%);
opacity: 1;
}

.container .box .product {
  position: absolute;
  top: 37%;
  left: 50%;
  max-width: 230px;
  transition: all 0.5s ease-out;
  z-index: 11;
  transform-style: preserve-3d;
  transform: translate3d(-50%,-50%,50px);
}

.container .box:hover .product {
  border: 5px solid #383f49;
  border-radius: 10px;
  max-width: 250px;
  transform: translate3d(-50%,-50%,100px);
}

.container .box .tags {
  position: absolute;
  top: 88%;
  left: 10%;
  width: 230px;
  transform-style: preserve-3d;
  transform: translate3d(0,0,0px);
}

.container .box:hover .tags {
  transform: translate3d(0,30px,75px);
}

.tags a {
  display: inline-block;
height: 21px;
margin: 8px 10px 0 0;
padding: 0 7px 0 14px;
white-space: nowrap;
position: relative;

background: -moz-linear-gradient(top, #09203f 0%, #537895 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#09203f), color-stop(100%,#537895));
background: -webkit-linear-gradient(top, #09203f 0%,#537895 100%);
background: -o-linear-gradient(top, #09203f 0%,#537895 100%);
background: linear-gradient(to bottom, #09203f 0%,#537895 100%);
background-color: #09203f;

color: white;
  font-size: 12px;
  line-height: 20px;
text-decoration: none;
text-shadow: 0 1px rgba(255,255,255,0.4);

border-top: 1px solid #537895;
border-bottom: 1px solid #537895;
border-right: 1px solid #537895;
border-radius: 1px 3px 3px 1px;
box-shadow: inset 0 1px #537895, 0 1px 2px rgba(0,0,0,0.21);
}
.tags a:before {
content: '';
position: absolute;
top: 4px;
left: -5px;
width: 9px;
height: 9px;

background: -moz-linear-gradient(45deg, #09203f 0%, #537895 100%);
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#09203f), color-stop(100%,#537895));
background: -webkit-linear-gradient(-45deg, #09203f 0%,#537895 100%);
background: -o-linear-gradient(45deg, #09203f 0%,#537895 100%);
background: linear-gradient(135deg, #09203f 0%,#537895 100%);
background-color: #09203f;

border-left: 1px solid #537895;
border-bottom: 1px solid #537895;
border-radius: 0 0 0 2px;
box-shadow: inset 1px 0 #537895, 0 2px 2px -2px rgba(0,0,0,0.33);
}
.tags a:before {
-webkit-transform: scale(1, 1.6) rotate(45deg);
-moz-transform: scale(1, 1.6) rotate(45deg);
-ms-transform: scale(1, 1.6) rotate(45deg);
transform: scale(1, 1.6) rotate(45deg);
}
.tags a:after {
content: '';
position: absolute;
top: 7px;
left: 1px;
width: 5px;
height: 5px;
background: #FFF;
border-radius: 4px;
border: 1px solid #09203f;
box-shadow: 0 1px 0 rgba(255,255,255,0.2), inset 0 1px 1px rgba(0,0,0,0.21);
}
.tags a:hover {
color: var(--yellow);
text-shadow: -1px -1px 0 rgba(153,102,51,0.3);
}

/*QUERIES*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .listaCtr,
  .forDosCol {
    padding: 7%;
  }

  .doscol {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  #listAR,
  #listARGr,
  #listARDk {
    font-size: 1.4rem;
  }

  .rowGl {
    padding: 15% 0;
  }

  .titulo {
    font-size: 1.3em;
    padding: 2% 2% 0;
  }
  .titulo2,
  .titulo3 {
    font-size: 1.3em;
    padding: 2% 2%;
  }
  .planExamp {
    padding-bottom: 285%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .atencion {
    font-size: 2rem;
    padding: 10% 10%;
  }
  .rowGl {
    padding: 15% 0;
  }
  .contGrid {
    top: 15%;
    left: 60px;
  }
  .contWrp {
    width: 290px;
  }
  .urlframe {
    padding: 5px;
  }
  .planExamp {
    padding-bottom: 140%;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .ar-title h2,
  .jumbo h2 {
    font-size: 6rem;
  }
  .ar-title div {
    font-size: 2.8rem;
  }
  .atencion {
    font-size: 2.5rem;
    padding: 10% 10%;
  }
  .cd-section .cd-scroll {
    bottom: 50px;
    width: 40px;
    height: 40px;
  }
  .titulo,
  .titulo2,
  .titulo3 {
    font-size: 1.8em;
  }
  .contGrid {
    top: 53%;
    left: 130px;
  }
  .contWrp {
    width: 550px;
  }
  .kattDash {
    padding-bottom: 150%;
  }
  .frKattDash{
    padding: 0 0 8%;
  }
  .allDashb {
    padding-bottom: 150%;
  }
  .frallDashb{
    padding: 0 0 8%;
  }
  .fotdash {
    height: 90px;
    z-index: 9;
  }
  .headMod {
    z-index: 9;
  }
  .planExamp {
    padding-bottom: 118%;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .atencion {
    font-size: 2rem;
    padding: 10% 8%;
  }
  .cd-side-navigation {
    width: 74px;
  }

  .cd-side-navigation li a {
    margin: 0 auto;
    padding: 13px 13px 13px 15px;
    font-size: 1.5rem;
  }

  .no-touch .cd-side-navigation a:hover {
    font-size: 3.1rem; /*3.7rem;*/ 
  }

  .cd-side-navigation a.selected,
  .no-touch .cd-side-navigation a.selected:hover {
    font-size: 3rem;
  }

  .cd-section {
    padding-left: 70px;
  }

  .cd-section .cd-scroll {
    left: -webkit-calc(50vw - (74px - 4px)/2);
    left: calc(50vw - (74px - 4px)/2);
  }

  .cd-section .navi {
    height: 70px;
  }

  .cd-section #mapkattt {
    position: relative;
    height: -webkit-calc(100vh - 140px);
    height: calc(100vh - 14 0px);
    width: 100%;
    background: var(--white);
    overflow: hidden;
    z-index: 1;
  }

  .cd-section .logo {
    height: 40px;
    padding-right: 20px;
  }

  .kt-katlgtxt {
    font-size: 1.2rem;
    line-height: 12px;
    padding-top: 0.35rem;
  }

  .cd-section header {
    height: -webkit-calc(100vh - 70px);
    height: calc(100vh - 70px);
  }

  .ar-title div {
    font-size: 2rem;
    padding: 0 10%;
  }

  .cd-content {
    padding: 4em 0;
  }

  .cd-content p {
    font-size: 1.6rem;
  }

  #cd-loading-bar {
    left: 70px;
  }

  .doscol {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 8% 10%;
  }
  .grArea {
    grid-template-areas: 'A B';
  }

  .rowGl {
    padding: 10% 0;
  }

  .titulo {
    font-size: 30px;
    padding: 3% 2% 0;
  }
  .titulo2,
  .titulo3 {
    font-size: 30px;
    padding: 3% 2% 2%;
  }
  .contGrid {
    top: 30%;
    left: 100px;
  }
  .contWrp {
    width: 410px;
  }
  .fotdash {
    height: 120px;
  }
  .modExamp {
    padding-bottom: 60%;
  }
  .planExamp {
    padding-bottom: 90%;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .jumboAnim {
    padding: 10% 15%;
  }
  #weDoen{
    max-width: 1270px;
  }
  .ar-title h2,
  .jumbo h2 {
    font-size: 80px;
  }
  .ar-title div {
    font-size: 24px;
    padding: 0 150px;
  }

  .listaCtr,
  .forDosCol {
    padding: 60px;
  }
  
  .graf2col {
    width: 100%;
    max-width: 600px;
  }

  .rowGl {
    padding: 90px 0;
  }

  .titulo {
    padding: 30px 12px 0;
  }
  .titulo2,
  .titulo3 {
    padding: 30px 12px 30px;
  }
  .contGrid {
    top: 30%;
    left: 130px;
  }
  .contWrp {
    width: 600px;
  }
  .frKattDash {
    padding: 0 0 30px;
  }
  .kattDash {
    padding-bottom: 2080px;
  }
  .frallDashb {
    padding: 0 0 30px;
  }
  .allDashb {
    padding-bottom: 2180px;
  }
  .modExamp {
    padding-bottom: 770px;
  }
  .planExamp {
    padding-bottom: 845px;
  }
  .foot {
    height: 70px;
  }

  /* SLIDER */
  
  .embWpr {
    position: relative;
  }

  .footSlider {
		position: absolute;
    bottom: 20px;
    right: 20px;
    width: 160px;
    height: 60px;
    z-index: 9;
    background-color: white;
    border-radius: 5px;
	}

  .logo {
    max-height: 50px;
  }

  button#btnDashRef {
    padding: 8px;
  }

  button#btnDashRef ion-icon {
    font-size: xx-large;
  }
}