@import "mixins.less";

@grey: #b3b3b3;
@darkgrey: #808080;
@main: #c9124f;
@maindark: #5C0C27;
@secondary: #839088;

.font(@weight: 400) {
  font-family: 'Inter', sans-serif;
  font-weight: @weight;
}

.typography() {
  & h1 {
    color: @main;
    .font(900);
    font-size: 50px;
    margin-top: 100px;
    margin-bottom: 50px;
  }

  & h2 {
    color: darken(@grey, 30%);
    .font(900);
    font-size: 30px;
    margin-top: 50px;
  }

  & h3 {
    color: black;
    .font(900);
    font-size: 22px;
    margin-top: 40px;
  }

  & h4 {
    color: @main;
    .font(900);
    font-size: 22px;
    margin-top: 40px;
  }

  & p {
    .font(400);
    font-size: 17px;
    line-height: 23px;

    & strong {
      .font(900);
    }

    & a {
      color: @main;
      text-decoration: none;
      position: relative;
      display: inline-block;
      padding-left: 5px;
      padding-right: 5px;
      .transition;

      &:hover {
        &::after {
          height: 2px;
        }
      }

      &::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 1px;
        background: @main;
        width: 100%;
        height: 1px;
        .transition;
      }
    }
  }

  & ul {
    margin: 30px 0;
    padding: 0 0 0 30px;
    list-style: none;

    & li {
      .font(400);
      font-size: 17px;
      line-height: 23px;
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;

      &::before {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        .circle(10px);
        background: @main;
      }
    }
  }
}

