/* Variables */
/* Animations */
@-webkit-keyframes goDown {
  0% {
    -webkit-transform: translate(-50%, 0);
  }
  100% {
    -webkit-transform: translate(-50%, 8px);
  }
}
@keyframes goDown {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 8px);
  }
}
@-webkit-keyframes showContactForm {
  0% {
    border-radius: 32px;
    height: 64px;
    width: 64px;
  }
  100% {
    border-radius: 4px;
    height: 580px;
    width: 500px;
  }
}
@keyframes showContactForm {
  0% {
    border-radius: 32px;
    height: 64px;
    width: 64px;
  }
  100% {
    border-radius: 4px;
    height: 580px;
    width: 500px;
  }
}
@-webkit-keyframes hideContactForm {
  0% {
    border-radius: 4px;
    height: 580px;
    width: 500px;
  }
  100% {
    border-radius: 32px;
    height: 64px;
    width: 64px;
  }
}
@keyframes hideContactForm {
  0% {
    border-radius: 4px;
    height: 580px;
    width: 500px;
  }
  100% {
    border-radius: 32px;
    height: 64px;
    width: 64px;
  }
}
/* Estilos */
* {
  outline: none;
  font: inherit;
  border: none;
  padding: 0;
  margin: 0;
}

html {
  overflow: auto;
  height: 100%;
  width: 100%;
}

body {
  font: 15px 'Open Sans', Helvetica, Arial, sans-serif;
  background-color: #fff;
  height: auto !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  line-height: 1.2;
  overflow: hidden;
  width: 100%;
  color: #222;
}

section, main, header, footer, nav {
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

b {
  font-weight: 600;
}

p {
  line-height: 1.6;
}

p, h1, h2, h3, h4, h5, h6 {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

button {
  text-transform: uppercase;
  cursor: pointer;
}

[hidden] {
  display: none;
}

.wrapper {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.mask {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: opacity 300ms;
  background-color: black;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9;
  opacity: 0;
  left: 0;
  top: 0;
}
.mask.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 0.6;
}
.mask.close {
  transition: opacity 300ms 300ms, transform 0s 600ms;
  opacity: 0;
}

.cols {
  -webkit-flex-wrap: wrap;
  display: -webkit-flex;
  flex-wrap: wrap;
  display: flex;
}
.cols .col {
  -webkit-flex: 1;
  flex: 1;
}

button {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 150ms ease, box-shadow 150ms;
  background-color: #3ecf8e;
  text-transform: uppercase;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  color: white;
}
button.purple {
  background-color: #6772e5;
}
button[type=submit] {
  display: block;
  width: 100%;
}
button:hover {
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
button:active {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}

input:not([type=checkbox]):not([type=radius]):not([type=file]), textarea {
  transition: background-color 200ms, box-shadow 200ms;
  background-color: #eee;
  box-sizing: border-box;
  margin-bottom: 10px;
  border-radius: 4px;
  line-height: 40px;
  min-height: 40px;
  padding: 0 12px;
  display: block;
  resize: none;
  width: 100%;
}
input:not([type=checkbox]):not([type=radius]):not([type=file]):focus, textarea:focus {
  box-shadow: inset 0 0 0 1px #ccc;
  background-color: white;
}
input:not([type=checkbox]):not([type=radius]):not([type=file]):last-child, textarea:last-child {
  margin-bottom: 0;
}
input:not([type=checkbox]):not([type=radius]):not([type=file]).blur:not(:focus):invalid, textarea.blur:not(:focus):invalid {
  box-shadow: inset 0 0 0 1px #ffa27b;
  background-color: white;
  color: #ffa27b;
}
input:not([type=checkbox]):not([type=radius]):not([type=file]).blur:not(:focus):invalid::placeholder, textarea.blur:not(:focus):invalid::placeholder {
  color: #ffa27b;
}
input:not([type=checkbox]):not([type=radius]):not([type=file])::placeholder, textarea::placeholder {
  color: #666;
}
input:not([type=checkbox]):not([type=radius]):not([type=file]):-webkit-autofill, textarea:-webkit-autofill {
  box-shadow: inset 0 0 0 1px #ccc;
}

textarea {
  line-height: 1.2;
  padding: 12px;
  height: 200px;
}

.check-field {
  position: relative;
  margin: 20px 0;
}
.check-field input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
}
.check-field label .fake-check {
  background-color: #ddd;
  border: 2px solid #ddd;
  display: inline-block;
  vertical-align: -3px;
  border-radius: 9px;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  height: 14px;
  width: 28px;
}
.check-field label .fake-check::before {
  transition: transform 200ms;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  background-color: white;
  border-radius: 100%;
  position: absolute;
  height: 14px;
  width: 14px;
  content: '';
  left: 0;
  top: 0;
}
.check-field input:checked ~ label .fake-check {
  background-color: #1565c0;
  border-color: #1565c0;
}
.check-field input:checked ~ label .fake-check::before {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.file-field {
  margin-bottom: 15px;
  overflow: hidden;
}
.file-field label {
  position: relative;
  color: #fb814e;
  padding: 4px;
  float: right;
}
.file-field label input {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  left: 0;
  top: 0;
}
.file-field label i {
  margin-right: 5px;
}

.inline-field {
  display: -webkit-flex;
  display: flex;
}
.inline-field input {
  margin-right: 10px;
  -webkit-flex: 1;
  flex: 1;
}
.inline-field input:last-child {
  margin-bottom: 10px !important;
  margin-right: 0;
}

#head {
  transition: background-color 500ms, box-shadow 500ms;
  height: 60px;
  position: absolute;
  overflow: hidden;
  color: white;
  width: 100%;
  z-index: 2;
  left: 0;
  top: 0;
}
#head #headLogo {
  background: url("/static/img/logo-white.png") no-repeat left center;
  background-size: contain;
  display: inline-block;
  color: transparent;
  height: 60px;
  width: 150px;
}
#head #headNav {
  overflow: hidden;
  float: right;
}
#head #headNav a {
  text-transform: uppercase;
  position: relative;
  line-height: 60px;
  font-weight: 600;
  padding: 0 2px;
  margin: 0 15px;
  display: block;
  float: left;
}
#head #headNav a::after {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: width 150ms;
  background-color: white;
  position: absolute;
  height: 2px;
  content: '';
  width: 0px;
  bottom: 12px;
  left: 50%;
}
#head #headNav a.active::after, #head #headNav a:hover::after {
  width: 100%;
}

