/** -------------------------------------
    Web Front Software Ltd. (C) - 2019
          All right reserved
---------------------------------------- */
.grid {
  display: flex;
  position: relative; }
  .grid.center {
    align-items: center; }
  .grid.flipped {
    flex-direction: row-reverse; }
  .grid.columns {
    flex-direction: column; }
  .grid.rows {
    flex-direction: row; }
  .grid:before {
    display: none;
    content: 'base';
    color: green;
    position: absolute;
    font-weight: bold;
    font-size: 16px;
    top: -16px;
    left: 0; }
  @media (min-width: 48em) {
    .grid:before {
      content: 'mq-small'; }
    .grid.columns-s {
      flex-direction: column; }
    .grid.rows-s {
      flex-direction: row; }
    .grid.flipped-s {
      flex-direction: row-reverse; } }
  @media (min-width: 64em) {
    .grid:before {
      content: 'mq-medium'; }
    .grid.columns-m {
      flex-direction: column; }
    .grid.rows-m {
      flex-direction: row; }
    .grid.flipped-m {
      flex-direction: row-reverse; } }
  @media (min-width: 85.375em) {
    .grid:before {
      content: 'mq-large'; }
    .grid.columns-l {
      flex-direction: column; }
    .grid.rows-l {
      flex-direction: row; } }
  @media (min-width: 120em) {
    .grid:before {
      content: 'mq-xlarge'; }
    .grid.columns-xl {
      flex-direction: column; }
    .grid.rows-xl {
      flex-direction: row; } }
  @media (min-width: 160em) {
    .grid:before {
      content: 'mq-xxlarge'; }
    .grid.columns-xl {
      flex-direction: column; }
    .grid.rows-xl {
      flex-direction: row; } }
  .grid .col {
    flex: 1; }

.display {
  display: flex; }

.display-small {
  display: none; }

@media (min-width: 48em) {
  .display {
    display: none; }

  .display-small {
    display: flex; } }
html {
  overflow-x: hidden; }

