/**
 * Functions file, please import in other stylesheets
 **/
/**
 * CSS Grid
 *
 * @author miWebb <info@miwebb.com>
 * @version 1.2.0
 */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700|Roboto:400,700,900");
[class^='row'], [class^='col'], [class*=' row'], [class*=' col'] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.row.row--no-outer-gutter {
  margin-left: -15px;
  margin-right: -15px;
}

.row.row--same-size {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.row.row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.row.row--top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.row.row--middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row.row--bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.row.row--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.row.row--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row.row--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.row.row--around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.row.row--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.row.row--evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.row:not(.row--no-gutter) > [class^='col'],
.row:not(.row--no-gutter) > [class*=' col'] {
  padding-left: 15px;
  padding-right: 15px;
}

.row > .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

.row > .col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.row > .col-offset-1 {
  margin-left: 8.33333%;
}

.row.row--reverse > .col-offset-1 {
  margin-right: 8.33333%;
  margin-left: inherit;
}

.row > .col-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.row > .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.row > .col-offset-2 {
  margin-left: 16.66667%;
}

.row.row--reverse > .col-offset-2 {
  margin-right: 16.66667%;
  margin-left: inherit;
}

.row > .col-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.row > .col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row > .col-offset-3 {
  margin-left: 25%;
}

.row.row--reverse > .col-offset-3 {
  margin-right: 25%;
  margin-left: inherit;
}

.row > .col-order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.row > .col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row > .col-offset-4 {
  margin-left: 33.33333%;
}

.row.row--reverse > .col-offset-4 {
  margin-right: 33.33333%;
  margin-left: inherit;
}

.row > .col-order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.row > .col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.row > .col-offset-5 {
  margin-left: 41.66667%;
}

.row.row--reverse > .col-offset-5 {
  margin-right: 41.66667%;
  margin-left: inherit;
}

.row > .col-order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.row > .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row > .col-offset-6 {
  margin-left: 50%;
}

.row.row--reverse > .col-offset-6 {
  margin-right: 50%;
  margin-left: inherit;
}

.row > .col-order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.row > .col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.row > .col-offset-7 {
  margin-left: 58.33333%;
}

.row.row--reverse > .col-offset-7 {
  margin-right: 58.33333%;
  margin-left: inherit;
}

.row > .col-order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.row > .col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.row > .col-offset-8 {
  margin-left: 66.66667%;
}

.row.row--reverse > .col-offset-8 {
  margin-right: 66.66667%;
  margin-left: inherit;
}

.row > .col-order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.row > .col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.row > .col-offset-9 {
  margin-left: 75%;
}

.row.row--reverse > .col-offset-9 {
  margin-right: 75%;
  margin-left: inherit;
}

.row > .col-order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.row > .col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.row > .col-offset-10 {
  margin-left: 83.33333%;
}

.row.row--reverse > .col-offset-10 {
  margin-right: 83.33333%;
  margin-left: inherit;
}

.row > .col-order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.row > .col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.row > .col-offset-11 {
  margin-left: 91.66667%;
}

.row.row--reverse > .col-offset-11 {
  margin-right: 91.66667%;
  margin-left: inherit;
}

.row > .col-order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.row > .col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row > .col-offset-12 {
  margin-left: 100%;
}

.row.row--reverse > .col-offset-12 {
  margin-right: 100%;
  margin-left: inherit;
}

.row > .col-order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.row > .col-offset-0 {
  margin-left: 0px;
}

.row.row--reverse > .col-offset-0 {
  margin-right: 0px;
  margin-left: inherit;
}

.row > .col-order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

@media screen and (max-width: 1440px) {
  .row > .col-laptop {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row > .col-laptop-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .row > .col-laptop-offset-1 {
    margin-left: 8.33333%;
  }
  .row.row--reverse > .col-laptop-offset-1 {
    margin-right: 8.33333%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .row > .col-laptop-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .row > .col-laptop-offset-2 {
    margin-left: 16.66667%;
  }
  .row.row--reverse > .col-laptop-offset-2 {
    margin-right: 16.66667%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .row > .col-laptop-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row > .col-laptop-offset-3 {
    margin-left: 25%;
  }
  .row.row--reverse > .col-laptop-offset-3 {
    margin-right: 25%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .row > .col-laptop-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row > .col-laptop-offset-4 {
    margin-left: 33.33333%;
  }
  .row.row--reverse > .col-laptop-offset-4 {
    margin-right: 33.33333%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .row > .col-laptop-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .row > .col-laptop-offset-5 {
    margin-left: 41.66667%;
  }
  .row.row--reverse > .col-laptop-offset-5 {
    margin-right: 41.66667%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .row > .col-laptop-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row > .col-laptop-offset-6 {
    margin-left: 50%;
  }
  .row.row--reverse > .col-laptop-offset-6 {
    margin-right: 50%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .row > .col-laptop-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .row > .col-laptop-offset-7 {
    margin-left: 58.33333%;
  }
  .row.row--reverse > .col-laptop-offset-7 {
    margin-right: 58.33333%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .row > .col-laptop-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .row > .col-laptop-offset-8 {
    margin-left: 66.66667%;
  }
  .row.row--reverse > .col-laptop-offset-8 {
    margin-right: 66.66667%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .row > .col-laptop-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .row > .col-laptop-offset-9 {
    margin-left: 75%;
  }
  .row.row--reverse > .col-laptop-offset-9 {
    margin-right: 75%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .row > .col-laptop-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .row > .col-laptop-offset-10 {
    margin-left: 83.33333%;
  }
  .row.row--reverse > .col-laptop-offset-10 {
    margin-right: 83.33333%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .row > .col-laptop-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .row > .col-laptop-offset-11 {
    margin-left: 91.66667%;
  }
  .row.row--reverse > .col-laptop-offset-11 {
    margin-right: 91.66667%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .row > .col-laptop-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row > .col-laptop-offset-12 {
    margin-left: 100%;
  }
  .row.row--reverse > .col-laptop-offset-12 {
    margin-right: 100%;
    margin-left: inherit;
  }
  .row > .col-laptop-order-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .row > .col-laptop-offset-0 {
    margin-left: 0px;
  }
  .row.row--reverse > .col-laptop-offset-0 {
    margin-right: 0px;
    margin-left: inherit;
  }
  .row > .col-laptop-order-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

@media screen and (max-width: 1024px) {
  .row > .col-tablet {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row > .col-tablet-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .row > .col-tablet-offset-1 {
    margin-left: 8.33333%;
  }
  .row.row--reverse > .col-tablet-offset-1 {
    margin-right: 8.33333%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .row > .col-tablet-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .row > .col-tablet-offset-2 {
    margin-left: 16.66667%;
  }
  .row.row--reverse > .col-tablet-offset-2 {
    margin-right: 16.66667%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .row > .col-tablet-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row > .col-tablet-offset-3 {
    margin-left: 25%;
  }
  .row.row--reverse > .col-tablet-offset-3 {
    margin-right: 25%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .row > .col-tablet-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row > .col-tablet-offset-4 {
    margin-left: 33.33333%;
  }
  .row.row--reverse > .col-tablet-offset-4 {
    margin-right: 33.33333%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .row > .col-tablet-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .row > .col-tablet-offset-5 {
    margin-left: 41.66667%;
  }
  .row.row--reverse > .col-tablet-offset-5 {
    margin-right: 41.66667%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .row > .col-tablet-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row > .col-tablet-offset-6 {
    margin-left: 50%;
  }
  .row.row--reverse > .col-tablet-offset-6 {
    margin-right: 50%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .row > .col-tablet-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .row > .col-tablet-offset-7 {
    margin-left: 58.33333%;
  }
  .row.row--reverse > .col-tablet-offset-7 {
    margin-right: 58.33333%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .row > .col-tablet-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .row > .col-tablet-offset-8 {
    margin-left: 66.66667%;
  }
  .row.row--reverse > .col-tablet-offset-8 {
    margin-right: 66.66667%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .row > .col-tablet-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .row > .col-tablet-offset-9 {
    margin-left: 75%;
  }
  .row.row--reverse > .col-tablet-offset-9 {
    margin-right: 75%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .row > .col-tablet-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .row > .col-tablet-offset-10 {
    margin-left: 83.33333%;
  }
  .row.row--reverse > .col-tablet-offset-10 {
    margin-right: 83.33333%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .row > .col-tablet-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .row > .col-tablet-offset-11 {
    margin-left: 91.66667%;
  }
  .row.row--reverse > .col-tablet-offset-11 {
    margin-right: 91.66667%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .row > .col-tablet-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row > .col-tablet-offset-12 {
    margin-left: 100%;
  }
  .row.row--reverse > .col-tablet-offset-12 {
    margin-right: 100%;
    margin-left: inherit;
  }
  .row > .col-tablet-order-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .row > .col-tablet-offset-0 {
    margin-left: 0px;
  }
  .row.row--reverse > .col-tablet-offset-0 {
    margin-right: 0px;
    margin-left: inherit;
  }
  .row > .col-tablet-order-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

@media screen and (max-width: 640px) {
  .row > .col-mobile {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row > .col-mobile-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .row > .col-mobile-offset-1 {
    margin-left: 8.33333%;
  }
  .row.row--reverse > .col-mobile-offset-1 {
    margin-right: 8.33333%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .row > .col-mobile-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .row > .col-mobile-offset-2 {
    margin-left: 16.66667%;
  }
  .row.row--reverse > .col-mobile-offset-2 {
    margin-right: 16.66667%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .row > .col-mobile-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row > .col-mobile-offset-3 {
    margin-left: 25%;
  }
  .row.row--reverse > .col-mobile-offset-3 {
    margin-right: 25%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .row > .col-mobile-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row > .col-mobile-offset-4 {
    margin-left: 33.33333%;
  }
  .row.row--reverse > .col-mobile-offset-4 {
    margin-right: 33.33333%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .row > .col-mobile-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .row > .col-mobile-offset-5 {
    margin-left: 41.66667%;
  }
  .row.row--reverse > .col-mobile-offset-5 {
    margin-right: 41.66667%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .row > .col-mobile-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row > .col-mobile-offset-6 {
    margin-left: 50%;
  }
  .row.row--reverse > .col-mobile-offset-6 {
    margin-right: 50%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .row > .col-mobile-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .row > .col-mobile-offset-7 {
    margin-left: 58.33333%;
  }
  .row.row--reverse > .col-mobile-offset-7 {
    margin-right: 58.33333%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .row > .col-mobile-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .row > .col-mobile-offset-8 {
    margin-left: 66.66667%;
  }
  .row.row--reverse > .col-mobile-offset-8 {
    margin-right: 66.66667%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .row > .col-mobile-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .row > .col-mobile-offset-9 {
    margin-left: 75%;
  }
  .row.row--reverse > .col-mobile-offset-9 {
    margin-right: 75%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .row > .col-mobile-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .row > .col-mobile-offset-10 {
    margin-left: 83.33333%;
  }
  .row.row--reverse > .col-mobile-offset-10 {
    margin-right: 83.33333%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .row > .col-mobile-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .row > .col-mobile-offset-11 {
    margin-left: 91.66667%;
  }
  .row.row--reverse > .col-mobile-offset-11 {
    margin-right: 91.66667%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .row > .col-mobile-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row > .col-mobile-offset-12 {
    margin-left: 100%;
  }
  .row.row--reverse > .col-mobile-offset-12 {
    margin-right: 100%;
    margin-left: inherit;
  }
  .row > .col-mobile-order-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .row > .col-mobile-offset-0 {
    margin-left: 0px;
  }
  .row.row--reverse > .col-mobile-offset-0 {
    margin-right: 0px;
    margin-left: inherit;
  }
  .row > .col-mobile-order-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Roboto', sans-serif;
}

@media (max-width: 640px) {
  body.body-overflow {
    overflow: hidden;
  }
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper.wrapper-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

header {
  margin-top: 70px;
}

.background {
  background-color: #fff;
}

.headercontainer {
  overflow: hidden;
  height: calc(100vh - 110px);
  margin: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}

.headercontainer .bgimage {
  height: 100vh;
  width: auto;
  min-width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}

@media (max-width: 1024px) {
  .headercontainer {
    height: 50vh;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
  }
}

@media (max-width: 640px) {
  .headercontainer {
    height: 40vh;
  }
}

.headercontainer .intro h1 {
  font-size: 4.86111vw ;
  line-height: 9.02778vw ;
  color: #fff;
  font-weight: 900;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (min-width: 1920px) {
  .headercontainer .intro h1 {
    font-size: 93.33333px ;
  }
}

@media screen and (max-width: 925px) {
  .headercontainer .intro h1 {
    font-size: 44.96528px ;
  }
}

@media screen and (min-width: 1440px) {
  .headercontainer .intro h1 {
    line-height: 130px ;
  }
}

@media screen and (max-width: 400px) {
  .headercontainer .intro h1 {
    line-height: 36.11111px ;
  }
}

@media (max-width: 1023px) {
  .headercontainer .intro h1 {
    font-size: 4.86111vw ;
  }
}

@media screen and (max-width: 1023px) and (min-width: 1920px) {
  .headercontainer .intro h1 {
    font-size: 93.33333px ;
  }
}

@media screen and (max-width: 1023px) and (max-width: 617px) {
  .headercontainer .intro h1 {
    font-size: 29.99306px ;
  }
}

.headercontainer .intro h1 strong {
  font-size: 9.02778vw ;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 8px;
}

@media screen and (min-width: 1920px) {
  .headercontainer .intro h1 strong {
    font-size: 173.33333px ;
  }
}

@media screen and (max-width: 830px) {
  .headercontainer .intro h1 strong {
    font-size: 74.93056px ;
  }
}

@media (max-width: 1023px) {
  .headercontainer .intro h1 strong {
    font-size: 9.02778vw ;
  }
}

@media screen and (max-width: 1023px) and (min-width: 1920px) {
  .headercontainer .intro h1 strong {
    font-size: 173.33333px ;
  }
}

@media screen and (max-width: 1023px) and (max-width: 500px) {
  .headercontainer .intro h1 strong {
    font-size: 45.13889px ;
  }
}

.headercontainer .intro p {
  font-size: 2.77778vw ;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 10px;
}

@media screen and (min-width: 1920px) {
  .headercontainer .intro p {
    font-size: 53.33333px ;
  }
}

@media screen and (max-width: 720px) {
  .headercontainer .intro p {
    font-size: 20px ;
  }
}

@media (max-width: 1023px) {
  .headercontainer .intro p {
    font-size: 2.77778vw ;
  }
}

@media screen and (max-width: 1023px) and (min-width: 1920px) {
  .headercontainer .intro p {
    font-size: 53.33333px ;
  }
}

@media screen and (max-width: 1023px) and (max-width: 540px) {
  .headercontainer .intro p {
    font-size: 15px ;
  }
}

.nummerbordbox {
  background-color: #fff;
  position: relative;
  padding: 20px;
  margin-top: -215px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 670px;
  border: 1px solid #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 15px 50px rgba(114, 114, 114, 0.1);
          box-shadow: 0px 15px 50px rgba(114, 114, 114, 0.1);
}

@media (max-width: 1024px) {
  .nummerbordbox {
    margin-top: -100px;
  }
}

@media (max-width: 710px) {
  .nummerbordbox {
    width: calc(100vw - 40px);
  }
}

@media (max-width: 500px) {
  .nummerbordbox {
    width: 100vw;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

.nummerbordbox input {
  background-color: #ececec;
  font-size: 25px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  border: 1px #ececec solid;
  border-radius: 5px;
  line-height: 5.20833vw ;
  height: 5.20833vw ;
  width: 100%;
  text-align: center;
  outline: none;
  letter-spacing: 0.8px;
}

@media screen and (min-width: 1440px) {
  .nummerbordbox input {
    line-height: 75px ;
  }
}

@media screen and (max-width: 1024px) {
  .nummerbordbox input {
    line-height: 53.33333px ;
  }
}

@media screen and (min-width: 1440px) {
  .nummerbordbox input {
    height: 75px ;
  }
}

@media screen and (max-width: 1024px) {
  .nummerbordbox input {
    height: 53.33333px ;
  }
}

@media (max-width: 640px) {
  .nummerbordbox input {
    font-size: 16px;
  }
}

.nummerbordbox label {
  margin-bottom: 10px;
  padding-left: 15px;
  display: block;
  font: 20px "Roboto", sans-serif;
  font-weight: 400;
  color: #8B8B8B;
  text-align: left;
  letter-spacing: 0.8px;
}

.nummerbordbox .licenseplatebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nummerbordbox .fixbutton {
  background-color: #FF4D7C;
  -webkit-transition: background-color 0.5s ease, border 0.5s ease;
  transition: background-color 0.5s ease, border 0.5s ease;
  border: 1px #FF4D7C solid;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  width: 100%;
  line-height: 5.20833vw ;
  letter-spacing: 0.8px;
}

@media screen and (min-width: 1440px) {
  .nummerbordbox .fixbutton {
    line-height: 75px ;
  }
}

@media screen and (max-width: 1024px) {
  .nummerbordbox .fixbutton {
    line-height: 53.33333px ;
  }
}

.nummerbordbox .fixbutton:hover {
  -webkit-box-shadow: 1px 1px 15px #ccc;
          box-shadow: 1px 1px 15px #ccc;
  background-color: #48E6C5;
  border: 1px #48E6C5 solid;
  position: relative;
}

.nummerbordbox .fixbutton p {
  font-weight: 700;
  color: #fff;
  font-size: 1.80556vw ;
  margin: 0 10px 0 15px;
}

@media screen and (min-width: 1440px) {
  .nummerbordbox .fixbutton p {
    font-size: 26px ;
  }
}

@media screen and (max-width: 1024px) {
  .nummerbordbox .fixbutton p {
    font-size: 18.48889px ;
  }
}

.section {
  max-width: 1600px;
  margin: 0 auto;
}

#itworks {
  width: 80%;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

@media (max-width: 640px) {
  #itworks {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 50px;
  }
}

#itworks .cardamage {
  max-width: 100%;
  text-align: center;
  margin-bottom: 100px;
}

#itworks .cardamage h2 {
  font-size: 4.86111vw ;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media screen and (min-width: 1920px) {
  #itworks .cardamage h2 {
    font-size: 93.33333px ;
  }
}

@media screen and (max-width: 720px) {
  #itworks .cardamage h2 {
    font-size: 35px ;
  }
}

#itworks .cardamage p {
  font-size: 2.22222vw ;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (min-width: 1920px) {
  #itworks .cardamage p {
    font-size: 42.66667px ;
  }
}

@media screen and (max-width: 765px) {
  #itworks .cardamage p {
    font-size: 17px ;
  }
}

@media (max-width: 640px) {
  #itworks .cardamage {
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    position: static;
  }
}

@media (max-width: 640px) {
  #itworks .images > div + div {
    margin-top: 50px;
  }
}

#itworks .images h3 {
  font-size: 2.43056vw ;
  font-weight: 900;
  color: #001956;
  margin-bottom: 5px;
}

@media screen and (min-width: 1920px) {
  #itworks .images h3 {
    font-size: 46.66667px ;
  }
}

@media screen and (max-width: 1024px) {
  #itworks .images h3 {
    font-size: 24.88889px ;
  }
}

#itworks .images p {
  font-size: 1.45833vw ;
}

@media screen and (min-width: 1920px) {
  #itworks .images p {
    font-size: 28px ;
  }
}

@media screen and (max-width: 1097px) {
  #itworks .images p {
    font-size: 15.99792px ;
  }
}

#itworks .images .image {
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
}

#itworks .images .image img {
  max-width: 80%;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  #itworks .images .savemoney {
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  #itworks .images .savemoney {
    margin-top: 0px;
  }
}

h2 {
  font-weight: 900;
  color: #001956;
}

.damage {
  font-size: 3.47222vw ;
}

@media screen and (min-width: 1920px) {
  .damage {
    font-size: 66.66667px ;
  }
}

@media screen and (max-width: 640px) {
  .damage {
    font-size: 22.22222px ;
  }
}

p {
  font-weight: 400;
  color: #001956;
}

@media (max-width: 640px) {
  #benefits {
    margin: 0 15px;
  }
}

#benefits.section {
  max-width: initial;
}

.uspsection {
  background-color: #F6F5F5;
  padding-top: 50px;
  padding-bottom: 100px;
}

@media (max-width: 1024px) {
  .uspsection {
    padding-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .uspsection {
    border-radius: 50px 50px 40px 40px;
    padding: 50px 15px 10px 15px;
  }
}

.uspsection h2 {
  font-size: 4.86111vw ;
  margin: 50px auto 100px auto;
  text-align: center;
}

@media screen and (min-width: 1920px) {
  .uspsection h2 {
    font-size: 93.33333px ;
  }
}

@media screen and (max-width: 720px) {
  .uspsection h2 {
    font-size: 35px ;
  }
}

@media (max-width: 1024px) {
  .uspsection h2 {
    margin: 0 auto 40px auto;
  }
}

@media (max-width: 640px) {
  .uspsection h2 {
    width: 100%;
    max-width: 200px;
  }
}

.uspsection .allusp {
  width: 85%;
  margin: 0px auto 0 auto;
}

.uspsection .allusp > div > div.col-6:first-child {
  padding-right: 50px;
}

.uspsection .allusp > div > div.col-6:last-child {
  padding-left: 50px;
}

@media (max-width: 1024px) {
  .uspsection .allusp > div > div.col-6 {
    margin-bottom: 40px;
  }
}

@media (max-width: 1024px) {
  .uspsection .allusp > div > div.col-6:first-child,
  .uspsection .allusp > div > div.col-6:last-child {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .uspsection .allusp {
    width: 100%;
  }
}

.uspsection .uspbottompusher {
  margin-bottom: 100px;
}

@media (max-width: 1024px) {
  .uspsection .uspbottompusher {
    margin-bottom: 0;
  }
}

.uspsection .wrapusphead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px 0;
}

.uspsection .wrapusphead span {
  width: 50px;
}

@media (max-width: 1024px) {
  .uspsection .wrapusphead {
    margin-bottom: 10px;
  }
}

.uspsection .wrapusphead h3 {
  font-weight: 900;
  color: #001956;
  font-size: 1.94444vw ;
  margin: 0 0 0 20px;
}

@media screen and (min-width: 1920px) {
  .uspsection .wrapusphead h3 {
    font-size: 37.33333px ;
  }
}

@media screen and (max-width: 1024px) {
  .uspsection .wrapusphead h3 {
    font-size: 19.91111px ;
  }
}

.uspsection p {
  font-weight: 400;
  color: #001956;
  font-size: 1.25vw ;
  line-height: 1.94444vw ;
}

@media screen and (min-width: 1920px) {
  .uspsection p {
    font-size: 24px ;
  }
}

@media screen and (max-width: 1200px) {
  .uspsection p {
    font-size: 15px ;
  }
}

@media screen and (min-width: 1920px) {
  .uspsection p {
    line-height: 37.33333px ;
  }
}

@media screen and (max-width: 1200px) {
  .uspsection p {
    line-height: 23.33333px ;
  }
}

.costsection {
  width: 80%;
  margin: 0 auto;
}

.costsection h2 {
  font-size: 4.86111vw ;
  line-height: 4.86111vw ;
  margin: 100px auto;
  text-align: center;
}

@media screen and (min-width: 1920px) {
  .costsection h2 {
    font-size: 93.33333px ;
  }
}

@media screen and (max-width: 720px) {
  .costsection h2 {
    font-size: 35px ;
  }
}

@media screen and (min-width: 1920px) {
  .costsection h2 {
    line-height: 93.33333px ;
  }
}

@media screen and (max-width: 720px) {
  .costsection h2 {
    line-height: 35px ;
  }
}

@media (max-width: 1024px) {
  .costsection h2 {
    margin: 100px auto 40px auto;
  }
}

@media (max-width: 640px) {
  .costsection h2 {
    margin: 50px auto 40px auto;
  }
}

.costsection .images {
  text-align: center;
  margin-bottom: 100px;
}

@media (max-width: 1024px) {
  .costsection .images {
    margin-bottom: 50px;
  }
}

.costsection .images p {
  font-size: 1.80556vw ;
  margin-bottom: 50px;
}

@media screen and (min-width: 1920px) {
  .costsection .images p {
    font-size: 34.66667px ;
  }
}

@media screen and (max-width: 1024px) {
  .costsection .images p {
    font-size: 18.48889px ;
  }
}

@media (max-width: 640px) {
  .costsection .images p {
    margin-bottom: 30px;
  }
}

.costsection .images .image img {
  max-width: 400px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

footer {
  background-color: #001956;
}

@media (max-width: 640px) {
  footer {
    padding: 10px 0;
  }
}

footer p {
  font-weight: 700;
  font-weight: bold;
  color: #fff;
  font-size: 23px;
}

footer p a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 1024px) {
  footer p {
    font-size: 18px;
  }
}

footer .contactinfo {
  min-height: 250px;
}

footer .contactinfo > div::before {
  content: '';
  width: 5px;
  height: 15px;
  background-color: #0AE8C8;
  margin-right: 10px;
  border-radius: 3px;
}

footer .contactinfo div:last-child::before {
  content: none;
}

.joinnewsletter {
  font-weight: 700;
  color: #fff;
  font-size: 23px;
}

@media (max-width: 1024px) {
  .joinnewsletter {
    font-size: 18px;
  }
}

.joinnewsletter label {
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.joinnewsletter .newsletterbar {
  width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.joinnewsletter .newsletterbar ::-webkit-input-placeholder {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}

.joinnewsletter .newsletterbar :-ms-input-placeholder {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}

.joinnewsletter .newsletterbar ::-ms-input-placeholder {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}

.joinnewsletter .newsletterbar ::placeholder {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}

.joinnewsletter .newsletterbar input {
  background-color: #001956;
  font-size: 1.1em;
  font-weight: 400;
  color: #fff;
  border: 1px #fff solid;
  border-radius: 5px 0 0 5px;
  max-width: 200px;
  padding: 10px;
  height: 50px;
  outline: none;
}

.joinnewsletter .newsletterbar .newsbutton {
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border: 1px solid #fff;
  border-radius: 0 5px 5px 0;
  color: #fff;
  width: 50px;
  text-decoration: none;
  cursor: pointer;
}

.joinnewsletter .newsletterbar .newsbutton:hover {
  background-color: #FF4D7C;
  border: 1px #FF4D7C solid;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.joinnewsletter .newsletterbar .newsbutton img {
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .begone {
    display: none;
  }
}

.bannerusp {
  min-height: 150px;
  background-image: linear-gradient(to bottom, #FAFAFA 0px, #FFF 35px);
}

.bannerusp.shadowbottom {
  background-image: linear-gradient(to top, #FAFAFA 0px, #FFF 35px);
}

@media (max-width: 1024px) {
  .bannerusp.shadowbottom {
    padding-bottom: 50px;
  }
}

.bannerusp .bottom {
  min-height: 150px;
}

.bannerusp .bottom > div + div {
  border-left: 1px solid #D8D8D8;
}

@media (max-width: 1024px) {
  .bannerusp .bottom > div + div {
    border-left: none;
  }
}

.bannerusp .bottom p {
  font-size: 20px;
  margin-left: 20px;
  text-align: left;
}

@media (max-width: 1024px) {
  .bannerusp .bottom p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .bannerusp .bottom p {
    font-size: 18px;
    margin-left: 0;
  }
}

.bannerusp .bottom p strong {
  display: block;
}

.bannerusp .bottom > div {
  min-height: 80px;
}

@media (max-width: 1024px) {
  .bannerusp .bottom > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin: 35px 0;
  }
  .bannerusp .bottom > div:first-child {
    margin-top: 80px;
  }
}

@media (max-width: 1024px) and (max-width: 1024px) {
  .bannerusp .bottom > div:first-child {
    margin: 35px 0;
  }
}

@media (max-width: 1024px) and (max-width: 640px) {
  .bannerusp .bottom > div:first-child {
    margin: 20px 0;
  }
}

@media (max-width: 1024px) {
  .bannerusp .bottom > div img {
    margin: 20px 0;
  }
}

@media (max-width: 640px) {
  .bannerusp .bottom > div {
    margin: 5px 0;
  }
}

#hamburger {
  position: absolute;
  right: 25px;
  top: 0px;
  height: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 640px) {
  #hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#hamburger > div {
  height: 15px;
  width: 20px;
  position: relative;
}

#hamburger > div span {
  display: block;
  background-color: #000;
  height: 3px;
  width: 100%;
  position: absolute;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#hamburger > div span:nth-child(1) {
  top: 0;
}

#hamburger > div span:nth-child(2) {
  top: 6px;
  left: 0px;
  opacity: 1;
}

#hamburger > div span:nth-child(3) {
  top: 12px;
}

#hamburger.open > div span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 50%;
  top: 6px;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}

#hamburger.open > div span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#hamburger.open > div span:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 50%;
  right: 0;
  top: 6px;
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
}

.fixycarlogo {
  max-width: 180px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .fixycarlogo {
    display: block;
    min-width: 120px;
  }
}

.navbar {
  width: 100%;
  margin: 0 auto;
  vertical-align: bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0px;
  background-color: #fff;
  z-index: 1;
  padding: 22px 20px;
}

.navbar nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 640px) {
  .navbar nav {
    display: none;
  }
  .navbar nav.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
  }
}

@media (max-width: 640px) and (max-width: 640px) {
  .navbar nav.open .menu li + li {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .navbar nav.open ul {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 640px) and (max-width: 640px) {
  .navbar nav.open li {
    display: block;
  }
}

@media (max-width: 640px) and (max-width: 640px) {
  .navbar nav.open li + li {
    margin-left: 0;
    padding-top: 40px;
  }
}

@media (max-width: 640px) {
  .navbar nav.open a {
    font-size: 2.77778vw ;
  }
}

@media screen and (max-width: 640px) and (min-width: 1920px) {
  .navbar nav.open a {
    font-size: 53.33333px ;
  }
}

@media screen and (max-width: 640px) and (max-width: 1440px) {
  .navbar nav.open a {
    font-size: 40px ;
  }
}

.menu {
  list-style-type: none;
  padding: 0;
}

@media (max-width: 1024px) {
  .menu {
    text-align: center;
  }
}

.menu li {
  display: inline;
}

.menu li + li {
  margin-left: 40px;
}

@media (max-width: 1024px) {
  .menu li + li {
    margin-left: 0px;
  }
}

.menu li a {
  text-decoration: none;
  color: #d7d7d7;
  font-weight: bold;
  letter-spacing: 1px;
  font-weight: 900;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 1.11111vw ;
}

@media screen and (min-width: 1920px) {
  .menu li a {
    font-size: 21.33333px ;
  }
}

@media screen and (max-width: 1440px) {
  .menu li a {
    font-size: 16px ;
  }
}

@media (max-width: 1024px) {
  .menu li a {
    font-size: 14px;
  }
}

.menu li a:hover {
  color: #001956;
}

.menu li.active a {
  color: #001956;
}

.menu li + li {
  padding-left: 20px;
}
/*# sourceMappingURL=main.css.map */