section .wrapper {
  box-sizing: border-box;
  padding: 100px 30px;
}
section .wrapper > h2 {
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 36px;
}
section .wrapper > h3 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 20px;
  color: #626262;
}
section .wrapper > h3:last-child {
  margin-bottom: 0;
}
section.dark {
  background-color: #28272c;
  color: white;
}
section.dark h3 {
  color: #aaa;
}

#home {
  background: linear-gradient(to bottom, #2d2c35 0%, #393c4c 100%);
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  text-align: center;
  display: flex;
  height: 100vh;
  color: white;
  width: 100%;
  z-index: 1;
}
#home::before {
  background: url("/static/img/bg-bottom.png") no-repeat bottom center, url("/static/img/bg-bottom-shadow.png") no-repeat bottom center, url("/static/img/bg-noise.png") repeat left top;
  background-size: 100%, 100%, auto;
  position: absolute;
  height: 100%;
  width: 100%;
  content: '';
  z-index: -1;
  left: 0;
  top: 0;
}
#home::after {
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  height: 100%;
  width: 100%;
  content: '';
  z-index: -1;
  left: 0;
  top: 0;
}
#home #particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
  content: '';
  z-index: -2;
  left: 0;
  top: 0;
}
#home h1 {
  margin-bottom: 30px;
  font-size: 56px;
}
#home h2 {
  margin: 0 auto;
  margin-bottom: 50px;
  font-size: 20px;
  width: 640px;
}
#home button {
  transition: background-color 250ms, color 250ms;
  background-color: transparent;
  border: 2px solid #fff;
  padding: 15px 30px;
  border-radius: 0;
  font-size: 20px;
  color: white;
}
#home button:hover {
  background-color: white;
  color: black;
}
#home .go-down {
  -webkit-animation: goDown 600ms ease-out alternate infinite;
  animation: goDown 600ms ease-out alternate infinite;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  cursor: pointer;
  height: 48px;
  width: 48px;
  bottom: 20px;
  left: 50%;
}