body {
  font-family: "NunitoSans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1em;
  line-height: 1.5;
  background-color: #f4f5f8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden; }
  body.open {
    width: 100vw;
    height: 100vh;
    overflow: hidden; }
  @media (min-width: 64em) {
    body {
      font-size: 1.2em; } }
  @media (min-width: 85.375em) {
    body {
      font-size: 1.3em; } }
  @media (min-width: 120em) {
    body {
      font-size: 1.4em; } }
  @media (min-width: 160em) {
    body {
      font-size: 1.6em; } }

.wf-header {
  background-color: #0000FF;
  overflow: hidden; }
  .wf-header h1, .wf-header h2, .wf-header h3 {
    color: #3F4658; }
  .wf-header-container {
    height: 100%;
    margin: 0 4%;
    margin-bottom: 8%; }
    @media (min-width: 48em) {
      .wf-header-container {
        margin-bottom: 0; } }
    @media (min-width: 64em) {
      .wf-header-container {
        margin: 0 8%; } }
    @media (min-width: 85.375em) {
      .wf-header-container {
        margin: 0 12%; } }
    @media (min-width: 120em) {
      .wf-header-container {
        margin: 0 16%; } }
    @media (min-width: 160em) {
      .wf-header-container {
        margin: 0 20%; } }
    .wf-header-container-nav {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 0 2%; }
      @media (min-width: 48em) {
        .wf-header-container-nav {
          padding: 0; } }
      .wf-header-container-nav nav.desktop {
        display: none;
        position: relative;
        z-index: 9999; }
        @media (min-width: 48em) {
          .wf-header-container-nav nav.desktop {
            display: flex; } }
        .wf-header-container-nav nav.desktop a {
          display: inline-block;
          padding: 5px 10px;
          text-decoration: none;
          color: white;
          transition: all 300ms;
          background: transparent;
          border-radius: 1em;
          font-weight: bold;
          margin: 0 0.2em; }
          .wf-header-container-nav nav.desktop a.active, .wf-header-container-nav nav.desktop a:hover {
            text-decoration: none;
            color: white;
            transition: all 300ms;
            background: white;
            color: #0000FF;
            border: none;
            font-size: 1em; }
      @media (min-width: 48em) {
        .wf-header-container-nav-mob {
          display: none; } }
      .wf-header-container-nav-mob ul {
        list-style: none;
        margin: 0;
        padding: 0; }
        .wf-header-container-nav-mob ul li {
          cursor: pointer;
          padding: 6px 20px;
          font-size: 48px; }
      .wf-header-container-nav-mob .menu-toggle {
        position: relative;
        background-color: transparent;
        transition: opacity 0.2s ease-out;
        z-index: 999999;
        font-size: 1.5em;
        padding: 1em;
        margin-right: -1.6em;
        color: white;
        transition: color 300ms; }
        .wf-header-container-nav-mob .menu-toggle svg {
          width: 2em; }
          .wf-header-container-nav-mob .menu-toggle svg .bar {
            transition: transform 0.4s ease-in-out, opacity 0.2s ease-in-out;
            transform-origin: 20px 10px; }
          .wf-header-container-nav-mob .menu-toggle svg .bar:nth-of-type(1) {
            transform-origin: 20px 10px; }
          .wf-header-container-nav-mob .menu-toggle svg .bar:nth-of-type(3) {
            transform-origin: 20px 20px; }
        .open .wf-header-container-nav-mob .menu-toggle .bar {
          transform: rotate(-45deg) translateY(0) translateX(0); }
        .open .wf-header-container-nav-mob .menu-toggle .bar:nth-of-type(1) {
          transform: rotate(-45deg) translateY(0) translateX(0); }
        .open .wf-header-container-nav-mob .menu-toggle .bar:nth-of-type(2) {
          transform: translateX(100px);
          opacity: 0; }
        .open .wf-header-container-nav-mob .menu-toggle .bar:nth-of-type(3) {
          transform: rotate(45deg) translateY(0em) translateX(0em); }
      .wf-header-container-nav-mob > nav {
        z-index: 1;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        overflow: hidden;
        transition: all 30ms; }
        .wf-header-container-nav-mob > nav:before {
          content: '';
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          margin: auto;
          background: rgba(0, 0, 204, 0.98);
          width: 100%;
          height: 0;
          padding-bottom: 100%;
          border-radius: 100%;
          transform: scale(0.04), translateY(9999px);
          overflow: hidden; }
        .open .wf-header-container-nav-mob > nav {
          top: 0; }
          .open .wf-header-container-nav-mob > nav:before {
            animation: menu-animation 0.8s ease-out forwards; }
      .wf-header-container-nav-mob ul.menu {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
        backface-visibility: hidden;
        perspective: 1000;
        color: white; }
        .wf-header-container-nav-mob ul.menu li {
          opacity: 0;
          text-align: center;
          transform: translate3d(0, 36px, 0);
          color: white; }
          .wf-header-container-nav-mob ul.menu li a {
            color: white; }
          .open .wf-header-container-nav-mob ul.menu li {
            opacity: 1;
            transform: translate3d(0, 0, 0);
            transition: transform 0.2s ease-out, opacity 0.2s ease-out; }
            .open .wf-header-container-nav-mob ul.menu li:nth-child(1) {
              transition-delay: 0.75s; }
            .open .wf-header-container-nav-mob ul.menu li:nth-child(2) {
              transition-delay: 0.85s; }
            .open .wf-header-container-nav-mob ul.menu li:nth-child(3) {
              transition-delay: 0.95s; }
            .open .wf-header-container-nav-mob ul.menu li:nth-child(4) {
              transition-delay: 1.05s; }
    .wf-header-container-logo {
      margin: 1em 0;
      height: 2em;
      padding: 1em 0;
      position: relative;
      z-index: 999999; }
      @media (min-width: 48em) {
        .wf-header-container-logo {
          height: 2em; } }
      @media (min-width: 64em) {
        .wf-header-container-logo {
          height: 2em; } }
      @media (min-width: 85.375em) {
        .wf-header-container-logo {
          height: 2.2em; } }
      @media (min-width: 120em) {
        .wf-header-container-logo {
          height: 2.4em; } }
      @media (min-width: 160em) {
        .wf-header-container-logo {
          height: 2.6em; } }
    .wf-header-container-description h1, .wf-header-container-description p {
      color: #fdfdfd; }
    .wf-header-container-description h1 {
      letter-spacing: 1.9pt;
      font-weight: 400;
      font-size: 1.5em;
      line-height: 1.25em; }
      @media (min-width: 48em) {
        .wf-header-container-description h1 {
          font-size: 2em; } }
      @media (min-width: 120em) {
        .wf-header-container-description h1 {
          font-size: 2em; } }
      @media (min-width: 160em) {
        .wf-header-container-description h1 {
          font-size: 3em; } }
    @media (min-width: 48em) {
      .wf-header-container-description p {
        font-size: 1.2em; } }
    @media (min-width: 120em) {
      .wf-header-container-description p {
        font-size: 1.2em; } }
    @media (min-width: 160em) {
      .wf-header-container-description p {
        font-size: 1.3em; } }
    .wf-header-container-cover {
      max-height: 200px; }
      @media (min-width: 48em) {
        .wf-header-container-cover {
          max-height: 500px; } }
      @media (min-width: 64em) {
        .wf-header-container-cover {
          max-height: 450px; } }
      @media (min-width: 85.375em) {
        .wf-header-container-cover {
          max-height: 500px; } }
      @media (min-width: 85.375em) {
        .wf-header-container-cover {
          max-height: 550px; } }
      @media (min-width: 120em) {
        .wf-header-container-cover {
          max-height: 600px; } }
      @media (min-width: 160em) {
        .wf-header-container-cover {
          max-height: 700px; } }
      .wf-header-container-cover-image {
        transform: translate(60%, -5em) scale(2.5);
        transform: translate(83%, -4em) scale(2.5); }
        @media (min-width: 48em) {
          .wf-header-container-cover-image {
            transform: translate(0%, -4em) scale(1.2); } }
        @media (min-width: 64em) {
          .wf-header-container-cover-image {
            transform: translate(15%, -8vw) scale(1.3); } }
        @media (min-width: 85.375em) {
          .wf-header-container-cover-image {
            transform: translate(27%, -8vw) scale(1.4); } }
        @media (min-width: 120em) {
          .wf-header-container-cover-image {
            transform: translate(37%, -8vw) scale(1.4); } }
        @media (min-width: 160em) {
          .wf-header-container-cover-image {
            transform: translate(47%, -4vw) scale(1.4); } }
  .wf-header-footer {
    height: 10.3vw;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1439 110'%3E%3Cdefs%3E%3Cpath id='a' fill='%23f4f5f8' fill-rule='evenodd' d='M861 32c-83 8-106 43-193 41-85-3-96-36-228-48-81-7-159 20-259 20C92 45 34 21 0 21V0h1439v21c-54 0-157 36-313 36S988 20 861 32zm1439 0c-83 8-106 43-193 41-85-3-96-36-228-48-81-7-159 20-259 20-89 0-147-24-181-24V0h1439v21c-54 0-157 36-313 36s-138-37-265-25z'/%3E%3Cpath id='b' fill='%23f4f5f8' fill-rule='evenodd' d='M742 78c-96-5-136-24-232-24-105 0-84 0-233 24-94 15-262 9-277 9V0h1439v87c-111 0-229-33-304-33-149 0-120 36-393 24zm1439 0c-96-5-136-24-232-24-105 0-84 0-233 24-94 15-262 9-277 9V0h1439v87c-111 0-229-33-304-33-149 0-120 36-393 24z' opacity='.3' transform='translate(-1439)'/%3E%3Cpath id='c' fill='%23f4f5f8' fill-rule='evenodd' d='M742 78c-96-5-136-24-232-24-105 0-84 0-233 24-94 15-262 9-277 9V0h1439v87c-111 0-229-33-304-33-149 0-120 36-393 24zm1439 0c-96-5-136-24-232-24-105 0-84 0-233 24-94 15-262 9-277 9V0h1439v87c-111 0-229-33-304-33-149 0-120 36-393 24z' opacity='.5'/%3E%3C/defs%3E%3Cuse x='-781.82' xlink:href='%23a'%3E%3Canimate attributeName='x' dur='35s' from='0' repeatCount='indefinite' to='-1439'/%3E%3C/use%3E%3Cuse x='781.82' xlink:href='%23b'%3E%3Canimate attributeName='x' dur='35s' from='0' repeatCount='indefinite' to='1439'/%3E%3C/use%3E%3Cuse x='-273.64' xlink:href='%23c'%3E%3Canimate attributeName='x' dur='100s' from='0' repeatCount='indefinite' to='-1439'/%3E%3C/use%3E%3C/svg%3E") no-repeat top;
    background-size: cover;
    position: relative;
    margin-bottom: -2px;
    transform: rotate(180deg); }
.wf-body {
  height: 100%;
  margin: 0 4%; }
  @media (min-width: 64em) {
    .wf-body {
      margin: 0 8%; } }
  @media (min-width: 85.375em) {
    .wf-body {
      margin: 0 12%; } }
  @media (min-width: 120em) {
    .wf-body {
      margin: 0 16%; } }
  @media (min-width: 160em) {
    .wf-body {
      margin: 0 20%; } }
  .wf-body h2 {
    text-align: center;
    position: relative;
    padding: 0 4%;
    margin: 4% 0;
    font-weight: 400;
    color: #3F4658; }
    @media (min-width: 48em) {
      .wf-body h2 {
        padding: 0 16%;
        margin: 8% 0; } }
    .wf-body h2:after {
      display: flex;
      content: ' ';
      color: black;
      color: #3F4658;
      opacity: 0.05;
      text-align: center;
      align-content: center;
      justify-content: center;
      font-weight: bold;
      font-size: 4em;
      margin-top: -1.15em; }
  .wf-body-services {
    margin: 4em 0; }
    .wf-body-services h2:after {
      content: 'Services'; }
    .wf-body-services-items-item {
      margin-bottom: 2.5em; }
      @media (min-width: 48em) {
        .wf-body-services-items-item {
          background: white;
          padding: 4%;
          border-radius: 0.5em;
          text-align: center; }
          .wf-body-services-items-item:first-child {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0; }
          .wf-body-services-items-item.flipped {
            z-index: 99;
            box-shadow: 0px 0px 0.25em rgba(128, 128, 128, 0.1); }
          .wf-body-services-items-item:last-child {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0; } }
      .wf-body-services-items-item img {
        max-width: 50%;
        transform: scale(1.5, 1.5) translateX(-10vw);
        margin-right: 4%; }
        @media (min-width: 48em) {
          .wf-body-services-items-item img {
            max-width: 75%;
            transform: none;
            flex: auto !important;
            margin-right: 0; } }
      @media (min-width: 48em) {
        .wf-body-services-items-item.flipped {
          padding: 7% 4%; } }
      .wf-body-services-items-item.flipped img {
        margin-right: 0;
        transform: scale(1.5, 1.5) translateX(10vw);
        margin-left: 4%; }
        @media (min-width: 48em) {
          .wf-body-services-items-item.flipped img {
            transform: none;
            margin: 0;
            widows: 100%;
            margin-bottom: 8%; } }
      .wf-body-services-items-item h3 {
        color: #3F4658; }
      .wf-body-services-items-item p {
        color: #7F8699; }
  .wf-body-works h2:after {
    content: 'Work'; }
  .wf-body-works-extra-item, .wf-body-works-featured-item {
    flex-direction: column;
    background: white;
    margin-bottom: 1em;
    border-radius: 0.5em;
    overflow: hidden; }
    .wf-body-works-extra-item h3, .wf-body-works-featured-item h3 {
      color: #3F4658; }
    .wf-body-works-extra-item p, .wf-body-works-featured-item p {
      color: #7F8699; }
    .wf-body-works-extra-item img, .wf-body-works-featured-item img {
      width: 100%; }
    .wf-body-works-extra-item div, .wf-body-works-featured-item div {
      padding: 0 1em; }
  @media (min-width: 48em) {
    .wf-body-works-featured-item {
      margin-bottom: 3em;
      flex-direction: row; }
      .wf-body-works-featured-item .col:first-child {
        width: 40%; }
      .wf-body-works-featured-item .col:last-child {
        padding: 1em 8%; } }
  .wf-body-works-extra {
    min-height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: -0.5em;
    padding-bottom: 4em; }
    .wf-body-works-extra-item {
      flex: 2;
      display: flex;
      flex-basis: calc(50% - 32px);
      justify-content: center;
      flex-direction: column;
      margin: 0.5em;
      border-radius: 0.5em; }
      @media (min-width: 48em) {
        .wf-body-works-extra-item {
          flex-basis: calc(25% - 32px); } }
  .wf-body-reviews {
    margin: 4em 0;
    padding-bottom: 4%; }
    .wf-body-reviews h2:after {
      content: 'Reviews'; }
    .wf-body-reviews-widget-left, .wf-body-reviews-widget-right {
      display: flex;
      align-items: center;
      padding: 0 0.5em 0 0.5em;
      cursor: pointer;
      font-size: 4em;
      font-weight: 100;
      opacity: 0.5; }
    .wf-body-reviews-widget-left {
      margin-left: -0.5em; }
    .wf-body-reviews-widget-right {
      margin-right: -0.5em; }
    .wf-body-reviews-widget-body {
      flex-direction: row; }
      .wf-body-reviews-widget-body-item {
        flex-direction: column;
        display: none; }
        @media (min-width: 48em) {
          .wf-body-reviews-widget-body-item {
            background: white;
            padding: 2% 4%;
            border-radius: 0.5em; } }
        .wf-body-reviews-widget-body-item img {
          border-radius: 50%; }
          @media (min-width: 48em) {
            .wf-body-reviews-widget-body-item img {
              margin: 4%;
              margin-left: 0;
              flex: 0 !important; } }
        .wf-body-reviews-widget-body-item h3 {
          color: #3F4658; }
          .wf-body-reviews-widget-body-item h3 span {
            border: 2px solid silver;
            color: silver;
            padding: 5px 10px;
            font-size: 0.75em;
            font-weight: 400;
            margin-left: 1em; }
        .wf-body-reviews-widget-body-item p {
          color: #7F8699;
          position: relative; }
          .wf-body-reviews-widget-body-item p i {
            opacity: 0.5;
            white-space: nowrap; }
        .wf-body-reviews-widget-body-item div > h4 {
          color: #ffb800; }
        .wf-body-reviews-widget-body-item.show {
          display: flex; }
    .wf-body-reviews-footer {
      margin-top: 2em;
      text-align: center;
      display: flex;
      justify-content: center; }
      .wf-body-reviews-footer > div {
        margin: 0.5em;
        width: 0.3em;
        height: 0.3em;
        border: 0.1em solid #3F4658;
        opacity: 0.25;
        border-radius: 50%;
        transition: background-color 300ms; }
        .wf-body-reviews-footer > div.active {
          opacity: 0.5;
          background: #3F4658; }
  .wf-body-contact {
    background: white;
    color: #3F4658;
    padding: 8% 4% 8% 4%; }
    @media (min-width: 64em) {
      .wf-body-contact {
        padding: 4% 8%; } }
    @media (min-width: 85.375em) {
      .wf-body-contact {
        padding: 4% 12%; } }
    @media (min-width: 120em) {
      .wf-body-contact {
        padding: 2% 16%; } }
    @media (min-width: 160em) {
      .wf-body-contact {
        padding: 2% 20%; } }
    .wf-body-contact form {
      padding-top: 4%; }
      .wf-body-contact form input,
      .wf-body-contact form textarea {
        width: 92%;
        padding: 1em;
        border-radius: 0.5em;
        border: none;
        background-color: #e8e8e8;
        border: 2px solid transparent;
        box-shadow: 0px 0px 5px #FFFFFF;
        transform: all 300ms;
        transition: all 300ms;
        font-family: "NunitoSans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        font-size: 1em;
        line-height: 1.5; }
        .wf-body-contact form input:focus, .wf-body-contact form input:active,
        .wf-body-contact form textarea:focus,
        .wf-body-contact form textarea:active {
          outline: none;
          box-shadow: 0px 0px 5px #0000ff75;
          border: 2px solid #0000FF; }
      .wf-body-contact form input {
        margin-bottom: 1em; }
      @media (min-width: 48em) {
        .wf-body-contact form textarea {
          height: 4em; } }
      @media (min-width: 85.375em) {
        .wf-body-contact form textarea {
          height: 6em; } }
    .wf-body-contact p {
      color: #7F8699; }
.wf-footer {
  background: #0000FF url(/assets/footer-hero.svg) no-repeat bottom center;
  background-size: contain;
  overflow: hidden; }
  @media (min-width: 48em) {
    .wf-footer {
      background-size: 50%;
      background-position: bottom right; } }
  .wf-footer-header {
    height: 17.3vw;
    background: url(/assets/footer-header.svg) no-repeat top;
    background-size: cover;
    position: relative; }
    .wf-footer-header.top {
      height: 17.3vw;
      background: url(/assets/contact-header.svg) no-repeat top;
      background-color: #f4f5f8;
      background-size: cover; }
  .wf-footer-body {
    text-align: center;
    margin: 0 0 40% 0; }
    @media (min-width: 48em) {
      .wf-footer-body {
        width: 24em;
        margin: 8% 0 4% 0; } }
    @media (min-width: 64em) {
      .wf-footer-body {
        margin: 8% 4% 4% 4%; } }
    @media (min-width: 85.375em) {
      .wf-footer-body {
        margin: 4% 8% 4% 8%; } }
    @media (min-width: 120em) {
      .wf-footer-body {
        margin: 4% 12% 4% 12%; } }
    @media (min-width: 160em) {
      .wf-footer-body {
        margin: 4% 12% 4% 12%; } }
    .wf-footer-body-image {
      width: 25%;
      margin-bottom: 4%; }
    .wf-footer-body-social {
      margin: 0 15%; }
      .wf-footer-body-social a img {
        margin: 0 1em;
        transition: transform 300ms; }
        .wf-footer-body-social a img:hover {
          transform: scale(1.2, 1.2); }
  .wf-footer-clouds {
    margin-top: 32vw;
    margin-bottom: -50vw; }
    @media (min-width: 48em) {
      .wf-footer-clouds {
        margin-top: -10vw;
        margin-bottom: -20vw; } }
  .wf-footer-text {
    padding: 1em;
    text-align: center;
    color: white;
    font-size: 0.625em; }
  .wf-footer .wf-header-container-cover {
    transform: translate(60%, -1em) scale(2.5); }
    @media (min-width: 48em) {
      .wf-footer .wf-header-container-cover {
        transform: translate(15%, -1em) scale(1.2); } }

button {
  margin-top: 1em;
  background-color: #0000FF;
  border-radius: 28px;
  border: 2px solid white;
  padding: 1.25em 2.5em;
  color: white;
  text-transform: uppercase;
  font-size: 0.6em;
  margin-bottom: 1em;
  font-weight: bold;
  cursor: pointer; }
  button.disabled {
    cursor: not-allowed;
    border-color: #828282;
    background-color: white;
    opacity: 0.5;
    color: #424242; }
  button > img {
    height: 1em;
    width: 1em !important;
    display: inline-block;
    transform: scale(2) translateX(-4px) translateY(1px); }

@keyframes menu-animation {
  0% {
    opacity: 0;
    transform: scale(0.04) translateY(300%); }
  40% {
    transform: scale(0.04) translateY(0);
    transition: ease-out; }
  40% {
    transform: scale(0.04) translateY(0); }
  60% {
    opacity: 1;
    transform: scale(0.02) translateY(0px); }
  61% {
    transform: scale(0.04); }
  99.9% {
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%; }
  100% {
    transform: scale(2);
    height: 100%;
    padding-bottom: 0;
    border-radius: 0; } }
h1, h2, h3, h4, h5 {
  outline: none; }