body,
html {
  margin: 0;
  padding: 0;
  .font;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width: 100vw;
  overflow-x: hidden;
  .customBarThinDark(white, @main, 4px);

  &.site.offline {
    & img.under {
      width: 400px;
      height: auto;
    }
    & h1 {
      color: @main;
      padding: 40px 0 40px;
    }
    & div.login {
      padding: 0;
      text-align: center;

      .btn-primary {
        background: @main;
      }
    }
  }

  & content {
    display: block;
    // padding-top: 100px;
    @media @mobile-p {
      padding-top: 250px;
    }

    & nav {
      max-width: 1024px;
      margin: 0 auto;
      margin-top: 80px;

      & ol {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;

        & li {
          padding-right: 30px;
          margin-right: 10px;
          background: url('../images/bread.png') right center no-repeat;
          background-size: contain;

          & a {
            color: @main;
            text-decoration: none;
          }

          &:last-child {
            padding-right: 0;
            margin-right: 0;
            background: none;
          }
        }
      }
    }

    & .com-content-article {
      max-width: 1024px;
      margin: 0 auto;
      .typography;

      & div.icons {
        display: none;
      }

      & div.fpe {
        float: left;
        margin: 22px 20px 0 0;

        & span {
          cursor: pointer;
          font-size: 25px;
          color: black;
          opacity: 0.5;
          .transition;

          &:hover {
            color: @main;
            opacity: 1;
          }
        }
      }
    }
  }

  &.locked {
    overflow-y: hidden;
  }

  & offcanvas {
    position: fixed;
    .transition(all 0.4s ease);
    background: darken(@grey, 10%);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: -100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;

    & .inner {
      // border: thin solid white;
      text-align: center;

      & .welcome {
        .font(900);
        font-size: 50px;
        color: white;
        margin-bottom: 40px;
        letter-spacing: 1px;
        @media @desktop {
          font-size: 45px;
        }
        @media @laptop {
          font-size: 40px;
          margin-bottom: 30px;
        }
        @media @ipad-l {
          font-size: 35px;
          margin-bottom: 23px;
        }
      }

      & .image {
        width: 250px;
        height: 250px;
        .radius(125px);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        .shadow(inset 0 0 10px #000000);
        margin: 0 auto 30px;
        @media @laptop {
          width: 200px;
          height: 200px;
          .radius(100px);
          margin: 0 auto 25px;
        }
      }

      & .name {
        .font(900);
        font-size: 30px;
        color: black;
        margin-bottom: 20px;
        @media @laptop {
          font-size: 28px;
        }
        @media @ipad-l {
          font-size: 26px;
        }
      }

      & .question {
        .font(900);
        font-size: 30px;
        color: white;
        margin-bottom: 40px;
        @media @laptop {
          font-size: 28px;
          margin-bottom: 30px;
        }
        @media @ipad-l {
          font-size: 24px;
          margin-bottom: 23px;
        }
      }

      & ul {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-bottom: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        @media @laptop {
          margin-bottom: 90px;
        }
        @media @mobile-p {
          flex-direction: column;
        }

        & li {
          &:last-child {
            & a {
              border: none;
            }
          }
        }

        & a {
          color: black;
          .font(400);
          font-size: 18px;
          line-height: 40px;
          text-decoration: none;
          .transition;
          padding: 0 20px;
          border-right: thin solid white;
          @media @laptop {
            font-size: 17px;
            line-height: 40px;
            padding: 0 17px;
          }
          @media @mobile-p {
            font-size: 18px;
            line-height: 40px;
            border: none;
          }

          &:hover {
            color: white;
          }
        }
      }
    }

    &.active {
      left: 0;
      .shadow;

      & menubutton {
        left: auto!important;
        right: 52px!important;

        &:hover {
          & donut {
            border: 2px solid @main;
            & .line {
              background: @main;

              &.center {
                display: none;
              }

              &.top, &.bottom {
                .origin(50%,50%);
                .rotate(45deg);
                margin-top: -2px;
                width: 70%;
              }
              &.bottom {
                .rotate(-45deg);
              }
            }
          }
        }

        & .label {
          &.label1 {
            display: block;
            color: black;
          }
          &.label2 {
            display: none;
          }
        }

        & donut {
          border: 2px solid black;

          & .line {
            background: black;

            &.center {
              display: none;
            }

            &.top, &.bottom {
              .origin(50%,50%);
              .rotate(45deg);
              margin-top: -2px;
            }
            &.bottom {
              .rotate(-45deg);
            }
          }
        }
      }
    }

    & menubutton {
      display: flex;
      align-items: center;
      position: absolute;
      top: 16px;
      left: calc(~"100vw + 40px");
      .noselect;
      cursor: pointer;
      .transition(all 0.4s ease);
      @media @laptop {
        top: 9px;
        left: calc(~"100vw + 10px");
      }
      @media @ipad-p {
        top: 20px;
        left: calc(~"100vw + 16px");
      }
      @media @mobile-p {
        top: 20px;
        left: calc(~"100vw + 20px");
      }

      &.minified {
        left: calc(~"100vw + 20px");
        @media @laptop {
          left: calc(~"100vw + 10px");
        }
        @media @ipad-p {
          left: calc(~"100vw + 16px");
        }
        @media @mobile-p {
          left: calc(~"100vw + 20px");
        }

        & .label {
          &.label2 {
            display: none;
          }
        }
      }

      & .label {
        .font(600);
        font-size: 18px;
        color: white;
        letter-spacing: 1px;
        @media @laptop {
          font-size: 15px;
        }
        @media @ipad-p {
          font-size: 18px;
        }
        @media @mobile-p {
          font-size: 18px;
        }

        &.label1 {
          display: none;
        }
      }

      &:hover {

        & donut {
          border-color: transparent;

          & .line {
            &.top, &.bottom {
              width: 50%;
              margin-top: -3px;
              .origin(0,50%);
              .rotate(45deg);
            }
            &.bottom {
              .rotate(-45deg);
              margin-top: -1px;
            }
          }
        }

      }

      & donut {
        display: block;
        flex: 0 0 40px;
        height: 40px;
        border: 2px solid white;
        .radius(50%);
        position: relative;
        margin: 0 8px;
        .transition;
        @media @laptop {
          .origin(50%,50%);
          .scale(0.8);
          margin: 0 5px;
        }
        @media @ipad-p {
          .scale(1);
          margin: 0 8px;
        }
        @media @mobile-p {
          .scale(1);
          margin: 0 8px;
        }

        & .line {
          width: 70%;
          height: 4px;
          background: white;
          position: absolute;
          top: 50%;
          left: 15%;
          margin-top: -2px;
          .radius(2px);
          .transition;

          &.top {
            margin-top: -9px;
          }
          &.bottom {
            margin-top: 5px;
          }
        }
      }

    }

  }

  & calendar {
    display: block;
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 200px;
    .noselect;
    overflow: hidden;
    .transition(all 0.4s ease 0.5s);
    z-index: 5000;
    @media @laptop {
      right: 20px;
      bottom: 20px;
      width: 170px;
    }
    @media @ipad-p {
      bottom: 220px;
    }
    @media @mobile-p {
      display: none;
    }

    &.hidden {
      .transition(all 0.2s ease);
      right: -200px;
    }

    & h1 {
      padding-right: 5px;
      margin: 0;
      text-align: center;
      position: absolute;
      top: 38px;
      left: 0;
      width: 100%;
      .font(200);
      color: white;
      font-size: 18px;
      @media @laptop {
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: 300;
        top: 33px;
      }
    }

    & .arrow {
      position: absolute;
      top: 75px;
      left: 20px;
      width: 26px;
      height: 26px;
      // border: thin solid black;
      cursor: pointer;
      .origin(50%,50%);
      @media @laptop {
        top: 64px;
      }

      &.arrow-right {
        left: auto;
        right: 25px;
        .rotate(180deg);
        top: 78px;
        @media @laptop {
          top: 67px;
        }
      }

      &::before, &::after {
        content: '';
        position: absolute;
        width: calc(~"50% + 2px");
        height: 4px;
        left: calc(~"50% - 4px");
        top: 50%;
        margin-top: -2px;
        margin-left: -2px;
        background: @main;
        .origin(0,50%);
        .rotate(45deg);
      }
      &::after {
        .rotate(-45deg);
        margin-top: 0;
      }
    }

    & .deadline {
      position: absolute;
      top: 78px;
      left: 0;
      width: 100%;
      text-align: center;
      padding: 0 15px 0 10px;
      @media @laptop {
        top: 67px;
      }

      &.active {
        & .date, & .description {
          opacity: 1;
          // .translate(0,0,0);
          .scale(1,1);
          .transition(all 0.5s ease 0.2s);
        }
      }

      & .date {
        text-align: center;
        .font(700);
        font-size: 22px;
        margin-bottom: 4px;
        opacity: 0;
        // .translate(0,30px,0);
        .scale(0,1);
        .transition(all 0.3s ease);
        @media @laptop {
          font-size: 19px;
        }
      }

      & .description {
        font-size: 14px;
        line-height: 18px;
        opacity: 0;
        .scale(0,1);
        .transition(all 0.3s ease);
        display: flex;
        align-items: center;
        justify-content: center;
        @media @laptop {
          font-size: 12px;
          line-height: 15px;
        }
      }
    }

    & img {
      width: 100%;
      height: auto;
    }

    & .deadlines-edit-button {
      position: absolute;
      cursor: pointer;
      top: 38px;
      right: 15px;
      color: white;
      &:hover {
        color: black;
      }
    }
  }

  & div.stage {
    position: relative;
    width: 100vw;
    height: 90vh;
    .noselect;
    overflow: hidden;
    @media @desktop {
      height: 85vh;
      margin-top: 5vh;
    }
    @media @laptop {
      height: 90vh;
      margin-top: 0;
    }
    @media @ipad-p {
      height: 80vh;
    }
    @media @mobile-p {
      height: 70vh;
    }

    & .solutions {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      @media @laptop {
        height: 85vh;
        top: -5vh;
      }
      @media @ipad-p {
        height: 100vh;
      }
      @media @mobile-p {
        height: 88vh;
      }

      & .solution {
        position: absolute;
        width: 50vw;
        height: 50vh;
        // border: thin solid grey;
        display: flex;
        align-items: center;
        justify-content: center;
        @media @ipad-p {
          align-items: flex-end;
          justify-content: flex-start;
          width: 50%;
          height: 50%;
          padding: 100px 30px;
        }
        @media @mobile-p {
          height: auto;
          width: 50%;
          display: block;
        }

        & .line {
          position: absolute;
          width: 15%;
          height: 3px;
          background: @main;
          @media @ipad-p {
            width: 10%;
          }

          &::before, &::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 20px;
            height: 3px;
            background: @main;
            .origin(0,50%);
            .rotate(45deg);
            margin-top: -2px;
          }
          &::after {
            .rotate(-45deg);
          }
        }

        &.solution1 {
          top: 0;
          left: 0;
          @media @mobile-p {
            top: 214px;
            left: -14px;
          }

          & .line {
            left: 60%;
            top: 65%;
            .origin(0%,50%);
            .rotate(30deg);
            @media @ipad-p {
              left: 45%;
              top: 75%;
            }
            @media @mobile-p {
              .rotate(42deg);
              left: auto;
              right: 46px;
              top: auto;
              bottom: -15px;
            }
          }
        }
        &.solution2 {
          top: 0;
          left: 50vw;
          @media @ipad-p {
            justify-content: flex-end;
          }
          @media @mobile-p {
            top: 242px;
            left: auto;
            right: -44px;
          }

          & .line {
            right: 60%;
            top: 65%;
            @media @ipad-p {
              right: 45%;
              top: 75%;
            }
            @media @mobile-p {
              right: auto;
              top: auto;
              left: 30px;
              bottom: -16px;
              .rotate(-48deg);
            }
            .origin(100%,50%);
            .rotate(-30deg);
            &::before, &::after {
              left: auto;
              right: 0;
              .origin(100%,50%);
            }
          }
        }
        &.solution3 {
          top: 50vh;
          left: 0;
          @media @ipad-p {
            top: 50%;
            align-items: flex-start;
          }
          @media @mobile-p {
            top: auto;
            bottom: 22%;
          }

          & .line {
            left: 60%;
            bottom: 65%;
            .origin(0%,50%);
            .rotate(-20deg);
            @media @ipad-p {
              left: 45%;
              bottom: 75%;
            }
            @media @mobile-p {
              .rotate(-57deg);
              left: auto;
              bottom: auto;
              right: 36px;
              top: -13px;
            }
          }
          & .inner {
            margin-top: 0;
            margin-bottom: 50px;
          }
        }
        &.solution4 {
          top: 50vh;
          left: 50vw;
          @media @ipad-p {
            top: 50%;
            align-items: flex-start;
            justify-content: flex-end;
          }
          @media @mobile-p {
            top: auto;
            bottom: 22%;
          }

          & .line {
            right: 60%;
            bottom: 65%;
            .origin(100%,50%);
            .rotate(30deg);
            @media @ipad-p {
              right: 45%;
              bottom: 75%;
            }
            @media @mobile-p {
              right: auto;
              bottom: auto;
              top: -21px;
              left: 51px;
              .rotate(43deg);
            }

            &::before, &::after {
              left: auto;
              right: 0;
              .origin(100%,50%);
            }
          }
          & .inner {
            margin-top: 0;
            margin-bottom: 50px;
          }
        }

        & .inner {
          text-align: center;
          text-decoration: none;
          max-width: 50%;
          @media @desktop {
            width: 40%;
          }
          @media @laptop {
            margin-top: 50px;
          }
          @media @mobile-p {
            width: 100%;
          }

          & .title {
            color: @main;
            .font(800);
            font-size: 35px;
            text-shadow: 100px 100px 50px rgba(0,0,0,0.2);
            @media @desktop {
              font-size: 32px;
            }
            @media @laptop {
              font-size: 28px;
            }
            @media @mobile-p {
              display: none;
            }

            & span {
              color: @darkgrey;
            }
          }

          & .subtitle {
            font-size: 25px;
            color: black;
            @media @desktop {
              font-size: 22px;
            }
            @media @laptop {
              font-size: 18px;
            }
            @media @mobile-p {
              font-weight: 900;
              font-size: 15px;
            }
          }
        }
      }
    }

    & .knot {
      position: absolute;
      top: 20%;
      left: 0;
      width: 100vw;
      height: 80%;
      background: url('../images/mr-knot.png') center top no-repeat;
      background-size: auto 90%;
      @media @laptop {
        top: 20%;
        height: 80%;
      }
      @media @ipad-p {
        top: 25%;
        height: 75%;
      }
      @media @mobile-p {
        top: 32%;
        height: 62%;
      }

      & .problem {
        position: absolute;
        top: 0;
        left: 50%;
        .font(600);
        font-size: 40px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: -60px 0 0 -30px;
        text-shadow: 100px 100px 30px rgba(0,0,0,0.2);
        @media @desktop {
          font-size: 35px;
          margin: -50px 0 0 -30px;
        }
        @media @laptop {
          font-size: 30px;
          margin: -40px 0 0 -22px;
        }
        @media @mobile-p {
          font-size: 25px;
          margin-top: -80px;
        }

        &::before {
          content: '';
          .decorCircle;
          background: @main;
          margin-right: 20px;
          display: block;
          .shadow(100px 100px 30px 10px rgba(0,0,0,0.15));
          @media @laptop {
            margin-right: 10px;
          }
        }
      }
    }
  }

  & logo {
    display: block;
    position: absolute;
    top: 90px;
    left: 40px;
    .transition(all 0.4s ease);
    z-index: 10001;
    @media @desktop {
      top: 100px;
    }
    @media @laptop {
      top: 70px;
      left: 20px;
    }
    @media @ipad-p {
      top: 105px;
      left: 30px;
    }
    @media @mobile-p {
      top: 110px;
      left: 40px;
    }

    &.hidden {
      left: -250px;
    }

    & a {
      color: black;
      text-decoration: none;

      & img {
        width: 100px;
        height: auto;
        @media @desktop {
          width: 90px;
        }
        @media @laptop {
          width: 80px;
        }
        @media @ipad-p {
          position: absolute;
          top: 12px;
          left: 0;
        }
        @media @mobile-p {
          width: 100px;
        }
      }

      & h1 {
        .font(400);
        font-size: 18px;
        margin: 15px 0 10px;
        @media @desktop {
          font-size: 17px;
        }
        @media @laptop {
          font-size: 15px;
          margin: 10px 0 10px;
        }
        @media @ipad-p {
          margin-left: 100px;
        }
        @media @mobile-p {
          font-size: 18px;
          margin: 15px 0 10px;
        }

      }

      & h2 {
        .font(400);
        font-size: 15px;
        margin: 0;
        color: @main;
        @media @desktop {
          font-size: 14px;
        }
        @media @laptop {
          font-size: 12px;
        }
        @media @ipad-p {
          margin-left: 100px;
        }
        @media @mobile-p {
          font-size: 15px;
        }
      }
    }

  }

  & .clock-widget {
    position: fixed;
    top: 10px;
    right: 130px;
    width: 100px;
    height: 100px;
    background: url('../images/clock.png') center center no-repeat;
    background-size: contain;
    z-index: 10000;
    @media @desktop {
      width: 95px;
      height: 95px;
      right: 100px;
    }
    @media @laptop {
      width: 80px;
      height: 80px;
      right: 50px;
    }
    @media @ipad-p {
      top: 67px;
    }
    @media @ipad-l {
      top: 40px;
    }
    @media @mobile-p {
      top: 66px;
      right: 35px;
    }

    & .hands {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('../images/hours.png') center center no-repeat;
      background-size: contain;

      &.minutes {
        background: url('../images/minutes.png') center center no-repeat;
        background-size: contain;
      }
    }
  }

  & .perma-bar {
    position: fixed;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    padding-bottom: 20px;
    background-image: url('../images/perma.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    transition: all 0.4s ease;
    @media @laptop {
      height: 60px;
      padding-bottom: 10px;
    }
    @media @ipad-p {
      height: 100px;
      background-size: cover;
      justify-content: flex-end;
      align-items: flex-start;
    }
    @media @mobile-p {
      height: 100px;
      background-size: cover;
      justify-content: flex-end;
      align-items: flex-start;
    }
    @media @mobile-l {
      justify-content: flex-end;
      align-items: flex-start;
    }

    &.fixed {
      background-color: black;
      background-position: center -100px;
      padding-bottom: 0;
      height: 70px;
      @media @laptop {
        height: 56px;
      }
      @media @ipad-p {
        height: 90px;
      }
      @media @mobile-p {
        height: 100px;
      }

      & .left-logo {
        .transition(all 0.4s ease 0.4s);
        left: 68px;
        @media @laptop {
          left: 50px;
        }
        @media @ipad-p {
          left: 61px;
          top: 11px;
        }
        @media @mobile-p {
          left: 68px;
        }
      }
    }

    & .left-logo {
      position: absolute;
      top: 0;
      left: -300px;
      .transition(all 0.4s ease);
      @media @mobile-p {
        top: 5px;
      }

      & a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        height: 70px;
        @media @laptop {
          height: 57px;
        }
        @media @mobile-p {
          height: 70px;
        }

        & img {
          height: 50px;
          margin-right: 20px;
          margin-left: 20px;
          @media @laptop {
            height: 36px;
          }
          @media @ipad-p {
            height: 50px;
          }
          @media @mobile-p {
            height: 50px;
          }
        }

        & h1 {
          .font(400);
          font-size: 16px;
          margin: 0;
          @media @laptop {
            font-size: 14px;
          }
          @media @ipad-p {
            display: none;
          }
          @media @mobile-p {
            display: none;
          }

          & span {
            .font(400);
            font-size: 15px;
            color: @main;
          }
        }

      }
    }

    & .contact {
      flex: 0 0 60vw;
      display: flex;
      align-items: center;
      justify-content: center;
      @media @ipad-p {
        padding-top: 16px;
      }
      @media @ipad-l {
        padding-left: 200px;
        padding-top: 2px;
      }
      @media @mobile-p {
        padding-top: 18px;
      }

      & a {
        display: flex;
        align-items: center;
        color: white;
        .font(500);
        font-size: 15px;
        text-decoration: none;
        margin-right: 30px;
        white-space: nowrap;
        // border: thin solid white;
        padding: 8px 15px;
        .transition(all 0.6s ease);
        .radius(10px);
        @media @laptop {
          font-size: 12px;
          margin-right: 10px;
        }
        @media @ipad-p {
          font-size: 14px;
          margin-right: 0;
        }
        @media @mobile-p {
          margin-right: 0;
        }
        @media @mobile-l {
          margin-right: 0;
        }

        & span {
          @media @mobile {
            display: none;
          }
        }

        &:hover {
          background: darken(@main, 10%);
          @media @mobile {
            background: @main;
          }

          &::before {
            .scale(1.1);
            @media @mobile {
              .scale(1);
            }
          }
        }

        &::before {
          content: '';
          display: block;
          width: 30px;
          height: 30px;
          margin-right: 15px;
          background-image: url('../images/icons.png');
          background-repeat: no-repeat;
          background-size: 30px auto;
          background-position: center top;
          .origin(50%,50%);
          .transition;
          @media @laptop {
            width: 20px;
            height: 20px;
            background-size: 20px auto;
          }
          @media @ipad-p {
            margin-right: 5px;
          }
          @media @mobile-p {
            margin-right: 0;
            width: 25px;
            height: 25px;
            background-size: 25px auto;
          }
          @media @mobile-l {
            margin-right: 0;
            width: 25px;
            height: 25px;
            background-size: 25px auto;
          }
        }

        &.email {
          & a {
            margin-right: 0;
            padding: 8px 0;

            &::before {
              display: none;
            }
          }
          &::before {
            background-position: center -30px;
            @media @laptop {
              background-position: center -20px;
            }
            @media @mobile-p {
              background-position: center -25px;
            }
            @media @mobile-l {
              background-position: center -25px;
            }
          }
        }

        &.facebook {
          &::before {
            background-position: center -90px;
            @media @laptop {
              background-position: center -60px;
            }
            @media @mobile-p {
              background-position: center -75px;
            }
            @media @mobile-l {
              background-position: center -75px;
            }
          }
        }
        &.maps {
          &::before {
            background-position: center -60px;
            @media @laptop {
              background-position: center -40px;
            }
            @media @mobile-p {
              background-position: center -50px;
            }
            @media @mobile-l {
              background-position: center -50px;
            }
          }
        }
      }
    }
  }

  & .store-status {
    position: absolute;
    z-index: 1000;
    top: -300px;
    right: 80px;
    width: 200px;
    height: 200px;
    background: url('../images/mr-accounting-western-union-paylink.png') center top no-repeat;
    background-size: contain;
    .noselect;
    .origin(50%,0);
    margin-top: 50px;
    @media @desktop {
      width: 180px;
      height: 180px;
      right: 60px;
    }
    @media @laptop {
      width: 150px;
      height: 150px;
      right: 15px;
    }
    @media @ipad-p {
      margin-top: 110px;
    }
    @media @ipad-l {
      margin-top: 80px;
    }
    @media @mobile-p {
      right: 2px;
      margin-top: 100px;
    }

    & .label {
      text-align: center;
      .font(800);
      font-size: 34px;
      padding-top: 110px;
      @media @desktop {
        font-size: 30px;
      }
      @media @laptop {
        font-size: 22px;
      }
      @media @ipad-p {
        padding-top: 80px;
      }
      @media @mobile-p {
        padding-top: 83px;
      }
      &.spaced {
        padding-top: 118px;
        @media @desktop {
          padding-top: 105px;
        }
        @media @laptop {
          padding-top: 90px;
        }
      }
    }

    & .sublabel {
      text-align: center;
      .font(500);
      font-size: 12px;
      @media @mobile-p {
        font-size: 11px;
      }
    }
  }

  & .home-categories {

    & h3 {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: calc(~"50% - 30px");
      margin-top: 0;
      margin-bottom: 50px;
      .tileHeader;
      @media @laptop {
        padding-left: calc(~"50% - 25px");
      }

      &::before {
        content: '';
        .decorCircle;
        background: @main;
        margin-right: 20px;
        display: block;
        @media @laptop {
          margin-right: 10px;
        }
      }
    }

    & .solution {
      display: flex;
      @media @mobile-p {
        flex-direction: column;
        overflow: hidden;
        position: relative;
      }
      &::after {
        @media @mobile-p {
          // content: '';
          .circle(100px);
          background: @main;
          position: absolute;
          bottom: -50px;
          left: 50%;
          margin-left: -50px;
        }
      }
      &::before {
        @media @mobile-p {
          // content: '';
          .circle(100px);
          background: white;
          position: absolute;
          top: -50px;
          left: 50%;
          margin-left: -50px;
        }
      }

      & + .solution {
        padding-top: 80px;
        margin-top: -4px;
        overflow: hidden;
      }

      &.solution1 {
        background: url('../images/solution1.png') center center no-repeat;
        background-size: 100% 101%;
        @media @ipad-p {
          background-size: auto 101%;
        }
        @media @mobile-p {
          background: white;
        }
      }
      &.solution2 {
        background: url('../images/solution2.png') center center no-repeat;
        background-size: 100% 101%;
        @media @ipad-p {
          background-size: auto 101%;
          background-position: calc(~"50% - 1px") center;
        }
        @media @mobile-p {
          background: @grey;
        }
      }
      &.solution3 {
        background: url('../images/solution3.png') center center no-repeat;
        background-size: 100% 101%;
        @media @ipad-p {
          background-size: auto 101%;
        }
        @media @mobile-p {
          background: white;
        }
      }
      &.solution4 {
        background: url('../images/solution4.png') center center no-repeat;
        background-size: 100% 101%;
        @media @ipad-p {
          background-size: auto 101%;
        }
        @media @mobile-p {
          background: @grey;
        }
      }

      &.active {
        & .col {
          &.col1 {
            & .label, & .title {
              opacity: 1;
              .translate(0,0,0)!important;
            }
          }
        }
      }

      & .col {
        flex: 0 0 50%;
        padding: 0 30px;
        @media @mobile-p {
          padding: 0 20px;
        }

        &.col1 {
          text-align: right;
          @media @laptop {
            padding: 0 30px 0 100px;
          }
          @media @mobile-p {
            padding: 20px!important;
            text-align: center;
          }

          & .label {
            color: @grey;
            .font(700);
            font-size: 80px;
            opacity: 0;
            .translate(-100px,0,0);
            .transition(all 0.5s ease);
            @media @desktop {
              font-size: 75px;
            }
            @media @laptop {
              font-size: 60px;
            }
            @media @ipad {
              font-size: 50px;
            }
            & span {
              color: black;
            }
          }

          & .title {
            .font(200);
            font-size: 50px;
            color: @main;
            padding-bottom: 40px;
            opacity: 0;
            .translate(-100px,0,0);
            .transition(all 0.5s ease 0.3s);
            @media @desktop {
              font-size: 40px;
            }
            @media @laptop {
              font-size: 32px;
            }
            @media @ipad {
              font-size: 25px;
            }
            @media @mobile-p {
              padding-bottom: 5px;
            }
          }

          & div.fpe {
            & span {
              cursor: pointer;
              font-size: 25px;
              color: black;
              opacity: 0.5;
              .transition;

              &:hover {
                color: @main;
                opacity: 1;
              }
            }
          }
        }

        &.col2 {
          padding-bottom: 170px;
          @media @ipad-p {
            padding-bottom: 150px;
          }
          @media @ipad-l {
            padding-bottom: 110px;
          }
          @media @mobile-p {
            padding-bottom: 60px;
          }

          & .description {
            text-align: left;

            & p {
              .font(400);
              font-size: 18px;
              line-height: 25px;
              padding: 0 40% 0 40px;
              @media @desktop {
                font-size: 14px;
              }
              @media @laptop {
                font-size: 13px;
                line-height: 20px;
              }
              @media @ipad {
                padding: 0 10px;
                line-height: 18px;
              }
              @media @mobile-p {
                font-size: 14px;
                text-align: left!important;
                padding: 0!important;
              }

              & a.readmore {
                display: inline-flex;
                align-items: center;
                margin: 20px 0;
                .font(300);
                font-size: 18px;
                color: black;
                text-decoration: none;
                @media @laptop {
                  font-size: 16px;
                }

                &::after {
                  display: none;
                }

                &:hover {
                  & icon {
                    .rotate(360deg);
                  }
                }

                & icon {
                  display: block;
                  .decorCircle;
                  background: @main;
                  margin-right: 10px;
                  position: relative;
                  .transition(all 0.4s ease);

                  &::before, &::after {
                    content: '';
                    width: 50%;
                    height: 2px;
                    position: absolute;
                    left: 25%;
                    top: 50%;
                    margin-top: -1px;
                    .radius(1px);
                    .origin(50%,50%);
                    background: white;
                  }
                  &::after {
                    .rotate(90deg);
                  }
                }

              }
            }
          }
        }


      }

      &:nth-child(odd) {
        background-color: @grey;

        &::after {
          @media @mobile-p {
            // content: '';
            .circle(100px);
            background: white;
            position: absolute;
            bottom: -50px;
            left: 50%;
            margin-left: -50px;
          }
        }

        & .col {

          &.col1 {
            order: 2;
            text-align: left;
            @media @laptop {
              padding: 0 100px 0 30px;
            }
            @media @mobile-p {
              order: 1;
              text-align: center;
            }

            & .label {
              color: white;
              .translate(100px,0,0);
            }

            & .title {
              .translate(100px,0,0);
            }
          }

          &.col2 {
            order: 1;
            & .description {
              text-align: right;
              & p {
                padding: 0 40px 0 40%;
                @media @ipad {
                  padding: 0 10px;
                  line-height: 18px;
                }
                @media @ipad-l {
                  padding: 0 0 0 40px;
                }
                & a.readmore {
                  & icon {
                    order: 2;
                    background: @main;
                    margin-left: 10px;
                    margin-right: 0;
                  }
                }
              }
            }
          }
        }
      }
    }

    & #adminForm {
      display: none;
    }
  }

  @gradientBase: #b3b3b3;

  & .timelineHeader {
    text-align: center;
    background: url('../images/solution5.png') center top no-repeat;
    background-size: 100% auto;
    height: 190px;
    margin-top: -1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    @media @laptop {
      height: 150px;
    }
    @media @ipad-p {
      background-size: 1592px auto;
      padding-top: 20px;
    }
    @media @ipad-l {
      padding-bottom: 40px;
    }
    @media @mobile-p {
      background: black;
      justify-content: center;
      height: 260px;
    }

    & h1 {
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex: 0 0 calc(~"50% + 30px");
      color: @grey;
      .tileHeader;
      @media @mobile-p {
        flex: 0 0 100%;
        justify-content: center;
      }

      &::after {
        content: '';
        .decorCircle;
        margin-left: 20px;
        background: @main;
      }
    }
  }

  & .timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 200px 40px;
    position: relative;
    @media @ipad-l {
      padding: 150px 40px;
    }
    @media @mobile-p {
      flex-direction: column;
      padding: 0 20px 70px;
    }

    &.active {
      & .lego-item {
        opacity: 1;
        .translate(0,0,0);
      }
    }

    &::before, &:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 40px;
      height: 4px;
      background: @gradientBase;
      margin-top: -2px;
      @media @laptop {
        height: 3px;
      }
      @media @mobile-p {
        display: none;
      }
    }

    &::after {
      left: auto;
      right: 0;
    }

    & > div {
      flex: 1;
      &::after {
        content: ' ';
        padding-top: 100%;
        display: table;
        @media @mobile-p {
          display: none;
        }
      }
    }

    & .lego-item {
      position: relative;
      opacity: 0;
      .translate(-100px,0,0);
      .transition(all 0.3s ease);
      @media @mobile-p {
        width: 100%;
        padding: 40px 0;
      }

      &:nth-child(2) { .transition(all 0.3s ease 0.1s); }
      &:nth-child(3) { .transition(all 0.3s ease 0.2s); }
      &:nth-child(4) { .transition(all 0.3s ease 0.3s); }
      &:nth-child(5) { .transition(all 0.3s ease 0.4s); }
      &:nth-child(6) { .transition(all 0.3s ease 0.5s); }
      &:nth-child(7) { .transition(all 0.3s ease 0.6s); }

      &:nth-child(even) {
        & .circle-out {
          .rotate(-135deg);
        }
        & .line-top {
          top: auto;
          bottom: 0;
        }
        & .circle-top {
          top: auto;
          bottom: -6px;
        }
        & .details {
          left: auto;
          right: 50%;
          bottom: auto;
          top: calc(~"75% + 6px");
          padding-left: 0;
          padding-right: 20px;
          text-align: right;
          border-right: 4px solid @gradientBase;
          border-left: none;
          padding-top: 60px;
          padding-bottom: 10px;
          @media @laptop {
            border-right: 3px solid @gradientBase;
            top: calc(~"75% + 3px");
          }
          @media @ipad {
            padding-bottom: 10px;
            padding-top: 20px;
            top: calc(~"75% + 14px");
          }
          @media @ipad-l {
            padding-bottom: 10px;
            padding-top: 20px;
            top: calc(~"75% + 19px");
          }

          &::before {
            left: auto;
            right: -8px;
            top: auto;
            bottom: -8px;
          }
        }
      }

      & .details {
        position: absolute;
        left: 50%;
        bottom: calc(~"75% + 6px");
        width: 130%;
        padding-left: 20px;
        padding-top: 10px;
        padding-bottom: 60px;
        border-left: 4px solid @gradientBase;
        @media @laptop {
          border-left: 3px solid @gradientBase;
          bottom: calc(~"75% + 3px");
        }
        @media @ipad {
          width: 170%;
          padding-bottom: 20px;
          bottom: calc(~"75% + 14px");
        }
        @media @ipad-l {
          bottom: calc(~"75% + 20px");
        }
        @media @mobile-p {
          position: static;
          width: 100%!important;
          text-align: center!important;
          border: none!important;
          padding: 40px 0 0!important;
        }

        &::before {
          content: '';
          position: absolute;
          top: -6px;
          left: calc(~"50% - 6px");
          .circle(12px);
          background: @gradientBase;
          left: -8px;
          @media @mobile-p {
            display: none;
          }
        }

        & .title {
          .font(1000);
          font-size: 16px;
          line-height: 30px;
          @media @laptop {
            font-size: 15px;
          }
          @media @ipad {
            line-height: 18px;
            margin-bottom: 5px;
          }
          @media @mobile-p {
            font-size: 26px;
            line-height: 34px;
            margin-bottom: 21px;
          }
        }
        & .description {
          .font(400);
          font-size: 14px;
          line-height: 16px;
          @media @laptop {
            font-size: 12px;
          }
          @media @mobile-p {
            font-size: 14px;
            line-height: 20px;
          }
        }
      }

      & .label {
        .font(800);
        font-size: 28px;
        line-height: 28px;
        position: absolute;
        left: 0;
        top: 50%;
        text-align: center;
        width: 100%;
        margin-top: -14px;
        color: white;
        @media @laptop {
          font-size: 22px;
        }
        @media @ipad {
          font-size: 20px;
        }
        @media @mobile-p {
          top: 141px;
          font-size: 30px;
        }
      }

      & .circle-in {
        position: absolute;
        .circle(50%);
        background: @main;
        top: 50%;
        left: 50%;
        margin: -25% 0 0 -25%;
        @media @laptop {
          .circle(46%);
          margin: -23% 0 0 -23%;
        }
        @media @ipad {
          .circle(70%);
          margin: -35% 0 0 -35%;
        }
        @media @mobile-p {
          position: static;
          .circle(200px);
          margin: 0 auto;
        }
      }

      & .circle-out {
        position: absolute;
        .circle(calc(~"50% + 20px"));
        border: 4px solid @gradientBase;
        border-top-color: transparent;
        .origin(50%,50%);
        .rotate(-45deg);
        top: 50%;
        left: 50%;
        margin: (calc(~"-25% - 10px")) 0 0 (calc(~"-25% - 10px"));
        @media @laptop {
          .circle(calc(~"50% + 10px"));
          margin: (calc(~"-25% - 5px")) 0 0 (calc(~"-25% - 5px"));
          border: 3px solid @gradientBase;
          border-top-color: transparent;
        }
        @media @ipad {
          .circle(calc(~"70% + 10px"));
          margin: (calc(~"-35% - 5px")) 0 0 (calc(~"-35% - 5px"));
        }
        @media @mobile-p {
          display: none;
        }
      }

      & .line-left {
        position: absolute;
        top: 50%;
        height: 4px;
        width: calc(~"25% - 6px");
        background: @gradientBase;
        left: 0;
        margin-top: -2px;
        @media @laptop {
          height: 3px;
          width: calc(~"25% - 2px");
        }
        @media @ipad-p {
          width: calc(~"35% - 25px");
        }
        @media @ipad-l {
          width: calc(~"35% - 34px");
        }
        @media @mobile-p {
          display: none;
        }
      }

      & .line-right {
        position: absolute;
        top: 50%;
        height: 4px;
        width: calc(~"25% - 20px");
        background: @gradientBase;
        right: 0;
        margin-top: -2px;
        @media @laptop {
          height: 3px;
          width: calc(~"25% - 11px");
        }
        @media @ipad-p {
          width: calc(~"35% - 25px");
        }
        @media @ipad-l {
          width: calc(~"35% - 39px");
        }
        @media @mobile-p {
          display: none;
        }
      }

    }
  }

  & .team {
    overflow: hidden;
    // text-align: center;

    & div.icons {
      display: none;
    }

    & div.fpe {
      float: left;
      margin: 22px 20px 0 0;

      & span {
        cursor: pointer;
        font-size: 25px;
        color: black;
        opacity: 0.5;
        .transition;

        &:hover {
          color: @main;
          opacity: 1;
        }
      }
    }

    &.active {
      & .main {
        & .col2 {
          & .person {
            opacity: 1;
            .translate(0,0,0);
          }
        }
      }
    }

    & .top {
      background: @grey;
      margin-top: -2px;
      position: relative;
      background: @grey url('../images/solution6.png') center top no-repeat;
      background-size: 100% auto;
      position: relative;
      height: 400px;
      @media @laptop {
        height: 330px;
      }
      @media @ipad-p {
        background-size: 1380px auto;
      }
      @media @ipad-l {
        background-size: 1380px auto;
      }
      @media @mobile-p {
        background: @grey;
        height: auto;
      }

      & h1 {
        position: absolute;
        left: 0;
        bottom: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: calc(~"50% + 30px");
        .font(800);
        color: white;
        .tileHeader;
        @media @mobile-p {
          position: static;
          flex: 0 0 100%;
          justify-content: center;
          width: 100%;
          padding: 70px 0;
        }

        &::after {
          content: '';
          .decorCircle;
          margin-left: 40px;
          background: @main;
          @media @desktop {
            margin-left: 20px;
          }
        }
      }

      & img {
        display: block;
        opacity: 0;
        @media @mobile-p {
          display: none;
        }
      }
    }

    & .main {
      background: @grey url('../images/solution7.png') center top no-repeat;
      background-size: auto 100%;
      padding-bottom: 100px;
      // position: relative;
      padding-top: 30px;
      display: flex;
      @media @laptop {
        padding-bottom: 50px;
      }
      @media @ipad-p {
        background-size: 165px auto;
        padding-bottom: 0px;
        background-position: calc(~"50% + 17px") 27px;
      }
      @media @mobile-p {
        flex-direction: column;
        background: @grey;
        padding-top: 0;
        padding-bottom: 0;
      }

      & .col1 {
        flex: 0 0 50%;
        text-align: right;
        // border-right: thin solid black;
        padding: 50px 71px 0px 90px;
        @media @ipad-p {
          padding-left: 40px;
          padding-right: 50px;
          padding-top: 0;
        }
        @media @mobile-p {
          padding: 0 30px 50px;
        }

        & p {
          margin: 0 0 10px 0;
          .font(400);
          font-size: 16px;
          line-height: 25px;
          @media @laptop {
            font-size: 13px;
            line-height: 20px;
          }
          @media @ipad-p {
            font-size: 12px;
            line-height: 16px;
            margin-bottom: 7px;
          }
          @media @ipad-l {
            font-size: 13px;
            line-height: 19px;
          }
          @media @mobile-p {
            font-size: 14px;
            line-height: 20px;
            text-align: center;
          }

          & +p +p {
            display: none;
          }
        }
      }

      & .col2 {
        flex: 0 0 50%;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 70px;
        @media @laptop {
          padding-left: 100px;
        }
        @media @ipad-p {
          flex-wrap: wrap;
          align-items: center;
          justify-content: center;
          padding-left: 20px;
        }
        @media @mobile-p {
          flex-direction: column;
          padding: 0 20px;
          align-items: center;
        }

        & .person {
          margin-right: 70px;
          text-align: center;
          opacity: 0;
          .translate(100px,0,0);
          .transition(all 0.4s ease);
          @media @laptop {
            margin-right: 45px;
          }
          @media @ipad-p {
            margin-right: 0px;
          }
          @media @ipad-l {
            margin-right: 25px;
          }
          @media @mobile-p {
            margin: 0 0 40px;
          }

          & + .person {
            .transition(all 0.4s ease 0.2s);
          }

          & .name {
            .font(1000);
            text-align: center;
            margin-top: 40px;
            font-size: 18px;
            color: white;
            @media @laptop {
              font-size: 16px;
            }
            @media @ipad-p {
              font-size: 15px;
              margin-top: 20px;
              margin-bottom: 40px;
            }
            @media @ipad-l {
              font-size: 15px;
            }
            @media @mobile-p {
              font-size: 18px;
            }
          }

          & .image {
            .circle(250px);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            margin: 0 auto 0 0;
            .shadow(inset 0 0 10px #000000);
            @media @laptop {
              .circle(200px);
            }
            @media @ipad-p {
              .circle(150px);
              margin: 0 auto;
            }
            @media @ipad-l {
              .circle(150px);
            }
            @media @mobile-p {
              .circle(250px);
            }
          }
        }
      }
    }

    & .bottom {
      display: flex;
      justify-content: flex-end;
      background: @grey;
      padding-bottom: 40px;
      @media @laptop {
        padding-bottom: 15px;
      }
      @media @ipad-p {
        justify-content: center;
      }
      @media @mobile-p {
        padding-bottom: 50px;
      }

      & .inner {
        flex: 0 0 calc(~"50% + 30px");
        @media @ipad-p {
          flex: 0 0 100%;
          text-align: center;
          position: relative;
        }
        @media @mobile-p {
          flex: 1;
          // justify-content: center;
          text-align: center;
        }

        & a.readmore {
          display: inline-flex;
          align-items: center;
          margin: 20px 0;
          .font(300);
          font-size: 18px;
          color: black;
          text-decoration: none;
          @media @laptop {
            font-size: 16px;
          }
          @media @ipad-p {
            position: absolute;
            top: -90px;
            left: 170px;
          }

          &:hover {
            & icon {
              .rotate(360deg);
            }
          }

          & icon {
            display: block;
            background: @main;
            margin-right: 20px;
            position: relative;
            .transition(all 0.4s ease);
            .decorCircle;
            @media @laptop {
              margin-right: 10px;
            }
            @media @ipad-p {
              order: 2;
              margin-right: 0px;
              margin-left: 20px;
            }

            &::before, &::after {
              content: '';
              width: 50%;
              height: 2px;
              position: absolute;
              left: 25%;
              top: 50%;
              margin-top: -1px;
              .radius(1px);
              .origin(50%,50%);
              background: white;
            }
            &::after {
              .rotate(90deg);
            }
          }

        }
      }
    }
  }

  & .team-page-container {
    margin-top: 80px;
    background: url('../images/team4.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;

    & .team-page-header {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 25px;

      & .start {
        background: white;
        .shadow;
        .circle(250px);
        display: flex;
        align-items: center;
        justify-content: center;

        & img {
          width: 55%;
          height: auto;
        }
      }
    }

    & .team-page {
      display: flex;
      align-items: center;
      padding-top: 80px;
      padding-bottom: 80px;

      & .person {
        flex: 0 0 50vw;
        display: flex;
        align-items: center;
        justify-content: flex-start;

        & .group {
          text-align: center;
          margin: 0 30px;

          & .name {
            .font(900);
            text-align: center;
            margin-top: 20px;
            font-size: 18px;
            color: black;
          }

          & .image {
            .circle(300px);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            margin: 0 auto 0 0;
            .shadow(inset 0 0 10px #000000);
          }
        }

        & .quote {
          flex: 0 0 20vw;
          margin-left: 40px;
          margin-right: 0;
          .font(500);
          font-size: 17px;
          line-height: 23px;
          padding-bottom: 40px;
          position: relative;

          &::before, &::after {
            content: '';
            position: absolute;
            top: -40px;
            left: -30px;
            width: 40px;
            height: 40px;
            background: url('../images/quotes.png') center center no-repeat;
            background-size: contain;
            .origin(50%,50%);
          }

          &::after {
            .rotate(180deg);
            top: auto;
            left: auto;
            bottom: -10px;
            right: -30px;
          }
        }

        &:nth-child(odd) {
          justify-content: flex-end;
          & .group {
            order: 2;
          }
          & .quote {
            order: 1;
            text-align: right;
            margin-left: 0;
            margin-right: 40px;
          }
        }
      }
    }

    & .personnel-page {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 1fr;
      padding-top: 160px;
      padding-bottom: 100px;

      & .person {
        text-align: center;

        & .name {
          .font(700);
          margin-top: 20px;
          font-size: 17px;
          color: black;
        }

        & .role {
          .font(500);
          margin-top: 10px;
          font-size: 16px;
          color: black;
        }

        & .image {
          .circle(200px);
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center center;
          margin: 0 auto;
          .shadow(inset 0 0 10px #000000);
        }
      }
    }

  }

  & .contact-mra {

    & .inner {
      max-width: 1024px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      padding-top: 80px;

      & .col {
        flex: 0 0 50%;

        &.col2 {
          padding-left: 60px;

          & form {

            & button {
              .font(300);
              font-size: 22px;
              letter-spacing: 1px;
              color: white;
              background: @main;
              padding: 10px 20px;
              .radius(20px);
              border: none;
              .noshadow;
              margin-top: 30px;
              cursor: pointer;
              .transition;

              &:hover {
                background: black;
              }
            }

            & fieldset {
              margin: 0;
              padding: 0;
              border: none;

              & > legend {
                display: none;
              }


              & .control-group {
                display: flex;
                flex-direction: column;
                margin-bottom: 30px;

                &:last-child {
                  margin-bottom: 0;
                }

                & .control-label {
                  // order: 2;
                  margin-bottom: 5px;

                  & label {
                    .font(400);
                    font-size: 16px;

                    & span.star {
                      color: @main;
                      .font(800);
                      padding: 0 5px 0 0;
                    }

                    & span.form-control-feedback {
                      color: @main;
                    }
                  }
                }

                & .controls {
                  // order: 1;

                  & input {
                    .font(500);
                    font-size: 18px;
                    padding: 10px 10px;
                    width: 100%;
                    .noshadow;
                    border: thin solid @grey;
                    .radius(20px);
                  }

                  & textarea {
                    border: thin solid @grey;
                    .radius(20px);
                    width: 100%;
                    .noshadow;
                    resize: none;
                    .font(500);
                    font-size: 18px;
                    padding: 10px 10px;
                  }

                }

                &.field-spacer {
                  display: none;
                }

                & .visually-hidden {
                  display: none;
                }
              }
            }
          }
        }

        &.col1 {
          text-align: right;
          padding-right: 60px;
          border-right: thin solid @grey;

          & .welcome {
            .font(900);
            font-size: 50px;
            color: @main;
            margin-bottom: 40px;
            letter-spacing: 1px;
          }

          & .image {
            width: 250px;
            height: 250px;
            .radius(125px);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            .shadow(inset 0 0 10px #000000);
            margin: 0 auto 30px;
            display: inline-block;
          }

          & .name {
            .font(900);
            font-size: 30px;
            color: black;
            margin-bottom: 20px;
          }

          & .question {
            .font(900);
            font-size: 30px;
            color: @grey;
            margin-bottom: 40px;
          }
        }
      }
    }

  }

  & .solution-page {
    padding-top: 140px;

    & .inner {
      max-width: 1024px;
      margin: 0 auto;
      .typography;
    }

    & .solution-selection {

      & .inner {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
        column-gap: 40px;

        & .selection-item {
          display: flex;
          align-items: center;
          justify-content: center;
          .keepBox;
          background: @grey;
          .radius(50%);
          .transition(all 0.2s ease);
          .origin(50%,50%);
          text-decoration: none;
          .noselect;
          cursor: pointer;

          & .title {
            text-align: center;
            color: white;
            .font(650);
            font-size: 45px;
            & span {
              color: black;
            }
          }

          & .subtitle {
            .font(700);
            color: black;
            text-align: center;
            font-size: 17px;
            padding: 10px 40px 0;
          }

          &:hover {
            .scale(1.05);
            background: black;

            & .title span {
              color: @main;
            }

            & .subtitle {
              color: @grey;
            }
          }

          &.active {
            background: @main!important;
            .scale(1.2)!important;
            cursor: default;

            & .title {
              text-align: center;
              color: white;
              .font(650);
              font-size: 45px;
              & span {
                color: black;
              }
            }
          }
        }
      }
    }

    & .solution-main {
      position: relative;

      & div.fpe {
        position: absolute;
        top: 117px;

        & span {
          cursor: pointer;
          font-size: 25px;
          color: black;
          opacity: 0.5;
          .transition;

          &:hover {
            color: @main;
            opacity: 1;
          }
        }
      }

      & h1 {
        margin-top: 0;
        margin-bottom: 60px;
        text-align: center;
        padding: 0 10%;
        padding-top: 100px;
      }
    }

    & .solution-children {
      & div.icons {
        display: none;
      }
      & div.fpe {
        float: left;
        margin-right: 20px;
        margin-top: 8px;

        & span {
          cursor: pointer;
          font-size: 25px;
          color: black;
          opacity: 0.5;
          .transition;

          &:hover {
            color: @main;
            opacity: 1;
          }
        }
      }
    }
  }

  & .home-map {
    position: relative;
    margin-top: -2px;

    & .separator-top {
      @media @mobile-p {
        display: none;
      }
      & img {
        width: 100%;
        height: auto;
        display: block;
      }
    }
    & .separator-bottom {
      @media @mobile-p {
        display: none;
      }
      & img {
        width: 100%;
        height: auto;
        display: block;
      }
    }

    & .map-container {
      display: flex;
      align-items: center;
      @media @ipad-p {
        flex-direction: column;
      }
      @media @mobile-p {
        flex-direction: column;
      }

      & .col2 {
        @media @ipad-p {
          margin-top: 40px;
          padding-bottom: 120px;
        }
        @media @ipad-l {
          .origin(0,50%);
          .scale(0.9);
        }
        @media @mobile-p {
          padding: 50px 0;
        }

        & h1 {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          color: black;
          .tileHeader;

          &::before {
            content: '';
            flex: 0 0 60px;
            margin-right: 30px;
            background: @main;
            display: block;
            .decorCircle;
            @media @laptop {
              flex: 0 0 45px;
              margin-right: 10px;
            }
          }
        }

        & form {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          padding-left: 70px;
          padding-right: 5px;
          height: 50px;
          background: @grey url('../images/directions.png') 10px center no-repeat;
          background-size: 30px;
          .radius(25px);
          margin-left: 10px;
          @media @laptop {
            margin-top: 40px;
            background-size: 30px;
            padding-left: 45px;
          }

          & input {
            border: none;
            .noshadow;
            font-size: 20px;
            padding: 5px 10px;
            .radius(17px);
            margin-right: 5px;
            @media @laptop {
              font-size: 16px;
            }

            &[type='submit'] {
              background: @main;
              padding: 5px 15px;
              color: white;
              font-size: 16px;
              line-height: 24px;
              cursor: pointer;
              .transition;
              @media @laptop {
                line-height: 20px;
              }
              &:hover {
                background: black;
              }
            }
          }
        }

        & a.contact-link {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          color: black;
          font-size: 20px;
          text-decoration: none;
          margin-bottom: 20px;
          .transition;
          position: relative;
          margin-left: 5px;
          @media @laptop {
            font-size: 16px;
            margin-bottom: 10px;
            margin-left: 1px;
          }

          &:hover {
            color: @main;

            &::before {
              background-color: @main;
            }

            & a {
              color: @main;
            }
          }

          & a {
            color: black;
            text-decoration: none;
          }

          &.address {
            &::after {
              background-position: center -60px;
            }
          }

          &.telephone {
          }

          &.email {
            &::after {
              background-position: center -30px;
            }
          }

          &::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            top: 10px;
            left: 10px;
            background-image: url('../images/icons.png');
            background-repeat: no-repeat;
            background-size: 30px auto;
            background-position: center top;
            @media @laptop {
              .origin(50%,50%);
              .scale(0.7);
            }
          }

          &::before {
            content: '';
            flex: 0 0 50px;
            height: 50px;
            .radius(50%);
            margin-right: 20px;
            background-color: @grey;
            .transition;
            @media @laptop {
              .origin(50%,50%);
              .scale(0.8);
              margin-right: 10px;
            }

            &:hover {
              background-color: black;
            }
          }
        }
      }

      & .col1 {
        padding: 40px;
        position: relative;
        flex: 0 0 60vw;
        @media @ipad-p {
          flex: 0 0 auto;
        }
        @media @ipad-l {
          flex: 0 0 65vw;
        }
        @media @mobile-p {
          flex: 0 0 auto;
          padding: 0;
          width: 100%;
        }

        & .controls {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          @media @mobile-p {
            display: none;
          }

          & .google_button {
            position: absolute;
            .circle(80px);
            background: @main;
            .shadow;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 50%;
            margin-top: -40px;
            left: 50%;
            margin-left: -390px;
            cursor: pointer;
            .transition;
            @media @laptop {
              .circle(60px);
              margin-top: -30px;
              margin-left: -300px;
            }
            @media @ipad-p {
              .circle(70px);
              margin-top: -35px;
              margin-left: -345px;
            }


            &:hover {
              background: black;
            }

            & img {
              width: 80%;
              height: auto;
            }
          }

          & .zoom {
            position: absolute;
            .circle(50px);
            background-color: @main;
            .shadow;
            top: 50%;
            left: 50%;
            margin-left: -365px;
            margin-top: -115px;
            cursor: pointer;
            .transition;
            @media @laptop {
              .circle(40px);
              margin-left: -270px;
              margin-top: -100px;
            }
            @media @ipad-p {
              .circle(45px);
              margin-left: -318px;
              margin-top: -108px;
            }


            &:hover {
              background-color: black!important;
            }

            &::before, &::after {
              content: '';
              position: absolute;
              width: 50%;
              height: 2px;
              background: white;
              top: 50%;
              margin-top: -1px;
              left: 25%;
              .origin(50%,50%);
            }

            &::after {
              .rotate(90deg);
            }

            &.zoomout {
              margin-top: 65px;
              @media @laptop {
                margin-top: 55px;
              }
              &::after {
                display: none;
              }
            }

            &.road {
              margin-top: -180px;
              margin-left: -345px;
              background-color: @grey;
              background-image: url('../images/road.png');
              background-position: center center;
              background-repeat: no-repeat;
              background-size: 100% 100%;
              @media @laptop {
                .circle(40px);
                margin-top: -160px;
                margin-left: -240px;
              }
              @media @ipad-p {
                .circle(45px);
                margin-top: -170px;
                margin-left: -295px;
              }

              &.active {
                background-color: @main;
              }

              &::before, &::after {
                display: none;
              }
            }
            &.satellite {
              left: 50%;
              margin-top: 130px;
              margin-left: -345px;
              background-color: @grey;
              background-image: url('../images/satellite.png');
              background-position: center center;
              background-repeat: no-repeat;
              background-size: 100% 100%;
              @media @laptop {
                margin-top: 115px;
                margin-left: -240px;
                .circle(40px);
              }
              @media @ipad-p {
                .circle(45px);
                margin-top: 120px;
                margin-left: -295px;
              }

              &.active {
                background-color: @main;
              }

              &::before, &::after {
                display: none;
              }
            }
          }
        }

        & .path {
          position: absolute;
          top: 20px;
          left: 0;
          width: 100%;
          height: 740px;
          @media @laptop {
            height: 540px;
          }
          @media @ipad-p {
            height: 640px;
          }
          @media @mobile-p {
            display: none;
          }
        }

        svg {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          fill: currentColor;
          transform-origin: center;
        }

        & .inner {
          height: 700px;
          width: 700px;
          .radius(50%);
          .transition(all 0.5s ease);
          overflow: hidden;
          .shadow(inset 0 0 10px #000000);
          background: @grey;
          position: relative;
          margin: 0 auto;
          @media @laptop {
            height: 500px;
            width: 500px;
          }
          @media @ipad-p {
            height: 600px;
            width: 600px;
          }
          @media @mobile-p {
            width: 100%;
            height: 600px;
            .radius(0);
          }

          // &:hover {
          //   .radius(0);
          // }

          & #map {
            position: absolute;
            width: calc(~"100% + 40px");
            height: calc(~"100% + 40px");
            top: -20px;
            left: -20px;
            @media @mobile-p {
              width: 100%;
              height: 100%;
              top: 0;
              left: 0;
            }
          }

        }

      }
    }
  }

  & footer {
    background: @grey;
    padding: 50px 50px 100px;
    display: flex;
    margin: 0 auto;
    position: relative;
    @media @ipad-p {
      flex-wrap: wrap;
      padding-bottom: 160px;
    }
    @media @ipad-l {
      padding-bottom: 150px;
    }
    @media @mobile-p {
      flex-wrap: wrap;
      padding: 50px 0px 0px;
    }

    & .copyright {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100vw;
      .font(500);
      font-size: 15px;
      color: black;
      text-align: center;
      padding: 20px;
      @media @laptop {
        font-size: 13px;
      }
      @media @ipad-p {
        bottom: 100px;
      }
      @media @ipad-l {
        bottom: 60px;
      }
      @media @mobile-p {
        position: static;
      }
    }

    & .design {
      position: absolute;
      right: 0;
      bottom: 0;
      .font(400);
      font-size: 15px;
      color: black;
      text-align: right;
      padding: 20px;
      @media @laptop {
        font-size: 13px;
      }
      @media @ipad-p {
        width: 100%;
        text-align: center;
      }
      @media @mobile-p {
        position: static;
      }

      & a {
        color: black;
        &:hover {
          color: @main;
        }
      }
    }

    & .col {
      flex: 0 0 20%;
      @media @mobile-p {
        flex: 0 0 100%;
      }

      &.col1 {
        border-right: 2px solid white;
        padding-right: 30px;
        @media @laptop {
          border-right: 1px solid white;
        }
        @media @ipad-p {
          flex: 0 0 100%;
          border-right: none;
          border-bottom: 1px solid white;
          padding-right: 0;
          padding-bottom: 60px;
        }
        @media @mobile-p {
          padding: 40px 0;
          border: none;
          text-align: center;
        }

        & a {
          color: black;
          text-decoration: none;
          text-align: right;
          @media @ipad-p {
            text-align: center;
          }
          @media @mobile-p {
            text-align: center;
          }

          & img {
            width: 100px;
            height: auto;
            display: block;
            margin: 0 0 0 auto;
            @media @laptop {
              width: 60px;
            }
            @media @ipad-p {
              margin: 0 auto;
              width: 90px;
            }
            @media @mobile-p {
              margin: 0 auto;
              width: 120px;
            }
          }

          & h1 {
            .font(400);
            font-size: 18px;
            margin: 15px 0 10px;
            @media @laptop {
              font-size: 15px;
            }
            @media @ipad-p {
              text-align: center;
              font-size: 18px;
              margin: 25px 0 20px;
            }
            @media @mobile-p {
              font-size: 18px;
            }
          }

          & h2 {
            .font(400);
            font-size: 15px;
            margin: 0;
            color: white;
            @media @laptop {
              font-size: 12px;
            }
            @media @ipad-p {
              text-align: center;
              font-size: 17px;
            }
            @media @mobile-p {
              font-size: 15px;
            }
          }
        }
      }

      &.col2 {
        padding: 0 30px;
        border-right: 2px solid white;
        @media @laptop {
          border-right: 1px solid white;
        }
        @media @ipad-p {
          flex: 0 0 100%;
          border-right: none;
          border-bottom: 1px solid white;
          padding: 50px 0;
          display: flex;
          justify-content: center;
        }
        @media @mobile-p {
          padding: 40px 0 0;
          border: none;
          text-align: center;
          background: white;
        }

        & ul {
          margin: 0;
          padding: 0;
          list-style: none;
          @media @ipad-p {
            display: flex;
            align-items: center;
            justify-content: center;
          }

          & li {
            margin-bottom: 10px;
            @media @laptop {
              margin-bottom: 8px;
            }
            @media @ipad-p {
              margin: 0 20px;
            }
            @media @mobile-p {
              margin-bottom: 40px;
            }

            & a {
              .font(900);
              font-size: 18px;
              color: white;
              text-decoration: none;
              .transition;
              @media @laptop {
                font-size: 15px;
              }
              @media @ipad-p {
                font-size: 18px;
              }
              @media @mobile-p {
                color: black;
                font-size: 18px;
              }

              &:hover {
                color: black;
              }
            }
          }
        }
      }

      &.col5 {
        border-right: 2px solid white;
        padding: 0 30px;
        @media @laptop {
          border-right: 1px solid white;
        }
        @media @ipad-p {
          flex: 0 0 100%;
          border-right: none;
          border-bottom: 1px solid white;
          padding: 50px 0;
        }
        @media @mobile-p {
          padding: 40px 0;
          border: none;
          text-align: center;
          background: black;
          text-align: center;
        }

        & h2 {
          margin-top: 0;
          .font(900);
          font-size: 18px;
          color: white;
          @media @laptop {
            font-size: 16px;
          }
          @media @ipad-p {
            font-size: 18px;
            text-align: center;
            margin-bottom: 30px;
          }
          @media @mobile-p {
            font-size: 18px;
          }
        }

        & .schedule {
          @media @ipad-p {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
          }

          & .group {
            .font(500);
            font-size: 15px;
            line-height: 19px;
            margin-bottom: 10px;
            @media @laptop {
              font-size: 13px;
              margin-bottom: 7px;
            }
            @media @ipad-p {
              font-size: 15px;
              flex: 0 0 50%;
              text-align: right;
              padding-right: 10px;
            }
            @media @mobile-p {
              font-size: 15px;
              line-height: 19px;
              margin-bottom: 10px;
              color: @grey;
            }
          }

          & .hours {
            font-size: 15px;
            margin-bottom: 10px;
            @media @laptop {
              font-size: 13px;
              margin-bottom: 7px;
            }
            @media @ipad-p {
              font-size: 15px;
              flex: 0 0 50%;
              text-align: left;
              padding-left: 10px;
            }
            @media @mobile-p {
              font-size: 15px;
              margin-bottom: 10px;
              color: @grey;
            }
          }
        }
      }

      &.col3 {
        border-right: 2px solid white;
        padding: 0 30px;
        @media @laptop {
          border-right: 1px solid white;
        }
        @media @ipad-p {
          flex: 0 0 50%;
          border-right: none;
          padding-top: 50px;
          padding-bottom: 50px;
        }
        @media @mobile-p {
          padding: 40px 20px;
          border: none;
        }
      }

      &.col4 {
        text-align: left;
        padding: 0 30px;
        @media @ipad-p {
          flex: 0 0 50%;
          text-align: center;
          padding-top: 50px;
          padding-bottom: 50px;
        }
        @media @mobile-p {
          padding: 40px 20px;
          border: none;
          text-align: center;
        }

        & p {
          margin-top: 0;
          @media @laptop {
            margin-bottom: 7px;
          }
        }

        & img {
          max-width: 100px;
          height: auto;
          @media @laptop {
            max-width: 80px;
          }
          @media @mobile-p {
            max-width: 140px;
            margin-top: 20px;
          }

          &.payspot {
            max-width: 70px;
            margin-bottom: 10px;
            @media @laptop {
              max-width: 45px;
            }
            @media @mobile-p {
              max-width: 80px;
            }
          }
        }
      }

    }
  }

  & .MZ_EU_consent {

    &.fixed {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999999999999999999999;
      .alpha(70,255,255,255);

      & .MZ_EU_consent_inner {
        background: @main;
        width: 40%;
        padding: 30px;
        .radius(30px);
        @media @laptop {
          width: 40%;
          padding: 30px;
        }
        @media @ipad-p {
          width: 60%;
        }
        @media @mobile-p {
          width: 80%;
        }

        & .MZ_EU_consent_title {
          text-align: center;
          .font(900);
          font-size: 27px;
          margin-bottom: 20px;
          color: white;
          @media @laptop {
            font-size: 20px;
            margin-bottom: 16px;
          }
          @media @mobile-p {
            font-size: 27px;
            margin-bottom: 20px;
          }
        }

        & .MZ_EU_consent_content {
          .font(400);
          font-size: 16px;
          line-height: 22px;
          @media @laptop {
            font-size: 13px;
          }
          @media @mobile-p {
            font-size: 14px;
            line-height: 20px;
            text-align: center;
          }

          & ul {
            margin: 0;
            padding: 0;
            list-style: none;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 30px;

            & li {

              & a {
                color: white;
                .font(500);
                font-size: 15px;
                text-decoration: none;
                .transition;
                @media @laptop {
                  font-size: 13px;
                }
                &:hover {
                  color: black;
                }
              }
            }
          }
        }

        & .MZ_EU_consent_buttons {
          text-align: center;
          & button {
            background: black;
            border: none;
            .noshadow;
            .font(400);
            font-size: 17px;
            padding: 10px 20px;
            cursor: pointer;
            color: white;
            .transition;
            .radius(8px);
            @media @laptop {
              font-size: 14px;
            }

            &:hover {
              background: white;
              color: @main;
            }
          }
        }
      }

      &.exists {
        position: static;
        .noselect;
        background: none;

        & .MZ_EU_consent_inner {
          width: 100%;
          padding: 0;
          background: none;
          .radius(0);

          & button {
            margin: 0;
            padding: 15px 20px;
          }

          & .MZ_EU_consent_title {
            white-space: nowrap;
            .font(900);
            font-size: 18px;
            color: white;
            background: none;
            text-align: left;
            @media @laptop {
              font-size: 16px;
            }
            @media @mobile-p {
              font-size: 18px;
            }
          }

          & .MZ_EU_consent_content {
            .font(400);
            font-size: 15px;
            line-height: 19px;
            @media @laptop {
              font-size: 12px;
              line-height: 17px;
            }
            @media @mobile-p {
              font-size: 14px;
              line-height: 20px;
            }

            & ul {
              display: block;
              margin: 0;
              text-align: left;
              padding: 0;
              margin-top: 20px;
              margin-bottom: 20px;

              & li {

                & a {
                  white-space: nowrap;
                  color: black;
                  @media @laptop {
                    font-size: 12px;
                  }
                  @media @mobile-p {
                    font-size: 14px;
                  }
                }
              }
            }
          }

          & .MZ_EU_consent_buttons {
            text-align: left;

            & button {
              font-size: 16px;
              padding: 8px 15px;
              @media @laptop {
                font-size: 12px;
              }
              @media @mobile-p {
                font-size: 14px;
              }
            }
          }
        }
      }
    }
  }

  // Front page edit
  & .com-users-login, & .com-users-reset, & .com-users-reset-confirm, & .com-users-reset-complete, & .com-users-logout {

    &.reset, &.reset-confirm, &.reset-complete, &.logout {
      & legend {
        display: block!important;
        margin-bottom: 40px;
      }
    }

    &.reset-complete {
      & .text-muted {
        margin: 10px 0;
      }

      & meter {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
      }
    }

    &.login, &.reset, &.reset-confirm, &.reset-complete, &.logout {
      .typography;

      & .page-header, & .com-users-login__options, & form {
        max-width: 50%;
        margin: 0 auto;

        & a {
          text-decoration: none;
          color: @grey;
          &:hover {
            color: @main;
          }
        }
      }

      & form {

        & button {
          .font(300);
          font-size: 22px;
          letter-spacing: 1px;
          color: white;
          background: @main;
          padding: 10px 20px;
          .radius(20px);
          border: none;
          .noshadow;
          margin-top: 30px;
          cursor: pointer;
          .transition;

          &:hover {
            background: black;
          }
        }

        & fieldset {
          margin: 0;
          padding: 0;
          border: none;

          & > legend {
            display: none;
          }


          & .control-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;

            &:last-child {
              margin-bottom: 0;
            }

            & .control-label {
              // order: 2;
              margin-bottom: 5px;

              & label {
                .font(400);
                font-size: 16px;

                & span.star {
                  color: @main;
                  .font(800);
                  padding: 0 5px 0 0;
                }

                & span.form-control-feedback {
                  color: @main;
                }
              }
            }

            & .controls {
              // order: 1;

              & input {
                .font(500);
                font-size: 18px;
                padding: 10px 10px;
                width: 100%;
                .noshadow;
                border: thin solid @grey;
                .radius(20px);
              }

              & .password-group {
                position: relative;

                & button {
                  position: absolute;
                  top: 3px;
                  right: 3px;
                  margin: 0;
                  .font(500);
                  font-size: 18px;
                  padding: 8px 10px;
                }
              }

              & textarea {
                border: thin solid @grey;
                .radius(20px);
                width: 100%;
                .noshadow;
                resize: none;
                .font(500);
                font-size: 18px;
                padding: 10px 10px;
              }

            }

            &.field-spacer {
              display: none;
            }

            & .visually-hidden {
              display: none;
            }
          }
        }
      }
    }
  }

  & .company-edit-button {
    position: absolute;
    right: 10px;
    top: 10px;
    background: black;
    color: white;
    z-index: 1000000;
    font-size: 20px;
    padding: 10px;
    .radius(50%);
    cursor: pointer;
    .transition;

    &:hover {
      background: white;
      color: @main;
      .shadow;
    }
  }

  & .fpe-editor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000001;
    overflow-x: hidden;
    overflow-y: auto;
    .customBarThinDark(white, @main, 4px);
    .alpha(50,0,0,0);

    & .inner {
      position: absolute;
      top: 40px;
      left: 40px;
      width: calc(~"100vw - 80px");
      height: calc(~"100vh - 80px");
      z-index: 1;
      overflow: hidden;
      .shadow;
      overflow: hidden;
      .radius(20px);

      & iframe {
        border: none;
      }
    }

    & .close-button {
      position: absolute;
      z-index: 100;
      top: 4px;
      right: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      .radius(50%);
      background: black;
      color: white;
      cursor: pointer;
      .transition;

      & span {
        font-size: 29px;
      }

      &:hover {
        background: @main;
      }
    }
  }

}

.decorCircle() {
  .circle(60px);
  @media @desktop {
    .circle(55px);
  }
  @media @laptop {
    .circle(45px);
  }
  @media @ipad-p {
    .circle(40px);
  }
  @media @mobile-p {
    .circle(40px);
  }
}
.tileHeader() {
  font-size: 60px;
  font-weight: 800;
  @media @laptop {
    font-size: 42px;
  }
  @media @ipad-p {
    font-size: 38px;
  }
  @media @mobile-p {
    font-size: 35px;
  }
}