#services .icon-area {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  max-width: 275px;
  height: 200px;
}
#services .icon-area.nts {
  background-image: url(/static/img/devices/nts.svg);
}
#services .icon-area.ts {
  background-image: url(/static/img/devices/ts.svg);
}
#services .icon-area.n {
  background-image: url(/static/img/devices/n.svg);
}
#services .col {
  padding-right: 50px;
  padding-bottom: 50px;
  flex-basis: calc((100% - 100px) / 3);
  -webkit-flex-basis: calc((100% - 100px) / 3);
}
#services .col:nth-last-child(-n+3) {
  padding-bottom: 0;
}
#services .col:nth-child(3n) {
  padding-right: 0;
}
#services .col h2 {
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 18px;
  color: #1e88e5;
}
#services .col h3 {
  margin-bottom: 10px;
  color: #727272;
}
#services .col p {
  text-align: justify;
}

#technologies {
  background-color: whiteSmoke;
  text-align: center;
}
#technologies p {
  margin-bottom: 30px;
}
#technologies i {
  font-size: 64px;
  cursor: pointer;
}
#technologies i.fa-js {
  color: #eabd36;
}
#technologies i.fa-html5 {
  color: #dd4b25;
}
#technologies i.fa-css3-alt {
  color: #006cb4;
}
#technologies i.fa-node-js {
  color: #689f63;
}
#technologies i.fa-vuejs {
  color: #3fb27f;
}
#technologies i.fa-angular {
  color: #db3035;
}
#technologies i.fa-react {
  color: #00d1f7;
}
#technologies i.fa-php {
  color: #7377ad;
}
#technologies i.fa-sass {
  color: #c66997;
}
#technologies img {
  vertical-align: -7px;
  cursor: pointer;
  height: 64px;
}
#technologies span, #technologies img, #technologies i {
  display: inline-block;
  margin-right: 30px;
}
#technologies span:last-child, #technologies img:last-child, #technologies i:last-child {
  margin-right: 0;
}
#technologies img, #technologies i {
  transition: filter 300ms;
  filter: grayscale(0%);
}
#technologies img:hover, #technologies i:hover {
  filter: grayscale(100%);
}

#process .steps .steps-dots {
  position: relative;
  margin: 0 auto;
  height: 60px;
  width: 78%;
}
#process .steps .steps-dots .progress-bar {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #2196f3;
  position: absolute;
  height: 4px;
  width: 100%;
  left: 50%;
  top: 50%;
}
#process .steps .steps-dots .step-dot {
  transition: border-color 300ms;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 4px solid #2196f3;
  background-color: #28272c;
  border-radius: 100%;
  position: absolute;
  text-align: center;
  line-height: 48px;
  font-weight: 600;
  font-size: 20px;
  color: white;
  height: 48px;
  width: 48px;
  z-index: 1;
  top: 50%;
}
#process .steps .steps-dots .step-dot:nth-child(1) {
  left: 0%;
}
#process .steps .steps-dots .step-dot:nth-child(2) {
  left: 33.33%;
}
#process .steps .steps-dots .step-dot:nth-child(3) {
  left: 66.66%;
}
#process .steps .steps-dots .step-dot:nth-child(4) {
  left: 100%;
}
#process .steps .col {
  padding-right: 50px;
  text-align: center;
  margin-top: 50px;
}
#process .steps .col:nth-child(4n) {
  padding-right: 0;
}
#process .steps .col h2 {
  text-transform: uppercase;
  margin-bottom: 40px;
  color: white;
}
#process .steps .col .step-icon {
  margin-bottom: 30px;
}
#process .steps .col .step-icon img {
  width: 148px;
}

#portfolio .cols.grey {
  background-color: whiteSmoke;
}
#portfolio .cols .col {
  position: relative;
}
#portfolio .cols .col .middle {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  width: 70%;
  left: 50%;
  top: 50%;
}
#portfolio .cols .col .middle h2 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  color: #222;
}
#portfolio .cols .col .middle p {
  margin-bottom: 30px;
  font-size: 18px;
  color: #555;
}
#portfolio .cols .col .middle .btn {
  transition: box-shadow 200ms, background-color 200ms, color 200ms;
  box-shadow: inset 0 0 0 2px #222;
  background-color: transparent;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 4px;
  padding: 14px 32px;
  font-weight: 700;
  color: #222;
}
#portfolio .cols .col .middle .btn.disabled {
  cursor: default;
}
#portfolio .cols .col .middle .btn:not(.disabled).revealed {
  transition: box-shadow 200ms, background-color 200ms, transform 200ms, color 200ms !important;
}
#portfolio .cols .col .middle .btn:not(.disabled):hover {
  box-shadow: inset 0 0 0 0 #222, 0 14px 28px rgba(50, 50, 93, 0.1), 0 6px 12px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background-color: #6772e5;
  color: white;
}
#portfolio .cols .col.pf-img img {
  width: 100%;
}

