.owl-dots {
  display: none !important;
}

.owl-carousel .owl-stage-outer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.owl-stage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.color-white {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.color-black {
  color: #000000 !important;
}

.bg-black {
  background-color: #000000 !important;
}

.color-primary {
  color: #00416B !important;
}

.bg-color-primary {
  background-color: #00416B !important;
}

.color-primarylight {
  color: #00A5DF !important;
}

.bg-color-primarylight {
  background-color: #00A5DF !important;
}

.color-secondary {
  color: #00A5DF !important;
}

.bg-color-secondary {
  background-color: #00A5DF !important;
}

.color-inverse {
  color: #FFF !important;
}

.bg-color-inverse {
  background-color: #FFF !important;
}

.color-success {
  color: #004D43 !important;
}

.bg-color-success {
  background-color: #004D43 !important;
}

.color-success-light {
  color: #3BD4AE !important;
}

.bg-color-success-light {
  background-color: #3BD4AE !important;
}

.color-info {
  color: #0085FA !important;
}

.bg-color-info {
  background-color: #0085FA !important;
}

.color-warning {
  color: #FFCD00 !important;
}

.bg-color-warning {
  background-color: #FFCD00 !important;
}

.color-danger {
  color: #f44336 !important;
}

.bg-color-danger {
  background-color: #f44336 !important;
}

.color-pink {
  color: #EEE2E2 !important;
}

.bg-color-pink {
  background-color: #EEE2E2 !important;
}

.gray-base {
  color: black;
}

.bg-gray-base {
  background-color: black;
}

.gray-darker {
  color: #262626;
}

.bg-gray-darker {
  background-color: #262626;
}

.gray-dark {
  color: #595959;
}

.bg-gray-dark {
  background-color: #595959;
}

.gray-regular {
  color: gray;
}

.bg-gray-regular {
  background-color: gray;
}

.gray-light {
  color: #a6a6a6;
}

.bg-gray-light {
  background-color: #a6a6a6;
}

.gray-lighter {
  color: #d9d9d9;
}

.bg-gray-lighter {
  background-color: #d9d9d9;
}

.gray-ghost {
  color: #f2f2f2;
}

.bg-gray-ghost {
  background-color: #f2f2f2;
}

@font-face {
  font-family: "Work Sans";
  src: url("WorkSans-ExtraBold.woff2") format("woff2"), url("WorkSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("WorkSans-Medium.woff2") format("woff2"), url("WorkSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Work Sans";
  font-size: 16px;
  background-color: #EEE2E2;
  background-image: url(../images/bg-texture.png);
  background-size: 680px;
  background-repeat: repeat;
  background-blend-mode: overlay;
  word-break: break-word;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  body {
    background-color: #EEE2E2;
    background-image: none;
  }
}
body * {
  box-sizing: border-box;
}
body *:focus, body *:active {
  outline: none;
}
body .bg-noise {
  background-image: url(../images/bg-texture.png);
  background-size: 680px;
  background-repeat: repeat;
  background-blend-mode: overlay;
}
@media screen and (max-width: 600px) {
  body .bg-noise {
    background-size: 30px 30px;
  }
}
body .flex {
  display: flex;
  flex-wrap: wrap;
}
body .flex.row {
  flex-direction: row;
}
body .flex.column {
  flex-direction: column;
}
body .flex.aCenter {
  align-items: center;
}
body .flex.aStart {
  align-items: flex-start;
}
body .flex.aEnd {
  align-items: flex-end;
}
body .flex.aSelfEnd {
  align-self: flex-end;
}
body .flex.aSelfCenter {
  align-self: center;
}
body .flex.jCenter {
  justify-content: center;
}
body .flex.jStart {
  justify-content: flex-start;
}
body .flex.jEnd {
  justify-content: flex-end;
}
body .flex.jBetween {
  justify-content: space-between;
}
body .absolute {
  position: absolute;
}
body .relative {
  position: relative;
}
body .p-t-0 {
  padding-top: 0 !important;
}
body .p-r-m {
  padding-right: 0 !important;
}
body .p-b-m {
  padding-bottom: 0 !important;
}
body .p-l-m {
  padding-left: 0 !important;
}
body .p-t-s {
  padding-top: 8px !important;
}
body .p-r-m {
  padding-right: 8px !important;
}
body .p-b-m {
  padding-bottom: 8px !important;
}
body .p-l-m {
  padding-left: 8px !important;
}
body .p-t-m {
  padding-top: 16px !important;
}
body .p-r-m {
  padding-right: 16px !important;
}
body .p-b-m {
  padding-bottom: 16px !important;
}
body .p-l-m {
  padding-left: 16px !important;
}
body .p-t-l {
  padding-top: 24px !important;
}
body .p-r-l {
  padding-right: 24px !important;
}
body .p-b-l {
  padding-bottom: 24px !important;
}
body .p-l-l {
  padding-left: 24px !important;
}
body .p-t-xl {
  padding-top: 32px !important;
}
body .p-r-xl {
  padding-right: 32px !important;
}
body .p-b-xl {
  padding-bottom: 32px !important;
}
body .p-l-xl {
  padding-left: 32px !important;
}
body .m-t-0 {
  margin-top: 0 !important;
}
body .m-r-0 {
  margin-right: 0 !important;
}
body .m-b-0 {
  margin-bottom: 0 !important;
}
body .m-l-0 {
  margin-left: 0 !important;
}
body .m-t-s {
  margin-top: 8px !important;
}
body .m-r-s {
  margin-right: 8px !important;
}
body .m-b-s {
  margin-bottom: 8px !important;
}
body .m-l-s {
  margin-left: 8px !important;
}
body .m-t-m {
  margin-top: 16px !important;
}
body .m-r-m {
  margin-right: 16px !important;
}
body .m-b-m {
  margin-bottom: 16px !important;
}
body .m-l-m {
  margin-left: 16px !important;
}
body .m-t-l {
  margin-top: 24px !important;
}
body .m-r-l {
  margin-right: 24px !important;
}
body .m-b-l {
  margin-bottom: 24px !important;
}
body .m-l-l {
  margin-left: 24px !important;
}
body .m-t-xl {
  margin-top: 32px !important;
}
body .m-r-xl {
  margin-right: 32px !important;
}
body .m-b-xl {
  margin-bottom: 32px !important;
}
body .m-l-xl {
  margin-left: 32px !important;
}
body .p-box {
  border: 2px solid #d9d9d9;
  padding: 24px;
}
body .multiply-gray {
  background-color: rgba(0, 65, 107, 0.5);
  background-blend-mode: multiply;
}
body .j-img-absolute {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
body .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
body .hidden {
  visibility: hidden;
  opacity: 0;
}
body .z-100 {
  position: relative;
  z-index: 100;
}
body .shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
body .m-width-400 {
  max-width: 400px;
}
@media screen and (max-width: 600px) {
  body .m-width-400 {
    max-width: 100%;
  }
}
body .m-width-600 {
  max-width: 600px;
}
@media screen and (max-width: 600px) {
  body .m-width-600 {
    max-width: 100%;
  }
}
body .m-width-800 {
  max-width: 800px !important;
}
@media screen and (max-width: 600px) {
  body .m-width-800 {
    max-width: 100%;
  }
}
body .w100 {
  width: 100%;
}
body .w75 {
  width: 75%;
}
@media screen and (max-width: 600px) {
  body .w75 {
    width: 100%;
  }
}
body .pos-abs-right {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 600px) {
  body .pos-abs-right {
    display: none;
  }
}
body .pos-abs-left {
  position: absolute;
  left: 0;
  top: 80px;
}
@media screen and (max-width: 600px) {
  body .pos-abs-left {
    display: none;
  }
}
body .min-height-40 {
  min-height: 40px;
}
body .visually-hidden {
  position: absolute;
  left: -100vw;
  opacity: 0;
}
body .title-toggle {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
body .title-toggle:hover svg {
  opacity: 9;
}
body .title-toggle h3 {
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
body .title-toggle h3:hover {
  color: darken #00416B, 10;
}
body .title-toggle svg {
  opacity: 0.7;
  max-height: 20px;
  width: 40px;
  margin-top: 16px;
  margin-bottom: 16px;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
body .title-toggle .rotate-180 {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
}

.j-workspace {
  box-sizing: border-box;
}
.j-workspace .j-wrap {
  max-width: 1232px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.j-workspace .j-wrap-80 {
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: 985.6px;
}
.j-workspace .j-wrap-90 {
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: 1108.8px;
}
.j-workspace .j-wrap-movil {
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 369.6px;
}

.grid {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .grid {
    flex-direction: column-reverse;
  }
}
.grid .unit {
  transition: width 200ms ease-in-out;
  display: flex;
  flex-direction: column;
}
.grid .unit.half {
  width: 50%;
  padding-right: 16px;
}
.grid .unit.half:last-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .grid .unit.half {
    width: 100%;
    padding-right: 0;
  }
}
.grid .unit.seventyfive {
  width: 75%;
  padding-right: 16px;
}
.grid .unit.seventyfive:last-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .grid .unit.seventyfive {
    width: 100%;
    padding-right: 0;
  }
}
.grid .unit.third {
  width: 33%;
  padding-right: 16px;
}
.grid .unit.third:last-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .grid .unit.third {
    width: 100%;
    padding-right: 0;
  }
}
.grid .unit.fourth {
  width: 25%;
  padding-right: 16px;
}
.grid .unit.fourth:last-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .grid .unit.fourth {
    width: 100%;
    padding-right: 0;
  }
}

.images-titles-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

section {
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 32px;
  position: relative;
  z-index: 100;
}
section.big-space {
  margin-top: 80px;
  margin-bottom: 80px;
}
section.circle .grid {
  background-image: url(../images/elipse-background.png);
  background-repeat: no-repeat;
  background-position: right;
}
section.triangle .grid {
  background-image: url(../images/triangle-background.png);
  background-repeat: no-repeat;
  background-position: left;
}
@media screen and (max-width: 600px) {
  section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.triangle {
  background-image: url(../images/triangle-background.png);
  background-repeat: no-repeat;
  background-position: left;
}

.circle {
  background-image: url(../images/elipse-background.png);
  background-repeat: no-repeat;
  background-position: right;
}

.dinamic-survey {
  background-color: #FFDC5E;
  background-image: url(../images/halfcircles-background.png);
  background-repeat: no-repeat;
  background-position: 40px 40px;
  background-size: 420px;
}
.dinamic-survey h3 {
  color: black;
}
.dinamic-survey p {
  margin-left: 16px;
  color: #A17D23;
}
.dinamic-survey .answers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: 16px;
}
.dinamic-survey .answers label {
  min-width: 130px;
  margin-right: 16px;
}
.dinamic-survey .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.5;
  align-self: center;
  justify-self: flex-start;
}
.dinamic-survey .controls .controls-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dinamic-survey .controls p {
  font-size: 32px;
  font-weight: 800;
  color: black;
  margin-bottom: 0;
}
.dinamic-survey .controls a img {
  height: 40px;
  padding-top: 16px;
  -webkit-transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
}
.dinamic-survey .controls a:first-child img {
  margin-right: 16px;
}
.dinamic-survey .controls a:first-child img:hover {
  transform: translate(-8px, 0);
}
.dinamic-survey .controls a:last-child img {
  margin-left: 4px;
}
.dinamic-survey .controls a:last-child img:hover {
  transform: translate(8px, 0);
}
.dinamic-survey .controls a.muted {
  opacity: 0.4;
}
.dinamic-survey .question-picture {
  width: 100%;
  height: 290px;
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  max-height: 340px;
}
.dinamic-survey .data-process-form {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
}
@media screen and (max-width: 600px) {
  .dinamic-survey .grid {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 600px) {
  .services-picture {
    flex-direction: column-reverse !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .services-picture img {
    width: 70% !important;
  }
}

.last-step {
  position: absolute;
  height: 100vh;
  top: -500vh;
  width: 100vw;
  transition: all 0.5s ease-in;
}
.last-step svg {
  position: absolute;
  top: 32px;
  right: 0;
  height: 32px;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.5s ease-out;
}
.last-step svg:hover {
  opacity: 1;
}
.last-step .j-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.last-step.active {
  top: 0;
  z-index: 999999;
}

button, .btn-solid {
  position: relative;
  width: fit-content;
  min-width: 280px;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 13px;
  padding-left: 24px;
  border: none;
  border-radius: 8px;
  margin-bottom: 16px;
  background: #00A5DF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #FFF;
  cursor: pointer;
  line-height: 1;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
}
@media screen and (max-width: 768px) {
  button, .btn-solid {
    max-width: 100%;
    min-width: 0;
  }
}
button:hover, .btn-solid:hover {
  background-color: #00416B;
  color: #FFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.45);
}
button:active, button:focus, button:visited, .btn-solid:active, .btn-solid:focus, .btn-solid:visited {
  box-shadow: 0px 6px 5px -4px rgba(0, 0, 0, 0.15);
}
button:active, button:focus, .btn-solid:active, .btn-solid:focus {
  outline: none;
}
button.muted, .btn-solid.muted {
  opacity: 0.3;
}
button.muted:hover, .btn-solid.muted:hover {
  cursor: not-allowed;
}
button.sm, .btn-solid.sm {
  font-size: 14px;
}
button.lg, .btn-solid.lg {
  font-size: 24px;
}
button.xl, .btn-solid.xl {
  font-size: 32px;
}
button.bg-color-primary:hover, .btn-solid.bg-color-primary:hover {
  background-color: #002238;
}

.btn-head {
  position: relative;
  width: fit-content;
  min-width: 280px;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 13px;
  padding-left: 24px;
  border: none;
  border-radius: 8px;
  margin-bottom: 16px;
  background: #00A5DF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #FFF;
  cursor: pointer;
  line-height: 1;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
}
.btn-head:hover {
  background-color: #FFF;
  color: #00416B;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.45);
}

.btn-outline {
  border: 2px solid #0085FA;
  color: #0085FA;
  background: #FFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.btn-outline:hover {
  background-color: #0085FA;
  color: #FFF;
  background: linear-gradient(180deg, #004FFF 50%, #337DFF 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.45);
}

.btn-inverse {
  border: solid 2px #00416B;
  color: #00416B;
  background: #FFF;
  max-width: 310px;
  box-shadow: 4px 4px 0px 0px #FFF;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.btn-inverse:hover {
  background-color: #00416B;
  color: #FFF;
  border: solid 2px #00416B;
  max-width: 304px;
  box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.5);
  transform: translate(8px, 0);
}
.btn-inverse.bg-color-primary {
  border: solid 2px #00416B;
  color: #00416B;
}
.btn-inverse.bg-color-primary:hover {
  background-color: #00416B;
  color: #FFF;
  border: solid 2px #00416B;
  color: #FFF;
}
.btn-inverse.bg-color-secondary {
  border: solid 2px #00A5DF;
  color: #00A5DF;
}
.btn-inverse.bg-color-secondary:hover {
  background-color: #00A5DF;
  color: #FFF;
  border: solid 2px #00A5DF;
}
.btn-inverse.bg-color-success {
  border: solid 2px #004D43;
  color: #004D43;
}
.btn-inverse.bg-color-success:hover {
  background-color: #004D43;
  color: #FFF;
  border: solid 2px #004D43;
}
.btn-inverse.bg-color-info {
  border: solid 2px #0085FA;
  color: #0085FA;
}
.btn-inverse.bg-color-info:hover {
  background-color: #0085FA;
  color: #FFF;
  border: solid 2px #0085FA;
}
.btn-inverse.bg-color-warning {
  border: solid 2px #A17D23;
  color: #A17D23;
}
.btn-inverse.bg-color-warning:hover {
  background-color: #A17D23;
  color: #FFF;
  border: solid 2px #A17D23;
}
.btn-inverse.bg-color-danger {
  border: solid 2px #f44336;
  color: #f44336;
}
.btn-inverse.bg-color-danger:hover {
  background-color: #f44336;
  color: #FFF;
  border: solid 2px #f44336;
}

.horizontal-btn-group {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .horizontal-btn-group {
    flex-direction: column;
  }
}
.horizontal-btn-group button {
  margin-right: 16px;
}
.horizontal-btn-group button:last-child {
  margin-right: 0;
}

.group-input-button {
  display: flex;
  flex-direction: column;
}
.group-input-button button {
  min-width: 100%;
}

.ripple {
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: white;
  animation: ripple-animation 2s;
}

@keyframes ripple-animation {
  from {
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    transform: scale(100);
    opacity: 0;
  }
}
.input-plus {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  padding-left: 25px;
}
.input-plus svg {
  margin-right: 8px;
  width: 15px;
}

form {
  display: flex;
}
form fieldset {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 8px;
  display: flex;
}
label b {
  margin-left: 8px;
  font-weight: 300;
}

input[type=text],
input[type=email],
input[type=search],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
textarea, select {
  min-width: 320px;
  min-height: 40px;
  width: 100%;
  overflow: hidden;
  background-color: white;
  padding-top: 2px;
  padding-left: 8px;
  margin-bottom: 16px;
  border: solid 1px #d9d9d9;
  border-radius: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  color: #00416B;
  -webkit-transition: border-color 400ms ease-in-out;
  transition: border-color 400ms ease-in-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
textarea:focus, select:focus {
  outline: none;
}
input[type=text]:active, input[type=text]:focus, input[type=text]:visited,
input[type=email]:active,
input[type=email]:focus,
input[type=email]:visited,
input[type=search]:active,
input[type=search]:focus,
input[type=search]:visited,
input[type=tel]:active,
input[type=tel]:focus,
input[type=tel]:visited,
input[type=url]:active,
input[type=url]:focus,
input[type=url]:visited,
input[type=password]:active,
input[type=password]:focus,
input[type=password]:visited,
input[type=number]:active,
input[type=number]:focus,
input[type=number]:visited,
textarea:active,
textarea:focus,
textarea:visited, select:active, select:focus, select:visited {
  border-bottom-color: #FFF;
}

select:focus {
  outline: none;
}
select:active, select:focus, select:visited {
  border-bottom-color: #FFF;
}

input[type=file] {
  margin-bottom: 16px;
  width: 100%;
}

input[type=radio],
input[type=checkbox] {
  margin-top: 4px;
  margin-bottom: 16px;
  margin-left: 8px;
}

.survey-check {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.survey-check label {
  justify-content: flex-start;
  margin-left: 16px;
  width: fit-content;
  padding: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
}
.survey-check input[type=checkbox] {
  transform: scale(1.5);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 8px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 16px;
}
table tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}
table tr:last-child {
  border-bottom: 2px solid #a6a6a6;
}
table tr th {
  background-color: #a6a6a6;
  color: white;
  font-weight: 500;
  text-align: left;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
}
table tr th span {
  font-size: smaller;
  color: #f2f2f2;
}
table tr th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
table tr th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
table td {
  text-align: left;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  color: #595959;
  border-right: 2px solid #a6a6a6;
}
table td:last-child {
  border-right: none;
}
table td span {
  font-size: smaller;
  color: gray;
}

img {
  max-width: 100%;
  margin-bottom: 16px;
}

.icons-list-inline--sm img {
  max-width: 32px;
}

.icons-list-inline img {
  max-width: 64px;
}

.icons-list-inline--lg img {
  max-width: 128px;
}

.p-img-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-img-left img {
  max-width: 33%;
  margin-right: 16px;
}

.p-img-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-img-right img {
  max-width: 33%;
  margin-right: 16px;
}

h1, h2, h3, h4, h5, h6, p, figure, ul, li {
  margin: 0;
  padding: 0;
  margin-bottom: 16px;
  color: #00416B;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Work Sans";
  color: #00416B;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0px;
  line-height: 1;
}

h1, h2, h3 {
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #00416B;
  max-width: 740px;
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 32px;
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

h5 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 0;
  text-transform: none;
}

.jumboText {
  font-size: 80px;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .jumboText {
    font-size: 40px;
  }
}

ul, ol {
  padding-left: 25px;
}
ul li, ol li {
  margin-bottom: 8px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}
ul li > ul > li, ol li > ul > li {
  margin-top: 16px;
}

a {
  color: #00416B;
  text-decoration: underline;
}
a.inverse {
  color: #FFF;
}
a.button:after {
  content: none;
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 0;
  background-color: transparent;
  width: 0;
  transition: width 0.25s;
  z-index: -1;
  display: flex;
  align-items: flex-start;
}
a.arrow {
  position: relative;
}
a.arrow:after {
  content: url(../images/link-arrow.svg);
  position: absolute;
  top: 0;
  right: -48px;
  -webkit-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
}
a.arrow:hover:after {
  right: -64px;
}
a.arrow.inverse:after {
  content: url(../images/link-arrow-white.svg);
  position: absolute;
  top: 0;
  right: -48px;
  -webkit-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
}
a.arrow.inverse:hover:after {
  right: -64px;
}
a.arrow.reverse {
  padding-left: 48px;
}
a.arrow.reverse:after {
  content: "";
  position: absolute;
}
a.arrow.reverse:before {
  content: url(../images/link-arrow.svg);
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}
a.arrow.reverse:hover:before {
  left: -8px;
}
@media screen and (max-width: 600px) {
  a.arrow {
    margin-right: 16px;
  }
}

p {
  color: #00416B;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
}
p.small {
  font-size: 14px;
}
p.legible {
  max-width: 420px;
}
p.legible-xl {
  max-width: 680px;
}
p.bigger {
  font-size: 24px;
}
p.color-inverse {
  color: white;
}
p.color-inverse a {
  color: white;
  text-decoration: underline;
}

blockquote {
  border-left: 2px solid #a6a6a6;
  color: #a6a6a6;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
blockquote span {
  margin-top: 8px;
  align-self: flex-end;
}

strong {
  font-weight: 600;
}

label {
  padding: 0px 16px;
  background: black;
  color: white;
  font-size: 24px;
  font-weight: 800;
  position: relative;
  width: 400px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 24px;
}
label.left {
  left: -50%;
  text-align: right;
  justify-content: flex-end;
  align-self: flex-start;
}
label.right {
  right: -18%;
  text-align: left;
  justify-content: flex-start;
  align-self: flex-end;
}
label.right.owl {
  right: 6%;
}
@media screen and (max-width: 600px) {
  label.right.owl {
    position: absolute;
    width: 100%;
    right: 0;
  }
}
label.down {
  top: -80px;
}
label.inverse {
  background: white;
  color: black;
}
label.xl {
  font-size: 32px;
}
@media screen and (max-width: 600px) {
  label.xl {
    font-size: 24px;
  }
}
label.servicesLeft {
  top: -80px;
  left: 0%;
  width: 300px;
}
@media screen and (max-width: 600px) {
  label.servicesLeft {
    left: 0;
    width: 100%;
    top: 0;
  }
}
label.servicesRight {
  top: -80px;
  right: -50%;
  width: 300px;
  text-align: left;
  justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  label.servicesRight {
    right: 0;
    width: 100%;
    top: 0;
  }
}

hr {
  border-top: none;
  border-bottom: solid 2px;
  border-color: #a6a6a6;
  width: 100%;
}
hr.w60 {
  width: 60%;
}

hr.right {
  margin: 16px 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.vertical-separator {
  height: auto;
}
.vertical-separator:before {
  content: url(../images/tringle-points-white-inverse.svg);
  position: relative;
  display: block;
  width: fit-content;
  height: fit-content;
  margin-bottom: 8px;
}
.vertical-separator:after {
  content: url(../images/tringle-points-white.svg);
  position: relative;
  display: block;
  width: fit-content;
  height: fit-content;
  margin-top: 8px;
}
.vertical-separator .line {
  height: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.vertical-separator .line:before {
  content: "";
  position: relative;
  display: block;
  width: 2px;
  background-color: #FFF;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .vertical-separator {
    display: none;
  }
}

.nav-resources {
  position: sticky;
  top: 32px;
  padding: 8px;
}
@media screen and (max-width: 1094px) {
  .nav-resources {
    position: relative;
      top: auto;
  }
}

.controls {
  display: flex;
}
.controls a img {
  height: 24px;
}
.controls p {
  margin-left: 8px;
  margin-right: 8px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  width: 100%;
  min-height: calc(100vh - 105px);
  height: 100vh;
}
.hero .background-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/example-image-background.png");
  background-repeat: no-repeat;
  background-position: center center;
}
.hero .content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: fit-content;
  width: fit-content;
  flex-direction: column;
  z-index: 9;
  max-width: 1232px;
  padding: 16px;
}
.hero .content h1 {
  margin-bottom: 0;
}
.hero .content h3 {
  max-width: 580px;
}
.hero #cursor {
  position: absolute;
  z-index: 10000;
  width: 40px;
  height: 40px;
  background: transparent url("../images/circle-implementacion.gif") 0 0 no-repeat;
}
@keyframes example {
  0% {
    transform: rotate(0turn);
  }
  100% {
    transform: rotate(1turn);
  }
}
@keyframes example2 {
  0% {
    transform: rotate(1turn);
  }
  100% {
    transform: rotate(0turn);
  }
}
@keyframes examplebikes {
  0% {
    transform: rotate(360deg) scale(0.8);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(0deg) scale(0.8);
  }
}
.hero .circles-bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}
.hero .circulos {
  transform: rotate(0turn);
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.hero .bikes {
  transform: scale(0.8);
  -webkit-animation-name: examplebikes;
  -webkit-animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
.hero .circulos1 {
  position: absolute;
  z-index: 6;
  transform: rotate(0turn);
  animation-name: example2;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media screen and (max-width: 900px) {
  .hero .circulos1 {
    width: 114%;
    max-width: 200%;
  }
}
@media screen and (max-width: 600px) {
  .hero .circulos1 {
    width: 100vh;
    max-width: 200%;
  }
}
@media screen and (max-width: 380px) {
  .hero .circulos1 {
    width: 119vh;
    max-width: 163vh;
  }
}
.hero .circulos2 {
  position: absolute;
  z-index: 5;
  transform: rotate(0turn);
  animation-name: example;
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media screen and (max-width: 900px) {
  .hero .circulos2 {
    width: 130%;
    max-width: 200%;
  }
}
@media screen and (max-width: 600px) {
  .hero .circulos2 {
    width: 70vh;
    max-width: 200%;
  }
}
.hero .circulos3 {
  position: absolute;
  z-index: 4;
  transform: rotate(0turn);
  animation-name: example2;
  animation-duration: 32s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media screen and (max-width: 900px) {
  .hero .circulos3 {
    width: 170%;
    max-width: 200%;
  }
}
@media screen and (max-width: 600px) {
  .hero .circulos3 {
    width: 90vh;
    max-width: 200vh;
  }
}
@media screen and (max-width: 380px) {
  .hero .circulos3 {
    width: 92vh;
  }
}
.hero .circulos4 {
  position: absolute;
  z-index: 7;
  transform: rotate(0turn);
  animation-name: example;
  animation-duration: 64s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  display: none;
}
@media screen and (max-width: 900px) {
  .hero .circulos4 {
    display: block;
    width: 119vh;
    max-width: 150vh;
  }
}
@media screen and (max-width: 600px) {
  .hero .circulos4 {
    display: block;
    width: 119vh;
    max-width: 150vh;
  }
}

.card-case-study {
  background-color: #004D43;
  max-width: 300px;
  border-radius: 20px;
  margin-right: 16px;
  margin-bottom: 16px;
  min-height: 555px;
}
.card-case-study .tags {
  display: flex;
  flex-wrap: wrap;
}
.card-case-study .tag {
  color: black;
  padding: 4px 8px;
  background-color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  width: fit-content;
  margin-right: 8px;
}
.card-case-study .tag.green {
  background-color: #3BD4AE;
  color: #004D43;
}
.card-case-study img {
  margin-bottom: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.card-case-study .text {
  padding: 24px;
}
.card-case-study.small {
  max-width: 280px;
  min-height: 460px;
}
.card-case-study.rose {
  background-color: transparent;
  border: 2px solid #ddc5c5;
}

.card-cta {
  position: relative;
  width: 100%;
  max-width: 485px;
  min-height: 308px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.card-cta h3 {
  max-width: 300px;
  text-align: center;
}
.card-cta p {
  text-align: center;
}
.card-cta:after {
  content: url("../images/icon-cta-blue.svg");
  position: absolute;
  display: block;
  top: 24px;
  left: 24px;
}
@media screen and (max-width: 600px) {
  .card-cta:after {
    display: none;
  }
}
.card-cta.blue {
  background: radial-gradient(88.49% 165.04% at 0% 0%, #EEE2E2 0%, #00A5DF 100%);
}
.card-cta.yellow {
  background: radial-gradient(88.49% 165.04% at 0% 0%, #A17D23 0%, #FFCD00 100%);
}

label.tag {
  width: 100%;
  font-weight: bold;
  color: white;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
label.tag.blue {
  background-color: rgba(0, 133, 255, 0.5);
}
label.tag.green {
  background-color: rgba(6, 128, 35, 0.5);
}
label.tag.yellow {
  background-color: rgba(173, 139, 0, 0.5);
}
label.tag.red {
  background-color: rgba(244, 67, 54, 0.5);
}

label.tag-task {
  width: fit-content;
  border: 2px solid #262626;
  margin-right: 16px;
  margin-bottom: 16px;
}
label.tag-task span {
  padding-right: 8px;
  padding-left: 8px;
  padding-top: 8px;
  color: white;
  font-weight: bold;
  border-right: 2px solid #262626;
  background-color: #595959;
}
label.tag-task span.positive {
  background-color: #4caf50;
}
label.tag-task span.negative {
  background-color: #f44336;
}
label.tag-task span.station {
  background-color: #595959;
  color: white;
  font-weight: bold;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 4px;
  border-right: 0;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 16px;
}
.modal p {
  color: white;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.modal p.close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
}

.image-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.image-title img {
  width: 80px;
}
.image-title:last-child {
  margin-right: 0;
}

.alert-message {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  max-width: 1232px;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
.alert-message a:first-child {
  width: 100%;
  text-align: center;
}
.alert-message a:first-child p {
  margin: 0;
}
.alert-message a:nth-child(2) img {
  margin: 0;
  height: 16px;
}

section.portfolio.hover {
  background-size: 480px auto;
  background-repeat: no-repeat;
  background-position: calc(50% - var(--xmag)) calc(50% - var(--ymag));
  transition: none;
  background-blend-mode: lighten;
  background-image: url("../images/bg-coline.png");
  background-color: #ffffff96;
}
section .header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 8px;
  border-top: 2px dashed #00416B;
  border-bottom: 2px dashed #00416B;
  margin-bottom: 16px;
}
section .body {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
section .body p {
  max-width: 430px;
}
section .body.porfolio {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
section .body.porfolio ul {
  list-style: none;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  padding: 0;
  margin: 0;
}
section .body.porfolio ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 8px;
  padding-right: 8px;
  border-bottom: 2px dashed #00416B;
  margin-bottom: 48px;
  margin-right: 48px;
  z-index: 20;
}
section .body.porfolio ul li h3, section .body.porfolio ul li p {
  margin: 0;
}
section .body.porfolio ul li h3 {
  margin-right: 32px;
  text-transform: none;
}
section .body.porfolio ul li h3.xl {
  font-size: 56px;
  line-height: 1;
}
section .body.porfolio ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0px;
  background-color: #00A5DF;
  width: 100%;
  z-index: -1;
  display: flex;
  align-items: flex-start;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}
section .body.porfolio ul li:hover {
  border-bottom: 2px dashed #00A5DF;
}
section .body.porfolio ul li:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40px;
  background-color: #00A5DF;
  width: 100%;
  z-index: -1;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 600px) {
  section .body.porfolio ul {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
  }
  section .body.porfolio ul li {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 24px;
    margin-right: 0;
    min-height: 112px;
    width: 100%;
    align-items: center;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 600px) {
  section .body {
    min-height: 50vh;
  }
}
section.project .project-header {
  height: 80vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: luminosity;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.project .project-header hr {
  border-bottom: dashed 1px;
  width: 20%;
  border-color: white;
}
section.project .project-body {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
section.project .project-body section {
  margin-top: 56px;
  margin-bottom: 56px;
}

svg.process {
  opacity: 0;
}
svg.process.active {
  opacity: 1;
}
svg.process.active .design-thinking {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 4s linear forwards;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
svg.process.active .leanux {
  stroke-dasharray: 300;
  animation-name: leanux;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-direction: alternate-reverse;
  animation-delay: 6s;
}
@keyframes leanux {
  to {
    stroke-dashoffset: 5000;
  }
}
svg.process.active .experimentation {
  stroke-dasharray: 50;
  animation-name: dash1;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-direction: alternate-reverse;
  animation-delay: 3s;
}
@keyframes dash1 {
  to {
    stroke-dashoffset: 580;
  }
}
svg.process.active .show {
  opacity: 0;
  animation-name: dash2;
  animation-duration: 1.25s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}
svg.process.active .show:nth-child(2) {
  animation-delay: 0.3s;
}
svg.process.active .show:nth-child(3) {
  animation-delay: 0.5s;
}
svg.process.active .show:nth-child(4) {
  animation-delay: 0.7s;
}
svg.process.active .show:nth-child(5) {
  animation-delay: 0.9s;
}
svg.process.active .show:nth-child(6) {
  animation-delay: 1.1s;
}
svg.process.active .show:nth-child(7) {
  animation-delay: 3.1s;
}
@keyframes dash2 {
  to {
    opacity: 1;
  }
}
svg.process.active .showExp {
  opacity: 0;
  animation-name: showExp;
  animation-duration: 1.25s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}
@keyframes showExp {
  to {
    opacity: 1;
  }
}
svg.process.active .showLean {
  opacity: 0;
  animation-name: showLean;
  animation-duration: 1.24s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 6s;
}
@keyframes showLean {
  to {
    opacity: 1;
  }
}

.menu {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 5vh 0;
  --marquee-width: 100vw;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  --item-font-size: 7vw;
  counter-reset: menu;
}

.menu__item {
  cursor: default;
  position: relative;
  padding: 0 5vw;
  overflow: auto;
}

.menu__item-link {
  display: inline-block;
  cursor: pointer;
  position: relative;
  -webkit-text-stroke: 1.5px #000;
  text-stroke: 1.5px #000;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: transparent;
  transition: opacity 0.4s;
  opacity: 0;
}

.menu__item-link::before {
  position: absolute;
  bottom: 60%;
  left: 0;
  pointer-events: none;
}

.menu__item-link:hover {
  transition-duration: 0.2s;
  opacity: 0;
}

/* Make sure 3 items are visible in the viewport by setting suitable font size. */
.marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--marquee-width);
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: color-burn;
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 10s linear infinite;
  animation-play-state: paused;
  opacity: 1;
  transition: opacity 0.1s;
  animation-play-state: running;
}

.menu__item-link:hover ~ .marquee .marquee__inner {
  animation-play-state: running;
  opacity: 1;
  transition-duration: 0.4s;
}

.marquee span {
  text-align: center;
}

.menu__item-link,
.marquee span {
  white-space: nowrap;
  font-size: var(--item-font-size);
  padding: 0 1vw;
  font-weight: 900;
  line-height: 1.15;
}

.marquee span {
  font-style: italic;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@media screen and (min-width: 53em) {
  .frame {
    text-align: left;
    display: grid;
    align-content: space-between;
    width: 100%;
    padding: 2.5rem 6vw;
    pointer-events: none;
    grid-template-columns: 75% 25%;
    grid-template-rows: auto;
  }

  .frame__title-wrap {
    display: flex;
    align-items: start;
  }

  .frame__info {
    margin: 0;
  }

  .frame__title {
    margin: 0 1rem 0 0;
  }

  .frame__links {
    padding: 0;
    justify-self: end;
  }

  .frame a {
    pointer-events: auto;
  }
}
header {
  background-color: #00416B;
  box-sizing: border-box;
  z-index: 9999;
  position: relative;
  box-shadow: 0 1px 8px 0px #00000030;
}
header .j-wrap {
  max-width: 1232px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
header .j-wrap svg {
  margin: 0;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
header .j-wrap svg:hover {
  transform: scale(1.05);
}
header .j-wrap nav {
  display: flex;
}
header .j-wrap nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
header .j-wrap nav .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
header .j-wrap nav .dropdown-content a:hover {
  background-color: #ddd;
}
header .j-wrap nav .dropdown:hover .dropdown-content {
  display: block;
}
@media (hover: hover) {
  header .j-wrap nav .dropdown:hover .dropdown-content {
    display: block;
  }
}
header .j-wrap nav p {
  color: #FFF;
  margin-right: 16px;
  margin-bottom: 0;
}
header .j-wrap nav.regular {
  display: flex;
}
@media screen and (max-width: 600px) {
  header .j-wrap nav.regular {
    display: none;
  }
}
header .j-wrap nav.responsive {
  display: none;
}
header .j-wrap nav.responsive .dropdown-content {
  right: 8px;
}
@media screen and (max-width: 600px) {
  header .j-wrap nav.responsive {
    display: block;
  }
}
header .j-wrap button {
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  header .j-wrap button {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  header .j-wrap {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 600px) {
  header .j-wrap .contact-link {
    display: none;
  }
}

header.main-nav.responsive {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(48, 163, 214, 0.9);
}
header.main-nav.responsive a {
  height: 20%;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header.main-nav.responsive a img {
  width: 160px;
}
header.main-nav.responsive a img .logo-fill {
  fill: #FFF;
}
header.main-nav.responsive nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 70%;
}
header.main-nav.responsive nav ul {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
}
header.main-nav.responsive nav ul a.link {
  height: 20%;
}
header.main-nav.responsive nav ul a.link li {
  color: #FFF;
  text-transform: uppercase;
}
header.main-nav.responsive nav ul .btn-doctors, header.main-nav.responsive nav ul .btn-sign-up {
  background-color: transparent;
  color: #FFF;
  border: none;
  padding: 0;
}
header.main-nav.responsive #nav-icon span {
  background: #FFF;
}

#nav-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 30px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 992px) {
  #nav-icon {
    display: block;
  }
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #00416B;
  border-radius: 12px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

/* Icon */
#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 12px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 24px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 29px;
  left: 8px;
}

footer {
  background: black;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background-repeat: inherit;
  background-size: 290px;
}
footer .j-wrap {
  width: 100%;
  max-width: 1232px;
  padding-right: 16px;
  padding-left: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  footer .j-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}
footer .j-wrap .info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 24px;
}
footer .j-wrap .info h5, footer .j-wrap .info p, footer .j-wrap .info li {
  color: #FFF;
}
footer .j-wrap .info h5 {
  margin-bottom: 24px;
}
footer .j-wrap .info .list-menu {
  max-width: 600px;
  width: 100%;
}
footer .j-wrap .info .list-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}
footer .j-wrap .info .list-menu ul .row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
footer .j-wrap .info .list-menu ul .row li {
  min-width: 200px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  footer .j-wrap .info .list-menu ul .row {
    margin-bottom: 0;
    justify-content: center;
  }
  footer .j-wrap .info .list-menu ul .row li {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 900px) {
  footer .j-wrap .info {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}
footer .sub-footer {
  display: flex;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 8px;
  border-top: 1px dashed #FFF;
  margin-top: 40px;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  footer .sub-footer .terms {
    text-align: right;
  }
}
footer .sub-footer p {
  margin: 0;
}

.e-commerce {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
}
.e-commerce-body {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.e-commerce-body .navegation {
  width: 20%;
}
.e-commerce-body .navegation ul {
  list-style: none;
}
.e-commerce-body .products-grid {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.e-commerce-body .products-grid .product {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 16px;
  border: 1px solid black;
}
.e-commerce-body .products-grid .product .picture {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.e-commerce-body .products-grid .product .picture img {
  height: 100%;
  width: 100%;
  margin: 0;
}
.e-commerce-body .products-grid .product .info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 320px;
}
.e-commerce-body .products-grid .product .buyit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.e-commerce-body .products-grid .product .buyit .price-tag {
  font-size: 40px;
}
.e-commerce-body .ticket {
  width: 30%;
}



/*# sourceMappingURL=main.css.map */