#foot {
  background-color: whitesmoke;
  border-top: 1px solid #eee;
  padding: 50px;
  color: #666;
}
#foot i {
  margin: 0 5px;
}
#foot a {
  color: inherit;
}

#contactForm {
  transition: transform 300ms, bottom 300ms, right 300ms;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  -webkit-transform: translate(200%, 200%);
  transform: translate(200%, 200%);
  background-color: white;
  border-radius: 100%;
  position: fixed;
  cursor: pointer;
  color: white;
  bottom: 20px;
  right: 20px;
  color: #222;
  height: 64px;
  width: 64px;
  z-index: 9;
}
#contactForm .error-tab {
  display: none;
}
#contactForm.error .error-tab {
  display: block;
}
#contactForm .success-tab {
  display: none;
}
#contactForm.success .success-tab {
  display: block;
}
#contactForm .form-tab {
  display: none;
}
#contactForm.form .form-tab {
  display: block;
}
#contactForm .contactIcon {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: opacity 200ms 300ms;
  position: absolute;
  font-size: 28px;
  left: 50%;
  top: 50%;
}
#contactForm .hide {
  transition: opacity 200ms 600ms, height 0s 600ms, width 0s 600ms, padding 0s 600ms;
  text-align: center;
  position: absolute;
  overflow: hidden;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  color: #999;
  z-index: 2;
  padding: 0;
  height: 0;
  width: 0;
  right: 0;
  top: 0;
}
#contactForm form {
  transition: opacity 200ms 600ms, height 0s 600ms, width 0s 600ms, padding 0s 600ms;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  height: 0;
  width: 0;
}
#contactForm form h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 24px;
}
#contactForm.open {
  -webkit-animation: showContactForm 300ms linear 300ms forwards;
  animation: showContactForm 300ms linear 300ms forwards;
  -webkit-transform: translate(50%, 50%) !important;
  transform: translate(50%, 50%) !important;
  cursor: default;
  max-width: 90%;
  bottom: 50%;
  right: 50%;
}
#contactForm.open .contactIcon {
  opacity: 0;
}
#contactForm.open form {
  overflow: auto;
  padding: 20px;
  height: 100%;
  width: 100%;
  opacity: 1;
}
#contactForm.open .hide {
  padding: 15px;
  height: auto;
  width: 20px;
  opacity: 1;
}
#contactForm.close {
  -webkit-animation: hideContactForm 300ms linear 200ms forwards;
  animation: hideContactForm 300ms linear 200ms forwards;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  transition-delay: 500ms;
  border-radius: 4px;
  height: 580px;
  width: 500px;
  bottom: 20px;
  right: 20px;
}
#contactForm.close form {
  transition: opacity 200ms, height 0s 300ms, width 0s 300ms, padding 0s 300ms;
  padding: 0;
  opacity: 0;
  height: 0;
  width: 0;
}
#contactForm.close .hide {
  transition: opacity 200ms, height 0s 300ms, width 0s 300ms, padding 0s 300ms;
  padding: 0;
  opacity: 0;
  height: 0;
  width: 0;
}
#contactForm.close .contactIcon {
  transition: opacity 300ms 300ms;
  opacity: 1;
}
#contactForm::after {
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  display: none;
  height: 100%;
  width: 100%;
  content: '';
  left: 0;
  top: 0;
}
#contactForm .loader {
  z-index: 1;
}
#contactForm.loading::after {
  display: block;
}
#contactForm .result {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
}
#contactForm .result h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
}

#cookies {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background-color: rgba(246, 249, 252, 0.9);
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 4px;
  position: fixed;
  font-size: 15px;
  color: #424770;
  margin: 0 auto;
  display: none;
  bottom: 10px;
  left: 10px;
  z-index: 999;
}
#cookies span {
  padding: 8px 5px 8px 15px;
  box-sizing: border-box;
  display: inline-block;
}
#cookies span a {
  color: #1565c0;
}
#cookies .close {
  transition: color 150ms;
  display: inline-block;
  text-align: center;
  font-size: 30px;
  color: #8898aa;
  float: right;
  width: 40px;
}
#cookies .close:hover {
  color: #32325d;
}

.loader {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0 auto;
  width: 100px;
  left: 50%;
  top: 50%;
}
.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  margin: auto;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.path {
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
}

#prefooter {
  border-top: 1px solid #f0f0f0;
  background-color: #fbfbfb;
  padding: 16px;
}
#prefooter a {
  display: inline-block;
}
#prefooter img {
  max-width: 100%;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@-webkit-keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}
@media (max-width: 1360px) {
  #headLogo {
    margin-left: 15px;
  }
}
@media (max-width: 1024px) {
  #services .cols {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #services .cols .col:nth-child(3n) {
    padding-right: 50px;
  }

  #process .cols, #services .cols {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #process .cols .col, #services .cols .col {
    -webkit-flex-basis: calc((100% - 100px) / 2);
    flex-basis: calc((100% - 100px) / 2);
  }
  #process .cols .col:last-child, #process .cols .col:nth-child(2n), #services .cols .col:last-child, #services .cols .col:nth-child(2n) {
    padding-right: 0;
  }

  .technologies img, .technologies i {
    font-size: 56px;
    height: 56px;
  }
}
@media (max-width: 768px) {
  #portfolio .cols .col {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  #portfolio .cols .pf-info {
    -webkit-order: 2;
    order: 2;
  }
  #portfolio .cols .pf-info .middle {
    -webkit-transform: translate(0);
    transform: translate(0);
    box-sizing: border-box;
    text-align: center;
    padding: 40px 20px;
    position: static;
    width: 100%;
  }
  #portfolio .cols .pf-img {
    -webkit-order: 1;
    order: 1;
  }
}
@media (max-width: 600px) {
  @-webkit-keyframes showContactForm {
    0% {
      border-radius: 32px;
      height: 64px;
      width: 64px;
    }
    100% {
      border-radius: 0;
      height: 100%;
      width: 100%;
    }
  }
  @keyframes showContactForm {
    0% {
      border-radius: 32px;
      height: 64px;
      width: 64px;
    }
    100% {
      border-radius: 0;
      height: 100%;
      width: 100%;
    }
  }
  @-webkit-keyframes hideContactForm {
    0% {
      border-radius: 0;
      height: 100%;
      width: 100%;
    }
    100% {
      border-radius: 32px;
      height: 64px;
      width: 64px;
    }
  }
  @keyframes hideContactForm {
    0% {
      border-radius: 0;
      height: 100%;
      width: 100%;
    }
    100% {
      border-radius: 32px;
      height: 64px;
      width: 64px;
    }
  }
  #cookies {
    text-align: center;
    border-radius: 0;
    line-height: 1.2;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  #cookies span {
    max-width: calc(100% - 40px);
  }

  #contactForm.open {
    max-width: 100%;
  }
  #contactForm.close {
    border-radius: 0;
    height: 100%;
    width: 100%;
  }

  #head {
    text-align: center;
  }

  #headNav {
    display: none;
  }

  #home h1 {
    font-size: 32px;
  }
  #home h2 {
    width: calc(100% - 48px);
  }
  #home button {
    padding: 15px 20px;
    font-size: 15px;
  }

  #portfolio .cols .col.pf-info .middle h2 {
    font-size: 23px;
  }
  #portfolio .cols .col.pf-info .middle p {
    margin-bottom: 30px;
    max-width: 100%;
    font-size: 17px;
  }

  #services .cols .col {
    padding-bottom: 0 !important;
    padding-right: 0 !important;
  }

  #services .cols, #process .cols {
    display: block;
  }
  #services .cols .col, #process .cols .col {
    padding-right: 0 !important;
  }

  #technologies {
    text-align: center;
  }
  #technologies span {
    display: block;
    width: 100%;
  }
  #technologies span:nth-last-child(-n+3) {
    margin-bottom: 30px;
  }
  #technologies span:last-child {
    margin-bottom: 0;
  }
  #technologies img, #technologies i {
    margin-bottom: 30px;
  }
  #technologies img:last-child, #technologies i:last-child {
    margin-bottom: 0;
  }

  #foot {
    text-align: center;
    overflow: hidden;
  }
  #foot i {
    display: none;
  }
  #foot a, #foot span {
    margin-bottom: 20px;
    display: block;
  }
  #foot a:last-child, #foot span:last-child {
    margin-bottom: 0;
  }
  #foot div {
    float: none !important;
  }
}

/*# sourceMappingURL=master.css.map */
