/*!
 * Bootstrap Grid v5.3.0-alpha1 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
 .container,
 .container-fluid,
 .container-xxl,
 .container-xl,
 .container-lg,
 .container-md,
 .container-sm {
   --bs-gutter-x: 1.25rem;
   --bs-gutter-y: 0;
   width: 100%;
   padding-right: calc(var(--bs-gutter-x) * 0.5);
   padding-left: calc(var(--bs-gutter-x) * 0.5);
   margin-right: auto;
   margin-left: auto;
 }
 
 @media (min-width: 576px) {
   .container-sm, .container {
     max-width: 540px;
   }
 }
 @media (min-width: 768px) {
   .container-md, .container-sm, .container {
     max-width: 720px;
   }
 }
 @media (min-width: 1024px) {
   .container-lg, .container-md, .container-sm, .container {
     max-width: 960px;
   }
 }
 @media (min-width: 1300px) {
   .container-xl, .container-lg, .container-md, .container-sm, .container {
     max-width: 1600px;
   }
 }
 @media (min-width: 1500px) {
   .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
     max-width: 1870px;
   }
 }
 .row {
   --bs-gutter-x: 1.25rem;
   --bs-gutter-y: 0;
   display: flex;
   flex-wrap: wrap;
   margin-top: calc(-1 * var(--bs-gutter-y));
   margin-right: calc(-0.5 * var(--bs-gutter-x));
   margin-left: calc(-0.5 * var(--bs-gutter-x));
 }
 .row > * {
   box-sizing: border-box;
   flex-shrink: 0;
   width: 100%;
   max-width: 100%;
   padding-right: calc(var(--bs-gutter-x) * 0.5);
   padding-left: calc(var(--bs-gutter-x) * 0.5);
   margin-top: var(--bs-gutter-y);
 }
 
 .col {
   flex: 1 0 0%;
 }
 
 .row-cols-auto > * {
   flex: 0 0 auto;
   width: auto;
 }
 
 .row-cols-1 > * {
   flex: 0 0 auto;
   width: 100%;
 }
 
 .row-cols-2 > * {
   flex: 0 0 auto;
   width: 50%;
 }
 
 .row-cols-3 > * {
   flex: 0 0 auto;
   width: 33.3333333333%;
 }
 
 .row-cols-4 > * {
   flex: 0 0 auto;
   width: 25%;
 }
 
 .row-cols-5 > * {
   flex: 0 0 auto;
   width: 20%;
 }
 
 .row-cols-6 > * {
   flex: 0 0 auto;
   width: 16.6666666667%;
 }
 
 .col-auto {
   flex: 0 0 auto;
   width: auto;
 }
 
 .col-1 {
   flex: 0 0 auto;
   width: 8.33333333%;
 }
 
 .col-2 {
   flex: 0 0 auto;
   width: 16.66666667%;
 }
 
 .col-3 {
   flex: 0 0 auto;
   width: 25%;
 }
 
 .col-4 {
   flex: 0 0 auto;
   width: 33.33333333%;
 }
 
 .col-5 {
   flex: 0 0 auto;
   width: 41.66666667%;
 }
 
 .col-6 {
   flex: 0 0 auto;
   width: 50%;
 }
 
 .col-7 {
   flex: 0 0 auto;
   width: 58.33333333%;
 }
 
 .col-8 {
   flex: 0 0 auto;
   width: 66.66666667%;
 }
 
 .col-9 {
   flex: 0 0 auto;
   width: 75%;
 }
 
 .col-10 {
   flex: 0 0 auto;
   width: 83.33333333%;
 }
 
 .col-11 {
   flex: 0 0 auto;
   width: 91.66666667%;
 }
 
 .col-12 {
   flex: 0 0 auto;
   width: 100%;
 }
 
 .offset-1 {
   margin-left: 8.33333333%;
 }
 
 .offset-2 {
   margin-left: 16.66666667%;
 }
 
 .offset-3 {
   margin-left: 25%;
 }
 
 .offset-4 {
   margin-left: 33.33333333%;
 }
 
 .offset-5 {
   margin-left: 41.66666667%;
 }
 
 .offset-6 {
   margin-left: 50%;
 }
 
 .offset-7 {
   margin-left: 58.33333333%;
 }
 
 .offset-8 {
   margin-left: 66.66666667%;
 }
 
 .offset-9 {
   margin-left: 75%;
 }
 
 .offset-10 {
   margin-left: 83.33333333%;
 }
 
 .offset-11 {
   margin-left: 91.66666667%;
 }
 
 .g-0,
 .gx-0 {
   --bs-gutter-x: 0;
 }
 
 .g-0,
 .gy-0 {
   --bs-gutter-y: 0;
 }
 
 .g-1,
 .gx-1 {
   --bs-gutter-x: 0.25rem;
 }
 
 .g-1,
 .gy-1 {
   --bs-gutter-y: 0.25rem;
 }
 
 .g-2,
 .gx-2 {
   --bs-gutter-x: 0.5rem;
 }
 
 .g-2,
 .gy-2 {
   --bs-gutter-y: 0.5rem;
 }
 
 .g-3,
 .gx-3 {
   --bs-gutter-x: 1rem;
 }
 
 .g-3,
 .gy-3 {
   --bs-gutter-y: 1rem;
 }
 
 .g-4,
 .gx-4 {
   --bs-gutter-x: 1.5rem;
 }
 
 .g-4,
 .gy-4 {
   --bs-gutter-y: 1.5rem;
 }
 
 .g-5,
 .gx-5 {
   --bs-gutter-x: 3rem;
 }
 
 .g-5,
 .gy-5 {
   --bs-gutter-y: 3rem;
 }
 
 @media (min-width: 576px) {
   .col-sm {
     flex: 1 0 0%;
   }
   .row-cols-sm-auto > * {
     flex: 0 0 auto;
     width: auto;
   }
   .row-cols-sm-1 > * {
     flex: 0 0 auto;
     width: 100%;
   }
   .row-cols-sm-2 > * {
     flex: 0 0 auto;
     width: 50%;
   }
   .row-cols-sm-3 > * {
     flex: 0 0 auto;
     width: 33.3333333333%;
   }
   .row-cols-sm-4 > * {
     flex: 0 0 auto;
     width: 25%;
   }
   .row-cols-sm-5 > * {
     flex: 0 0 auto;
     width: 20%;
   }
   .row-cols-sm-6 > * {
     flex: 0 0 auto;
     width: 16.6666666667%;
   }
   .col-sm-auto {
     flex: 0 0 auto;
     width: auto;
   }
   .col-sm-1 {
     flex: 0 0 auto;
     width: 8.33333333%;
   }
   .col-sm-2 {
     flex: 0 0 auto;
     width: 16.66666667%;
   }
   .col-sm-3 {
     flex: 0 0 auto;
     width: 25%;
   }
   .col-sm-4 {
     flex: 0 0 auto;
     width: 33.33333333%;
   }
   .col-sm-5 {
     flex: 0 0 auto;
     width: 41.66666667%;
   }
   .col-sm-6 {
     flex: 0 0 auto;
     width: 50%;
   }
   .col-sm-7 {
     flex: 0 0 auto;
     width: 58.33333333%;
   }
   .col-sm-8 {
     flex: 0 0 auto;
     width: 66.66666667%;
   }
   .col-sm-9 {
     flex: 0 0 auto;
     width: 75%;
   }
   .col-sm-10 {
     flex: 0 0 auto;
     width: 83.33333333%;
   }
   .col-sm-11 {
     flex: 0 0 auto;
     width: 91.66666667%;
   }
   .col-sm-12 {
     flex: 0 0 auto;
     width: 100%;
   }
   .offset-sm-0 {
     margin-left: 0;
   }
   .offset-sm-1 {
     margin-left: 8.33333333%;
   }
   .offset-sm-2 {
     margin-left: 16.66666667%;
   }
   .offset-sm-3 {
     margin-left: 25%;
   }
   .offset-sm-4 {
     margin-left: 33.33333333%;
   }
   .offset-sm-5 {
     margin-left: 41.66666667%;
   }
   .offset-sm-6 {
     margin-left: 50%;
   }
   .offset-sm-7 {
     margin-left: 58.33333333%;
   }
   .offset-sm-8 {
     margin-left: 66.66666667%;
   }
   .offset-sm-9 {
     margin-left: 75%;
   }
   .offset-sm-10 {
     margin-left: 83.33333333%;
   }
   .offset-sm-11 {
     margin-left: 91.66666667%;
   }
   .g-sm-0,
   .gx-sm-0 {
     --bs-gutter-x: 0;
   }
   .g-sm-0,
   .gy-sm-0 {
     --bs-gutter-y: 0;
   }
   .g-sm-1,
   .gx-sm-1 {
     --bs-gutter-x: 0.25rem;
   }
   .g-sm-1,
   .gy-sm-1 {
     --bs-gutter-y: 0.25rem;
   }
   .g-sm-2,
   .gx-sm-2 {
     --bs-gutter-x: 0.5rem;
   }
   .g-sm-2,
   .gy-sm-2 {
     --bs-gutter-y: 0.5rem;
   }
   .g-sm-3,
   .gx-sm-3 {
     --bs-gutter-x: 1rem;
   }
   .g-sm-3,
   .gy-sm-3 {
     --bs-gutter-y: 1rem;
   }
   .g-sm-4,
   .gx-sm-4 {
     --bs-gutter-x: 1.5rem;
   }
   .g-sm-4,
   .gy-sm-4 {
     --bs-gutter-y: 1.5rem;
   }
   .g-sm-5,
   .gx-sm-5 {
     --bs-gutter-x: 3rem;
   }
   .g-sm-5,
   .gy-sm-5 {
     --bs-gutter-y: 3rem;
   }
 }
 @media (min-width: 768px) {
   .col-md {
     flex: 1 0 0%;
   }
   .row-cols-md-auto > * {
     flex: 0 0 auto;
     width: auto;
   }
   .row-cols-md-1 > * {
     flex: 0 0 auto;
     width: 100%;
   }
   .row-cols-md-2 > * {
     flex: 0 0 auto;
     width: 50%;
   }
   .row-cols-md-3 > * {
     flex: 0 0 auto;
     width: 33.3333333333%;
   }
   .row-cols-md-4 > * {
     flex: 0 0 auto;
     width: 25%;
   }
   .row-cols-md-5 > * {
     flex: 0 0 auto;
     width: 20%;
   }
   .row-cols-md-6 > * {
     flex: 0 0 auto;
     width: 16.6666666667%;
   }
   .col-md-auto {
     flex: 0 0 auto;
     width: auto;
   }
   .col-md-1 {
     flex: 0 0 auto;
     width: 8.33333333%;
   }
   .col-md-2 {
     flex: 0 0 auto;
     width: 16.66666667%;
   }
   .col-md-3 {
     flex: 0 0 auto;
     width: 25%;
   }
   .col-md-4 {
     flex: 0 0 auto;
     width: 33.33333333%;
   }
   .col-md-5 {
     flex: 0 0 auto;
     width: 41.66666667%;
   }
   .col-md-6 {
     flex: 0 0 auto;
     width: 50%;
   }
   .col-md-7 {
     flex: 0 0 auto;
     width: 58.33333333%;
   }
   .col-md-8 {
     flex: 0 0 auto;
     width: 66.66666667%;
   }
   .col-md-9 {
     flex: 0 0 auto;
     width: 75%;
   }
   .col-md-10 {
     flex: 0 0 auto;
     width: 83.33333333%;
   }
   .col-md-11 {
     flex: 0 0 auto;
     width: 91.66666667%;
   }
   .col-md-12 {
     flex: 0 0 auto;
     width: 100%;
   }
   .offset-md-0 {
     margin-left: 0;
   }
   .offset-md-1 {
     margin-left: 8.33333333%;
   }
   .offset-md-2 {
     margin-left: 16.66666667%;
   }
   .offset-md-3 {
     margin-left: 25%;
   }
   .offset-md-4 {
     margin-left: 33.33333333%;
   }
   .offset-md-5 {
     margin-left: 41.66666667%;
   }
   .offset-md-6 {
     margin-left: 50%;
   }
   .offset-md-7 {
     margin-left: 58.33333333%;
   }
   .offset-md-8 {
     margin-left: 66.66666667%;
   }
   .offset-md-9 {
     margin-left: 75%;
   }
   .offset-md-10 {
     margin-left: 83.33333333%;
   }
   .offset-md-11 {
     margin-left: 91.66666667%;
   }
   .g-md-0,
   .gx-md-0 {
     --bs-gutter-x: 0;
   }
   .g-md-0,
   .gy-md-0 {
     --bs-gutter-y: 0;
   }
   .g-md-1,
   .gx-md-1 {
     --bs-gutter-x: 0.25rem;
   }
   .g-md-1,
   .gy-md-1 {
     --bs-gutter-y: 0.25rem;
   }
   .g-md-2,
   .gx-md-2 {
     --bs-gutter-x: 0.5rem;
   }
   .g-md-2,
   .gy-md-2 {
     --bs-gutter-y: 0.5rem;
   }
   .g-md-3,
   .gx-md-3 {
     --bs-gutter-x: 1rem;
   }
   .g-md-3,
   .gy-md-3 {
     --bs-gutter-y: 1rem;
   }
   .g-md-4,
   .gx-md-4 {
     --bs-gutter-x: 1.5rem;
   }
   .g-md-4,
   .gy-md-4 {
     --bs-gutter-y: 1.5rem;
   }
   .g-md-5,
   .gx-md-5 {
     --bs-gutter-x: 3rem;
   }
   .g-md-5,
   .gy-md-5 {
     --bs-gutter-y: 3rem;
   }
 }
 @media (min-width: 1024px) {
   .col-lg {
     flex: 1 0 0%;
   }
   .row-cols-lg-auto > * {
     flex: 0 0 auto;
     width: auto;
   }
   .row-cols-lg-1 > * {
     flex: 0 0 auto;
     width: 100%;
   }
   .row-cols-lg-2 > * {
     flex: 0 0 auto;
     width: 50%;
   }
   .row-cols-lg-3 > * {
     flex: 0 0 auto;
     width: 33.3333333333%;
   }
   .row-cols-lg-4 > * {
     flex: 0 0 auto;
     width: 25%;
   }
   .row-cols-lg-5 > * {
     flex: 0 0 auto;
     width: 20%;
   }
   .row-cols-lg-6 > * {
     flex: 0 0 auto;
     width: 16.6666666667%;
   }
   .col-lg-auto {
     flex: 0 0 auto;
     width: auto;
   }
   .col-lg-1 {
     flex: 0 0 auto;
     width: 8.33333333%;
   }
   .col-lg-2 {
     flex: 0 0 auto;
     width: 16.66666667%;
   }
   .col-lg-3 {
     flex: 0 0 auto;
     width: 25%;
   }
   .col-lg-4 {
     flex: 0 0 auto;
     width: 33.33333333%;
   }
   .col-lg-5 {
     flex: 0 0 auto;
     width: 41.66666667%;
   }
   .col-lg-6 {
     flex: 0 0 auto;
     width: 50%;
   }
   .col-lg-7 {
     flex: 0 0 auto;
     width: 58.33333333%;
   }
   .col-lg-8 {
     flex: 0 0 auto;
     width: 66.66666667%;
   }
   .col-lg-9 {
     flex: 0 0 auto;
     width: 75%;
   }
   .col-lg-10 {
     flex: 0 0 auto;
     width: 83.33333333%;
   }
   .col-lg-11 {
     flex: 0 0 auto;
     width: 91.66666667%;
   }
   .col-lg-12 {
     flex: 0 0 auto;
     width: 100%;
   }
   .offset-lg-0 {
     margin-left: 0;
   }
   .offset-lg-1 {
     margin-left: 8.33333333%;
   }
   .offset-lg-2 {
     margin-left: 16.66666667%;
   }
   .offset-lg-3 {
     margin-left: 25%;
   }
   .offset-lg-4 {
     margin-left: 33.33333333%;
   }
   .offset-lg-5 {
     margin-left: 41.66666667%;
   }
   .offset-lg-6 {
     margin-left: 50%;
   }
   .offset-lg-7 {
     margin-left: 58.33333333%;
   }
   .offset-lg-8 {
     margin-left: 66.66666667%;
   }
   .offset-lg-9 {
     margin-left: 75%;
   }
   .offset-lg-10 {
     margin-left: 83.33333333%;
   }
   .offset-lg-11 {
     margin-left: 91.66666667%;
   }
   .g-lg-0,
   .gx-lg-0 {
     --bs-gutter-x: 0;
   }
   .g-lg-0,
   .gy-lg-0 {
     --bs-gutter-y: 0;
   }
   .g-lg-1,
   .gx-lg-1 {
     --bs-gutter-x: 0.25rem;
   }
   .g-lg-1,
   .gy-lg-1 {
     --bs-gutter-y: 0.25rem;
   }
   .g-lg-2,
   .gx-lg-2 {
     --bs-gutter-x: 0.5rem;
   }
   .g-lg-2,
   .gy-lg-2 {
     --bs-gutter-y: 0.5rem;
   }
   .g-lg-3,
   .gx-lg-3 {
     --bs-gutter-x: 1rem;
   }
   .g-lg-3,
   .gy-lg-3 {
     --bs-gutter-y: 1rem;
   }
   .g-lg-4,
   .gx-lg-4 {
     --bs-gutter-x: 1.5rem;
   }
   .g-lg-4,
   .gy-lg-4 {
     --bs-gutter-y: 1.5rem;
   }
   .g-lg-5,
   .gx-lg-5 {
     --bs-gutter-x: 3rem;
   }
   .g-lg-5,
   .gy-lg-5 {
     --bs-gutter-y: 3rem;
   }
 }
 @media (min-width: 1300px) {
   .col-xl {
     flex: 1 0 0%;
   }
   .row-cols-xl-auto > * {
     flex: 0 0 auto;
     width: auto;
   }
   .row-cols-xl-1 > * {
     flex: 0 0 auto;
     width: 100%;
   }
   .row-cols-xl-2 > * {
     flex: 0 0 auto;
     width: 50%;
   }
   .row-cols-xl-3 > * {
     flex: 0 0 auto;
     width: 33.3333333333%;
   }
   .row-cols-xl-4 > * {
     flex: 0 0 auto;
     width: 25%;
   }
   .row-cols-xl-5 > * {
     flex: 0 0 auto;
     width: 20%;
   }
   .row-cols-xl-6 > * {
     flex: 0 0 auto;
     width: 16.6666666667%;
   }
   .col-xl-auto {
     flex: 0 0 auto;
     width: auto;
   }
   .col-xl-1 {
     flex: 0 0 auto;
     width: 8.33333333%;
   }
   .col-xl-2 {
     flex: 0 0 auto;
     width: 16.66666667%;
   }
   .col-xl-3 {
     flex: 0 0 auto;
     width: 25%;
   }
   .col-xl-4 {
     flex: 0 0 auto;
     width: 33.33333333%;
   }
   .col-xl-5 {
     flex: 0 0 auto;
     width: 41.66666667%;
   }
   .col-xl-6 {
     flex: 0 0 auto;
     width: 50%;
   }
   .col-xl-7 {
     flex: 0 0 auto;
     width: 58.33333333%;
   }
   .col-xl-8 {
     flex: 0 0 auto;
     width: 66.66666667%;
   }
   .col-xl-9 {
     flex: 0 0 auto;
     width: 75%;
   }
   .col-xl-10 {
     flex: 0 0 auto;
     width: 83.33333333%;
   }
   .col-xl-11 {
     flex: 0 0 auto;
     width: 91.66666667%;
   }
   .col-xl-12 {
     flex: 0 0 auto;
     width: 100%;
   }
   .offset-xl-0 {
     margin-left: 0;
   }
   .offset-xl-1 {
     margin-left: 8.33333333%;
   }
   .offset-xl-2 {
     margin-left: 16.66666667%;
   }
   .offset-xl-3 {
     margin-left: 25%;
   }
   .offset-xl-4 {
     margin-left: 33.33333333%;
   }
   .offset-xl-5 {
     margin-left: 41.66666667%;
   }
   .offset-xl-6 {
     margin-left: 50%;
   }
   .offset-xl-7 {
     margin-left: 58.33333333%;
   }
   .offset-xl-8 {
     margin-left: 66.66666667%;
   }
   .offset-xl-9 {
     margin-left: 75%;
   }
   .offset-xl-10 {
     margin-left: 83.33333333%;
   }
   .offset-xl-11 {
     margin-left: 91.66666667%;
   }
   .g-xl-0,
   .gx-xl-0 {
     --bs-gutter-x: 0;
   }
   .g-xl-0,
   .gy-xl-0 {
     --bs-gutter-y: 0;
   }
   .g-xl-1,
   .gx-xl-1 {
     --bs-gutter-x: 0.25rem;
   }
   .g-xl-1,
   .gy-xl-1 {
     --bs-gutter-y: 0.25rem;
   }
   .g-xl-2,
   .gx-xl-2 {
     --bs-gutter-x: 0.5rem;
   }
   .g-xl-2,
   .gy-xl-2 {
     --bs-gutter-y: 0.5rem;
   }
   .g-xl-3,
   .gx-xl-3 {
     --bs-gutter-x: 1rem;
   }
   .g-xl-3,
   .gy-xl-3 {
     --bs-gutter-y: 1rem;
   }
   .g-xl-4,
   .gx-xl-4 {
     --bs-gutter-x: 1.5rem;
   }
   .g-xl-4,
   .gy-xl-4 {
     --bs-gutter-y: 1.5rem;
   }
   .g-xl-5,
   .gx-xl-5 {
     --bs-gutter-x: 3rem;
   }
   .g-xl-5,
   .gy-xl-5 {
     --bs-gutter-y: 3rem;
   }
 }
 @media (min-width: 1500px) {
   .col-xxl {
     flex: 1 0 0%;
   }
   .row-cols-xxl-auto > * {
     flex: 0 0 auto;
     width: auto;
   }
   .row-cols-xxl-1 > * {
     flex: 0 0 auto;
     width: 100%;
   }
   .row-cols-xxl-2 > * {
     flex: 0 0 auto;
     width: 50%;
   }
   .row-cols-xxl-3 > * {
     flex: 0 0 auto;
     width: 33.3333333333%;
   }
   .row-cols-xxl-4 > * {
     flex: 0 0 auto;
     width: 25%;
   }
   .row-cols-xxl-5 > * {
     flex: 0 0 auto;
     width: 20%;
   }
   .row-cols-xxl-6 > * {
     flex: 0 0 auto;
     width: 16.6666666667%;
   }
   .col-xxl-auto {
     flex: 0 0 auto;
     width: auto;
   }
   .col-xxl-1 {
     flex: 0 0 auto;
     width: 8.33333333%;
   }
   .col-xxl-2 {
     flex: 0 0 auto;
     width: 16.66666667%;
   }
   .col-xxl-3 {
     flex: 0 0 auto;
     width: 25%;
   }
   .col-xxl-4 {
     flex: 0 0 auto;
     width: 33.33333333%;
   }
   .col-xxl-5 {
     flex: 0 0 auto;
     width: 41.66666667%;
   }
   .col-xxl-6 {
     flex: 0 0 auto;
     width: 50%;
   }
   .col-xxl-7 {
     flex: 0 0 auto;
     width: 58.33333333%;
   }
   .col-xxl-8 {
     flex: 0 0 auto;
     width: 66.66666667%;
   }
   .col-xxl-9 {
     flex: 0 0 auto;
     width: 75%;
   }
   .col-xxl-10 {
     flex: 0 0 auto;
     width: 83.33333333%;
   }
   .col-xxl-11 {
     flex: 0 0 auto;
     width: 91.66666667%;
   }
   .col-xxl-12 {
     flex: 0 0 auto;
     width: 100%;
   }
   .offset-xxl-0 {
     margin-left: 0;
   }
   .offset-xxl-1 {
     margin-left: 8.33333333%;
   }
   .offset-xxl-2 {
     margin-left: 16.66666667%;
   }
   .offset-xxl-3 {
     margin-left: 25%;
   }
   .offset-xxl-4 {
     margin-left: 33.33333333%;
   }
   .offset-xxl-5 {
     margin-left: 41.66666667%;
   }
   .offset-xxl-6 {
     margin-left: 50%;
   }
   .offset-xxl-7 {
     margin-left: 58.33333333%;
   }
   .offset-xxl-8 {
     margin-left: 66.66666667%;
   }
   .offset-xxl-9 {
     margin-left: 75%;
   }
   .offset-xxl-10 {
     margin-left: 83.33333333%;
   }
   .offset-xxl-11 {
     margin-left: 91.66666667%;
   }
   .g-xxl-0,
   .gx-xxl-0 {
     --bs-gutter-x: 0;
   }
   .g-xxl-0,
   .gy-xxl-0 {
     --bs-gutter-y: 0;
   }
   .g-xxl-1,
   .gx-xxl-1 {
     --bs-gutter-x: 0.25rem;
   }
   .g-xxl-1,
   .gy-xxl-1 {
     --bs-gutter-y: 0.25rem;
   }
   .g-xxl-2,
   .gx-xxl-2 {
     --bs-gutter-x: 0.5rem;
   }
   .g-xxl-2,
   .gy-xxl-2 {
     --bs-gutter-y: 0.5rem;
   }
   .g-xxl-3,
   .gx-xxl-3 {
     --bs-gutter-x: 1rem;
   }
   .g-xxl-3,
   .gy-xxl-3 {
     --bs-gutter-y: 1rem;
   }
   .g-xxl-4,
   .gx-xxl-4 {
     --bs-gutter-x: 1.5rem;
   }
   .g-xxl-4,
   .gy-xxl-4 {
     --bs-gutter-y: 1.5rem;
   }
   .g-xxl-5,
   .gx-xxl-5 {
     --bs-gutter-x: 3rem;
   }
   .g-xxl-5,
   .gy-xxl-5 {
     --bs-gutter-y: 3rem;
   }
 }
 .d-inline {
   display: inline !important;
 }
 
 .d-inline-block {
   display: inline-block !important;
 }
 
 .d-block {
   display: block !important;
 }
 
 .d-grid {
   display: grid !important;
 }
 
 .d-table {
   display: table !important;
 }
 
 .d-table-row {
   display: table-row !important;
 }
 
 .d-table-cell {
   display: table-cell !important;
 }
 
 .d-flex {
   display: flex !important;
 }
 
 .d-inline-flex {
   display: inline-flex !important;
 }
 
 .d-none {
   display: none !important;
 }
 
 .flex-fill {
   flex: 1 1 auto !important;
 }
 
 .flex-row {
   flex-direction: row !important;
 }
 
 .flex-column {
   flex-direction: column !important;
 }
 
 .flex-row-reverse {
   flex-direction: row-reverse !important;
 }
 
 .flex-column-reverse {
   flex-direction: column-reverse !important;
 }
 
 .flex-grow-0 {
   flex-grow: 0 !important;
 }
 
 .flex-grow-1 {
   flex-grow: 1 !important;
 }
 
 .flex-shrink-0 {
   flex-shrink: 0 !important;
 }
 
 .flex-shrink-1 {
   flex-shrink: 1 !important;
 }
 
 .flex-wrap {
   flex-wrap: wrap !important;
 }
 
 .flex-nowrap {
   flex-wrap: nowrap !important;
 }
 
 .flex-wrap-reverse {
   flex-wrap: wrap-reverse !important;
 }
 
 .justify-content-start {
   justify-content: flex-start !important;
 }
 
 .justify-content-end {
   justify-content: flex-end !important;
 }
 
 .justify-content-center {
   justify-content: center !important;
 }
 
 .justify-content-between {
   justify-content: space-between !important;
 }
 
 .justify-content-around {
   justify-content: space-around !important;
 }
 
 .justify-content-evenly {
   justify-content: space-evenly !important;
 }
 
 .align-items-start {
   align-items: flex-start !important;
 }
 
 .align-items-end {
   align-items: flex-end !important;
 }
 
 .align-items-center {
   align-items: center !important;
 }
 
 .align-items-baseline {
   align-items: baseline !important;
 }
 
 .align-items-stretch {
   align-items: stretch !important;
 }
 
 .align-content-start {
   align-content: flex-start !important;
 }
 
 .align-content-end {
   align-content: flex-end !important;
 }
 
 .align-content-center {
   align-content: center !important;
 }
 
 .align-content-between {
   align-content: space-between !important;
 }
 
 .align-content-around {
   align-content: space-around !important;
 }
 
 .align-content-stretch {
   align-content: stretch !important;
 }
 
 .align-self-auto {
   align-self: auto !important;
 }
 
 .align-self-start {
   align-self: flex-start !important;
 }
 
 .align-self-end {
   align-self: flex-end !important;
 }
 
 .align-self-center {
   align-self: center !important;
 }
 
 .align-self-baseline {
   align-self: baseline !important;
 }
 
 .align-self-stretch {
   align-self: stretch !important;
 }
 
 .order-first {
   order: -1 !important;
 }
 
 .order-0 {
   order: 0 !important;
 }
 
 .order-1 {
   order: 1 !important;
 }
 
 .order-2 {
   order: 2 !important;
 }
 
 .order-3 {
   order: 3 !important;
 }
 
 .order-4 {
   order: 4 !important;
 }
 
 .order-5 {
   order: 5 !important;
 }
 
 .order-last {
   order: 6 !important;
 }
 
 @media (min-width: 576px) {
   .d-sm-inline {
     display: inline !important;
   }
   .d-sm-inline-block {
     display: inline-block !important;
   }
   .d-sm-block {
     display: block !important;
   }
   .d-sm-grid {
     display: grid !important;
   }
   .d-sm-table {
     display: table !important;
   }
   .d-sm-table-row {
     display: table-row !important;
   }
   .d-sm-table-cell {
     display: table-cell !important;
   }
   .d-sm-flex {
     display: flex !important;
   }
   .d-sm-inline-flex {
     display: inline-flex !important;
   }
   .d-sm-none {
     display: none !important;
   }
   .flex-sm-fill {
     flex: 1 1 auto !important;
   }
   .flex-sm-row {
     flex-direction: row !important;
   }
   .flex-sm-column {
     flex-direction: column !important;
   }
   .flex-sm-row-reverse {
     flex-direction: row-reverse !important;
   }
   .flex-sm-column-reverse {
     flex-direction: column-reverse !important;
   }
   .flex-sm-grow-0 {
     flex-grow: 0 !important;
   }
   .flex-sm-grow-1 {
     flex-grow: 1 !important;
   }
   .flex-sm-shrink-0 {
     flex-shrink: 0 !important;
   }
   .flex-sm-shrink-1 {
     flex-shrink: 1 !important;
   }
   .flex-sm-wrap {
     flex-wrap: wrap !important;
   }
   .flex-sm-nowrap {
     flex-wrap: nowrap !important;
   }
   .flex-sm-wrap-reverse {
     flex-wrap: wrap-reverse !important;
   }
   .justify-content-sm-start {
     justify-content: flex-start !important;
   }
   .justify-content-sm-end {
     justify-content: flex-end !important;
   }
   .justify-content-sm-center {
     justify-content: center !important;
   }
   .justify-content-sm-between {
     justify-content: space-between !important;
   }
   .justify-content-sm-around {
     justify-content: space-around !important;
   }
   .justify-content-sm-evenly {
     justify-content: space-evenly !important;
   }
   .align-items-sm-start {
     align-items: flex-start !important;
   }
   .align-items-sm-end {
     align-items: flex-end !important;
   }
   .align-items-sm-center {
     align-items: center !important;
   }
   .align-items-sm-baseline {
     align-items: baseline !important;
   }
   .align-items-sm-stretch {
     align-items: stretch !important;
   }
   .align-content-sm-start {
     align-content: flex-start !important;
   }
   .align-content-sm-end {
     align-content: flex-end !important;
   }
   .align-content-sm-center {
     align-content: center !important;
   }
   .align-content-sm-between {
     align-content: space-between !important;
   }
   .align-content-sm-around {
     align-content: space-around !important;
   }
   .align-content-sm-stretch {
     align-content: stretch !important;
   }
   .align-self-sm-auto {
     align-self: auto !important;
   }
   .align-self-sm-start {
     align-self: flex-start !important;
   }
   .align-self-sm-end {
     align-self: flex-end !important;
   }
   .align-self-sm-center {
     align-self: center !important;
   }
   .align-self-sm-baseline {
     align-self: baseline !important;
   }
   .align-self-sm-stretch {
     align-self: stretch !important;
   }
   .order-sm-first {
     order: -1 !important;
   }
   .order-sm-0 {
     order: 0 !important;
   }
   .order-sm-1 {
     order: 1 !important;
   }
   .order-sm-2 {
     order: 2 !important;
   }
   .order-sm-3 {
     order: 3 !important;
   }
   .order-sm-4 {
     order: 4 !important;
   }
   .order-sm-5 {
     order: 5 !important;
   }
   .order-sm-last {
     order: 6 !important;
   }
 }
 @media (min-width: 768px) {
   .d-md-inline {
     display: inline !important;
   }
   .d-md-inline-block {
     display: inline-block !important;
   }
   .d-md-block {
     display: block !important;
   }
   .d-md-grid {
     display: grid !important;
   }
   .d-md-table {
     display: table !important;
   }
   .d-md-table-row {
     display: table-row !important;
   }
   .d-md-table-cell {
     display: table-cell !important;
   }
   .d-md-flex {
     display: flex !important;
   }
   .d-md-inline-flex {
     display: inline-flex !important;
   }
   .d-md-none {
     display: none !important;
   }
   .flex-md-fill {
     flex: 1 1 auto !important;
   }
   .flex-md-row {
     flex-direction: row !important;
   }
   .flex-md-column {
     flex-direction: column !important;
   }
   .flex-md-row-reverse {
     flex-direction: row-reverse !important;
   }
   .flex-md-column-reverse {
     flex-direction: column-reverse !important;
   }
   .flex-md-grow-0 {
     flex-grow: 0 !important;
   }
   .flex-md-grow-1 {
     flex-grow: 1 !important;
   }
   .flex-md-shrink-0 {
     flex-shrink: 0 !important;
   }
   .flex-md-shrink-1 {
     flex-shrink: 1 !important;
   }
   .flex-md-wrap {
     flex-wrap: wrap !important;
   }
   .flex-md-nowrap {
     flex-wrap: nowrap !important;
   }
   .flex-md-wrap-reverse {
     flex-wrap: wrap-reverse !important;
   }
   .justify-content-md-start {
     justify-content: flex-start !important;
   }
   .justify-content-md-end {
     justify-content: flex-end !important;
   }
   .justify-content-md-center {
     justify-content: center !important;
   }
   .justify-content-md-between {
     justify-content: space-between !important;
   }
   .justify-content-md-around {
     justify-content: space-around !important;
   }
   .justify-content-md-evenly {
     justify-content: space-evenly !important;
   }
   .align-items-md-start {
     align-items: flex-start !important;
   }
   .align-items-md-end {
     align-items: flex-end !important;
   }
   .align-items-md-center {
     align-items: center !important;
   }
   .align-items-md-baseline {
     align-items: baseline !important;
   }
   .align-items-md-stretch {
     align-items: stretch !important;
   }
   .align-content-md-start {
     align-content: flex-start !important;
   }
   .align-content-md-end {
     align-content: flex-end !important;
   }
   .align-content-md-center {
     align-content: center !important;
   }
   .align-content-md-between {
     align-content: space-between !important;
   }
   .align-content-md-around {
     align-content: space-around !important;
   }
   .align-content-md-stretch {
     align-content: stretch !important;
   }
   .align-self-md-auto {
     align-self: auto !important;
   }
   .align-self-md-start {
     align-self: flex-start !important;
   }
   .align-self-md-end {
     align-self: flex-end !important;
   }
   .align-self-md-center {
     align-self: center !important;
   }
   .align-self-md-baseline {
     align-self: baseline !important;
   }
   .align-self-md-stretch {
     align-self: stretch !important;
   }
   .order-md-first {
     order: -1 !important;
   }
   .order-md-0 {
     order: 0 !important;
   }
   .order-md-1 {
     order: 1 !important;
   }
   .order-md-2 {
     order: 2 !important;
   }
   .order-md-3 {
     order: 3 !important;
   }
   .order-md-4 {
     order: 4 !important;
   }
   .order-md-5 {
     order: 5 !important;
   }
   .order-md-last {
     order: 6 !important;
   }
 }
 @media (min-width: 1024px) {
   .d-lg-inline {
     display: inline !important;
   }
   .d-lg-inline-block {
     display: inline-block !important;
   }
   .d-lg-block {
     display: block !important;
   }
   .d-lg-grid {
     display: grid !important;
   }
   .d-lg-table {
     display: table !important;
   }
   .d-lg-table-row {
     display: table-row !important;
   }
   .d-lg-table-cell {
     display: table-cell !important;
   }
   .d-lg-flex {
     display: flex !important;
   }
   .d-lg-inline-flex {
     display: inline-flex !important;
   }
   .d-lg-none {
     display: none !important;
   }
   .flex-lg-fill {
     flex: 1 1 auto !important;
   }
   .flex-lg-row {
     flex-direction: row !important;
   }
   .flex-lg-column {
     flex-direction: column !important;
   }
   .flex-lg-row-reverse {
     flex-direction: row-reverse !important;
   }
   .flex-lg-column-reverse {
     flex-direction: column-reverse !important;
   }
   .flex-lg-grow-0 {
     flex-grow: 0 !important;
   }
   .flex-lg-grow-1 {
     flex-grow: 1 !important;
   }
   .flex-lg-shrink-0 {
     flex-shrink: 0 !important;
   }
   .flex-lg-shrink-1 {
     flex-shrink: 1 !important;
   }
   .flex-lg-wrap {
     flex-wrap: wrap !important;
   }
   .flex-lg-nowrap {
     flex-wrap: nowrap !important;
   }
   .flex-lg-wrap-reverse {
     flex-wrap: wrap-reverse !important;
   }
   .justify-content-lg-start {
     justify-content: flex-start !important;
   }
   .justify-content-lg-end {
     justify-content: flex-end !important;
   }
   .justify-content-lg-center {
     justify-content: center !important;
   }
   .justify-content-lg-between {
     justify-content: space-between !important;
   }
   .justify-content-lg-around {
     justify-content: space-around !important;
   }
   .justify-content-lg-evenly {
     justify-content: space-evenly !important;
   }
   .align-items-lg-start {
     align-items: flex-start !important;
   }
   .align-items-lg-end {
     align-items: flex-end !important;
   }
   .align-items-lg-center {
     align-items: center !important;
   }
   .align-items-lg-baseline {
     align-items: baseline !important;
   }
   .align-items-lg-stretch {
     align-items: stretch !important;
   }
   .align-content-lg-start {
     align-content: flex-start !important;
   }
   .align-content-lg-end {
     align-content: flex-end !important;
   }
   .align-content-lg-center {
     align-content: center !important;
   }
   .align-content-lg-between {
     align-content: space-between !important;
   }
   .align-content-lg-around {
     align-content: space-around !important;
   }
   .align-content-lg-stretch {
     align-content: stretch !important;
   }
   .align-self-lg-auto {
     align-self: auto !important;
   }
   .align-self-lg-start {
     align-self: flex-start !important;
   }
   .align-self-lg-end {
     align-self: flex-end !important;
   }
   .align-self-lg-center {
     align-self: center !important;
   }
   .align-self-lg-baseline {
     align-self: baseline !important;
   }
   .align-self-lg-stretch {
     align-self: stretch !important;
   }
   .order-lg-first {
     order: -1 !important;
   }
   .order-lg-0 {
     order: 0 !important;
   }
   .order-lg-1 {
     order: 1 !important;
   }
   .order-lg-2 {
     order: 2 !important;
   }
   .order-lg-3 {
     order: 3 !important;
   }
   .order-lg-4 {
     order: 4 !important;
   }
   .order-lg-5 {
     order: 5 !important;
   }
   .order-lg-last {
     order: 6 !important;
   }
 }
 @media (min-width: 1300px) {
   .d-xl-inline {
     display: inline !important;
   }
   .d-xl-inline-block {
     display: inline-block !important;
   }
   .d-xl-block {
     display: block !important;
   }
   .d-xl-grid {
     display: grid !important;
   }
   .d-xl-table {
     display: table !important;
   }
   .d-xl-table-row {
     display: table-row !important;
   }
   .d-xl-table-cell {
     display: table-cell !important;
   }
   .d-xl-flex {
     display: flex !important;
   }
   .d-xl-inline-flex {
     display: inline-flex !important;
   }
   .d-xl-none {
     display: none !important;
   }
   .flex-xl-fill {
     flex: 1 1 auto !important;
   }
   .flex-xl-row {
     flex-direction: row !important;
   }
   .flex-xl-column {
     flex-direction: column !important;
   }
   .flex-xl-row-reverse {
     flex-direction: row-reverse !important;
   }
   .flex-xl-column-reverse {
     flex-direction: column-reverse !important;
   }
   .flex-xl-grow-0 {
     flex-grow: 0 !important;
   }
   .flex-xl-grow-1 {
     flex-grow: 1 !important;
   }
   .flex-xl-shrink-0 {
     flex-shrink: 0 !important;
   }
   .flex-xl-shrink-1 {
     flex-shrink: 1 !important;
   }
   .flex-xl-wrap {
     flex-wrap: wrap !important;
   }
   .flex-xl-nowrap {
     flex-wrap: nowrap !important;
   }
   .flex-xl-wrap-reverse {
     flex-wrap: wrap-reverse !important;
   }
   .justify-content-xl-start {
     justify-content: flex-start !important;
   }
   .justify-content-xl-end {
     justify-content: flex-end !important;
   }
   .justify-content-xl-center {
     justify-content: center !important;
   }
   .justify-content-xl-between {
     justify-content: space-between !important;
   }
   .justify-content-xl-around {
     justify-content: space-around !important;
   }
   .justify-content-xl-evenly {
     justify-content: space-evenly !important;
   }
   .align-items-xl-start {
     align-items: flex-start !important;
   }
   .align-items-xl-end {
     align-items: flex-end !important;
   }
   .align-items-xl-center {
     align-items: center !important;
   }
   .align-items-xl-baseline {
     align-items: baseline !important;
   }
   .align-items-xl-stretch {
     align-items: stretch !important;
   }
   .align-content-xl-start {
     align-content: flex-start !important;
   }
   .align-content-xl-end {
     align-content: flex-end !important;
   }
   .align-content-xl-center {
     align-content: center !important;
   }
   .align-content-xl-between {
     align-content: space-between !important;
   }
   .align-content-xl-around {
     align-content: space-around !important;
   }
   .align-content-xl-stretch {
     align-content: stretch !important;
   }
   .align-self-xl-auto {
     align-self: auto !important;
   }
   .align-self-xl-start {
     align-self: flex-start !important;
   }
   .align-self-xl-end {
     align-self: flex-end !important;
   }
   .align-self-xl-center {
     align-self: center !important;
   }
   .align-self-xl-baseline {
     align-self: baseline !important;
   }
   .align-self-xl-stretch {
     align-self: stretch !important;
   }
   .order-xl-first {
     order: -1 !important;
   }
   .order-xl-0 {
     order: 0 !important;
   }
   .order-xl-1 {
     order: 1 !important;
   }
   .order-xl-2 {
     order: 2 !important;
   }
   .order-xl-3 {
     order: 3 !important;
   }
   .order-xl-4 {
     order: 4 !important;
   }
   .order-xl-5 {
     order: 5 !important;
   }
   .order-xl-last {
     order: 6 !important;
   }
 }
 @media (min-width: 1500px) {
   .d-xxl-inline {
     display: inline !important;
   }
   .d-xxl-inline-block {
     display: inline-block !important;
   }
   .d-xxl-block {
     display: block !important;
   }
   .d-xxl-grid {
     display: grid !important;
   }
   .d-xxl-table {
     display: table !important;
   }
   .d-xxl-table-row {
     display: table-row !important;
   }
   .d-xxl-table-cell {
     display: table-cell !important;
   }
   .d-xxl-flex {
     display: flex !important;
   }
   .d-xxl-inline-flex {
     display: inline-flex !important;
   }
   .d-xxl-none {
     display: none !important;
   }
   .flex-xxl-fill {
     flex: 1 1 auto !important;
   }
   .flex-xxl-row {
     flex-direction: row !important;
   }
   .flex-xxl-column {
     flex-direction: column !important;
   }
   .flex-xxl-row-reverse {
     flex-direction: row-reverse !important;
   }
   .flex-xxl-column-reverse {
     flex-direction: column-reverse !important;
   }
   .flex-xxl-grow-0 {
     flex-grow: 0 !important;
   }
   .flex-xxl-grow-1 {
     flex-grow: 1 !important;
   }
   .flex-xxl-shrink-0 {
     flex-shrink: 0 !important;
   }
   .flex-xxl-shrink-1 {
     flex-shrink: 1 !important;
   }
   .flex-xxl-wrap {
     flex-wrap: wrap !important;
   }
   .flex-xxl-nowrap {
     flex-wrap: nowrap !important;
   }
   .flex-xxl-wrap-reverse {
     flex-wrap: wrap-reverse !important;
   }
   .justify-content-xxl-start {
     justify-content: flex-start !important;
   }
   .justify-content-xxl-end {
     justify-content: flex-end !important;
   }
   .justify-content-xxl-center {
     justify-content: center !important;
   }
   .justify-content-xxl-between {
     justify-content: space-between !important;
   }
   .justify-content-xxl-around {
     justify-content: space-around !important;
   }
   .justify-content-xxl-evenly {
     justify-content: space-evenly !important;
   }
   .align-items-xxl-start {
     align-items: flex-start !important;
   }
   .align-items-xxl-end {
     align-items: flex-end !important;
   }
   .align-items-xxl-center {
     align-items: center !important;
   }
   .align-items-xxl-baseline {
     align-items: baseline !important;
   }
   .align-items-xxl-stretch {
     align-items: stretch !important;
   }
   .align-content-xxl-start {
     align-content: flex-start !important;
   }
   .align-content-xxl-end {
     align-content: flex-end !important;
   }
   .align-content-xxl-center {
     align-content: center !important;
   }
   .align-content-xxl-between {
     align-content: space-between !important;
   }
   .align-content-xxl-around {
     align-content: space-around !important;
   }
   .align-content-xxl-stretch {
     align-content: stretch !important;
   }
   .align-self-xxl-auto {
     align-self: auto !important;
   }
   .align-self-xxl-start {
     align-self: flex-start !important;
   }
   .align-self-xxl-end {
     align-self: flex-end !important;
   }
   .align-self-xxl-center {
     align-self: center !important;
   }
   .align-self-xxl-baseline {
     align-self: baseline !important;
   }
   .align-self-xxl-stretch {
     align-self: stretch !important;
   }
   .order-xxl-first {
     order: -1 !important;
   }
   .order-xxl-0 {
     order: 0 !important;
   }
   .order-xxl-1 {
     order: 1 !important;
   }
   .order-xxl-2 {
     order: 2 !important;
   }
   .order-xxl-3 {
     order: 3 !important;
   }
   .order-xxl-4 {
     order: 4 !important;
   }
   .order-xxl-5 {
     order: 5 !important;
   }
   .order-xxl-last {
     order: 6 !important;
   }
 }
 @media print {
   .d-print-inline {
     display: inline !important;
   }
   .d-print-inline-block {
     display: inline-block !important;
   }
   .d-print-block {
     display: block !important;
   }
   .d-print-grid {
     display: grid !important;
   }
   .d-print-table {
     display: table !important;
   }
   .d-print-table-row {
     display: table-row !important;
   }
   .d-print-table-cell {
     display: table-cell !important;
   }
   .d-print-flex {
     display: flex !important;
   }
   .d-print-inline-flex {
     display: inline-flex !important;
   }
   .d-print-none {
     display: none !important;
   }
 }
body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .3) 50%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .075) 75.5%,
        rgba(0, 0, 0, .037) 82.85%,
        rgba(0, 0, 0, .019) 88%,
        rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}
html {
	line-height: 1.15;
	
	-webkit-text-size-adjust: 100%;
	
}
body {
	margin: 0;
}
main {
	display: block;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
hr {
	box-sizing: content-box;
	
	height: 0;
	
	overflow: visible;
	
}
pre {
	font-family: monospace, monospace;
	
	font-size: 1em;
	
}
a {
	background-color: transparent;
}
abbr[title] {
	border-bottom: none;
	
	text-decoration: underline;
	
	text-decoration: underline dotted;
	
}
b,strong {
	font-weight: bolder;
}

code,kbd,samp {
	font-family: monospace, monospace;
	
	font-size: 1em;
	
}

small {
	font-size: 80%;
}

sub,sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}


img {
	border-style: none;
}


button,input,optgroup,select,textarea {
	font-family: inherit;
	
	font-size: 100%;
	
	line-height: 1;
	
	margin: 0;
	
	padding: 0;
	border: none;
	background: none;
	outline: none;
}

button,input {
	
	overflow: visible;
}

button,select {
	
	text-transform: none;
}

button,[type="button"],[type="reset"],[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	
	color: inherit;
	
	display: table;
	
	max-width: 100%;
	
	padding: 0;
	
	white-space: normal;
	
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],[type="radio"] {
	box-sizing: border-box;
	
	padding: 0;
	
}

[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	
	outline-offset: -2px;
	
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	
	font: inherit;
	
}


details {
	display: block;
}

summary {
	display: list-item;
}


template {
	display: none;
}

[hidden] {
	display: none;
}

*, *:before, *:after{
    box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

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

body{
    line-height: 1;
}

ol, ul{
    list-style: none;
}

blockquote, q{
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after{
    content: '';
    content: none;
}

table{
    border-collapse: collapse;
    border-spacing: 0;
}

input{
    -webkit-appearance: none;
    border-radius: 0;
}
.container-xxl {
  max-width: 1890px;
}

.container-xl {
  width: 85.7142857143%;
  max-width: 1620px;
}
@media only screen and (max-width: 1300px) {
  .container-xl {
    width: 100%;
  }
}

.container-lg {
  width: 85.7142857143%;
  max-width: 1300px;
}
@media only screen and (max-width: 1300px) {
  .container-lg {
    width: 100%;
  }
}

.container-fluid,
.container-xxl,
.container-xl,
.container-lg {
  --bs-gutter-x: 3.125rem;
}

@media only screen and (max-width: 1300px) {
  .page,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .row {
    --bs-gutter-x: 2rem;
  }
}

.vh-100 {
  height: 100vh;
}

.red-logo {
  display: none;
}

.header-logo {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNjQiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiPjxnIGNsaXAtcGF0aD0idXJsKCNhKSI+PHBhdGggZmlsbD0iIzFEMUQxRCIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJtMTguNjI0IDMuNDI3LTMuMDk4IDMuMDkyYy00LjY0Ny0zLjg2MS0xMC4wNC0xLjE5NC0xMC4wNCA0LjM3NiAwIDQuOTUyIDUuMTI1IDYuNDc3IDkuNTgyIDQuODI2di0yLjg1NEgxMS42NlY4Ljk0aDcuNzA2djEwLjAwM0MxMi4yODMgMjMuMjc5IDEgMjAuMzE5IDEgMTAuNzY5IDEtLjIxNSAxMy44MzItMS43NTYgMTguNjI0IDMuNDI3TTIzLjM1NCAxLjUzMWEyLjA1IDIuMDUgMCAwIDEgMS44NzcgMS4yNzQgMi4wMyAyLjAzIDAgMCAxLS40NTcgMi4yMTYgMi4wNDggMi4wNDggMCAwIDEtMy40ODUtMS40NTMgMi4wNCAyLjA0IDAgMCAxIDEuMjc4LTEuODg2Yy4yNS0uMTAxLjUxOC0uMTUyLjc4Ny0uMTUiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjxwYXRoIGZpbGw9IiMxRDFEMUQiIGQ9Ik0yNS4zOTMgNy4zMmgtNC4xMjd2MTMuMjRoNC4xMjd6Ii8+PHBhdGggZmlsbD0iIzFEMUQxRCIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzM3IDIwLjU2aC0zLjUxMXYtMS42OTVjLS4xMTMuMzczLS44MDcgMS4xNTgtMS43NSAxLjYwOS0xLjY5NC44MDQtNi45NTEgMS4wOC02Ljk1MS00Ljk4OFY3LjMyaDQuMDM3djcuNGMwIDMuMTYzIDMuMTExIDMuMjQgMy45NDQgMS4wNDYuMTE4LS4zODguMTc2LS43OTEuMTcxLTEuMTk3VjcuMzJoNC4wNDd2MTMuMjQiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjxwYXRoIGZpbGw9IiMxRDFEMUQiIGQ9Ik00NS41OCAxLjE4OGgtNC4xMjd2MTkuMzc1aDQuMTI4eiIvPjxwYXRoIGZpbGw9IiMxRDFEMUQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTQ5Ljc2OSAxLjUzMWEyLjA1IDIuMDUgMCAwIDEgMS44NzYgMS4yNzQgMi4wMzUgMi4wMzUgMCAwIDEtLjQ1NyAyLjIxNiAyLjA0OSAyLjA0OSAwIDAgMS0zLjQ4NS0xLjQ1MyAyLjA1IDIuMDUgMCAwIDEgLjYxLTEuNDQ0Yy4zODctLjM4Mi45MS0uNTk1IDEuNDU2LS41OTMiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjxwYXRoIGZpbGw9IiMxRDFEMUQiIGQ9Ik01MS44MzQgNy4zMmgtNC4xM3YxMy4yNGg0LjEzeiIvPjxwYXRoIGZpbGw9IiMxRDFEMUQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTYxLjk5IDE0Ljk4MmMuMTI2IDMuMzcyLTMuODczIDMuNTA0LTQuMzU3IDIuMTI0LS44LTIuMjUzIDIuOTgyLTIuMTY5IDQuMjc2LTIuMTI0aC4wODFtLS4wMDQtMi44OTVjLS4wMzUtMS43MDMtMy42MzMtMi44MDMtNS43Ny0uMzc3bC0yLjItMi4xOTdjNS4wMTQtNC42ODUgMTEuNzY5LTEuNzM1IDExLjgzNCAyLjMyOXY4LjczaC0zLjQ4di0xLjYzOWMtMS45NzEgMy4yMTgtOS4yODEgMi40MDctOS4wMzYtMi4xODQuMjY1LTQuNjYyIDUuNDE2LTQuMzYzIDguNTk0LTQuNjYyaC4wNjJ6TTEyOS40OSAxNC45NzNjLjEyNiAzLjM3Mi0zLjg3MyAzLjUwNC00LjM1NyAyLjEyMy0uOC0yLjI1MiAyLjk4Mi0yLjE2OCA0LjI3Ni0yLjEyM2guMDgxbS0uMDA0LTIuODk2Yy0uMDM1LTEuNzAyLTMuNjMzLTIuODAyLTUuNzctLjM3NmwtMi4xNDktMi4yNTNjNS4wMTUtNC42ODQgMTEuNzEyLTEuNjc2IDExLjc3NiAyLjM4OHY4LjcyNmgtMy40NzJ2LTEuNjM4Yy0xLjk3MiAzLjIxNy05LjI4MiAyLjQwNy05LjAzNy0yLjE4NS4yNjItNC42NjIgNS40MTYtNC4zNjMgOC41OTQtNC42NjJoLjA2MnpNNzkuNTQ5IDEuMTg4bDcuNDEgMTIuMDIzVjEuMTg4aDQuNDA4djE5LjQyNGgtNC40MDlMNzkuNTg0IDkuNDV2MTEuMTYyaC00LjQyOFYxLjE4OHpNMTIwLjk2IDcuMzJsLTUuNDggMTMuMjRoLTMuOTI3bC01LjM1OC0xMy4yNGg0LjM1NGwzLjAyNyA4LjQ5NSAyLjg1Ni04LjQ5NXpNOTkuOTg1IDEwLjg3NWEzLjAxIDMuMDEgMCAwIDEgMi43NiAxLjg2NSAyLjk5IDIuOTkgMCAwIDEtMi4yMDUgNC4wNyAzLjAxIDMuMDEgMCAwIDEtMy4wNzctMS4yNzcgMyAzIDAgMCAxLS41MDUtMS42NjIgMyAzIDAgMCAxIC44OTQtMi4xMiAzLjAzIDMuMDMgMCAwIDEgMi4xMzMtLjg3Nm0uMDI5LTMuODEyYzMuOTA4IDAgNy4xIDMuMDg1IDcuMSA2Ljg3MnMtMy4xODUgNi44Ny03LjEgNi44Ny03LjEtMy4wODYtNy4xLTYuODcgMy4xOTUtNi44NzMgNy4xMDMtNi44NzN6TTE1Ny42NTYgOS40NWMtMy4xNi0yLjcyOC03LjEzMy0zLjE3Mi05LjU3NS0xLjA5NmEzLjUgMy41IDAgMCAwLTEuMDggMy44MzljLjE1NC40NDcuMzk3Ljg1OC43MTUgMS4yMDkgMi40MTcgMi41NzQgNC45NzIgMS40MTYgNS45OTkgMi4yNTIuODA1LjY0NC4zMjQgMS42NjQtLjk2OCAxLjc2Ny0xLjQxLjExMi0yLjQ2My0uMzIyLTQuMTk1LTEuODM4bC0yLjQyNyAyLjQyYzMuNDM0IDQuMjM4IDkuNzIgMy42MyAxMS40NTMgMS4zNjcgMS4zNDktMS43NjMgMS4yOTEtNS4xMDMtMi4xNDMtNi4zNzctMS42NzUtLjYyLTQuMTM3LS4xMDMtNC42NTQtMS4xODctLjU2Ny0xLjE5NyAxLjAzNy0xLjc4IDIuMjU5LTEuNDE2YTUuMSA1LjEgMCAwIDEgMi4zMzEgMS4zMzJsMi4yNTktMi4yNTJNMTQwLjM5IDcuNzM5Yy0uOTQuNDQ3LTEuNjM3IDEuMjMyLTEuNzQ5IDEuNjA4VjcuNjQ1aC0zLjUwOHYyMC42OTloNC4wNDdWMTMuNjM4Yy0uMDA1LS40MDUuMDUzLS44MDkuMTcxLTEuMTk2LjY0NS0xLjcwOSAyLjY3Mi0yLjAzNCAzLjU0OS0uNjAybDMuMTU3LTMuMTQ3Yy0xLjY2OC0xLjgwOC00LjQ5OS0xLjUwNi01LjY1Ny0uOTY1IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTU4LjQwNyAzLjI4NmEzIDMgMCAwIDEgLjIyMy0xLjE3NyAyLjUgMi41IDAgMCAxIC42MDctLjg3MmMuMjU3LS4yNDIuNTU5LS40My44OS0uNTU0QTMuMSAzLjEgMCAwIDEgMTYxLjIwMS41Yy4zNzItLjAwMy43NDIuMDYgMS4wOTEuMTgzLjMzMS4xMTcuNjM0LjMuODkxLjUzOC4yNjIuMjQ5LjQ2Ni41NTIuNTk3Ljg4OC4xNS4zOC4yMjMuNzg1LjIxNiAxLjE5NC4wMDcuNDA4LS4wNjguODE0LS4yMjIgMS4xOTNhMi41IDIuNSAwIDAgMS0uNjA4Ljg3MiAyLjY1IDIuNjUgMCAwIDEtLjg4OS41MzcgMy4xIDMuMSAwIDAgMS0xLjA3Ni4xODQgMy4yIDMuMiAwIDAgMS0xLjA5Ni0uMTg0IDIuNiAyLjYgMCAwIDEtLjg4OS0uNTUzIDIuNSAyLjUgMCAwIDEtLjU5Ni0uODcyIDMuMSAzLjEgMCAwIDEtLjIxMy0xLjE5NG0uNjY0IDBjLS4wMDkuMzMuMDQ4LjY1OC4xNjkuOTY2LjEwMS4yNTQuMjU4LjQ4NC40NTcuNjcyLjE5Ny4xOC40My4zMTcuNjgyLjQwMi4yNjQuMDkzLjU0Mi4xNC44MjIuMTM5LjI4Ny4wMDIuNTcyLS4wNDMuODQzLS4xMzJhMS44IDEuOCAwIDAgMCAuNjc0LS40Yy4xOTctLjE4OC4zNTEtLjQxOC40NDgtLjY3Mi4xMTctLjMwOC4xNzMtLjYzNi4xNjYtLjk2NWEyLjUgMi41IDAgMCAwLS4xNjgtLjk2NSAxLjkgMS45IDAgMCAwLS40NTgtLjY3MyAyIDIgMCAwIDAtLjY3NS0uNDA1IDIuNSAyLjUgMCAwIDAtLjgyNi0uMTM1IDIuNiAyLjYgMCAwIDAtLjg1Ni4xMzUgMS45IDEuOSAwIDAgMC0uNjczLjQwNSAxLjggMS44IDAgMCAwLS40Ni42NzYgMi42IDIuNiAwIDAgMC0uMTQ1Ljk1Mm0xLjA0My0xLjM2N3EuMjMzLS4wNjMuNDc0LS4wNzdhNyA3IDAgMCAxIC41ODItLjAyNmMuMjY1LS4wMDguNTI1LjA1Ni43NTguMTgzYS42OC42OCAwIDAgMSAuMzIzLjY0NC42Ny42NyAwIDAgMS0uMjAxLjQ5OS43My43MyAwIDAgMS0uMzc4LjIxNWwuOTA4IDEuMjg3aC0uNjQ2bC0uODIzLTEuMDk0aC0uNDQzdjEuMDk0aC0uNTQ3VjEuOTJ6bS45MzkuMzY3aC0uMjIzYS40LjQgMCAwIDAtLjE2Ny4wMzV2Ljc4NWguMzU3cS42NDcgMCAuNjQ3LS40NSAwLS4zNzEtLjYxNC0uMzY3eiIvPjwvZz48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0wIDBoMTY0djI4SDB6Ii8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+);
  background-size: contain;
  background-position: center;
  height: 22px;
  width: 125px;
  background-repeat: no-repeat;
}

.header-logo:hover {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNjQiIGhlaWdodD0iMjgiIGZpbGw9Im5vbmUiPjxnIGZpbGw9IiNEQTI1MUQiIGNsaXAtcGF0aD0idXJsKCNhKSI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJtMTguNjI0IDMuNDI3LTMuMDk4IDMuMDkyYy00LjY0Ny0zLjg2MS0xMC4wNC0xLjE5NC0xMC4wNCA0LjM3NiAwIDQuOTUyIDUuMTI1IDYuNDc3IDkuNTgyIDQuODI2di0yLjg1NEgxMS42NlY4Ljk0aDcuNzA2djEwLjAwM0MxMi4yODMgMjMuMjc5IDEgMjAuMzE5IDEgMTAuNzY5IDEtLjIxNSAxMy44MzItMS43NTYgMTguNjI0IDMuNDI3TTIzLjM1NCAxLjUzMWEyLjA1IDIuMDUgMCAwIDEgMS44NzcgMS4yNzQgMi4wMyAyLjAzIDAgMCAxLS40NTcgMi4yMTYgMi4wNDggMi4wNDggMCAwIDEtMy40ODUtMS40NTMgMi4wNCAyLjA0IDAgMCAxIDEuMjc4LTEuODg2Yy4yNS0uMTAxLjUxOC0uMTUyLjc4Ny0uMTUiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjxwYXRoIGQ9Ik0yNS4zOTMgNy4zMmgtNC4xMjd2MTMuMjRoNC4xMjd6Ii8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMzkuMzM3IDIwLjU2aC0zLjUxMXYtMS42OTVjLS4xMTMuMzczLS44MDcgMS4xNTgtMS43NSAxLjYwOS0xLjY5NC44MDQtNi45NTEgMS4wOC02Ljk1MS00Ljk4OFY3LjMyaDQuMDM3djcuNGMwIDMuMTYzIDMuMTExIDMuMjQgMy45NDQgMS4wNDYuMTE4LS4zODguMTc2LS43OTEuMTcxLTEuMTk3VjcuMzJoNC4wNDd2MTMuMjQiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjxwYXRoIGQ9Ik00NS41OCAxLjE4OGgtNC4xMjd2MTkuMzc1aDQuMTI4eiIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTQ5Ljc2OSAxLjUzMWEyLjA1IDIuMDUgMCAwIDEgMS44NzYgMS4yNzQgMi4wMzUgMi4wMzUgMCAwIDEtLjQ1NyAyLjIxNiAyLjA0OSAyLjA0OSAwIDAgMS0zLjQ4NS0xLjQ1MyAyLjA1IDIuMDUgMCAwIDEgLjYxLTEuNDQ0Yy4zODctLjM4Mi45MS0uNTk1IDEuNDU2LS41OTMiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjxwYXRoIGQ9Ik01MS44MzQgNy4zMmgtNC4xM3YxMy4yNGg0LjEzeiIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTYxLjk5IDE0Ljk4MmMuMTI2IDMuMzcyLTMuODczIDMuNTA0LTQuMzU3IDIuMTI0LS44LTIuMjUzIDIuOTgyLTIuMTY5IDQuMjc2LTIuMTI0aC4wODFtLS4wMDQtMi44OTVjLS4wMzUtMS43MDMtMy42MzMtMi44MDMtNS43Ny0uMzc3bC0yLjItMi4xOTdjNS4wMTQtNC42ODUgMTEuNzY5LTEuNzM1IDExLjgzNCAyLjMyOXY4LjczaC0zLjQ4di0xLjYzOWMtMS45NzEgMy4yMTgtOS4yODEgMi40MDctOS4wMzYtMi4xODQuMjY1LTQuNjYyIDUuNDE2LTQuMzYzIDguNTk0LTQuNjYyaC4wNjJ6TTEyOS40OSAxNC45NzNjLjEyNiAzLjM3Mi0zLjg3MyAzLjUwNC00LjM1NyAyLjEyMy0uOC0yLjI1MiAyLjk4Mi0yLjE2OCA0LjI3Ni0yLjEyM2guMDgxbS0uMDA0LTIuODk2Yy0uMDM1LTEuNzAyLTMuNjMzLTIuODAyLTUuNzctLjM3NmwtMi4xNDktMi4yNTNjNS4wMTUtNC42ODQgMTEuNzEyLTEuNjc2IDExLjc3NiAyLjM4OHY4LjcyNmgtMy40NzJ2LTEuNjM4Yy0xLjk3MiAzLjIxNy05LjI4MiAyLjQwNy05LjAzNy0yLjE4NS4yNjItNC42NjIgNS40MTYtNC4zNjMgOC41OTQtNC42NjJoLjA2MnpNNzkuNTQ5IDEuMTg4bDcuNDEgMTIuMDIzVjEuMTg4aDQuNDA4djE5LjQyNGgtNC40MDlMNzkuNTg0IDkuNDV2MTEuMTYyaC00LjQyOFYxLjE4OHpNMTIwLjk2IDcuMzJsLTUuNDggMTMuMjRoLTMuOTI3bC01LjM1OC0xMy4yNGg0LjM1NGwzLjAyNyA4LjQ5NSAyLjg1Ni04LjQ5NXpNOTkuOTg1IDEwLjg3NWEzLjAxIDMuMDEgMCAwIDEgMi43NiAxLjg2NSAyLjk5IDIuOTkgMCAwIDEtMi4yMDUgNC4wNyAzLjAxIDMuMDEgMCAwIDEtMy4wNzctMS4yNzcgMyAzIDAgMCAxLS41MDUtMS42NjIgMyAzIDAgMCAxIC44OTQtMi4xMiAzLjAzIDMuMDMgMCAwIDEgMi4xMzMtLjg3Nm0uMDI5LTMuODEyYzMuOTA4IDAgNy4xIDMuMDg1IDcuMSA2Ljg3MnMtMy4xODUgNi44Ny03LjEgNi44Ny03LjEtMy4wODYtNy4xLTYuODcgMy4xOTUtNi44NzMgNy4xMDMtNi44NzN6TTE1Ny42NTYgOS40NWMtMy4xNi0yLjcyOC03LjEzMy0zLjE3Mi05LjU3NS0xLjA5NmEzLjUgMy41IDAgMCAwLTEuMDggMy44MzljLjE1NC40NDcuMzk3Ljg1OC43MTUgMS4yMDkgMi40MTcgMi41NzQgNC45NzIgMS40MTYgNS45OTkgMi4yNTIuODA1LjY0NC4zMjQgMS42NjQtLjk2OCAxLjc2Ny0xLjQxLjExMi0yLjQ2My0uMzIyLTQuMTk1LTEuODM4bC0yLjQyNyAyLjQyYzMuNDM0IDQuMjM4IDkuNzIgMy42MyAxMS40NTMgMS4zNjcgMS4zNDktMS43NjMgMS4yOTEtNS4xMDMtMi4xNDMtNi4zNzctMS42NzUtLjYyLTQuMTM3LS4xMDMtNC42NTQtMS4xODctLjU2Ny0xLjE5NyAxLjAzNy0xLjc4IDIuMjU5LTEuNDE2YTUuMSA1LjEgMCAwIDEgMi4zMzEgMS4zMzJsMi4yNTktMi4yNTJNMTQwLjM5IDcuNzM5Yy0uOTQuNDQ3LTEuNjM3IDEuMjMyLTEuNzQ5IDEuNjA4VjcuNjQ1aC0zLjUwOHYyMC42OTloNC4wNDdWMTMuNjM4Yy0uMDA1LS40MDUuMDUzLS44MDkuMTcxLTEuMTk2LjY0NS0xLjcwOSAyLjY3Mi0yLjAzNCAzLjU0OS0uNjAybDMuMTU3LTMuMTQ3Yy0xLjY2OC0xLjgwOC00LjQ5OS0xLjUwNi01LjY1Ny0uOTY1IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L2c+PGRlZnM+PGNsaXBQYXRoIGlkPSJhIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMCAwaDE2NHYyOEgweiIvPjwvY2xpcFBhdGg+PC9kZWZzPjwvc3ZnPg==);
}

.color-white {
  color: #FFF;
}

.bg-white {
  background-color: #FFF;
}

.color-black {
  color: #1d1d1d;
}

.bg-black {
  background-color: #1d1d1d;
}

.color-blackOpacity {
  color: rgba(29, 29, 29, 0.5);
}

.bg-blackOpacity {
  background-color: rgba(29, 29, 29, 0.5);
}

.color-lightBlack {
  color: #404040;
}

.bg-lightBlack {
  background-color: #404040;
}

.color-red {
  color: #FF300A;
}

.bg-red {
  background-color: #FF300A;
}

.color-yellow {
  color: #FFD80A;
}

.bg-yellow {
  background-color: #FFD80A;
}

.color-grey {
  color: #666;
}

.bg-grey {
  background-color: #666;
}

.color-grey1 {
  color: #F8F8F8;
}

.bg-grey1 {
  background-color: #F8F8F8;
}

.color-grey2 {
  color: #E1E1E1;
}

.bg-grey2 {
  background-color: #E1E1E1;
}

.color-grey3 {
  color: #A4A1A1;
}

.bg-grey3 {
  background-color: #A4A1A1;
}

.color-grey4 {
  color: #666666;
}

.bg-grey4 {
  background-color: #666666;
}

.color-grey5 {
  color: #7C7C7C;
}

.bg-grey5 {
  background-color: #7C7C7C;
}

.color-formBorder {
  color: #D6D6D6;
}

.bg-formBorder {
  background-color: #D6D6D6;
}

.color-formActiveBorder {
  color: #2B2B2B;
}

.bg-formActiveBorder {
  background-color: #2B2B2B;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon svg, .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.icon img.width-full {
  width: 100%;
}

.w-15 {
  width: 15px;
}

.h-15 {
  height: 15px;
}

.w-25 {
  width: 25px;
}

.h-25 {
  height: 25px;
}

.w-50 {
  width: 50px;
}

.h-50 {
  height: 50px;
}

.text-h1 {
  font-size: 60px;
  line-height: 1.4;
  font-family: "Futura";
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .text-h1 {
    font-size: 36px;
    line-height: 46px;
  }
}

.text-h2 {
  font-size: 36px;
  line-height: 50px;
  font-family: "Futura";
  font-weight: 450;
}
@media only screen and (max-width: 1023px) {
  .text-h2 {
    font-size: 20px;
    line-height: 28px;
  }
}

.text-h3 {
  font-size: 20px;
  line-height: 28px;
  font-family: "Futura";
  font-weight: 450;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  .text-h3 {
    font-size: 14px;
    line-height: 20px;
  }
}

.text-h4 {
  font-size: 14px;
  line-height: 20px;
  font-family: "Futura";
  font-weight: 400;
  text-transform: uppercase;
}
.text-h4 b {
  font-weight: 450;
}

.text-h5 {
  font-size: 14px;
  line-height: 20px;
  font-family: "Futura";
  font-weight: 450;
  text-transform: uppercase;
}

.text-t {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
}
@media only screen and (max-width: 1023px) {
  .text-t {
    font-size: 14px;
    line-height: 20px;
  }
}

.text-t_small,
.text-t_sm {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  text-transform: none;
}

.text-t_middle,
.text-t_md {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  text-transform: none;
}
@media only screen and (max-width: 1023px) {
  .text-t_middle,
  .text-t_md {
    font-size: 14px;
    line-height: 20px;
  }
}

.text-t_lg,
.text-t_large {
  font-size: 24px;
  font-weight: normal;
  line-height: 36px;
}
@media only screen and (max-width: 1023px) {
  .text-t_lg:not(.static),
  .text-t_large:not(.static) {
    font-size: 14px;
    line-height: 20px;
  }
}

.text-t_super {
  font-size: 100px;
  font-weight: normal;
  line-height: 120px;
}
@media only screen and (max-width: 1023px) {
  .text-t_super {
    font-size: 60px;
    line-height: 68px;
  }
}

.text-t_tiny {
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
}
.text-t_tiny b,
.text-t_tiny strong {
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media screen and (min-width: 0) {
  .text-xs-center {
    text-align: center;
  }
  .text-xs-left {
    text-align: left;
  }
  .text-xs-right {
    text-align: right;
  }
}
@media screen and (min-width: 576px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
}
@media screen and (min-width: 767px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
}
@media screen and (min-width: 1023px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
}
@media screen and (min-width: 1300px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
}
@media screen and (min-width: 1500px) {
  .text-xxl-center {
    text-align: center;
  }
  .text-xxl-left {
    text-align: left;
  }
  .text-xxl-right {
    text-align: right;
  }
}
.text-upper {
  text-transform: uppercase;
}

.text-nowrap {
  white-space: nowrap;
}

b, strong {
  font-weight: bold;
}

.bordered {
  border-bottom: 1px solid #E1E1E1;
}

.border-black {
  border: 1px solid #1d1d1d;
}

.border-black_top {
  border-top: 1px solid #1d1d1d;
}

.border-black_bottom {
  border-bottom: 1px solid #1d1d1d;
}

.text-underline {
  text-decoration: underline;
}

hr,
.hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid #E1E1E1;
}

.vr {
  position: absolute;
  left: -10px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #E1E1E1;
}

p {
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

.abs-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.old {
  text-decoration: line-through;
}

.relative-pos {
  position: relative;
}

.badge {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 101;
  color: #1d1d1d;
  background-color: #E1E1E1;
  border-radius: 10px;
  padding: 2px 10px;
}
@media only screen and (max-width: 1023px) {
  .badge {
    left: 15px;
    top: 15px;
  }
}

.nobr {
  white-space: nowrap;
}

.mb-0 {
  margin-bottom: 0px;
}

.mbn-0 {
  margin-bottom: -0px;
}

.mt-0 {
  margin-top: 0px;
}

.mtn-0 {
  margin-top: -0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mbn-5 {
  margin-bottom: -5px;
}

.mt-5 {
  margin-top: 5px;
}

.mtn-5 {
  margin-top: -5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.mx-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mbn-10 {
  margin-bottom: -10px;
}

.mt-10 {
  margin-top: 10px;
}

.mtn-10 {
  margin-top: -10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mbn-15 {
  margin-bottom: -15px;
}

.mt-15 {
  margin-top: 15px;
}

.mtn-15 {
  margin-top: -15px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mx-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mbn-16 {
  margin-bottom: -16px;
}

.mt-16 {
  margin-top: 16px;
}

.mtn-16 {
  margin-top: -16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.mx-16 {
  margin-left: 16px;
  margin-right: 16px;
}

.my-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mbn-20 {
  margin-bottom: -20px;
}

.mt-20 {
  margin-top: 20px;
}

.mtn-20 {
  margin-top: -20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mbn-25 {
  margin-bottom: -25px;
}

.mt-25 {
  margin-top: 25px;
}

.mtn-25 {
  margin-top: -25px;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.mx-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mbn-30 {
  margin-bottom: -30px;
}

.mt-30 {
  margin-top: 30px;
}

.mtn-30 {
  margin-top: -30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mbn-35 {
  margin-bottom: -35px;
}

.mt-35 {
  margin-top: 35px;
}

.mtn-35 {
  margin-top: -35px;
}

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.mx-35 {
  margin-left: 35px;
  margin-right: 35px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mbn-40 {
  margin-bottom: -40px;
}

.mt-40 {
  margin-top: 40px;
}

.mtn-40 {
  margin-top: -40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.mx-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mbn-45 {
  margin-bottom: -45px;
}

.mt-45 {
  margin-top: 45px;
}

.mtn-45 {
  margin-top: -45px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.mx-45 {
  margin-left: 45px;
  margin-right: 45px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mbn-50 {
  margin-bottom: -50px;
}

.mt-50 {
  margin-top: 50px;
}

.mtn-50 {
  margin-top: -50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.mx-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mbn-55 {
  margin-bottom: -55px;
}

.mt-55 {
  margin-top: 55px;
}

.mtn-55 {
  margin-top: -55px;
}

.ml-55 {
  margin-left: 55px;
}

.mr-55 {
  margin-right: 55px;
}

.mx-55 {
  margin-left: 55px;
  margin-right: 55px;
}

.my-55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pt-55 {
  padding-top: 55px;
}

.pl-55 {
  padding-left: 55px;
}

.pr-55 {
  padding-right: 55px;
}

.px-55 {
  padding-left: 55px;
  padding-right: 55px;
}

.py-55 {
  padding-top: 55px;
  padding-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mbn-60 {
  margin-bottom: -60px;
}

.mt-60 {
  margin-top: 60px;
}

.mtn-60 {
  margin-top: -60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.mx-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mbn-65 {
  margin-bottom: -65px;
}

.mt-65 {
  margin-top: 65px;
}

.mtn-65 {
  margin-top: -65px;
}

.ml-65 {
  margin-left: 65px;
}

.mr-65 {
  margin-right: 65px;
}

.mx-65 {
  margin-left: 65px;
  margin-right: 65px;
}

.my-65 {
  margin-top: 65px;
  margin-bottom: 65px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pt-65 {
  padding-top: 65px;
}

.pl-65 {
  padding-left: 65px;
}

.pr-65 {
  padding-right: 65px;
}

.px-65 {
  padding-left: 65px;
  padding-right: 65px;
}

.py-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mbn-70 {
  margin-bottom: -70px;
}

.mt-70 {
  margin-top: 70px;
}

.mtn-70 {
  margin-top: -70px;
}

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

.mx-70 {
  margin-left: 70px;
  margin-right: 70px;
}

.my-70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pl-70 {
  padding-left: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.px-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mbn-75 {
  margin-bottom: -75px;
}

.mt-75 {
  margin-top: 75px;
}

.mtn-75 {
  margin-top: -75px;
}

.ml-75 {
  margin-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

.mx-75 {
  margin-left: 75px;
  margin-right: 75px;
}

.my-75 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.pl-75 {
  padding-left: 75px;
}

.pr-75 {
  padding-right: 75px;
}

.px-75 {
  padding-left: 75px;
  padding-right: 75px;
}

.py-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mbn-80 {
  margin-bottom: -80px;
}

.mt-80 {
  margin-top: 80px;
}

.mtn-80 {
  margin-top: -80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.mx-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mbn-85 {
  margin-bottom: -85px;
}

.mt-85 {
  margin-top: 85px;
}

.mtn-85 {
  margin-top: -85px;
}

.ml-85 {
  margin-left: 85px;
}

.mr-85 {
  margin-right: 85px;
}

.mx-85 {
  margin-left: 85px;
  margin-right: 85px;
}

.my-85 {
  margin-top: 85px;
  margin-bottom: 85px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pt-85 {
  padding-top: 85px;
}

.pl-85 {
  padding-left: 85px;
}

.pr-85 {
  padding-right: 85px;
}

.px-85 {
  padding-left: 85px;
  padding-right: 85px;
}

.py-85 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mbn-90 {
  margin-bottom: -90px;
}

.mt-90 {
  margin-top: 90px;
}

.mtn-90 {
  margin-top: -90px;
}

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

.mx-90 {
  margin-left: 90px;
  margin-right: 90px;
}

.my-90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.pl-90 {
  padding-left: 90px;
}

.pr-90 {
  padding-right: 90px;
}

.px-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.py-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mbn-95 {
  margin-bottom: -95px;
}

.mt-95 {
  margin-top: 95px;
}

.mtn-95 {
  margin-top: -95px;
}

.ml-95 {
  margin-left: 95px;
}

.mr-95 {
  margin-right: 95px;
}

.mx-95 {
  margin-left: 95px;
  margin-right: 95px;
}

.my-95 {
  margin-top: 95px;
  margin-bottom: 95px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pt-95 {
  padding-top: 95px;
}

.pl-95 {
  padding-left: 95px;
}

.pr-95 {
  padding-right: 95px;
}

.px-95 {
  padding-left: 95px;
  padding-right: 95px;
}

.py-95 {
  padding-top: 95px;
  padding-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mbn-100 {
  margin-bottom: -100px;
}

.mt-100 {
  margin-top: 100px;
}

.mtn-100 {
  margin-top: -100px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.mx-100 {
  margin-left: 100px;
  margin-right: 100px;
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mbn-110 {
  margin-bottom: -110px;
}

.mt-110 {
  margin-top: 110px;
}

.mtn-110 {
  margin-top: -110px;
}

.ml-110 {
  margin-left: 110px;
}

.mr-110 {
  margin-right: 110px;
}

.mx-110 {
  margin-left: 110px;
  margin-right: 110px;
}

.my-110 {
  margin-top: 110px;
  margin-bottom: 110px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pt-110 {
  padding-top: 110px;
}

.pl-110 {
  padding-left: 110px;
}

.pr-110 {
  padding-right: 110px;
}

.px-110 {
  padding-left: 110px;
  padding-right: 110px;
}

.py-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mbn-120 {
  margin-bottom: -120px;
}

.mt-120 {
  margin-top: 120px;
}

.mtn-120 {
  margin-top: -120px;
}

.ml-120 {
  margin-left: 120px;
}

.mr-120 {
  margin-right: 120px;
}

.mx-120 {
  margin-left: 120px;
  margin-right: 120px;
}

.my-120 {
  margin-top: 120px;
  margin-bottom: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-120 {
  padding-top: 120px;
}

.pl-120 {
  padding-left: 120px;
}

.pr-120 {
  padding-right: 120px;
}

.px-120 {
  padding-left: 120px;
  padding-right: 120px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mbn-140 {
  margin-bottom: -140px;
}

.mt-140 {
  margin-top: 140px;
}

.mtn-140 {
  margin-top: -140px;
}

.ml-140 {
  margin-left: 140px;
}

.mr-140 {
  margin-right: 140px;
}

.mx-140 {
  margin-left: 140px;
  margin-right: 140px;
}

.my-140 {
  margin-top: 140px;
  margin-bottom: 140px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pt-140 {
  padding-top: 140px;
}

.pl-140 {
  padding-left: 140px;
}

.pr-140 {
  padding-right: 140px;
}

.px-140 {
  padding-left: 140px;
  padding-right: 140px;
}

.py-140 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mbn-150 {
  margin-bottom: -150px;
}

.mt-150 {
  margin-top: 150px;
}

.mtn-150 {
  margin-top: -150px;
}

.ml-150 {
  margin-left: 150px;
}

.mr-150 {
  margin-right: 150px;
}

.mx-150 {
  margin-left: 150px;
  margin-right: 150px;
}

.my-150 {
  margin-top: 150px;
  margin-bottom: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pt-150 {
  padding-top: 150px;
}

.pl-150 {
  padding-left: 150px;
}

.pr-150 {
  padding-right: 150px;
}

.px-150 {
  padding-left: 150px;
  padding-right: 150px;
}

.py-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mbn-200 {
  margin-bottom: -200px;
}

.mt-200 {
  margin-top: 200px;
}

.mtn-200 {
  margin-top: -200px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-200 {
  margin-right: 200px;
}

.mx-200 {
  margin-left: 200px;
  margin-right: 200px;
}

.my-200 {
  margin-top: 200px;
  margin-bottom: 200px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pt-200 {
  padding-top: 200px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-200 {
  padding-right: 200px;
}

.px-200 {
  padding-left: 200px;
  padding-right: 200px;
}

.py-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.mb-230 {
  margin-bottom: 230px;
}

.mbn-230 {
  margin-bottom: -230px;
}

.mt-230 {
  margin-top: 230px;
}

.mtn-230 {
  margin-top: -230px;
}

.ml-230 {
  margin-left: 230px;
}

.mr-230 {
  margin-right: 230px;
}

.mx-230 {
  margin-left: 230px;
  margin-right: 230px;
}

.my-230 {
  margin-top: 230px;
  margin-bottom: 230px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pt-230 {
  padding-top: 230px;
}

.pl-230 {
  padding-left: 230px;
}

.pr-230 {
  padding-right: 230px;
}

.px-230 {
  padding-left: 230px;
  padding-right: 230px;
}

.py-230 {
  padding-top: 230px;
  padding-bottom: 230px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 0) {
  .mb-xs-0 {
    margin-bottom: 0px;
  }
  .mbn-xs-0 {
    margin-bottom: -0px;
  }
  .mt-xs-0 {
    margin-top: 0px;
  }
  .mtn-xs-0 {
    margin-top: -0px;
  }
  .ml-xs-0 {
    margin-left: 0px;
  }
  .mr-xs-0 {
    margin-right: 0px;
  }
  .mx-xs-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .my-xs-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .pb-xs-0 {
    padding-bottom: 0px;
  }
  .pt-xs-0 {
    padding-top: 0px;
  }
  .pl-xs-0 {
    padding-left: 0px;
  }
  .pr-xs-0 {
    padding-right: 0px;
  }
  .px-xs-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .py-xs-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .mb-xs-5 {
    margin-bottom: 5px;
  }
  .mbn-xs-5 {
    margin-bottom: -5px;
  }
  .mt-xs-5 {
    margin-top: 5px;
  }
  .mtn-xs-5 {
    margin-top: -5px;
  }
  .ml-xs-5 {
    margin-left: 5px;
  }
  .mr-xs-5 {
    margin-right: 5px;
  }
  .mx-xs-5 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .my-xs-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .pb-xs-5 {
    padding-bottom: 5px;
  }
  .pt-xs-5 {
    padding-top: 5px;
  }
  .pl-xs-5 {
    padding-left: 5px;
  }
  .pr-xs-5 {
    padding-right: 5px;
  }
  .px-xs-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .py-xs-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .mb-xs-10 {
    margin-bottom: 10px;
  }
  .mbn-xs-10 {
    margin-bottom: -10px;
  }
  .mt-xs-10 {
    margin-top: 10px;
  }
  .mtn-xs-10 {
    margin-top: -10px;
  }
  .ml-xs-10 {
    margin-left: 10px;
  }
  .mr-xs-10 {
    margin-right: 10px;
  }
  .mx-xs-10 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .my-xs-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .pb-xs-10 {
    padding-bottom: 10px;
  }
  .pt-xs-10 {
    padding-top: 10px;
  }
  .pl-xs-10 {
    padding-left: 10px;
  }
  .pr-xs-10 {
    padding-right: 10px;
  }
  .px-xs-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .py-xs-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mb-xs-15 {
    margin-bottom: 15px;
  }
  .mbn-xs-15 {
    margin-bottom: -15px;
  }
  .mt-xs-15 {
    margin-top: 15px;
  }
  .mtn-xs-15 {
    margin-top: -15px;
  }
  .ml-xs-15 {
    margin-left: 15px;
  }
  .mr-xs-15 {
    margin-right: 15px;
  }
  .mx-xs-15 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .my-xs-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .pb-xs-15 {
    padding-bottom: 15px;
  }
  .pt-xs-15 {
    padding-top: 15px;
  }
  .pl-xs-15 {
    padding-left: 15px;
  }
  .pr-xs-15 {
    padding-right: 15px;
  }
  .px-xs-15 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .py-xs-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .mb-xs-16 {
    margin-bottom: 16px;
  }
  .mbn-xs-16 {
    margin-bottom: -16px;
  }
  .mt-xs-16 {
    margin-top: 16px;
  }
  .mtn-xs-16 {
    margin-top: -16px;
  }
  .ml-xs-16 {
    margin-left: 16px;
  }
  .mr-xs-16 {
    margin-right: 16px;
  }
  .mx-xs-16 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .my-xs-16 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .pb-xs-16 {
    padding-bottom: 16px;
  }
  .pt-xs-16 {
    padding-top: 16px;
  }
  .pl-xs-16 {
    padding-left: 16px;
  }
  .pr-xs-16 {
    padding-right: 16px;
  }
  .px-xs-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .py-xs-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .mb-xs-20 {
    margin-bottom: 20px;
  }
  .mbn-xs-20 {
    margin-bottom: -20px;
  }
  .mt-xs-20 {
    margin-top: 20px;
  }
  .mtn-xs-20 {
    margin-top: -20px;
  }
  .ml-xs-20 {
    margin-left: 20px;
  }
  .mr-xs-20 {
    margin-right: 20px;
  }
  .mx-xs-20 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .my-xs-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pb-xs-20 {
    padding-bottom: 20px;
  }
  .pt-xs-20 {
    padding-top: 20px;
  }
  .pl-xs-20 {
    padding-left: 20px;
  }
  .pr-xs-20 {
    padding-right: 20px;
  }
  .px-xs-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .py-xs-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mb-xs-25 {
    margin-bottom: 25px;
  }
  .mbn-xs-25 {
    margin-bottom: -25px;
  }
  .mt-xs-25 {
    margin-top: 25px;
  }
  .mtn-xs-25 {
    margin-top: -25px;
  }
  .ml-xs-25 {
    margin-left: 25px;
  }
  .mr-xs-25 {
    margin-right: 25px;
  }
  .mx-xs-25 {
    margin-left: 25px;
    margin-right: 25px;
  }
  .my-xs-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .pb-xs-25 {
    padding-bottom: 25px;
  }
  .pt-xs-25 {
    padding-top: 25px;
  }
  .pl-xs-25 {
    padding-left: 25px;
  }
  .pr-xs-25 {
    padding-right: 25px;
  }
  .px-xs-25 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .py-xs-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .mb-xs-30 {
    margin-bottom: 30px;
  }
  .mbn-xs-30 {
    margin-bottom: -30px;
  }
  .mt-xs-30 {
    margin-top: 30px;
  }
  .mtn-xs-30 {
    margin-top: -30px;
  }
  .ml-xs-30 {
    margin-left: 30px;
  }
  .mr-xs-30 {
    margin-right: 30px;
  }
  .mx-xs-30 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .my-xs-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .pb-xs-30 {
    padding-bottom: 30px;
  }
  .pt-xs-30 {
    padding-top: 30px;
  }
  .pl-xs-30 {
    padding-left: 30px;
  }
  .pr-xs-30 {
    padding-right: 30px;
  }
  .px-xs-30 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .py-xs-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .mb-xs-35 {
    margin-bottom: 35px;
  }
  .mbn-xs-35 {
    margin-bottom: -35px;
  }
  .mt-xs-35 {
    margin-top: 35px;
  }
  .mtn-xs-35 {
    margin-top: -35px;
  }
  .ml-xs-35 {
    margin-left: 35px;
  }
  .mr-xs-35 {
    margin-right: 35px;
  }
  .mx-xs-35 {
    margin-left: 35px;
    margin-right: 35px;
  }
  .my-xs-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .pb-xs-35 {
    padding-bottom: 35px;
  }
  .pt-xs-35 {
    padding-top: 35px;
  }
  .pl-xs-35 {
    padding-left: 35px;
  }
  .pr-xs-35 {
    padding-right: 35px;
  }
  .px-xs-35 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .py-xs-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .mb-xs-40 {
    margin-bottom: 40px;
  }
  .mbn-xs-40 {
    margin-bottom: -40px;
  }
  .mt-xs-40 {
    margin-top: 40px;
  }
  .mtn-xs-40 {
    margin-top: -40px;
  }
  .ml-xs-40 {
    margin-left: 40px;
  }
  .mr-xs-40 {
    margin-right: 40px;
  }
  .mx-xs-40 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .my-xs-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .pb-xs-40 {
    padding-bottom: 40px;
  }
  .pt-xs-40 {
    padding-top: 40px;
  }
  .pl-xs-40 {
    padding-left: 40px;
  }
  .pr-xs-40 {
    padding-right: 40px;
  }
  .px-xs-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .py-xs-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mb-xs-45 {
    margin-bottom: 45px;
  }
  .mbn-xs-45 {
    margin-bottom: -45px;
  }
  .mt-xs-45 {
    margin-top: 45px;
  }
  .mtn-xs-45 {
    margin-top: -45px;
  }
  .ml-xs-45 {
    margin-left: 45px;
  }
  .mr-xs-45 {
    margin-right: 45px;
  }
  .mx-xs-45 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .my-xs-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .pb-xs-45 {
    padding-bottom: 45px;
  }
  .pt-xs-45 {
    padding-top: 45px;
  }
  .pl-xs-45 {
    padding-left: 45px;
  }
  .pr-xs-45 {
    padding-right: 45px;
  }
  .px-xs-45 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .py-xs-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .mb-xs-50 {
    margin-bottom: 50px;
  }
  .mbn-xs-50 {
    margin-bottom: -50px;
  }
  .mt-xs-50 {
    margin-top: 50px;
  }
  .mtn-xs-50 {
    margin-top: -50px;
  }
  .ml-xs-50 {
    margin-left: 50px;
  }
  .mr-xs-50 {
    margin-right: 50px;
  }
  .mx-xs-50 {
    margin-left: 50px;
    margin-right: 50px;
  }
  .my-xs-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .pb-xs-50 {
    padding-bottom: 50px;
  }
  .pt-xs-50 {
    padding-top: 50px;
  }
  .pl-xs-50 {
    padding-left: 50px;
  }
  .pr-xs-50 {
    padding-right: 50px;
  }
  .px-xs-50 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .py-xs-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .mb-xs-55 {
    margin-bottom: 55px;
  }
  .mbn-xs-55 {
    margin-bottom: -55px;
  }
  .mt-xs-55 {
    margin-top: 55px;
  }
  .mtn-xs-55 {
    margin-top: -55px;
  }
  .ml-xs-55 {
    margin-left: 55px;
  }
  .mr-xs-55 {
    margin-right: 55px;
  }
  .mx-xs-55 {
    margin-left: 55px;
    margin-right: 55px;
  }
  .my-xs-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .pb-xs-55 {
    padding-bottom: 55px;
  }
  .pt-xs-55 {
    padding-top: 55px;
  }
  .pl-xs-55 {
    padding-left: 55px;
  }
  .pr-xs-55 {
    padding-right: 55px;
  }
  .px-xs-55 {
    padding-left: 55px;
    padding-right: 55px;
  }
  .py-xs-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .mb-xs-60 {
    margin-bottom: 60px;
  }
  .mbn-xs-60 {
    margin-bottom: -60px;
  }
  .mt-xs-60 {
    margin-top: 60px;
  }
  .mtn-xs-60 {
    margin-top: -60px;
  }
  .ml-xs-60 {
    margin-left: 60px;
  }
  .mr-xs-60 {
    margin-right: 60px;
  }
  .mx-xs-60 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .my-xs-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .pb-xs-60 {
    padding-bottom: 60px;
  }
  .pt-xs-60 {
    padding-top: 60px;
  }
  .pl-xs-60 {
    padding-left: 60px;
  }
  .pr-xs-60 {
    padding-right: 60px;
  }
  .px-xs-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .py-xs-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mb-xs-65 {
    margin-bottom: 65px;
  }
  .mbn-xs-65 {
    margin-bottom: -65px;
  }
  .mt-xs-65 {
    margin-top: 65px;
  }
  .mtn-xs-65 {
    margin-top: -65px;
  }
  .ml-xs-65 {
    margin-left: 65px;
  }
  .mr-xs-65 {
    margin-right: 65px;
  }
  .mx-xs-65 {
    margin-left: 65px;
    margin-right: 65px;
  }
  .my-xs-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .pb-xs-65 {
    padding-bottom: 65px;
  }
  .pt-xs-65 {
    padding-top: 65px;
  }
  .pl-xs-65 {
    padding-left: 65px;
  }
  .pr-xs-65 {
    padding-right: 65px;
  }
  .px-xs-65 {
    padding-left: 65px;
    padding-right: 65px;
  }
  .py-xs-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .mb-xs-70 {
    margin-bottom: 70px;
  }
  .mbn-xs-70 {
    margin-bottom: -70px;
  }
  .mt-xs-70 {
    margin-top: 70px;
  }
  .mtn-xs-70 {
    margin-top: -70px;
  }
  .ml-xs-70 {
    margin-left: 70px;
  }
  .mr-xs-70 {
    margin-right: 70px;
  }
  .mx-xs-70 {
    margin-left: 70px;
    margin-right: 70px;
  }
  .my-xs-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .pb-xs-70 {
    padding-bottom: 70px;
  }
  .pt-xs-70 {
    padding-top: 70px;
  }
  .pl-xs-70 {
    padding-left: 70px;
  }
  .pr-xs-70 {
    padding-right: 70px;
  }
  .px-xs-70 {
    padding-left: 70px;
    padding-right: 70px;
  }
  .py-xs-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .mb-xs-75 {
    margin-bottom: 75px;
  }
  .mbn-xs-75 {
    margin-bottom: -75px;
  }
  .mt-xs-75 {
    margin-top: 75px;
  }
  .mtn-xs-75 {
    margin-top: -75px;
  }
  .ml-xs-75 {
    margin-left: 75px;
  }
  .mr-xs-75 {
    margin-right: 75px;
  }
  .mx-xs-75 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .my-xs-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .pb-xs-75 {
    padding-bottom: 75px;
  }
  .pt-xs-75 {
    padding-top: 75px;
  }
  .pl-xs-75 {
    padding-left: 75px;
  }
  .pr-xs-75 {
    padding-right: 75px;
  }
  .px-xs-75 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .py-xs-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .mb-xs-80 {
    margin-bottom: 80px;
  }
  .mbn-xs-80 {
    margin-bottom: -80px;
  }
  .mt-xs-80 {
    margin-top: 80px;
  }
  .mtn-xs-80 {
    margin-top: -80px;
  }
  .ml-xs-80 {
    margin-left: 80px;
  }
  .mr-xs-80 {
    margin-right: 80px;
  }
  .mx-xs-80 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .my-xs-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .pb-xs-80 {
    padding-bottom: 80px;
  }
  .pt-xs-80 {
    padding-top: 80px;
  }
  .pl-xs-80 {
    padding-left: 80px;
  }
  .pr-xs-80 {
    padding-right: 80px;
  }
  .px-xs-80 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .py-xs-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mb-xs-85 {
    margin-bottom: 85px;
  }
  .mbn-xs-85 {
    margin-bottom: -85px;
  }
  .mt-xs-85 {
    margin-top: 85px;
  }
  .mtn-xs-85 {
    margin-top: -85px;
  }
  .ml-xs-85 {
    margin-left: 85px;
  }
  .mr-xs-85 {
    margin-right: 85px;
  }
  .mx-xs-85 {
    margin-left: 85px;
    margin-right: 85px;
  }
  .my-xs-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .pb-xs-85 {
    padding-bottom: 85px;
  }
  .pt-xs-85 {
    padding-top: 85px;
  }
  .pl-xs-85 {
    padding-left: 85px;
  }
  .pr-xs-85 {
    padding-right: 85px;
  }
  .px-xs-85 {
    padding-left: 85px;
    padding-right: 85px;
  }
  .py-xs-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .mb-xs-90 {
    margin-bottom: 90px;
  }
  .mbn-xs-90 {
    margin-bottom: -90px;
  }
  .mt-xs-90 {
    margin-top: 90px;
  }
  .mtn-xs-90 {
    margin-top: -90px;
  }
  .ml-xs-90 {
    margin-left: 90px;
  }
  .mr-xs-90 {
    margin-right: 90px;
  }
  .mx-xs-90 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .my-xs-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .pb-xs-90 {
    padding-bottom: 90px;
  }
  .pt-xs-90 {
    padding-top: 90px;
  }
  .pl-xs-90 {
    padding-left: 90px;
  }
  .pr-xs-90 {
    padding-right: 90px;
  }
  .px-xs-90 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .py-xs-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .mb-xs-95 {
    margin-bottom: 95px;
  }
  .mbn-xs-95 {
    margin-bottom: -95px;
  }
  .mt-xs-95 {
    margin-top: 95px;
  }
  .mtn-xs-95 {
    margin-top: -95px;
  }
  .ml-xs-95 {
    margin-left: 95px;
  }
  .mr-xs-95 {
    margin-right: 95px;
  }
  .mx-xs-95 {
    margin-left: 95px;
    margin-right: 95px;
  }
  .my-xs-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .pb-xs-95 {
    padding-bottom: 95px;
  }
  .pt-xs-95 {
    padding-top: 95px;
  }
  .pl-xs-95 {
    padding-left: 95px;
  }
  .pr-xs-95 {
    padding-right: 95px;
  }
  .px-xs-95 {
    padding-left: 95px;
    padding-right: 95px;
  }
  .py-xs-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .mb-xs-100 {
    margin-bottom: 100px;
  }
  .mbn-xs-100 {
    margin-bottom: -100px;
  }
  .mt-xs-100 {
    margin-top: 100px;
  }
  .mtn-xs-100 {
    margin-top: -100px;
  }
  .ml-xs-100 {
    margin-left: 100px;
  }
  .mr-xs-100 {
    margin-right: 100px;
  }
  .mx-xs-100 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .my-xs-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .pb-xs-100 {
    padding-bottom: 100px;
  }
  .pt-xs-100 {
    padding-top: 100px;
  }
  .pl-xs-100 {
    padding-left: 100px;
  }
  .pr-xs-100 {
    padding-right: 100px;
  }
  .px-xs-100 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .py-xs-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mb-xs-110 {
    margin-bottom: 110px;
  }
  .mbn-xs-110 {
    margin-bottom: -110px;
  }
  .mt-xs-110 {
    margin-top: 110px;
  }
  .mtn-xs-110 {
    margin-top: -110px;
  }
  .ml-xs-110 {
    margin-left: 110px;
  }
  .mr-xs-110 {
    margin-right: 110px;
  }
  .mx-xs-110 {
    margin-left: 110px;
    margin-right: 110px;
  }
  .my-xs-110 {
    margin-top: 110px;
    margin-bottom: 110px;
  }
  .pb-xs-110 {
    padding-bottom: 110px;
  }
  .pt-xs-110 {
    padding-top: 110px;
  }
  .pl-xs-110 {
    padding-left: 110px;
  }
  .pr-xs-110 {
    padding-right: 110px;
  }
  .px-xs-110 {
    padding-left: 110px;
    padding-right: 110px;
  }
  .py-xs-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .mb-xs-120 {
    margin-bottom: 120px;
  }
  .mbn-xs-120 {
    margin-bottom: -120px;
  }
  .mt-xs-120 {
    margin-top: 120px;
  }
  .mtn-xs-120 {
    margin-top: -120px;
  }
  .ml-xs-120 {
    margin-left: 120px;
  }
  .mr-xs-120 {
    margin-right: 120px;
  }
  .mx-xs-120 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .my-xs-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .pb-xs-120 {
    padding-bottom: 120px;
  }
  .pt-xs-120 {
    padding-top: 120px;
  }
  .pl-xs-120 {
    padding-left: 120px;
  }
  .pr-xs-120 {
    padding-right: 120px;
  }
  .px-xs-120 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .py-xs-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .mb-xs-140 {
    margin-bottom: 140px;
  }
  .mbn-xs-140 {
    margin-bottom: -140px;
  }
  .mt-xs-140 {
    margin-top: 140px;
  }
  .mtn-xs-140 {
    margin-top: -140px;
  }
  .ml-xs-140 {
    margin-left: 140px;
  }
  .mr-xs-140 {
    margin-right: 140px;
  }
  .mx-xs-140 {
    margin-left: 140px;
    margin-right: 140px;
  }
  .my-xs-140 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .pb-xs-140 {
    padding-bottom: 140px;
  }
  .pt-xs-140 {
    padding-top: 140px;
  }
  .pl-xs-140 {
    padding-left: 140px;
  }
  .pr-xs-140 {
    padding-right: 140px;
  }
  .px-xs-140 {
    padding-left: 140px;
    padding-right: 140px;
  }
  .py-xs-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .mb-xs-150 {
    margin-bottom: 150px;
  }
  .mbn-xs-150 {
    margin-bottom: -150px;
  }
  .mt-xs-150 {
    margin-top: 150px;
  }
  .mtn-xs-150 {
    margin-top: -150px;
  }
  .ml-xs-150 {
    margin-left: 150px;
  }
  .mr-xs-150 {
    margin-right: 150px;
  }
  .mx-xs-150 {
    margin-left: 150px;
    margin-right: 150px;
  }
  .my-xs-150 {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .pb-xs-150 {
    padding-bottom: 150px;
  }
  .pt-xs-150 {
    padding-top: 150px;
  }
  .pl-xs-150 {
    padding-left: 150px;
  }
  .pr-xs-150 {
    padding-right: 150px;
  }
  .px-xs-150 {
    padding-left: 150px;
    padding-right: 150px;
  }
  .py-xs-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .mb-xs-200 {
    margin-bottom: 200px;
  }
  .mbn-xs-200 {
    margin-bottom: -200px;
  }
  .mt-xs-200 {
    margin-top: 200px;
  }
  .mtn-xs-200 {
    margin-top: -200px;
  }
  .ml-xs-200 {
    margin-left: 200px;
  }
  .mr-xs-200 {
    margin-right: 200px;
  }
  .mx-xs-200 {
    margin-left: 200px;
    margin-right: 200px;
  }
  .my-xs-200 {
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .pb-xs-200 {
    padding-bottom: 200px;
  }
  .pt-xs-200 {
    padding-top: 200px;
  }
  .pl-xs-200 {
    padding-left: 200px;
  }
  .pr-xs-200 {
    padding-right: 200px;
  }
  .px-xs-200 {
    padding-left: 200px;
    padding-right: 200px;
  }
  .py-xs-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .mb-xs-230 {
    margin-bottom: 230px;
  }
  .mbn-xs-230 {
    margin-bottom: -230px;
  }
  .mt-xs-230 {
    margin-top: 230px;
  }
  .mtn-xs-230 {
    margin-top: -230px;
  }
  .ml-xs-230 {
    margin-left: 230px;
  }
  .mr-xs-230 {
    margin-right: 230px;
  }
  .mx-xs-230 {
    margin-left: 230px;
    margin-right: 230px;
  }
  .my-xs-230 {
    margin-top: 230px;
    margin-bottom: 230px;
  }
  .pb-xs-230 {
    padding-bottom: 230px;
  }
  .pt-xs-230 {
    padding-top: 230px;
  }
  .pl-xs-230 {
    padding-left: 230px;
  }
  .pr-xs-230 {
    padding-right: 230px;
  }
  .px-xs-230 {
    padding-left: 230px;
    padding-right: 230px;
  }
  .py-xs-230 {
    padding-top: 230px;
    padding-bottom: 230px;
  }
}
@media screen and (min-width: 576px) {
  .mb-sm-0 {
    margin-bottom: 0px;
  }
  .mbn-sm-0 {
    margin-bottom: -0px;
  }
  .mt-sm-0 {
    margin-top: 0px;
  }
  .mtn-sm-0 {
    margin-top: -0px;
  }
  .ml-sm-0 {
    margin-left: 0px;
  }
  .mr-sm-0 {
    margin-right: 0px;
  }
  .mx-sm-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .my-sm-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .pb-sm-0 {
    padding-bottom: 0px;
  }
  .pt-sm-0 {
    padding-top: 0px;
  }
  .pl-sm-0 {
    padding-left: 0px;
  }
  .pr-sm-0 {
    padding-right: 0px;
  }
  .px-sm-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .py-sm-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .mb-sm-5 {
    margin-bottom: 5px;
  }
  .mbn-sm-5 {
    margin-bottom: -5px;
  }
  .mt-sm-5 {
    margin-top: 5px;
  }
  .mtn-sm-5 {
    margin-top: -5px;
  }
  .ml-sm-5 {
    margin-left: 5px;
  }
  .mr-sm-5 {
    margin-right: 5px;
  }
  .mx-sm-5 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .my-sm-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .pb-sm-5 {
    padding-bottom: 5px;
  }
  .pt-sm-5 {
    padding-top: 5px;
  }
  .pl-sm-5 {
    padding-left: 5px;
  }
  .pr-sm-5 {
    padding-right: 5px;
  }
  .px-sm-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .py-sm-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .mb-sm-10 {
    margin-bottom: 10px;
  }
  .mbn-sm-10 {
    margin-bottom: -10px;
  }
  .mt-sm-10 {
    margin-top: 10px;
  }
  .mtn-sm-10 {
    margin-top: -10px;
  }
  .ml-sm-10 {
    margin-left: 10px;
  }
  .mr-sm-10 {
    margin-right: 10px;
  }
  .mx-sm-10 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .my-sm-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .pb-sm-10 {
    padding-bottom: 10px;
  }
  .pt-sm-10 {
    padding-top: 10px;
  }
  .pl-sm-10 {
    padding-left: 10px;
  }
  .pr-sm-10 {
    padding-right: 10px;
  }
  .px-sm-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .py-sm-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mb-sm-15 {
    margin-bottom: 15px;
  }
  .mbn-sm-15 {
    margin-bottom: -15px;
  }
  .mt-sm-15 {
    margin-top: 15px;
  }
  .mtn-sm-15 {
    margin-top: -15px;
  }
  .ml-sm-15 {
    margin-left: 15px;
  }
  .mr-sm-15 {
    margin-right: 15px;
  }
  .mx-sm-15 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .my-sm-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .pb-sm-15 {
    padding-bottom: 15px;
  }
  .pt-sm-15 {
    padding-top: 15px;
  }
  .pl-sm-15 {
    padding-left: 15px;
  }
  .pr-sm-15 {
    padding-right: 15px;
  }
  .px-sm-15 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .py-sm-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .mb-sm-16 {
    margin-bottom: 16px;
  }
  .mbn-sm-16 {
    margin-bottom: -16px;
  }
  .mt-sm-16 {
    margin-top: 16px;
  }
  .mtn-sm-16 {
    margin-top: -16px;
  }
  .ml-sm-16 {
    margin-left: 16px;
  }
  .mr-sm-16 {
    margin-right: 16px;
  }
  .mx-sm-16 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .my-sm-16 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .pb-sm-16 {
    padding-bottom: 16px;
  }
  .pt-sm-16 {
    padding-top: 16px;
  }
  .pl-sm-16 {
    padding-left: 16px;
  }
  .pr-sm-16 {
    padding-right: 16px;
  }
  .px-sm-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .py-sm-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .mb-sm-20 {
    margin-bottom: 20px;
  }
  .mbn-sm-20 {
    margin-bottom: -20px;
  }
  .mt-sm-20 {
    margin-top: 20px;
  }
  .mtn-sm-20 {
    margin-top: -20px;
  }
  .ml-sm-20 {
    margin-left: 20px;
  }
  .mr-sm-20 {
    margin-right: 20px;
  }
  .mx-sm-20 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .my-sm-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pb-sm-20 {
    padding-bottom: 20px;
  }
  .pt-sm-20 {
    padding-top: 20px;
  }
  .pl-sm-20 {
    padding-left: 20px;
  }
  .pr-sm-20 {
    padding-right: 20px;
  }
  .px-sm-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .py-sm-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mb-sm-25 {
    margin-bottom: 25px;
  }
  .mbn-sm-25 {
    margin-bottom: -25px;
  }
  .mt-sm-25 {
    margin-top: 25px;
  }
  .mtn-sm-25 {
    margin-top: -25px;
  }
  .ml-sm-25 {
    margin-left: 25px;
  }
  .mr-sm-25 {
    margin-right: 25px;
  }
  .mx-sm-25 {
    margin-left: 25px;
    margin-right: 25px;
  }
  .my-sm-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .pb-sm-25 {
    padding-bottom: 25px;
  }
  .pt-sm-25 {
    padding-top: 25px;
  }
  .pl-sm-25 {
    padding-left: 25px;
  }
  .pr-sm-25 {
    padding-right: 25px;
  }
  .px-sm-25 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .py-sm-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .mb-sm-30 {
    margin-bottom: 30px;
  }
  .mbn-sm-30 {
    margin-bottom: -30px;
  }
  .mt-sm-30 {
    margin-top: 30px;
  }
  .mtn-sm-30 {
    margin-top: -30px;
  }
  .ml-sm-30 {
    margin-left: 30px;
  }
  .mr-sm-30 {
    margin-right: 30px;
  }
  .mx-sm-30 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .my-sm-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .pb-sm-30 {
    padding-bottom: 30px;
  }
  .pt-sm-30 {
    padding-top: 30px;
  }
  .pl-sm-30 {
    padding-left: 30px;
  }
  .pr-sm-30 {
    padding-right: 30px;
  }
  .px-sm-30 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .py-sm-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .mb-sm-35 {
    margin-bottom: 35px;
  }
  .mbn-sm-35 {
    margin-bottom: -35px;
  }
  .mt-sm-35 {
    margin-top: 35px;
  }
  .mtn-sm-35 {
    margin-top: -35px;
  }
  .ml-sm-35 {
    margin-left: 35px;
  }
  .mr-sm-35 {
    margin-right: 35px;
  }
  .mx-sm-35 {
    margin-left: 35px;
    margin-right: 35px;
  }
  .my-sm-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .pb-sm-35 {
    padding-bottom: 35px;
  }
  .pt-sm-35 {
    padding-top: 35px;
  }
  .pl-sm-35 {
    padding-left: 35px;
  }
  .pr-sm-35 {
    padding-right: 35px;
  }
  .px-sm-35 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .py-sm-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .mb-sm-40 {
    margin-bottom: 40px;
  }
  .mbn-sm-40 {
    margin-bottom: -40px;
  }
  .mt-sm-40 {
    margin-top: 40px;
  }
  .mtn-sm-40 {
    margin-top: -40px;
  }
  .ml-sm-40 {
    margin-left: 40px;
  }
  .mr-sm-40 {
    margin-right: 40px;
  }
  .mx-sm-40 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .my-sm-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .pb-sm-40 {
    padding-bottom: 40px;
  }
  .pt-sm-40 {
    padding-top: 40px;
  }
  .pl-sm-40 {
    padding-left: 40px;
  }
  .pr-sm-40 {
    padding-right: 40px;
  }
  .px-sm-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .py-sm-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mb-sm-45 {
    margin-bottom: 45px;
  }
  .mbn-sm-45 {
    margin-bottom: -45px;
  }
  .mt-sm-45 {
    margin-top: 45px;
  }
  .mtn-sm-45 {
    margin-top: -45px;
  }
  .ml-sm-45 {
    margin-left: 45px;
  }
  .mr-sm-45 {
    margin-right: 45px;
  }
  .mx-sm-45 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .my-sm-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .pb-sm-45 {
    padding-bottom: 45px;
  }
  .pt-sm-45 {
    padding-top: 45px;
  }
  .pl-sm-45 {
    padding-left: 45px;
  }
  .pr-sm-45 {
    padding-right: 45px;
  }
  .px-sm-45 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .py-sm-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .mb-sm-50 {
    margin-bottom: 50px;
  }
  .mbn-sm-50 {
    margin-bottom: -50px;
  }
  .mt-sm-50 {
    margin-top: 50px;
  }
  .mtn-sm-50 {
    margin-top: -50px;
  }
  .ml-sm-50 {
    margin-left: 50px;
  }
  .mr-sm-50 {
    margin-right: 50px;
  }
  .mx-sm-50 {
    margin-left: 50px;
    margin-right: 50px;
  }
  .my-sm-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .pb-sm-50 {
    padding-bottom: 50px;
  }
  .pt-sm-50 {
    padding-top: 50px;
  }
  .pl-sm-50 {
    padding-left: 50px;
  }
  .pr-sm-50 {
    padding-right: 50px;
  }
  .px-sm-50 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .py-sm-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .mb-sm-55 {
    margin-bottom: 55px;
  }
  .mbn-sm-55 {
    margin-bottom: -55px;
  }
  .mt-sm-55 {
    margin-top: 55px;
  }
  .mtn-sm-55 {
    margin-top: -55px;
  }
  .ml-sm-55 {
    margin-left: 55px;
  }
  .mr-sm-55 {
    margin-right: 55px;
  }
  .mx-sm-55 {
    margin-left: 55px;
    margin-right: 55px;
  }
  .my-sm-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .pb-sm-55 {
    padding-bottom: 55px;
  }
  .pt-sm-55 {
    padding-top: 55px;
  }
  .pl-sm-55 {
    padding-left: 55px;
  }
  .pr-sm-55 {
    padding-right: 55px;
  }
  .px-sm-55 {
    padding-left: 55px;
    padding-right: 55px;
  }
  .py-sm-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .mb-sm-60 {
    margin-bottom: 60px;
  }
  .mbn-sm-60 {
    margin-bottom: -60px;
  }
  .mt-sm-60 {
    margin-top: 60px;
  }
  .mtn-sm-60 {
    margin-top: -60px;
  }
  .ml-sm-60 {
    margin-left: 60px;
  }
  .mr-sm-60 {
    margin-right: 60px;
  }
  .mx-sm-60 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .my-sm-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .pb-sm-60 {
    padding-bottom: 60px;
  }
  .pt-sm-60 {
    padding-top: 60px;
  }
  .pl-sm-60 {
    padding-left: 60px;
  }
  .pr-sm-60 {
    padding-right: 60px;
  }
  .px-sm-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .py-sm-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mb-sm-65 {
    margin-bottom: 65px;
  }
  .mbn-sm-65 {
    margin-bottom: -65px;
  }
  .mt-sm-65 {
    margin-top: 65px;
  }
  .mtn-sm-65 {
    margin-top: -65px;
  }
  .ml-sm-65 {
    margin-left: 65px;
  }
  .mr-sm-65 {
    margin-right: 65px;
  }
  .mx-sm-65 {
    margin-left: 65px;
    margin-right: 65px;
  }
  .my-sm-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .pb-sm-65 {
    padding-bottom: 65px;
  }
  .pt-sm-65 {
    padding-top: 65px;
  }
  .pl-sm-65 {
    padding-left: 65px;
  }
  .pr-sm-65 {
    padding-right: 65px;
  }
  .px-sm-65 {
    padding-left: 65px;
    padding-right: 65px;
  }
  .py-sm-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .mb-sm-70 {
    margin-bottom: 70px;
  }
  .mbn-sm-70 {
    margin-bottom: -70px;
  }
  .mt-sm-70 {
    margin-top: 70px;
  }
  .mtn-sm-70 {
    margin-top: -70px;
  }
  .ml-sm-70 {
    margin-left: 70px;
  }
  .mr-sm-70 {
    margin-right: 70px;
  }
  .mx-sm-70 {
    margin-left: 70px;
    margin-right: 70px;
  }
  .my-sm-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .pb-sm-70 {
    padding-bottom: 70px;
  }
  .pt-sm-70 {
    padding-top: 70px;
  }
  .pl-sm-70 {
    padding-left: 70px;
  }
  .pr-sm-70 {
    padding-right: 70px;
  }
  .px-sm-70 {
    padding-left: 70px;
    padding-right: 70px;
  }
  .py-sm-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .mb-sm-75 {
    margin-bottom: 75px;
  }
  .mbn-sm-75 {
    margin-bottom: -75px;
  }
  .mt-sm-75 {
    margin-top: 75px;
  }
  .mtn-sm-75 {
    margin-top: -75px;
  }
  .ml-sm-75 {
    margin-left: 75px;
  }
  .mr-sm-75 {
    margin-right: 75px;
  }
  .mx-sm-75 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .my-sm-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .pb-sm-75 {
    padding-bottom: 75px;
  }
  .pt-sm-75 {
    padding-top: 75px;
  }
  .pl-sm-75 {
    padding-left: 75px;
  }
  .pr-sm-75 {
    padding-right: 75px;
  }
  .px-sm-75 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .py-sm-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .mb-sm-80 {
    margin-bottom: 80px;
  }
  .mbn-sm-80 {
    margin-bottom: -80px;
  }
  .mt-sm-80 {
    margin-top: 80px;
  }
  .mtn-sm-80 {
    margin-top: -80px;
  }
  .ml-sm-80 {
    margin-left: 80px;
  }
  .mr-sm-80 {
    margin-right: 80px;
  }
  .mx-sm-80 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .my-sm-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .pb-sm-80 {
    padding-bottom: 80px;
  }
  .pt-sm-80 {
    padding-top: 80px;
  }
  .pl-sm-80 {
    padding-left: 80px;
  }
  .pr-sm-80 {
    padding-right: 80px;
  }
  .px-sm-80 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .py-sm-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mb-sm-85 {
    margin-bottom: 85px;
  }
  .mbn-sm-85 {
    margin-bottom: -85px;
  }
  .mt-sm-85 {
    margin-top: 85px;
  }
  .mtn-sm-85 {
    margin-top: -85px;
  }
  .ml-sm-85 {
    margin-left: 85px;
  }
  .mr-sm-85 {
    margin-right: 85px;
  }
  .mx-sm-85 {
    margin-left: 85px;
    margin-right: 85px;
  }
  .my-sm-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .pb-sm-85 {
    padding-bottom: 85px;
  }
  .pt-sm-85 {
    padding-top: 85px;
  }
  .pl-sm-85 {
    padding-left: 85px;
  }
  .pr-sm-85 {
    padding-right: 85px;
  }
  .px-sm-85 {
    padding-left: 85px;
    padding-right: 85px;
  }
  .py-sm-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .mb-sm-90 {
    margin-bottom: 90px;
  }
  .mbn-sm-90 {
    margin-bottom: -90px;
  }
  .mt-sm-90 {
    margin-top: 90px;
  }
  .mtn-sm-90 {
    margin-top: -90px;
  }
  .ml-sm-90 {
    margin-left: 90px;
  }
  .mr-sm-90 {
    margin-right: 90px;
  }
  .mx-sm-90 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .my-sm-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .pb-sm-90 {
    padding-bottom: 90px;
  }
  .pt-sm-90 {
    padding-top: 90px;
  }
  .pl-sm-90 {
    padding-left: 90px;
  }
  .pr-sm-90 {
    padding-right: 90px;
  }
  .px-sm-90 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .py-sm-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .mb-sm-95 {
    margin-bottom: 95px;
  }
  .mbn-sm-95 {
    margin-bottom: -95px;
  }
  .mt-sm-95 {
    margin-top: 95px;
  }
  .mtn-sm-95 {
    margin-top: -95px;
  }
  .ml-sm-95 {
    margin-left: 95px;
  }
  .mr-sm-95 {
    margin-right: 95px;
  }
  .mx-sm-95 {
    margin-left: 95px;
    margin-right: 95px;
  }
  .my-sm-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .pb-sm-95 {
    padding-bottom: 95px;
  }
  .pt-sm-95 {
    padding-top: 95px;
  }
  .pl-sm-95 {
    padding-left: 95px;
  }
  .pr-sm-95 {
    padding-right: 95px;
  }
  .px-sm-95 {
    padding-left: 95px;
    padding-right: 95px;
  }
  .py-sm-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .mb-sm-100 {
    margin-bottom: 100px;
  }
  .mbn-sm-100 {
    margin-bottom: -100px;
  }
  .mt-sm-100 {
    margin-top: 100px;
  }
  .mtn-sm-100 {
    margin-top: -100px;
  }
  .ml-sm-100 {
    margin-left: 100px;
  }
  .mr-sm-100 {
    margin-right: 100px;
  }
  .mx-sm-100 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .my-sm-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .pb-sm-100 {
    padding-bottom: 100px;
  }
  .pt-sm-100 {
    padding-top: 100px;
  }
  .pl-sm-100 {
    padding-left: 100px;
  }
  .pr-sm-100 {
    padding-right: 100px;
  }
  .px-sm-100 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .py-sm-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mb-sm-110 {
    margin-bottom: 110px;
  }
  .mbn-sm-110 {
    margin-bottom: -110px;
  }
  .mt-sm-110 {
    margin-top: 110px;
  }
  .mtn-sm-110 {
    margin-top: -110px;
  }
  .ml-sm-110 {
    margin-left: 110px;
  }
  .mr-sm-110 {
    margin-right: 110px;
  }
  .mx-sm-110 {
    margin-left: 110px;
    margin-right: 110px;
  }
  .my-sm-110 {
    margin-top: 110px;
    margin-bottom: 110px;
  }
  .pb-sm-110 {
    padding-bottom: 110px;
  }
  .pt-sm-110 {
    padding-top: 110px;
  }
  .pl-sm-110 {
    padding-left: 110px;
  }
  .pr-sm-110 {
    padding-right: 110px;
  }
  .px-sm-110 {
    padding-left: 110px;
    padding-right: 110px;
  }
  .py-sm-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .mb-sm-120 {
    margin-bottom: 120px;
  }
  .mbn-sm-120 {
    margin-bottom: -120px;
  }
  .mt-sm-120 {
    margin-top: 120px;
  }
  .mtn-sm-120 {
    margin-top: -120px;
  }
  .ml-sm-120 {
    margin-left: 120px;
  }
  .mr-sm-120 {
    margin-right: 120px;
  }
  .mx-sm-120 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .my-sm-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .pb-sm-120 {
    padding-bottom: 120px;
  }
  .pt-sm-120 {
    padding-top: 120px;
  }
  .pl-sm-120 {
    padding-left: 120px;
  }
  .pr-sm-120 {
    padding-right: 120px;
  }
  .px-sm-120 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .py-sm-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .mb-sm-140 {
    margin-bottom: 140px;
  }
  .mbn-sm-140 {
    margin-bottom: -140px;
  }
  .mt-sm-140 {
    margin-top: 140px;
  }
  .mtn-sm-140 {
    margin-top: -140px;
  }
  .ml-sm-140 {
    margin-left: 140px;
  }
  .mr-sm-140 {
    margin-right: 140px;
  }
  .mx-sm-140 {
    margin-left: 140px;
    margin-right: 140px;
  }
  .my-sm-140 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .pb-sm-140 {
    padding-bottom: 140px;
  }
  .pt-sm-140 {
    padding-top: 140px;
  }
  .pl-sm-140 {
    padding-left: 140px;
  }
  .pr-sm-140 {
    padding-right: 140px;
  }
  .px-sm-140 {
    padding-left: 140px;
    padding-right: 140px;
  }
  .py-sm-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .mb-sm-150 {
    margin-bottom: 150px;
  }
  .mbn-sm-150 {
    margin-bottom: -150px;
  }
  .mt-sm-150 {
    margin-top: 150px;
  }
  .mtn-sm-150 {
    margin-top: -150px;
  }
  .ml-sm-150 {
    margin-left: 150px;
  }
  .mr-sm-150 {
    margin-right: 150px;
  }
  .mx-sm-150 {
    margin-left: 150px;
    margin-right: 150px;
  }
  .my-sm-150 {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .pb-sm-150 {
    padding-bottom: 150px;
  }
  .pt-sm-150 {
    padding-top: 150px;
  }
  .pl-sm-150 {
    padding-left: 150px;
  }
  .pr-sm-150 {
    padding-right: 150px;
  }
  .px-sm-150 {
    padding-left: 150px;
    padding-right: 150px;
  }
  .py-sm-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .mb-sm-200 {
    margin-bottom: 200px;
  }
  .mbn-sm-200 {
    margin-bottom: -200px;
  }
  .mt-sm-200 {
    margin-top: 200px;
  }
  .mtn-sm-200 {
    margin-top: -200px;
  }
  .ml-sm-200 {
    margin-left: 200px;
  }
  .mr-sm-200 {
    margin-right: 200px;
  }
  .mx-sm-200 {
    margin-left: 200px;
    margin-right: 200px;
  }
  .my-sm-200 {
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .pb-sm-200 {
    padding-bottom: 200px;
  }
  .pt-sm-200 {
    padding-top: 200px;
  }
  .pl-sm-200 {
    padding-left: 200px;
  }
  .pr-sm-200 {
    padding-right: 200px;
  }
  .px-sm-200 {
    padding-left: 200px;
    padding-right: 200px;
  }
  .py-sm-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .mb-sm-230 {
    margin-bottom: 230px;
  }
  .mbn-sm-230 {
    margin-bottom: -230px;
  }
  .mt-sm-230 {
    margin-top: 230px;
  }
  .mtn-sm-230 {
    margin-top: -230px;
  }
  .ml-sm-230 {
    margin-left: 230px;
  }
  .mr-sm-230 {
    margin-right: 230px;
  }
  .mx-sm-230 {
    margin-left: 230px;
    margin-right: 230px;
  }
  .my-sm-230 {
    margin-top: 230px;
    margin-bottom: 230px;
  }
  .pb-sm-230 {
    padding-bottom: 230px;
  }
  .pt-sm-230 {
    padding-top: 230px;
  }
  .pl-sm-230 {
    padding-left: 230px;
  }
  .pr-sm-230 {
    padding-right: 230px;
  }
  .px-sm-230 {
    padding-left: 230px;
    padding-right: 230px;
  }
  .py-sm-230 {
    padding-top: 230px;
    padding-bottom: 230px;
  }
}
@media screen and (min-width: 767px) {
  .mb-md-0 {
    margin-bottom: 0px;
  }
  .mbn-md-0 {
    margin-bottom: -0px;
  }
  .mt-md-0 {
    margin-top: 0px;
  }
  .mtn-md-0 {
    margin-top: -0px;
  }
  .ml-md-0 {
    margin-left: 0px;
  }
  .mr-md-0 {
    margin-right: 0px;
  }
  .mx-md-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .my-md-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .pb-md-0 {
    padding-bottom: 0px;
  }
  .pt-md-0 {
    padding-top: 0px;
  }
  .pl-md-0 {
    padding-left: 0px;
  }
  .pr-md-0 {
    padding-right: 0px;
  }
  .px-md-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .py-md-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .mb-md-5 {
    margin-bottom: 5px;
  }
  .mbn-md-5 {
    margin-bottom: -5px;
  }
  .mt-md-5 {
    margin-top: 5px;
  }
  .mtn-md-5 {
    margin-top: -5px;
  }
  .ml-md-5 {
    margin-left: 5px;
  }
  .mr-md-5 {
    margin-right: 5px;
  }
  .mx-md-5 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .my-md-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .pb-md-5 {
    padding-bottom: 5px;
  }
  .pt-md-5 {
    padding-top: 5px;
  }
  .pl-md-5 {
    padding-left: 5px;
  }
  .pr-md-5 {
    padding-right: 5px;
  }
  .px-md-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .py-md-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .mb-md-10 {
    margin-bottom: 10px;
  }
  .mbn-md-10 {
    margin-bottom: -10px;
  }
  .mt-md-10 {
    margin-top: 10px;
  }
  .mtn-md-10 {
    margin-top: -10px;
  }
  .ml-md-10 {
    margin-left: 10px;
  }
  .mr-md-10 {
    margin-right: 10px;
  }
  .mx-md-10 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .my-md-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .pb-md-10 {
    padding-bottom: 10px;
  }
  .pt-md-10 {
    padding-top: 10px;
  }
  .pl-md-10 {
    padding-left: 10px;
  }
  .pr-md-10 {
    padding-right: 10px;
  }
  .px-md-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .py-md-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mb-md-15 {
    margin-bottom: 15px;
  }
  .mbn-md-15 {
    margin-bottom: -15px;
  }
  .mt-md-15 {
    margin-top: 15px;
  }
  .mtn-md-15 {
    margin-top: -15px;
  }
  .ml-md-15 {
    margin-left: 15px;
  }
  .mr-md-15 {
    margin-right: 15px;
  }
  .mx-md-15 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .my-md-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .pb-md-15 {
    padding-bottom: 15px;
  }
  .pt-md-15 {
    padding-top: 15px;
  }
  .pl-md-15 {
    padding-left: 15px;
  }
  .pr-md-15 {
    padding-right: 15px;
  }
  .px-md-15 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .py-md-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .mb-md-16 {
    margin-bottom: 16px;
  }
  .mbn-md-16 {
    margin-bottom: -16px;
  }
  .mt-md-16 {
    margin-top: 16px;
  }
  .mtn-md-16 {
    margin-top: -16px;
  }
  .ml-md-16 {
    margin-left: 16px;
  }
  .mr-md-16 {
    margin-right: 16px;
  }
  .mx-md-16 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .my-md-16 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .pb-md-16 {
    padding-bottom: 16px;
  }
  .pt-md-16 {
    padding-top: 16px;
  }
  .pl-md-16 {
    padding-left: 16px;
  }
  .pr-md-16 {
    padding-right: 16px;
  }
  .px-md-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .py-md-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .mb-md-20 {
    margin-bottom: 20px;
  }
  .mbn-md-20 {
    margin-bottom: -20px;
  }
  .mt-md-20 {
    margin-top: 20px;
  }
  .mtn-md-20 {
    margin-top: -20px;
  }
  .ml-md-20 {
    margin-left: 20px;
  }
  .mr-md-20 {
    margin-right: 20px;
  }
  .mx-md-20 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .my-md-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pb-md-20 {
    padding-bottom: 20px;
  }
  .pt-md-20 {
    padding-top: 20px;
  }
  .pl-md-20 {
    padding-left: 20px;
  }
  .pr-md-20 {
    padding-right: 20px;
  }
  .px-md-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .py-md-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mb-md-25 {
    margin-bottom: 25px;
  }
  .mbn-md-25 {
    margin-bottom: -25px;
  }
  .mt-md-25 {
    margin-top: 25px;
  }
  .mtn-md-25 {
    margin-top: -25px;
  }
  .ml-md-25 {
    margin-left: 25px;
  }
  .mr-md-25 {
    margin-right: 25px;
  }
  .mx-md-25 {
    margin-left: 25px;
    margin-right: 25px;
  }
  .my-md-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .pb-md-25 {
    padding-bottom: 25px;
  }
  .pt-md-25 {
    padding-top: 25px;
  }
  .pl-md-25 {
    padding-left: 25px;
  }
  .pr-md-25 {
    padding-right: 25px;
  }
  .px-md-25 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .py-md-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .mb-md-30 {
    margin-bottom: 30px;
  }
  .mbn-md-30 {
    margin-bottom: -30px;
  }
  .mt-md-30 {
    margin-top: 30px;
  }
  .mtn-md-30 {
    margin-top: -30px;
  }
  .ml-md-30 {
    margin-left: 30px;
  }
  .mr-md-30 {
    margin-right: 30px;
  }
  .mx-md-30 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .my-md-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .pb-md-30 {
    padding-bottom: 30px;
  }
  .pt-md-30 {
    padding-top: 30px;
  }
  .pl-md-30 {
    padding-left: 30px;
  }
  .pr-md-30 {
    padding-right: 30px;
  }
  .px-md-30 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .py-md-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .mb-md-35 {
    margin-bottom: 35px;
  }
  .mbn-md-35 {
    margin-bottom: -35px;
  }
  .mt-md-35 {
    margin-top: 35px;
  }
  .mtn-md-35 {
    margin-top: -35px;
  }
  .ml-md-35 {
    margin-left: 35px;
  }
  .mr-md-35 {
    margin-right: 35px;
  }
  .mx-md-35 {
    margin-left: 35px;
    margin-right: 35px;
  }
  .my-md-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .pb-md-35 {
    padding-bottom: 35px;
  }
  .pt-md-35 {
    padding-top: 35px;
  }
  .pl-md-35 {
    padding-left: 35px;
  }
  .pr-md-35 {
    padding-right: 35px;
  }
  .px-md-35 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .py-md-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .mb-md-40 {
    margin-bottom: 40px;
  }
  .mbn-md-40 {
    margin-bottom: -40px;
  }
  .mt-md-40 {
    margin-top: 40px;
  }
  .mtn-md-40 {
    margin-top: -40px;
  }
  .ml-md-40 {
    margin-left: 40px;
  }
  .mr-md-40 {
    margin-right: 40px;
  }
  .mx-md-40 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .my-md-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .pb-md-40 {
    padding-bottom: 40px;
  }
  .pt-md-40 {
    padding-top: 40px;
  }
  .pl-md-40 {
    padding-left: 40px;
  }
  .pr-md-40 {
    padding-right: 40px;
  }
  .px-md-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .py-md-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mb-md-45 {
    margin-bottom: 45px;
  }
  .mbn-md-45 {
    margin-bottom: -45px;
  }
  .mt-md-45 {
    margin-top: 45px;
  }
  .mtn-md-45 {
    margin-top: -45px;
  }
  .ml-md-45 {
    margin-left: 45px;
  }
  .mr-md-45 {
    margin-right: 45px;
  }
  .mx-md-45 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .my-md-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .pb-md-45 {
    padding-bottom: 45px;
  }
  .pt-md-45 {
    padding-top: 45px;
  }
  .pl-md-45 {
    padding-left: 45px;
  }
  .pr-md-45 {
    padding-right: 45px;
  }
  .px-md-45 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .py-md-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .mb-md-50 {
    margin-bottom: 50px;
  }
  .mbn-md-50 {
    margin-bottom: -50px;
  }
  .mt-md-50 {
    margin-top: 50px;
  }
  .mtn-md-50 {
    margin-top: -50px;
  }
  .ml-md-50 {
    margin-left: 50px;
  }
  .mr-md-50 {
    margin-right: 50px;
  }
  .mx-md-50 {
    margin-left: 50px;
    margin-right: 50px;
  }
  .my-md-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .pb-md-50 {
    padding-bottom: 50px;
  }
  .pt-md-50 {
    padding-top: 50px;
  }
  .pl-md-50 {
    padding-left: 50px;
  }
  .pr-md-50 {
    padding-right: 50px;
  }
  .px-md-50 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .py-md-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .mb-md-55 {
    margin-bottom: 55px;
  }
  .mbn-md-55 {
    margin-bottom: -55px;
  }
  .mt-md-55 {
    margin-top: 55px;
  }
  .mtn-md-55 {
    margin-top: -55px;
  }
  .ml-md-55 {
    margin-left: 55px;
  }
  .mr-md-55 {
    margin-right: 55px;
  }
  .mx-md-55 {
    margin-left: 55px;
    margin-right: 55px;
  }
  .my-md-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .pb-md-55 {
    padding-bottom: 55px;
  }
  .pt-md-55 {
    padding-top: 55px;
  }
  .pl-md-55 {
    padding-left: 55px;
  }
  .pr-md-55 {
    padding-right: 55px;
  }
  .px-md-55 {
    padding-left: 55px;
    padding-right: 55px;
  }
  .py-md-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .mb-md-60 {
    margin-bottom: 60px;
  }
  .mbn-md-60 {
    margin-bottom: -60px;
  }
  .mt-md-60 {
    margin-top: 60px;
  }
  .mtn-md-60 {
    margin-top: -60px;
  }
  .ml-md-60 {
    margin-left: 60px;
  }
  .mr-md-60 {
    margin-right: 60px;
  }
  .mx-md-60 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .my-md-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .pb-md-60 {
    padding-bottom: 60px;
  }
  .pt-md-60 {
    padding-top: 60px;
  }
  .pl-md-60 {
    padding-left: 60px;
  }
  .pr-md-60 {
    padding-right: 60px;
  }
  .px-md-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .py-md-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mb-md-65 {
    margin-bottom: 65px;
  }
  .mbn-md-65 {
    margin-bottom: -65px;
  }
  .mt-md-65 {
    margin-top: 65px;
  }
  .mtn-md-65 {
    margin-top: -65px;
  }
  .ml-md-65 {
    margin-left: 65px;
  }
  .mr-md-65 {
    margin-right: 65px;
  }
  .mx-md-65 {
    margin-left: 65px;
    margin-right: 65px;
  }
  .my-md-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .pb-md-65 {
    padding-bottom: 65px;
  }
  .pt-md-65 {
    padding-top: 65px;
  }
  .pl-md-65 {
    padding-left: 65px;
  }
  .pr-md-65 {
    padding-right: 65px;
  }
  .px-md-65 {
    padding-left: 65px;
    padding-right: 65px;
  }
  .py-md-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .mb-md-70 {
    margin-bottom: 70px;
  }
  .mbn-md-70 {
    margin-bottom: -70px;
  }
  .mt-md-70 {
    margin-top: 70px;
  }
  .mtn-md-70 {
    margin-top: -70px;
  }
  .ml-md-70 {
    margin-left: 70px;
  }
  .mr-md-70 {
    margin-right: 70px;
  }
  .mx-md-70 {
    margin-left: 70px;
    margin-right: 70px;
  }
  .my-md-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .pb-md-70 {
    padding-bottom: 70px;
  }
  .pt-md-70 {
    padding-top: 70px;
  }
  .pl-md-70 {
    padding-left: 70px;
  }
  .pr-md-70 {
    padding-right: 70px;
  }
  .px-md-70 {
    padding-left: 70px;
    padding-right: 70px;
  }
  .py-md-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .mb-md-75 {
    margin-bottom: 75px;
  }
  .mbn-md-75 {
    margin-bottom: -75px;
  }
  .mt-md-75 {
    margin-top: 75px;
  }
  .mtn-md-75 {
    margin-top: -75px;
  }
  .ml-md-75 {
    margin-left: 75px;
  }
  .mr-md-75 {
    margin-right: 75px;
  }
  .mx-md-75 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .my-md-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .pb-md-75 {
    padding-bottom: 75px;
  }
  .pt-md-75 {
    padding-top: 75px;
  }
  .pl-md-75 {
    padding-left: 75px;
  }
  .pr-md-75 {
    padding-right: 75px;
  }
  .px-md-75 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .py-md-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .mb-md-80 {
    margin-bottom: 80px;
  }
  .mbn-md-80 {
    margin-bottom: -80px;
  }
  .mt-md-80 {
    margin-top: 80px;
  }
  .mtn-md-80 {
    margin-top: -80px;
  }
  .ml-md-80 {
    margin-left: 80px;
  }
  .mr-md-80 {
    margin-right: 80px;
  }
  .mx-md-80 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .my-md-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .pb-md-80 {
    padding-bottom: 80px;
  }
  .pt-md-80 {
    padding-top: 80px;
  }
  .pl-md-80 {
    padding-left: 80px;
  }
  .pr-md-80 {
    padding-right: 80px;
  }
  .px-md-80 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .py-md-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mb-md-85 {
    margin-bottom: 85px;
  }
  .mbn-md-85 {
    margin-bottom: -85px;
  }
  .mt-md-85 {
    margin-top: 85px;
  }
  .mtn-md-85 {
    margin-top: -85px;
  }
  .ml-md-85 {
    margin-left: 85px;
  }
  .mr-md-85 {
    margin-right: 85px;
  }
  .mx-md-85 {
    margin-left: 85px;
    margin-right: 85px;
  }
  .my-md-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .pb-md-85 {
    padding-bottom: 85px;
  }
  .pt-md-85 {
    padding-top: 85px;
  }
  .pl-md-85 {
    padding-left: 85px;
  }
  .pr-md-85 {
    padding-right: 85px;
  }
  .px-md-85 {
    padding-left: 85px;
    padding-right: 85px;
  }
  .py-md-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .mb-md-90 {
    margin-bottom: 90px;
  }
  .mbn-md-90 {
    margin-bottom: -90px;
  }
  .mt-md-90 {
    margin-top: 90px;
  }
  .mtn-md-90 {
    margin-top: -90px;
  }
  .ml-md-90 {
    margin-left: 90px;
  }
  .mr-md-90 {
    margin-right: 90px;
  }
  .mx-md-90 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .my-md-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .pb-md-90 {
    padding-bottom: 90px;
  }
  .pt-md-90 {
    padding-top: 90px;
  }
  .pl-md-90 {
    padding-left: 90px;
  }
  .pr-md-90 {
    padding-right: 90px;
  }
  .px-md-90 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .py-md-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .mb-md-95 {
    margin-bottom: 95px;
  }
  .mbn-md-95 {
    margin-bottom: -95px;
  }
  .mt-md-95 {
    margin-top: 95px;
  }
  .mtn-md-95 {
    margin-top: -95px;
  }
  .ml-md-95 {
    margin-left: 95px;
  }
  .mr-md-95 {
    margin-right: 95px;
  }
  .mx-md-95 {
    margin-left: 95px;
    margin-right: 95px;
  }
  .my-md-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .pb-md-95 {
    padding-bottom: 95px;
  }
  .pt-md-95 {
    padding-top: 95px;
  }
  .pl-md-95 {
    padding-left: 95px;
  }
  .pr-md-95 {
    padding-right: 95px;
  }
  .px-md-95 {
    padding-left: 95px;
    padding-right: 95px;
  }
  .py-md-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .mb-md-100 {
    margin-bottom: 100px;
  }
  .mbn-md-100 {
    margin-bottom: -100px;
  }
  .mt-md-100 {
    margin-top: 100px;
  }
  .mtn-md-100 {
    margin-top: -100px;
  }
  .ml-md-100 {
    margin-left: 100px;
  }
  .mr-md-100 {
    margin-right: 100px;
  }
  .mx-md-100 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .my-md-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .pb-md-100 {
    padding-bottom: 100px;
  }
  .pt-md-100 {
    padding-top: 100px;
  }
  .pl-md-100 {
    padding-left: 100px;
  }
  .pr-md-100 {
    padding-right: 100px;
  }
  .px-md-100 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .py-md-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mb-md-110 {
    margin-bottom: 110px;
  }
  .mbn-md-110 {
    margin-bottom: -110px;
  }
  .mt-md-110 {
    margin-top: 110px;
  }
  .mtn-md-110 {
    margin-top: -110px;
  }
  .ml-md-110 {
    margin-left: 110px;
  }
  .mr-md-110 {
    margin-right: 110px;
  }
  .mx-md-110 {
    margin-left: 110px;
    margin-right: 110px;
  }
  .my-md-110 {
    margin-top: 110px;
    margin-bottom: 110px;
  }
  .pb-md-110 {
    padding-bottom: 110px;
  }
  .pt-md-110 {
    padding-top: 110px;
  }
  .pl-md-110 {
    padding-left: 110px;
  }
  .pr-md-110 {
    padding-right: 110px;
  }
  .px-md-110 {
    padding-left: 110px;
    padding-right: 110px;
  }
  .py-md-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .mb-md-120 {
    margin-bottom: 120px;
  }
  .mbn-md-120 {
    margin-bottom: -120px;
  }
  .mt-md-120 {
    margin-top: 120px;
  }
  .mtn-md-120 {
    margin-top: -120px;
  }
  .ml-md-120 {
    margin-left: 120px;
  }
  .mr-md-120 {
    margin-right: 120px;
  }
  .mx-md-120 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .my-md-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .pb-md-120 {
    padding-bottom: 120px;
  }
  .pt-md-120 {
    padding-top: 120px;
  }
  .pl-md-120 {
    padding-left: 120px;
  }
  .pr-md-120 {
    padding-right: 120px;
  }
  .px-md-120 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .py-md-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .mb-md-140 {
    margin-bottom: 140px;
  }
  .mbn-md-140 {
    margin-bottom: -140px;
  }
  .mt-md-140 {
    margin-top: 140px;
  }
  .mtn-md-140 {
    margin-top: -140px;
  }
  .ml-md-140 {
    margin-left: 140px;
  }
  .mr-md-140 {
    margin-right: 140px;
  }
  .mx-md-140 {
    margin-left: 140px;
    margin-right: 140px;
  }
  .my-md-140 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .pb-md-140 {
    padding-bottom: 140px;
  }
  .pt-md-140 {
    padding-top: 140px;
  }
  .pl-md-140 {
    padding-left: 140px;
  }
  .pr-md-140 {
    padding-right: 140px;
  }
  .px-md-140 {
    padding-left: 140px;
    padding-right: 140px;
  }
  .py-md-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .mb-md-150 {
    margin-bottom: 150px;
  }
  .mbn-md-150 {
    margin-bottom: -150px;
  }
  .mt-md-150 {
    margin-top: 150px;
  }
  .mtn-md-150 {
    margin-top: -150px;
  }
  .ml-md-150 {
    margin-left: 150px;
  }
  .mr-md-150 {
    margin-right: 150px;
  }
  .mx-md-150 {
    margin-left: 150px;
    margin-right: 150px;
  }
  .my-md-150 {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .pb-md-150 {
    padding-bottom: 150px;
  }
  .pt-md-150 {
    padding-top: 150px;
  }
  .pl-md-150 {
    padding-left: 150px;
  }
  .pr-md-150 {
    padding-right: 150px;
  }
  .px-md-150 {
    padding-left: 150px;
    padding-right: 150px;
  }
  .py-md-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .mb-md-200 {
    margin-bottom: 200px;
  }
  .mbn-md-200 {
    margin-bottom: -200px;
  }
  .mt-md-200 {
    margin-top: 200px;
  }
  .mtn-md-200 {
    margin-top: -200px;
  }
  .ml-md-200 {
    margin-left: 200px;
  }
  .mr-md-200 {
    margin-right: 200px;
  }
  .mx-md-200 {
    margin-left: 200px;
    margin-right: 200px;
  }
  .my-md-200 {
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .pb-md-200 {
    padding-bottom: 200px;
  }
  .pt-md-200 {
    padding-top: 200px;
  }
  .pl-md-200 {
    padding-left: 200px;
  }
  .pr-md-200 {
    padding-right: 200px;
  }
  .px-md-200 {
    padding-left: 200px;
    padding-right: 200px;
  }
  .py-md-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .mb-md-230 {
    margin-bottom: 230px;
  }
  .mbn-md-230 {
    margin-bottom: -230px;
  }
  .mt-md-230 {
    margin-top: 230px;
  }
  .mtn-md-230 {
    margin-top: -230px;
  }
  .ml-md-230 {
    margin-left: 230px;
  }
  .mr-md-230 {
    margin-right: 230px;
  }
  .mx-md-230 {
    margin-left: 230px;
    margin-right: 230px;
  }
  .my-md-230 {
    margin-top: 230px;
    margin-bottom: 230px;
  }
  .pb-md-230 {
    padding-bottom: 230px;
  }
  .pt-md-230 {
    padding-top: 230px;
  }
  .pl-md-230 {
    padding-left: 230px;
  }
  .pr-md-230 {
    padding-right: 230px;
  }
  .px-md-230 {
    padding-left: 230px;
    padding-right: 230px;
  }
  .py-md-230 {
    padding-top: 230px;
    padding-bottom: 230px;
  }
}
@media screen and (min-width: 1023px) {
  .mb-lg-0 {
    margin-bottom: 0px;
  }
  .mbn-lg-0 {
    margin-bottom: -0px;
  }
  .mt-lg-0 {
    margin-top: 0px;
  }
  .mtn-lg-0 {
    margin-top: -0px;
  }
  .ml-lg-0 {
    margin-left: 0px;
  }
  .mr-lg-0 {
    margin-right: 0px;
  }
  .mx-lg-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .my-lg-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .pb-lg-0 {
    padding-bottom: 0px;
  }
  .pt-lg-0 {
    padding-top: 0px;
  }
  .pl-lg-0 {
    padding-left: 0px;
  }
  .pr-lg-0 {
    padding-right: 0px;
  }
  .px-lg-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .py-lg-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .mb-lg-5 {
    margin-bottom: 5px;
  }
  .mbn-lg-5 {
    margin-bottom: -5px;
  }
  .mt-lg-5 {
    margin-top: 5px;
  }
  .mtn-lg-5 {
    margin-top: -5px;
  }
  .ml-lg-5 {
    margin-left: 5px;
  }
  .mr-lg-5 {
    margin-right: 5px;
  }
  .mx-lg-5 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .my-lg-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .pb-lg-5 {
    padding-bottom: 5px;
  }
  .pt-lg-5 {
    padding-top: 5px;
  }
  .pl-lg-5 {
    padding-left: 5px;
  }
  .pr-lg-5 {
    padding-right: 5px;
  }
  .px-lg-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .py-lg-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .mb-lg-10 {
    margin-bottom: 10px;
  }
  .mbn-lg-10 {
    margin-bottom: -10px;
  }
  .mt-lg-10 {
    margin-top: 10px;
  }
  .mtn-lg-10 {
    margin-top: -10px;
  }
  .ml-lg-10 {
    margin-left: 10px;
  }
  .mr-lg-10 {
    margin-right: 10px;
  }
  .mx-lg-10 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .my-lg-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .pb-lg-10 {
    padding-bottom: 10px;
  }
  .pt-lg-10 {
    padding-top: 10px;
  }
  .pl-lg-10 {
    padding-left: 10px;
  }
  .pr-lg-10 {
    padding-right: 10px;
  }
  .px-lg-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .py-lg-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mb-lg-15 {
    margin-bottom: 15px;
  }
  .mbn-lg-15 {
    margin-bottom: -15px;
  }
  .mt-lg-15 {
    margin-top: 15px;
  }
  .mtn-lg-15 {
    margin-top: -15px;
  }
  .ml-lg-15 {
    margin-left: 15px;
  }
  .mr-lg-15 {
    margin-right: 15px;
  }
  .mx-lg-15 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .my-lg-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .pb-lg-15 {
    padding-bottom: 15px;
  }
  .pt-lg-15 {
    padding-top: 15px;
  }
  .pl-lg-15 {
    padding-left: 15px;
  }
  .pr-lg-15 {
    padding-right: 15px;
  }
  .px-lg-15 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .py-lg-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .mb-lg-16 {
    margin-bottom: 16px;
  }
  .mbn-lg-16 {
    margin-bottom: -16px;
  }
  .mt-lg-16 {
    margin-top: 16px;
  }
  .mtn-lg-16 {
    margin-top: -16px;
  }
  .ml-lg-16 {
    margin-left: 16px;
  }
  .mr-lg-16 {
    margin-right: 16px;
  }
  .mx-lg-16 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .my-lg-16 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .pb-lg-16 {
    padding-bottom: 16px;
  }
  .pt-lg-16 {
    padding-top: 16px;
  }
  .pl-lg-16 {
    padding-left: 16px;
  }
  .pr-lg-16 {
    padding-right: 16px;
  }
  .px-lg-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .py-lg-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .mb-lg-20 {
    margin-bottom: 20px;
  }
  .mbn-lg-20 {
    margin-bottom: -20px;
  }
  .mt-lg-20 {
    margin-top: 20px;
  }
  .mtn-lg-20 {
    margin-top: -20px;
  }
  .ml-lg-20 {
    margin-left: 20px;
  }
  .mr-lg-20 {
    margin-right: 20px;
  }
  .mx-lg-20 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .my-lg-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pb-lg-20 {
    padding-bottom: 20px;
  }
  .pt-lg-20 {
    padding-top: 20px;
  }
  .pl-lg-20 {
    padding-left: 20px;
  }
  .pr-lg-20 {
    padding-right: 20px;
  }
  .px-lg-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .py-lg-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mb-lg-25 {
    margin-bottom: 25px;
  }
  .mbn-lg-25 {
    margin-bottom: -25px;
  }
  .mt-lg-25 {
    margin-top: 25px;
  }
  .mtn-lg-25 {
    margin-top: -25px;
  }
  .ml-lg-25 {
    margin-left: 25px;
  }
  .mr-lg-25 {
    margin-right: 25px;
  }
  .mx-lg-25 {
    margin-left: 25px;
    margin-right: 25px;
  }
  .my-lg-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .pb-lg-25 {
    padding-bottom: 25px;
  }
  .pt-lg-25 {
    padding-top: 25px;
  }
  .pl-lg-25 {
    padding-left: 25px;
  }
  .pr-lg-25 {
    padding-right: 25px;
  }
  .px-lg-25 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .py-lg-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .mb-lg-30 {
    margin-bottom: 30px;
  }
  .mbn-lg-30 {
    margin-bottom: -30px;
  }
  .mt-lg-30 {
    margin-top: 30px;
  }
  .mtn-lg-30 {
    margin-top: -30px;
  }
  .ml-lg-30 {
    margin-left: 30px;
  }
  .mr-lg-30 {
    margin-right: 30px;
  }
  .mx-lg-30 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .my-lg-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .pb-lg-30 {
    padding-bottom: 30px;
  }
  .pt-lg-30 {
    padding-top: 30px;
  }
  .pl-lg-30 {
    padding-left: 30px;
  }
  .pr-lg-30 {
    padding-right: 30px;
  }
  .px-lg-30 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .py-lg-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .mb-lg-35 {
    margin-bottom: 35px;
  }
  .mbn-lg-35 {
    margin-bottom: -35px;
  }
  .mt-lg-35 {
    margin-top: 35px;
  }
  .mtn-lg-35 {
    margin-top: -35px;
  }
  .ml-lg-35 {
    margin-left: 35px;
  }
  .mr-lg-35 {
    margin-right: 35px;
  }
  .mx-lg-35 {
    margin-left: 35px;
    margin-right: 35px;
  }
  .my-lg-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .pb-lg-35 {
    padding-bottom: 35px;
  }
  .pt-lg-35 {
    padding-top: 35px;
  }
  .pl-lg-35 {
    padding-left: 35px;
  }
  .pr-lg-35 {
    padding-right: 35px;
  }
  .px-lg-35 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .py-lg-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .mb-lg-40 {
    margin-bottom: 40px;
  }
  .mbn-lg-40 {
    margin-bottom: -40px;
  }
  .mt-lg-40 {
    margin-top: 40px;
  }
  .mtn-lg-40 {
    margin-top: -40px;
  }
  .ml-lg-40 {
    margin-left: 40px;
  }
  .mr-lg-40 {
    margin-right: 40px;
  }
  .mx-lg-40 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .my-lg-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .pb-lg-40 {
    padding-bottom: 40px;
  }
  .pt-lg-40 {
    padding-top: 40px;
  }
  .pl-lg-40 {
    padding-left: 40px;
  }
  .pr-lg-40 {
    padding-right: 40px;
  }
  .px-lg-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .py-lg-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mb-lg-45 {
    margin-bottom: 45px;
  }
  .mbn-lg-45 {
    margin-bottom: -45px;
  }
  .mt-lg-45 {
    margin-top: 45px;
  }
  .mtn-lg-45 {
    margin-top: -45px;
  }
  .ml-lg-45 {
    margin-left: 45px;
  }
  .mr-lg-45 {
    margin-right: 45px;
  }
  .mx-lg-45 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .my-lg-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .pb-lg-45 {
    padding-bottom: 45px;
  }
  .pt-lg-45 {
    padding-top: 45px;
  }
  .pl-lg-45 {
    padding-left: 45px;
  }
  .pr-lg-45 {
    padding-right: 45px;
  }
  .px-lg-45 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .py-lg-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .mb-lg-50 {
    margin-bottom: 50px;
  }
  .mbn-lg-50 {
    margin-bottom: -50px;
  }
  .mt-lg-50 {
    margin-top: 50px;
  }
  .mtn-lg-50 {
    margin-top: -50px;
  }
  .ml-lg-50 {
    margin-left: 50px;
  }
  .mr-lg-50 {
    margin-right: 50px;
  }
  .mx-lg-50 {
    margin-left: 50px;
    margin-right: 50px;
  }
  .my-lg-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .pb-lg-50 {
    padding-bottom: 50px;
  }
  .pt-lg-50 {
    padding-top: 50px;
  }
  .pl-lg-50 {
    padding-left: 50px;
  }
  .pr-lg-50 {
    padding-right: 50px;
  }
  .px-lg-50 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .py-lg-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .mb-lg-55 {
    margin-bottom: 55px;
  }
  .mbn-lg-55 {
    margin-bottom: -55px;
  }
  .mt-lg-55 {
    margin-top: 55px;
  }
  .mtn-lg-55 {
    margin-top: -55px;
  }
  .ml-lg-55 {
    margin-left: 55px;
  }
  .mr-lg-55 {
    margin-right: 55px;
  }
  .mx-lg-55 {
    margin-left: 55px;
    margin-right: 55px;
  }
  .my-lg-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .pb-lg-55 {
    padding-bottom: 55px;
  }
  .pt-lg-55 {
    padding-top: 55px;
  }
  .pl-lg-55 {
    padding-left: 55px;
  }
  .pr-lg-55 {
    padding-right: 55px;
  }
  .px-lg-55 {
    padding-left: 55px;
    padding-right: 55px;
  }
  .py-lg-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .mb-lg-60 {
    margin-bottom: 60px;
  }
  .mbn-lg-60 {
    margin-bottom: -60px;
  }
  .mt-lg-60 {
    margin-top: 60px;
  }
  .mtn-lg-60 {
    margin-top: -60px;
  }
  .ml-lg-60 {
    margin-left: 60px;
  }
  .mr-lg-60 {
    margin-right: 60px;
  }
  .mx-lg-60 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .my-lg-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .pb-lg-60 {
    padding-bottom: 60px;
  }
  .pt-lg-60 {
    padding-top: 60px;
  }
  .pl-lg-60 {
    padding-left: 60px;
  }
  .pr-lg-60 {
    padding-right: 60px;
  }
  .px-lg-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .py-lg-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mb-lg-65 {
    margin-bottom: 65px;
  }
  .mbn-lg-65 {
    margin-bottom: -65px;
  }
  .mt-lg-65 {
    margin-top: 65px;
  }
  .mtn-lg-65 {
    margin-top: -65px;
  }
  .ml-lg-65 {
    margin-left: 65px;
  }
  .mr-lg-65 {
    margin-right: 65px;
  }
  .mx-lg-65 {
    margin-left: 65px;
    margin-right: 65px;
  }
  .my-lg-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .pb-lg-65 {
    padding-bottom: 65px;
  }
  .pt-lg-65 {
    padding-top: 65px;
  }
  .pl-lg-65 {
    padding-left: 65px;
  }
  .pr-lg-65 {
    padding-right: 65px;
  }
  .px-lg-65 {
    padding-left: 65px;
    padding-right: 65px;
  }
  .py-lg-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .mb-lg-70 {
    margin-bottom: 70px;
  }
  .mbn-lg-70 {
    margin-bottom: -70px;
  }
  .mt-lg-70 {
    margin-top: 70px;
  }
  .mtn-lg-70 {
    margin-top: -70px;
  }
  .ml-lg-70 {
    margin-left: 70px;
  }
  .mr-lg-70 {
    margin-right: 70px;
  }
  .mx-lg-70 {
    margin-left: 70px;
    margin-right: 70px;
  }
  .my-lg-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .pb-lg-70 {
    padding-bottom: 70px;
  }
  .pt-lg-70 {
    padding-top: 70px;
  }
  .pl-lg-70 {
    padding-left: 70px;
  }
  .pr-lg-70 {
    padding-right: 70px;
  }
  .px-lg-70 {
    padding-left: 70px;
    padding-right: 70px;
  }
  .py-lg-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .mb-lg-75 {
    margin-bottom: 75px;
  }
  .mbn-lg-75 {
    margin-bottom: -75px;
  }
  .mt-lg-75 {
    margin-top: 75px;
  }
  .mtn-lg-75 {
    margin-top: -75px;
  }
  .ml-lg-75 {
    margin-left: 75px;
  }
  .mr-lg-75 {
    margin-right: 75px;
  }
  .mx-lg-75 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .my-lg-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .pb-lg-75 {
    padding-bottom: 75px;
  }
  .pt-lg-75 {
    padding-top: 75px;
  }
  .pl-lg-75 {
    padding-left: 75px;
  }
  .pr-lg-75 {
    padding-right: 75px;
  }
  .px-lg-75 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .py-lg-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .mb-lg-80 {
    margin-bottom: 80px;
  }
  .mbn-lg-80 {
    margin-bottom: -80px;
  }
  .mt-lg-80 {
    margin-top: 80px;
  }
  .mtn-lg-80 {
    margin-top: -80px;
  }
  .ml-lg-80 {
    margin-left: 80px;
  }
  .mr-lg-80 {
    margin-right: 80px;
  }
  .mx-lg-80 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .my-lg-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .pb-lg-80 {
    padding-bottom: 80px;
  }
  .pt-lg-80 {
    padding-top: 80px;
  }
  .pl-lg-80 {
    padding-left: 80px;
  }
  .pr-lg-80 {
    padding-right: 80px;
  }
  .px-lg-80 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .py-lg-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mb-lg-85 {
    margin-bottom: 85px;
  }
  .mbn-lg-85 {
    margin-bottom: -85px;
  }
  .mt-lg-85 {
    margin-top: 85px;
  }
  .mtn-lg-85 {
    margin-top: -85px;
  }
  .ml-lg-85 {
    margin-left: 85px;
  }
  .mr-lg-85 {
    margin-right: 85px;
  }
  .mx-lg-85 {
    margin-left: 85px;
    margin-right: 85px;
  }
  .my-lg-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .pb-lg-85 {
    padding-bottom: 85px;
  }
  .pt-lg-85 {
    padding-top: 85px;
  }
  .pl-lg-85 {
    padding-left: 85px;
  }
  .pr-lg-85 {
    padding-right: 85px;
  }
  .px-lg-85 {
    padding-left: 85px;
    padding-right: 85px;
  }
  .py-lg-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .mb-lg-90 {
    margin-bottom: 90px;
  }
  .mbn-lg-90 {
    margin-bottom: -90px;
  }
  .mt-lg-90 {
    margin-top: 90px;
  }
  .mtn-lg-90 {
    margin-top: -90px;
  }
  .ml-lg-90 {
    margin-left: 90px;
  }
  .mr-lg-90 {
    margin-right: 90px;
  }
  .mx-lg-90 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .my-lg-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .pb-lg-90 {
    padding-bottom: 90px;
  }
  .pt-lg-90 {
    padding-top: 90px;
  }
  .pl-lg-90 {
    padding-left: 90px;
  }
  .pr-lg-90 {
    padding-right: 90px;
  }
  .px-lg-90 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .py-lg-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .mb-lg-95 {
    margin-bottom: 95px;
  }
  .mbn-lg-95 {
    margin-bottom: -95px;
  }
  .mt-lg-95 {
    margin-top: 95px;
  }
  .mtn-lg-95 {
    margin-top: -95px;
  }
  .ml-lg-95 {
    margin-left: 95px;
  }
  .mr-lg-95 {
    margin-right: 95px;
  }
  .mx-lg-95 {
    margin-left: 95px;
    margin-right: 95px;
  }
  .my-lg-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .pb-lg-95 {
    padding-bottom: 95px;
  }
  .pt-lg-95 {
    padding-top: 95px;
  }
  .pl-lg-95 {
    padding-left: 95px;
  }
  .pr-lg-95 {
    padding-right: 95px;
  }
  .px-lg-95 {
    padding-left: 95px;
    padding-right: 95px;
  }
  .py-lg-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .mb-lg-100 {
    margin-bottom: 100px;
  }
  .mbn-lg-100 {
    margin-bottom: -100px;
  }
  .mt-lg-100 {
    margin-top: 100px;
  }
  .mtn-lg-100 {
    margin-top: -100px;
  }
  .ml-lg-100 {
    margin-left: 100px;
  }
  .mr-lg-100 {
    margin-right: 100px;
  }
  .mx-lg-100 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .my-lg-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .pb-lg-100 {
    padding-bottom: 100px;
  }
  .pt-lg-100 {
    padding-top: 100px;
  }
  .pl-lg-100 {
    padding-left: 100px;
  }
  .pr-lg-100 {
    padding-right: 100px;
  }
  .px-lg-100 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .py-lg-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mb-lg-110 {
    margin-bottom: 110px;
  }
  .mbn-lg-110 {
    margin-bottom: -110px;
  }
  .mt-lg-110 {
    margin-top: 110px;
  }
  .mtn-lg-110 {
    margin-top: -110px;
  }
  .ml-lg-110 {
    margin-left: 110px;
  }
  .mr-lg-110 {
    margin-right: 110px;
  }
  .mx-lg-110 {
    margin-left: 110px;
    margin-right: 110px;
  }
  .my-lg-110 {
    margin-top: 110px;
    margin-bottom: 110px;
  }
  .pb-lg-110 {
    padding-bottom: 110px;
  }
  .pt-lg-110 {
    padding-top: 110px;
  }
  .pl-lg-110 {
    padding-left: 110px;
  }
  .pr-lg-110 {
    padding-right: 110px;
  }
  .px-lg-110 {
    padding-left: 110px;
    padding-right: 110px;
  }
  .py-lg-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .mb-lg-120 {
    margin-bottom: 120px;
  }
  .mbn-lg-120 {
    margin-bottom: -120px;
  }
  .mt-lg-120 {
    margin-top: 120px;
  }
  .mtn-lg-120 {
    margin-top: -120px;
  }
  .ml-lg-120 {
    margin-left: 120px;
  }
  .mr-lg-120 {
    margin-right: 120px;
  }
  .mx-lg-120 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .my-lg-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .pb-lg-120 {
    padding-bottom: 120px;
  }
  .pt-lg-120 {
    padding-top: 120px;
  }
  .pl-lg-120 {
    padding-left: 120px;
  }
  .pr-lg-120 {
    padding-right: 120px;
  }
  .px-lg-120 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .py-lg-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .mb-lg-140 {
    margin-bottom: 140px;
  }
  .mbn-lg-140 {
    margin-bottom: -140px;
  }
  .mt-lg-140 {
    margin-top: 140px;
  }
  .mtn-lg-140 {
    margin-top: -140px;
  }
  .ml-lg-140 {
    margin-left: 140px;
  }
  .mr-lg-140 {
    margin-right: 140px;
  }
  .mx-lg-140 {
    margin-left: 140px;
    margin-right: 140px;
  }
  .my-lg-140 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .pb-lg-140 {
    padding-bottom: 140px;
  }
  .pt-lg-140 {
    padding-top: 140px;
  }
  .pl-lg-140 {
    padding-left: 140px;
  }
  .pr-lg-140 {
    padding-right: 140px;
  }
  .px-lg-140 {
    padding-left: 140px;
    padding-right: 140px;
  }
  .py-lg-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .mb-lg-150 {
    margin-bottom: 150px;
  }
  .mbn-lg-150 {
    margin-bottom: -150px;
  }
  .mt-lg-150 {
    margin-top: 150px;
  }
  .mtn-lg-150 {
    margin-top: -150px;
  }
  .ml-lg-150 {
    margin-left: 150px;
  }
  .mr-lg-150 {
    margin-right: 150px;
  }
  .mx-lg-150 {
    margin-left: 150px;
    margin-right: 150px;
  }
  .my-lg-150 {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .pb-lg-150 {
    padding-bottom: 150px;
  }
  .pt-lg-150 {
    padding-top: 150px;
  }
  .pl-lg-150 {
    padding-left: 150px;
  }
  .pr-lg-150 {
    padding-right: 150px;
  }
  .px-lg-150 {
    padding-left: 150px;
    padding-right: 150px;
  }
  .py-lg-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .mb-lg-200 {
    margin-bottom: 200px;
  }
  .mbn-lg-200 {
    margin-bottom: -200px;
  }
  .mt-lg-200 {
    margin-top: 200px;
  }
  .mtn-lg-200 {
    margin-top: -200px;
  }
  .ml-lg-200 {
    margin-left: 200px;
  }
  .mr-lg-200 {
    margin-right: 200px;
  }
  .mx-lg-200 {
    margin-left: 200px;
    margin-right: 200px;
  }
  .my-lg-200 {
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .pb-lg-200 {
    padding-bottom: 200px;
  }
  .pt-lg-200 {
    padding-top: 200px;
  }
  .pl-lg-200 {
    padding-left: 200px;
  }
  .pr-lg-200 {
    padding-right: 200px;
  }
  .px-lg-200 {
    padding-left: 200px;
    padding-right: 200px;
  }
  .py-lg-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .mb-lg-230 {
    margin-bottom: 230px;
  }
  .mbn-lg-230 {
    margin-bottom: -230px;
  }
  .mt-lg-230 {
    margin-top: 230px;
  }
  .mtn-lg-230 {
    margin-top: -230px;
  }
  .ml-lg-230 {
    margin-left: 230px;
  }
  .mr-lg-230 {
    margin-right: 230px;
  }
  .mx-lg-230 {
    margin-left: 230px;
    margin-right: 230px;
  }
  .my-lg-230 {
    margin-top: 230px;
    margin-bottom: 230px;
  }
  .pb-lg-230 {
    padding-bottom: 230px;
  }
  .pt-lg-230 {
    padding-top: 230px;
  }
  .pl-lg-230 {
    padding-left: 230px;
  }
  .pr-lg-230 {
    padding-right: 230px;
  }
  .px-lg-230 {
    padding-left: 230px;
    padding-right: 230px;
  }
  .py-lg-230 {
    padding-top: 230px;
    padding-bottom: 230px;
  }
}
@media screen and (min-width: 1300px) {
  .mb-xl-0 {
    margin-bottom: 0px;
  }
  .mbn-xl-0 {
    margin-bottom: -0px;
  }
  .mt-xl-0 {
    margin-top: 0px;
  }
  .mtn-xl-0 {
    margin-top: -0px;
  }
  .ml-xl-0 {
    margin-left: 0px;
  }
  .mr-xl-0 {
    margin-right: 0px;
  }
  .mx-xl-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .my-xl-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .pb-xl-0 {
    padding-bottom: 0px;
  }
  .pt-xl-0 {
    padding-top: 0px;
  }
  .pl-xl-0 {
    padding-left: 0px;
  }
  .pr-xl-0 {
    padding-right: 0px;
  }
  .px-xl-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .py-xl-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .mb-xl-5 {
    margin-bottom: 5px;
  }
  .mbn-xl-5 {
    margin-bottom: -5px;
  }
  .mt-xl-5 {
    margin-top: 5px;
  }
  .mtn-xl-5 {
    margin-top: -5px;
  }
  .ml-xl-5 {
    margin-left: 5px;
  }
  .mr-xl-5 {
    margin-right: 5px;
  }
  .mx-xl-5 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .my-xl-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .pb-xl-5 {
    padding-bottom: 5px;
  }
  .pt-xl-5 {
    padding-top: 5px;
  }
  .pl-xl-5 {
    padding-left: 5px;
  }
  .pr-xl-5 {
    padding-right: 5px;
  }
  .px-xl-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .py-xl-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .mb-xl-10 {
    margin-bottom: 10px;
  }
  .mbn-xl-10 {
    margin-bottom: -10px;
  }
  .mt-xl-10 {
    margin-top: 10px;
  }
  .mtn-xl-10 {
    margin-top: -10px;
  }
  .ml-xl-10 {
    margin-left: 10px;
  }
  .mr-xl-10 {
    margin-right: 10px;
  }
  .mx-xl-10 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .my-xl-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .pb-xl-10 {
    padding-bottom: 10px;
  }
  .pt-xl-10 {
    padding-top: 10px;
  }
  .pl-xl-10 {
    padding-left: 10px;
  }
  .pr-xl-10 {
    padding-right: 10px;
  }
  .px-xl-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .py-xl-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mb-xl-15 {
    margin-bottom: 15px;
  }
  .mbn-xl-15 {
    margin-bottom: -15px;
  }
  .mt-xl-15 {
    margin-top: 15px;
  }
  .mtn-xl-15 {
    margin-top: -15px;
  }
  .ml-xl-15 {
    margin-left: 15px;
  }
  .mr-xl-15 {
    margin-right: 15px;
  }
  .mx-xl-15 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .my-xl-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .pb-xl-15 {
    padding-bottom: 15px;
  }
  .pt-xl-15 {
    padding-top: 15px;
  }
  .pl-xl-15 {
    padding-left: 15px;
  }
  .pr-xl-15 {
    padding-right: 15px;
  }
  .px-xl-15 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .py-xl-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .mb-xl-16 {
    margin-bottom: 16px;
  }
  .mbn-xl-16 {
    margin-bottom: -16px;
  }
  .mt-xl-16 {
    margin-top: 16px;
  }
  .mtn-xl-16 {
    margin-top: -16px;
  }
  .ml-xl-16 {
    margin-left: 16px;
  }
  .mr-xl-16 {
    margin-right: 16px;
  }
  .mx-xl-16 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .my-xl-16 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .pb-xl-16 {
    padding-bottom: 16px;
  }
  .pt-xl-16 {
    padding-top: 16px;
  }
  .pl-xl-16 {
    padding-left: 16px;
  }
  .pr-xl-16 {
    padding-right: 16px;
  }
  .px-xl-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .py-xl-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .mb-xl-20 {
    margin-bottom: 20px;
  }
  .mbn-xl-20 {
    margin-bottom: -20px;
  }
  .mt-xl-20 {
    margin-top: 20px;
  }
  .mtn-xl-20 {
    margin-top: -20px;
  }
  .ml-xl-20 {
    margin-left: 20px;
  }
  .mr-xl-20 {
    margin-right: 20px;
  }
  .mx-xl-20 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .my-xl-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pb-xl-20 {
    padding-bottom: 20px;
  }
  .pt-xl-20 {
    padding-top: 20px;
  }
  .pl-xl-20 {
    padding-left: 20px;
  }
  .pr-xl-20 {
    padding-right: 20px;
  }
  .px-xl-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .py-xl-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mb-xl-25 {
    margin-bottom: 25px;
  }
  .mbn-xl-25 {
    margin-bottom: -25px;
  }
  .mt-xl-25 {
    margin-top: 25px;
  }
  .mtn-xl-25 {
    margin-top: -25px;
  }
  .ml-xl-25 {
    margin-left: 25px;
  }
  .mr-xl-25 {
    margin-right: 25px;
  }
  .mx-xl-25 {
    margin-left: 25px;
    margin-right: 25px;
  }
  .my-xl-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .pb-xl-25 {
    padding-bottom: 25px;
  }
  .pt-xl-25 {
    padding-top: 25px;
  }
  .pl-xl-25 {
    padding-left: 25px;
  }
  .pr-xl-25 {
    padding-right: 25px;
  }
  .px-xl-25 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .py-xl-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .mb-xl-30 {
    margin-bottom: 30px;
  }
  .mbn-xl-30 {
    margin-bottom: -30px;
  }
  .mt-xl-30 {
    margin-top: 30px;
  }
  .mtn-xl-30 {
    margin-top: -30px;
  }
  .ml-xl-30 {
    margin-left: 30px;
  }
  .mr-xl-30 {
    margin-right: 30px;
  }
  .mx-xl-30 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .my-xl-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .pb-xl-30 {
    padding-bottom: 30px;
  }
  .pt-xl-30 {
    padding-top: 30px;
  }
  .pl-xl-30 {
    padding-left: 30px;
  }
  .pr-xl-30 {
    padding-right: 30px;
  }
  .px-xl-30 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .py-xl-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .mb-xl-35 {
    margin-bottom: 35px;
  }
  .mbn-xl-35 {
    margin-bottom: -35px;
  }
  .mt-xl-35 {
    margin-top: 35px;
  }
  .mtn-xl-35 {
    margin-top: -35px;
  }
  .ml-xl-35 {
    margin-left: 35px;
  }
  .mr-xl-35 {
    margin-right: 35px;
  }
  .mx-xl-35 {
    margin-left: 35px;
    margin-right: 35px;
  }
  .my-xl-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .pb-xl-35 {
    padding-bottom: 35px;
  }
  .pt-xl-35 {
    padding-top: 35px;
  }
  .pl-xl-35 {
    padding-left: 35px;
  }
  .pr-xl-35 {
    padding-right: 35px;
  }
  .px-xl-35 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .py-xl-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .mb-xl-40 {
    margin-bottom: 40px;
  }
  .mbn-xl-40 {
    margin-bottom: -40px;
  }
  .mt-xl-40 {
    margin-top: 40px;
  }
  .mtn-xl-40 {
    margin-top: -40px;
  }
  .ml-xl-40 {
    margin-left: 40px;
  }
  .mr-xl-40 {
    margin-right: 40px;
  }
  .mx-xl-40 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .my-xl-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .pb-xl-40 {
    padding-bottom: 40px;
  }
  .pt-xl-40 {
    padding-top: 40px;
  }
  .pl-xl-40 {
    padding-left: 40px;
  }
  .pr-xl-40 {
    padding-right: 40px;
  }
  .px-xl-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .py-xl-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mb-xl-45 {
    margin-bottom: 45px;
  }
  .mbn-xl-45 {
    margin-bottom: -45px;
  }
  .mt-xl-45 {
    margin-top: 45px;
  }
  .mtn-xl-45 {
    margin-top: -45px;
  }
  .ml-xl-45 {
    margin-left: 45px;
  }
  .mr-xl-45 {
    margin-right: 45px;
  }
  .mx-xl-45 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .my-xl-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .pb-xl-45 {
    padding-bottom: 45px;
  }
  .pt-xl-45 {
    padding-top: 45px;
  }
  .pl-xl-45 {
    padding-left: 45px;
  }
  .pr-xl-45 {
    padding-right: 45px;
  }
  .px-xl-45 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .py-xl-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .mb-xl-50 {
    margin-bottom: 50px;
  }
  .mbn-xl-50 {
    margin-bottom: -50px;
  }
  .mt-xl-50 {
    margin-top: 50px;
  }
  .mtn-xl-50 {
    margin-top: -50px;
  }
  .ml-xl-50 {
    margin-left: 50px;
  }
  .mr-xl-50 {
    margin-right: 50px;
  }
  .mx-xl-50 {
    margin-left: 50px;
    margin-right: 50px;
  }
  .my-xl-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .pb-xl-50 {
    padding-bottom: 50px;
  }
  .pt-xl-50 {
    padding-top: 50px;
  }
  .pl-xl-50 {
    padding-left: 50px;
  }
  .pr-xl-50 {
    padding-right: 50px;
  }
  .px-xl-50 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .py-xl-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .mb-xl-55 {
    margin-bottom: 55px;
  }
  .mbn-xl-55 {
    margin-bottom: -55px;
  }
  .mt-xl-55 {
    margin-top: 55px;
  }
  .mtn-xl-55 {
    margin-top: -55px;
  }
  .ml-xl-55 {
    margin-left: 55px;
  }
  .mr-xl-55 {
    margin-right: 55px;
  }
  .mx-xl-55 {
    margin-left: 55px;
    margin-right: 55px;
  }
  .my-xl-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .pb-xl-55 {
    padding-bottom: 55px;
  }
  .pt-xl-55 {
    padding-top: 55px;
  }
  .pl-xl-55 {
    padding-left: 55px;
  }
  .pr-xl-55 {
    padding-right: 55px;
  }
  .px-xl-55 {
    padding-left: 55px;
    padding-right: 55px;
  }
  .py-xl-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .mb-xl-60 {
    margin-bottom: 60px;
  }
  .mbn-xl-60 {
    margin-bottom: -60px;
  }
  .mt-xl-60 {
    margin-top: 60px;
  }
  .mtn-xl-60 {
    margin-top: -60px;
  }
  .ml-xl-60 {
    margin-left: 60px;
  }
  .mr-xl-60 {
    margin-right: 60px;
  }
  .mx-xl-60 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .my-xl-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .pb-xl-60 {
    padding-bottom: 60px;
  }
  .pt-xl-60 {
    padding-top: 60px;
  }
  .pl-xl-60 {
    padding-left: 60px;
  }
  .pr-xl-60 {
    padding-right: 60px;
  }
  .px-xl-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .py-xl-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mb-xl-65 {
    margin-bottom: 65px;
  }
  .mbn-xl-65 {
    margin-bottom: -65px;
  }
  .mt-xl-65 {
    margin-top: 65px;
  }
  .mtn-xl-65 {
    margin-top: -65px;
  }
  .ml-xl-65 {
    margin-left: 65px;
  }
  .mr-xl-65 {
    margin-right: 65px;
  }
  .mx-xl-65 {
    margin-left: 65px;
    margin-right: 65px;
  }
  .my-xl-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .pb-xl-65 {
    padding-bottom: 65px;
  }
  .pt-xl-65 {
    padding-top: 65px;
  }
  .pl-xl-65 {
    padding-left: 65px;
  }
  .pr-xl-65 {
    padding-right: 65px;
  }
  .px-xl-65 {
    padding-left: 65px;
    padding-right: 65px;
  }
  .py-xl-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .mb-xl-70 {
    margin-bottom: 70px;
  }
  .mbn-xl-70 {
    margin-bottom: -70px;
  }
  .mt-xl-70 {
    margin-top: 70px;
  }
  .mtn-xl-70 {
    margin-top: -70px;
  }
  .ml-xl-70 {
    margin-left: 70px;
  }
  .mr-xl-70 {
    margin-right: 70px;
  }
  .mx-xl-70 {
    margin-left: 70px;
    margin-right: 70px;
  }
  .my-xl-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .pb-xl-70 {
    padding-bottom: 70px;
  }
  .pt-xl-70 {
    padding-top: 70px;
  }
  .pl-xl-70 {
    padding-left: 70px;
  }
  .pr-xl-70 {
    padding-right: 70px;
  }
  .px-xl-70 {
    padding-left: 70px;
    padding-right: 70px;
  }
  .py-xl-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .mb-xl-75 {
    margin-bottom: 75px;
  }
  .mbn-xl-75 {
    margin-bottom: -75px;
  }
  .mt-xl-75 {
    margin-top: 75px;
  }
  .mtn-xl-75 {
    margin-top: -75px;
  }
  .ml-xl-75 {
    margin-left: 75px;
  }
  .mr-xl-75 {
    margin-right: 75px;
  }
  .mx-xl-75 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .my-xl-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .pb-xl-75 {
    padding-bottom: 75px;
  }
  .pt-xl-75 {
    padding-top: 75px;
  }
  .pl-xl-75 {
    padding-left: 75px;
  }
  .pr-xl-75 {
    padding-right: 75px;
  }
  .px-xl-75 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .py-xl-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .mb-xl-80 {
    margin-bottom: 80px;
  }
  .mbn-xl-80 {
    margin-bottom: -80px;
  }
  .mt-xl-80 {
    margin-top: 80px;
  }
  .mtn-xl-80 {
    margin-top: -80px;
  }
  .ml-xl-80 {
    margin-left: 80px;
  }
  .mr-xl-80 {
    margin-right: 80px;
  }
  .mx-xl-80 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .my-xl-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .pb-xl-80 {
    padding-bottom: 80px;
  }
  .pt-xl-80 {
    padding-top: 80px;
  }
  .pl-xl-80 {
    padding-left: 80px;
  }
  .pr-xl-80 {
    padding-right: 80px;
  }
  .px-xl-80 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .py-xl-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mb-xl-85 {
    margin-bottom: 85px;
  }
  .mbn-xl-85 {
    margin-bottom: -85px;
  }
  .mt-xl-85 {
    margin-top: 85px;
  }
  .mtn-xl-85 {
    margin-top: -85px;
  }
  .ml-xl-85 {
    margin-left: 85px;
  }
  .mr-xl-85 {
    margin-right: 85px;
  }
  .mx-xl-85 {
    margin-left: 85px;
    margin-right: 85px;
  }
  .my-xl-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .pb-xl-85 {
    padding-bottom: 85px;
  }
  .pt-xl-85 {
    padding-top: 85px;
  }
  .pl-xl-85 {
    padding-left: 85px;
  }
  .pr-xl-85 {
    padding-right: 85px;
  }
  .px-xl-85 {
    padding-left: 85px;
    padding-right: 85px;
  }
  .py-xl-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .mb-xl-90 {
    margin-bottom: 90px;
  }
  .mbn-xl-90 {
    margin-bottom: -90px;
  }
  .mt-xl-90 {
    margin-top: 90px;
  }
  .mtn-xl-90 {
    margin-top: -90px;
  }
  .ml-xl-90 {
    margin-left: 90px;
  }
  .mr-xl-90 {
    margin-right: 90px;
  }
  .mx-xl-90 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .my-xl-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .pb-xl-90 {
    padding-bottom: 90px;
  }
  .pt-xl-90 {
    padding-top: 90px;
  }
  .pl-xl-90 {
    padding-left: 90px;
  }
  .pr-xl-90 {
    padding-right: 90px;
  }
  .px-xl-90 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .py-xl-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .mb-xl-95 {
    margin-bottom: 95px;
  }
  .mbn-xl-95 {
    margin-bottom: -95px;
  }
  .mt-xl-95 {
    margin-top: 95px;
  }
  .mtn-xl-95 {
    margin-top: -95px;
  }
  .ml-xl-95 {
    margin-left: 95px;
  }
  .mr-xl-95 {
    margin-right: 95px;
  }
  .mx-xl-95 {
    margin-left: 95px;
    margin-right: 95px;
  }
  .my-xl-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .pb-xl-95 {
    padding-bottom: 95px;
  }
  .pt-xl-95 {
    padding-top: 95px;
  }
  .pl-xl-95 {
    padding-left: 95px;
  }
  .pr-xl-95 {
    padding-right: 95px;
  }
  .px-xl-95 {
    padding-left: 95px;
    padding-right: 95px;
  }
  .py-xl-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .mb-xl-100 {
    margin-bottom: 100px;
  }
  .mbn-xl-100 {
    margin-bottom: -100px;
  }
  .mt-xl-100 {
    margin-top: 100px;
  }
  .mtn-xl-100 {
    margin-top: -100px;
  }
  .ml-xl-100 {
    margin-left: 100px;
  }
  .mr-xl-100 {
    margin-right: 100px;
  }
  .mx-xl-100 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .my-xl-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .pb-xl-100 {
    padding-bottom: 100px;
  }
  .pt-xl-100 {
    padding-top: 100px;
  }
  .pl-xl-100 {
    padding-left: 100px;
  }
  .pr-xl-100 {
    padding-right: 100px;
  }
  .px-xl-100 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .py-xl-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mb-xl-110 {
    margin-bottom: 110px;
  }
  .mbn-xl-110 {
    margin-bottom: -110px;
  }
  .mt-xl-110 {
    margin-top: 110px;
  }
  .mtn-xl-110 {
    margin-top: -110px;
  }
  .ml-xl-110 {
    margin-left: 110px;
  }
  .mr-xl-110 {
    margin-right: 110px;
  }
  .mx-xl-110 {
    margin-left: 110px;
    margin-right: 110px;
  }
  .my-xl-110 {
    margin-top: 110px;
    margin-bottom: 110px;
  }
  .pb-xl-110 {
    padding-bottom: 110px;
  }
  .pt-xl-110 {
    padding-top: 110px;
  }
  .pl-xl-110 {
    padding-left: 110px;
  }
  .pr-xl-110 {
    padding-right: 110px;
  }
  .px-xl-110 {
    padding-left: 110px;
    padding-right: 110px;
  }
  .py-xl-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .mb-xl-120 {
    margin-bottom: 120px;
  }
  .mbn-xl-120 {
    margin-bottom: -120px;
  }
  .mt-xl-120 {
    margin-top: 120px;
  }
  .mtn-xl-120 {
    margin-top: -120px;
  }
  .ml-xl-120 {
    margin-left: 120px;
  }
  .mr-xl-120 {
    margin-right: 120px;
  }
  .mx-xl-120 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .my-xl-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .pb-xl-120 {
    padding-bottom: 120px;
  }
  .pt-xl-120 {
    padding-top: 120px;
  }
  .pl-xl-120 {
    padding-left: 120px;
  }
  .pr-xl-120 {
    padding-right: 120px;
  }
  .px-xl-120 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .py-xl-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .mb-xl-140 {
    margin-bottom: 140px;
  }
  .mbn-xl-140 {
    margin-bottom: -140px;
  }
  .mt-xl-140 {
    margin-top: 140px;
  }
  .mtn-xl-140 {
    margin-top: -140px;
  }
  .ml-xl-140 {
    margin-left: 140px;
  }
  .mr-xl-140 {
    margin-right: 140px;
  }
  .mx-xl-140 {
    margin-left: 140px;
    margin-right: 140px;
  }
  .my-xl-140 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .pb-xl-140 {
    padding-bottom: 140px;
  }
  .pt-xl-140 {
    padding-top: 140px;
  }
  .pl-xl-140 {
    padding-left: 140px;
  }
  .pr-xl-140 {
    padding-right: 140px;
  }
  .px-xl-140 {
    padding-left: 140px;
    padding-right: 140px;
  }
  .py-xl-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .mb-xl-150 {
    margin-bottom: 150px;
  }
  .mbn-xl-150 {
    margin-bottom: -150px;
  }
  .mt-xl-150 {
    margin-top: 150px;
  }
  .mtn-xl-150 {
    margin-top: -150px;
  }
  .ml-xl-150 {
    margin-left: 150px;
  }
  .mr-xl-150 {
    margin-right: 150px;
  }
  .mx-xl-150 {
    margin-left: 150px;
    margin-right: 150px;
  }
  .my-xl-150 {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .pb-xl-150 {
    padding-bottom: 150px;
  }
  .pt-xl-150 {
    padding-top: 150px;
  }
  .pl-xl-150 {
    padding-left: 150px;
  }
  .pr-xl-150 {
    padding-right: 150px;
  }
  .px-xl-150 {
    padding-left: 150px;
    padding-right: 150px;
  }
  .py-xl-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .mb-xl-200 {
    margin-bottom: 200px;
  }
  .mbn-xl-200 {
    margin-bottom: -200px;
  }
  .mt-xl-200 {
    margin-top: 200px;
  }
  .mtn-xl-200 {
    margin-top: -200px;
  }
  .ml-xl-200 {
    margin-left: 200px;
  }
  .mr-xl-200 {
    margin-right: 200px;
  }
  .mx-xl-200 {
    margin-left: 200px;
    margin-right: 200px;
  }
  .my-xl-200 {
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .pb-xl-200 {
    padding-bottom: 200px;
  }
  .pt-xl-200 {
    padding-top: 200px;
  }
  .pl-xl-200 {
    padding-left: 200px;
  }
  .pr-xl-200 {
    padding-right: 200px;
  }
  .px-xl-200 {
    padding-left: 200px;
    padding-right: 200px;
  }
  .py-xl-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .mb-xl-230 {
    margin-bottom: 230px;
  }
  .mbn-xl-230 {
    margin-bottom: -230px;
  }
  .mt-xl-230 {
    margin-top: 230px;
  }
  .mtn-xl-230 {
    margin-top: -230px;
  }
  .ml-xl-230 {
    margin-left: 230px;
  }
  .mr-xl-230 {
    margin-right: 230px;
  }
  .mx-xl-230 {
    margin-left: 230px;
    margin-right: 230px;
  }
  .my-xl-230 {
    margin-top: 230px;
    margin-bottom: 230px;
  }
  .pb-xl-230 {
    padding-bottom: 230px;
  }
  .pt-xl-230 {
    padding-top: 230px;
  }
  .pl-xl-230 {
    padding-left: 230px;
  }
  .pr-xl-230 {
    padding-right: 230px;
  }
  .px-xl-230 {
    padding-left: 230px;
    padding-right: 230px;
  }
  .py-xl-230 {
    padding-top: 230px;
    padding-bottom: 230px;
  }
}
@media screen and (min-width: 1500px) {
  .mb-xxl-0 {
    margin-bottom: 0px;
  }
  .mbn-xxl-0 {
    margin-bottom: -0px;
  }
  .mt-xxl-0 {
    margin-top: 0px;
  }
  .mtn-xxl-0 {
    margin-top: -0px;
  }
  .ml-xxl-0 {
    margin-left: 0px;
  }
  .mr-xxl-0 {
    margin-right: 0px;
  }
  .mx-xxl-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .my-xxl-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .pb-xxl-0 {
    padding-bottom: 0px;
  }
  .pt-xxl-0 {
    padding-top: 0px;
  }
  .pl-xxl-0 {
    padding-left: 0px;
  }
  .pr-xxl-0 {
    padding-right: 0px;
  }
  .px-xxl-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .py-xxl-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .mb-xxl-5 {
    margin-bottom: 5px;
  }
  .mbn-xxl-5 {
    margin-bottom: -5px;
  }
  .mt-xxl-5 {
    margin-top: 5px;
  }
  .mtn-xxl-5 {
    margin-top: -5px;
  }
  .ml-xxl-5 {
    margin-left: 5px;
  }
  .mr-xxl-5 {
    margin-right: 5px;
  }
  .mx-xxl-5 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .my-xxl-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .pb-xxl-5 {
    padding-bottom: 5px;
  }
  .pt-xxl-5 {
    padding-top: 5px;
  }
  .pl-xxl-5 {
    padding-left: 5px;
  }
  .pr-xxl-5 {
    padding-right: 5px;
  }
  .px-xxl-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .py-xxl-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .mb-xxl-10 {
    margin-bottom: 10px;
  }
  .mbn-xxl-10 {
    margin-bottom: -10px;
  }
  .mt-xxl-10 {
    margin-top: 10px;
  }
  .mtn-xxl-10 {
    margin-top: -10px;
  }
  .ml-xxl-10 {
    margin-left: 10px;
  }
  .mr-xxl-10 {
    margin-right: 10px;
  }
  .mx-xxl-10 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .my-xxl-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .pb-xxl-10 {
    padding-bottom: 10px;
  }
  .pt-xxl-10 {
    padding-top: 10px;
  }
  .pl-xxl-10 {
    padding-left: 10px;
  }
  .pr-xxl-10 {
    padding-right: 10px;
  }
  .px-xxl-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .py-xxl-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mb-xxl-15 {
    margin-bottom: 15px;
  }
  .mbn-xxl-15 {
    margin-bottom: -15px;
  }
  .mt-xxl-15 {
    margin-top: 15px;
  }
  .mtn-xxl-15 {
    margin-top: -15px;
  }
  .ml-xxl-15 {
    margin-left: 15px;
  }
  .mr-xxl-15 {
    margin-right: 15px;
  }
  .mx-xxl-15 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .my-xxl-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .pb-xxl-15 {
    padding-bottom: 15px;
  }
  .pt-xxl-15 {
    padding-top: 15px;
  }
  .pl-xxl-15 {
    padding-left: 15px;
  }
  .pr-xxl-15 {
    padding-right: 15px;
  }
  .px-xxl-15 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .py-xxl-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .mb-xxl-16 {
    margin-bottom: 16px;
  }
  .mbn-xxl-16 {
    margin-bottom: -16px;
  }
  .mt-xxl-16 {
    margin-top: 16px;
  }
  .mtn-xxl-16 {
    margin-top: -16px;
  }
  .ml-xxl-16 {
    margin-left: 16px;
  }
  .mr-xxl-16 {
    margin-right: 16px;
  }
  .mx-xxl-16 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .my-xxl-16 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .pb-xxl-16 {
    padding-bottom: 16px;
  }
  .pt-xxl-16 {
    padding-top: 16px;
  }
  .pl-xxl-16 {
    padding-left: 16px;
  }
  .pr-xxl-16 {
    padding-right: 16px;
  }
  .px-xxl-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .py-xxl-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .mb-xxl-20 {
    margin-bottom: 20px;
  }
  .mbn-xxl-20 {
    margin-bottom: -20px;
  }
  .mt-xxl-20 {
    margin-top: 20px;
  }
  .mtn-xxl-20 {
    margin-top: -20px;
  }
  .ml-xxl-20 {
    margin-left: 20px;
  }
  .mr-xxl-20 {
    margin-right: 20px;
  }
  .mx-xxl-20 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .my-xxl-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pb-xxl-20 {
    padding-bottom: 20px;
  }
  .pt-xxl-20 {
    padding-top: 20px;
  }
  .pl-xxl-20 {
    padding-left: 20px;
  }
  .pr-xxl-20 {
    padding-right: 20px;
  }
  .px-xxl-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .py-xxl-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mb-xxl-25 {
    margin-bottom: 25px;
  }
  .mbn-xxl-25 {
    margin-bottom: -25px;
  }
  .mt-xxl-25 {
    margin-top: 25px;
  }
  .mtn-xxl-25 {
    margin-top: -25px;
  }
  .ml-xxl-25 {
    margin-left: 25px;
  }
  .mr-xxl-25 {
    margin-right: 25px;
  }
  .mx-xxl-25 {
    margin-left: 25px;
    margin-right: 25px;
  }
  .my-xxl-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .pb-xxl-25 {
    padding-bottom: 25px;
  }
  .pt-xxl-25 {
    padding-top: 25px;
  }
  .pl-xxl-25 {
    padding-left: 25px;
  }
  .pr-xxl-25 {
    padding-right: 25px;
  }
  .px-xxl-25 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .py-xxl-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .mb-xxl-30 {
    margin-bottom: 30px;
  }
  .mbn-xxl-30 {
    margin-bottom: -30px;
  }
  .mt-xxl-30 {
    margin-top: 30px;
  }
  .mtn-xxl-30 {
    margin-top: -30px;
  }
  .ml-xxl-30 {
    margin-left: 30px;
  }
  .mr-xxl-30 {
    margin-right: 30px;
  }
  .mx-xxl-30 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .my-xxl-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .pb-xxl-30 {
    padding-bottom: 30px;
  }
  .pt-xxl-30 {
    padding-top: 30px;
  }
  .pl-xxl-30 {
    padding-left: 30px;
  }
  .pr-xxl-30 {
    padding-right: 30px;
  }
  .px-xxl-30 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .py-xxl-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .mb-xxl-35 {
    margin-bottom: 35px;
  }
  .mbn-xxl-35 {
    margin-bottom: -35px;
  }
  .mt-xxl-35 {
    margin-top: 35px;
  }
  .mtn-xxl-35 {
    margin-top: -35px;
  }
  .ml-xxl-35 {
    margin-left: 35px;
  }
  .mr-xxl-35 {
    margin-right: 35px;
  }
  .mx-xxl-35 {
    margin-left: 35px;
    margin-right: 35px;
  }
  .my-xxl-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .pb-xxl-35 {
    padding-bottom: 35px;
  }
  .pt-xxl-35 {
    padding-top: 35px;
  }
  .pl-xxl-35 {
    padding-left: 35px;
  }
  .pr-xxl-35 {
    padding-right: 35px;
  }
  .px-xxl-35 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .py-xxl-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .mb-xxl-40 {
    margin-bottom: 40px;
  }
  .mbn-xxl-40 {
    margin-bottom: -40px;
  }
  .mt-xxl-40 {
    margin-top: 40px;
  }
  .mtn-xxl-40 {
    margin-top: -40px;
  }
  .ml-xxl-40 {
    margin-left: 40px;
  }
  .mr-xxl-40 {
    margin-right: 40px;
  }
  .mx-xxl-40 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .my-xxl-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .pb-xxl-40 {
    padding-bottom: 40px;
  }
  .pt-xxl-40 {
    padding-top: 40px;
  }
  .pl-xxl-40 {
    padding-left: 40px;
  }
  .pr-xxl-40 {
    padding-right: 40px;
  }
  .px-xxl-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .py-xxl-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mb-xxl-45 {
    margin-bottom: 45px;
  }
  .mbn-xxl-45 {
    margin-bottom: -45px;
  }
  .mt-xxl-45 {
    margin-top: 45px;
  }
  .mtn-xxl-45 {
    margin-top: -45px;
  }
  .ml-xxl-45 {
    margin-left: 45px;
  }
  .mr-xxl-45 {
    margin-right: 45px;
  }
  .mx-xxl-45 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .my-xxl-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .pb-xxl-45 {
    padding-bottom: 45px;
  }
  .pt-xxl-45 {
    padding-top: 45px;
  }
  .pl-xxl-45 {
    padding-left: 45px;
  }
  .pr-xxl-45 {
    padding-right: 45px;
  }
  .px-xxl-45 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .py-xxl-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .mb-xxl-50 {
    margin-bottom: 50px;
  }
  .mbn-xxl-50 {
    margin-bottom: -50px;
  }
  .mt-xxl-50 {
    margin-top: 50px;
  }
  .mtn-xxl-50 {
    margin-top: -50px;
  }
  .ml-xxl-50 {
    margin-left: 50px;
  }
  .mr-xxl-50 {
    margin-right: 50px;
  }
  .mx-xxl-50 {
    margin-left: 50px;
    margin-right: 50px;
  }
  .my-xxl-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .pb-xxl-50 {
    padding-bottom: 50px;
  }
  .pt-xxl-50 {
    padding-top: 50px;
  }
  .pl-xxl-50 {
    padding-left: 50px;
  }
  .pr-xxl-50 {
    padding-right: 50px;
  }
  .px-xxl-50 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .py-xxl-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .mb-xxl-55 {
    margin-bottom: 55px;
  }
  .mbn-xxl-55 {
    margin-bottom: -55px;
  }
  .mt-xxl-55 {
    margin-top: 55px;
  }
  .mtn-xxl-55 {
    margin-top: -55px;
  }
  .ml-xxl-55 {
    margin-left: 55px;
  }
  .mr-xxl-55 {
    margin-right: 55px;
  }
  .mx-xxl-55 {
    margin-left: 55px;
    margin-right: 55px;
  }
  .my-xxl-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .pb-xxl-55 {
    padding-bottom: 55px;
  }
  .pt-xxl-55 {
    padding-top: 55px;
  }
  .pl-xxl-55 {
    padding-left: 55px;
  }
  .pr-xxl-55 {
    padding-right: 55px;
  }
  .px-xxl-55 {
    padding-left: 55px;
    padding-right: 55px;
  }
  .py-xxl-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .mb-xxl-60 {
    margin-bottom: 60px;
  }
  .mbn-xxl-60 {
    margin-bottom: -60px;
  }
  .mt-xxl-60 {
    margin-top: 60px;
  }
  .mtn-xxl-60 {
    margin-top: -60px;
  }
  .ml-xxl-60 {
    margin-left: 60px;
  }
  .mr-xxl-60 {
    margin-right: 60px;
  }
  .mx-xxl-60 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .my-xxl-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .pb-xxl-60 {
    padding-bottom: 60px;
  }
  .pt-xxl-60 {
    padding-top: 60px;
  }
  .pl-xxl-60 {
    padding-left: 60px;
  }
  .pr-xxl-60 {
    padding-right: 60px;
  }
  .px-xxl-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .py-xxl-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mb-xxl-65 {
    margin-bottom: 65px;
  }
  .mbn-xxl-65 {
    margin-bottom: -65px;
  }
  .mt-xxl-65 {
    margin-top: 65px;
  }
  .mtn-xxl-65 {
    margin-top: -65px;
  }
  .ml-xxl-65 {
    margin-left: 65px;
  }
  .mr-xxl-65 {
    margin-right: 65px;
  }
  .mx-xxl-65 {
    margin-left: 65px;
    margin-right: 65px;
  }
  .my-xxl-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .pb-xxl-65 {
    padding-bottom: 65px;
  }
  .pt-xxl-65 {
    padding-top: 65px;
  }
  .pl-xxl-65 {
    padding-left: 65px;
  }
  .pr-xxl-65 {
    padding-right: 65px;
  }
  .px-xxl-65 {
    padding-left: 65px;
    padding-right: 65px;
  }
  .py-xxl-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .mb-xxl-70 {
    margin-bottom: 70px;
  }
  .mbn-xxl-70 {
    margin-bottom: -70px;
  }
  .mt-xxl-70 {
    margin-top: 70px;
  }
  .mtn-xxl-70 {
    margin-top: -70px;
  }
  .ml-xxl-70 {
    margin-left: 70px;
  }
  .mr-xxl-70 {
    margin-right: 70px;
  }
  .mx-xxl-70 {
    margin-left: 70px;
    margin-right: 70px;
  }
  .my-xxl-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .pb-xxl-70 {
    padding-bottom: 70px;
  }
  .pt-xxl-70 {
    padding-top: 70px;
  }
  .pl-xxl-70 {
    padding-left: 70px;
  }
  .pr-xxl-70 {
    padding-right: 70px;
  }
  .px-xxl-70 {
    padding-left: 70px;
    padding-right: 70px;
  }
  .py-xxl-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .mb-xxl-75 {
    margin-bottom: 75px;
  }
  .mbn-xxl-75 {
    margin-bottom: -75px;
  }
  .mt-xxl-75 {
    margin-top: 75px;
  }
  .mtn-xxl-75 {
    margin-top: -75px;
  }
  .ml-xxl-75 {
    margin-left: 75px;
  }
  .mr-xxl-75 {
    margin-right: 75px;
  }
  .mx-xxl-75 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .my-xxl-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .pb-xxl-75 {
    padding-bottom: 75px;
  }
  .pt-xxl-75 {
    padding-top: 75px;
  }
  .pl-xxl-75 {
    padding-left: 75px;
  }
  .pr-xxl-75 {
    padding-right: 75px;
  }
  .px-xxl-75 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .py-xxl-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .mb-xxl-80 {
    margin-bottom: 80px;
  }
  .mbn-xxl-80 {
    margin-bottom: -80px;
  }
  .mt-xxl-80 {
    margin-top: 80px;
  }
  .mtn-xxl-80 {
    margin-top: -80px;
  }
  .ml-xxl-80 {
    margin-left: 80px;
  }
  .mr-xxl-80 {
    margin-right: 80px;
  }
  .mx-xxl-80 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .my-xxl-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .pb-xxl-80 {
    padding-bottom: 80px;
  }
  .pt-xxl-80 {
    padding-top: 80px;
  }
  .pl-xxl-80 {
    padding-left: 80px;
  }
  .pr-xxl-80 {
    padding-right: 80px;
  }
  .px-xxl-80 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .py-xxl-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mb-xxl-85 {
    margin-bottom: 85px;
  }
  .mbn-xxl-85 {
    margin-bottom: -85px;
  }
  .mt-xxl-85 {
    margin-top: 85px;
  }
  .mtn-xxl-85 {
    margin-top: -85px;
  }
  .ml-xxl-85 {
    margin-left: 85px;
  }
  .mr-xxl-85 {
    margin-right: 85px;
  }
  .mx-xxl-85 {
    margin-left: 85px;
    margin-right: 85px;
  }
  .my-xxl-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .pb-xxl-85 {
    padding-bottom: 85px;
  }
  .pt-xxl-85 {
    padding-top: 85px;
  }
  .pl-xxl-85 {
    padding-left: 85px;
  }
  .pr-xxl-85 {
    padding-right: 85px;
  }
  .px-xxl-85 {
    padding-left: 85px;
    padding-right: 85px;
  }
  .py-xxl-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .mb-xxl-90 {
    margin-bottom: 90px;
  }
  .mbn-xxl-90 {
    margin-bottom: -90px;
  }
  .mt-xxl-90 {
    margin-top: 90px;
  }
  .mtn-xxl-90 {
    margin-top: -90px;
  }
  .ml-xxl-90 {
    margin-left: 90px;
  }
  .mr-xxl-90 {
    margin-right: 90px;
  }
  .mx-xxl-90 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .my-xxl-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .pb-xxl-90 {
    padding-bottom: 90px;
  }
  .pt-xxl-90 {
    padding-top: 90px;
  }
  .pl-xxl-90 {
    padding-left: 90px;
  }
  .pr-xxl-90 {
    padding-right: 90px;
  }
  .px-xxl-90 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .py-xxl-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .mb-xxl-95 {
    margin-bottom: 95px;
  }
  .mbn-xxl-95 {
    margin-bottom: -95px;
  }
  .mt-xxl-95 {
    margin-top: 95px;
  }
  .mtn-xxl-95 {
    margin-top: -95px;
  }
  .ml-xxl-95 {
    margin-left: 95px;
  }
  .mr-xxl-95 {
    margin-right: 95px;
  }
  .mx-xxl-95 {
    margin-left: 95px;
    margin-right: 95px;
  }
  .my-xxl-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .pb-xxl-95 {
    padding-bottom: 95px;
  }
  .pt-xxl-95 {
    padding-top: 95px;
  }
  .pl-xxl-95 {
    padding-left: 95px;
  }
  .pr-xxl-95 {
    padding-right: 95px;
  }
  .px-xxl-95 {
    padding-left: 95px;
    padding-right: 95px;
  }
  .py-xxl-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .mb-xxl-100 {
    margin-bottom: 100px;
  }
  .mbn-xxl-100 {
    margin-bottom: -100px;
  }
  .mt-xxl-100 {
    margin-top: 100px;
  }
  .mtn-xxl-100 {
    margin-top: -100px;
  }
  .ml-xxl-100 {
    margin-left: 100px;
  }
  .mr-xxl-100 {
    margin-right: 100px;
  }
  .mx-xxl-100 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .my-xxl-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .pb-xxl-100 {
    padding-bottom: 100px;
  }
  .pt-xxl-100 {
    padding-top: 100px;
  }
  .pl-xxl-100 {
    padding-left: 100px;
  }
  .pr-xxl-100 {
    padding-right: 100px;
  }
  .px-xxl-100 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .py-xxl-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mb-xxl-110 {
    margin-bottom: 110px;
  }
  .mbn-xxl-110 {
    margin-bottom: -110px;
  }
  .mt-xxl-110 {
    margin-top: 110px;
  }
  .mtn-xxl-110 {
    margin-top: -110px;
  }
  .ml-xxl-110 {
    margin-left: 110px;
  }
  .mr-xxl-110 {
    margin-right: 110px;
  }
  .mx-xxl-110 {
    margin-left: 110px;
    margin-right: 110px;
  }
  .my-xxl-110 {
    margin-top: 110px;
    margin-bottom: 110px;
  }
  .pb-xxl-110 {
    padding-bottom: 110px;
  }
  .pt-xxl-110 {
    padding-top: 110px;
  }
  .pl-xxl-110 {
    padding-left: 110px;
  }
  .pr-xxl-110 {
    padding-right: 110px;
  }
  .px-xxl-110 {
    padding-left: 110px;
    padding-right: 110px;
  }
  .py-xxl-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .mb-xxl-120 {
    margin-bottom: 120px;
  }
  .mbn-xxl-120 {
    margin-bottom: -120px;
  }
  .mt-xxl-120 {
    margin-top: 120px;
  }
  .mtn-xxl-120 {
    margin-top: -120px;
  }
  .ml-xxl-120 {
    margin-left: 120px;
  }
  .mr-xxl-120 {
    margin-right: 120px;
  }
  .mx-xxl-120 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .my-xxl-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .pb-xxl-120 {
    padding-bottom: 120px;
  }
  .pt-xxl-120 {
    padding-top: 120px;
  }
  .pl-xxl-120 {
    padding-left: 120px;
  }
  .pr-xxl-120 {
    padding-right: 120px;
  }
  .px-xxl-120 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .py-xxl-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .mb-xxl-140 {
    margin-bottom: 140px;
  }
  .mbn-xxl-140 {
    margin-bottom: -140px;
  }
  .mt-xxl-140 {
    margin-top: 140px;
  }
  .mtn-xxl-140 {
    margin-top: -140px;
  }
  .ml-xxl-140 {
    margin-left: 140px;
  }
  .mr-xxl-140 {
    margin-right: 140px;
  }
  .mx-xxl-140 {
    margin-left: 140px;
    margin-right: 140px;
  }
  .my-xxl-140 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .pb-xxl-140 {
    padding-bottom: 140px;
  }
  .pt-xxl-140 {
    padding-top: 140px;
  }
  .pl-xxl-140 {
    padding-left: 140px;
  }
  .pr-xxl-140 {
    padding-right: 140px;
  }
  .px-xxl-140 {
    padding-left: 140px;
    padding-right: 140px;
  }
  .py-xxl-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .mb-xxl-150 {
    margin-bottom: 150px;
  }
  .mbn-xxl-150 {
    margin-bottom: -150px;
  }
  .mt-xxl-150 {
    margin-top: 150px;
  }
  .mtn-xxl-150 {
    margin-top: -150px;
  }
  .ml-xxl-150 {
    margin-left: 150px;
  }
  .mr-xxl-150 {
    margin-right: 150px;
  }
  .mx-xxl-150 {
    margin-left: 150px;
    margin-right: 150px;
  }
  .my-xxl-150 {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .pb-xxl-150 {
    padding-bottom: 150px;
  }
  .pt-xxl-150 {
    padding-top: 150px;
  }
  .pl-xxl-150 {
    padding-left: 150px;
  }
  .pr-xxl-150 {
    padding-right: 150px;
  }
  .px-xxl-150 {
    padding-left: 150px;
    padding-right: 150px;
  }
  .py-xxl-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .mb-xxl-200 {
    margin-bottom: 200px;
  }
  .mbn-xxl-200 {
    margin-bottom: -200px;
  }
  .mt-xxl-200 {
    margin-top: 200px;
  }
  .mtn-xxl-200 {
    margin-top: -200px;
  }
  .ml-xxl-200 {
    margin-left: 200px;
  }
  .mr-xxl-200 {
    margin-right: 200px;
  }
  .mx-xxl-200 {
    margin-left: 200px;
    margin-right: 200px;
  }
  .my-xxl-200 {
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .pb-xxl-200 {
    padding-bottom: 200px;
  }
  .pt-xxl-200 {
    padding-top: 200px;
  }
  .pl-xxl-200 {
    padding-left: 200px;
  }
  .pr-xxl-200 {
    padding-right: 200px;
  }
  .px-xxl-200 {
    padding-left: 200px;
    padding-right: 200px;
  }
  .py-xxl-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .mb-xxl-230 {
    margin-bottom: 230px;
  }
  .mbn-xxl-230 {
    margin-bottom: -230px;
  }
  .mt-xxl-230 {
    margin-top: 230px;
  }
  .mtn-xxl-230 {
    margin-top: -230px;
  }
  .ml-xxl-230 {
    margin-left: 230px;
  }
  .mr-xxl-230 {
    margin-right: 230px;
  }
  .mx-xxl-230 {
    margin-left: 230px;
    margin-right: 230px;
  }
  .my-xxl-230 {
    margin-top: 230px;
    margin-bottom: 230px;
  }
  .pb-xxl-230 {
    padding-bottom: 230px;
  }
  .pt-xxl-230 {
    padding-top: 230px;
  }
  .pl-xxl-230 {
    padding-left: 230px;
  }
  .pr-xxl-230 {
    padding-right: 230px;
  }
  .px-xxl-230 {
    padding-left: 230px;
    padding-right: 230px;
  }
  .py-xxl-230 {
    padding-top: 230px;
    padding-bottom: 230px;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
a[href^="tel:"] {
  white-space: nowrap;
}

.link {
  text-decoration: none;
  cursor: pointer;
}
.link > svg {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}
.link span {
  display: inline-block;
  vertical-align: middle;
}
.link > svg + span {
  margin-left: 2px;
}
.link > span + svg {
  margin-left: 2px;
}
.link--opacity {
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .link--opacity:hover {
    opacity: 0.7;
  }
  .link--opacity:active {
    opacity: 1;
  }
}
.link--facade {
  position: relative;
}
.link--facade img {
  transition: 0.45s top cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.45s height cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .link--facade:hover img {
    top: -20px;
    height: calc(100% + 40px);
  }
}
.link--grey {
  transition: 0.35s color cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #666;
}
@media (hover: hover) {
  .link--grey:hover {
    color: #1d1d1d;
  }
  .link--grey:active {
    color: #666;
  }
}
.link--black {
  transition: 0.35s color cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #1d1d1d;
}
.link--black .icon {
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .link--black:hover, .link--black.active {
    color: rgba(29, 29, 29, 0.5);
  }
  .link--black:hover .icon, .link--black.active .icon {
    opacity: 0.6;
  }
  .link--black:active {
    color: #1d1d1d;
  }
  .link--black:active .icon {
    opacity: 1;
  }
}
.link--white {
  transition: 0.35s color cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #FFF;
}
.link--white .icon {
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .link--white:hover, .link--white.active {
    color: #666;
  }
  .link--white:hover .icon, .link--white.active .icon {
    opacity: 0.6;
  }
  .link--white:active {
    color: #FFF;
  }
  .link--white:active .icon {
    opacity: 1;
  }
}
.link--black_border {
  transition: 0.35s color cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s border-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
}
@media (hover: hover) {
  .link--black_border:hover {
    color: rgba(29, 29, 29, 0.5);
    border-bottom-color: rgba(29, 29, 29, 0.5);
  }
  .link--black_border:active {
    color: #1d1d1d;
    border-bottom-color: #1d1d1d;
  }
}
.link--grey_border {
  transition: 0.35s color cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s border-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #666666;
  border-bottom: 1px solid #666666;
}
@media (hover: hover) {
  .link--grey_border:hover {
    color: #1d1d1d;
    border-bottom-color: #1d1d1d;
  }
  .link--grey_border:active {
    color: #666666;
    border-bottom-color: #666666;
  }
}
.link--red {
  transition: 0.35s color cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #FF300A;
}
@media (hover: hover) {
  .link--red:hover, .link--red.active {
    color: #1d1d1d;
  }
  .link--red:active {
    color: #FF300A;
  }
}
.link--icon {
  display: flex;
  align-items: center;
}
.link--icon .icon {
  margin-right: 8px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn > svg {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}
.btn span {
  display: inline-block;
  vertical-align: middle;
}
.btn > svg + span {
  margin-left: 5px;
}
.btn > span + svg {
  margin-left: 5px;
}
.btn > span + img {
  margin-left: 5px;
}
.btn > img + span {
  margin-left: 5px;
}
.btn--black {
  background-color: #1d1d1d;
  color: #FFF;
  text-transform: uppercase;
  border-radius: 100px;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .btn--black:hover {
    background-color: #404040;
  }
  .btn--black:active {
    background-color: #1d1d1d;
  }
}
.btn--grey {
  background-color: #F8F8F8;
  color: #1d1d1d;
  text-transform: uppercase;
  border-radius: 100px;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .btn--grey:hover {
    background-color: #E1E1E1;
  }
  .btn--grey:active {
    background-color: #F8F8F8;
  }
}
.btn--white {
  background-color: #FFF;
  color: #1d1d1d;
  text-transform: uppercase;
  border-radius: 100px;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .btn--white:hover {
    background-color: #E1E1E1;
  }
  .btn--white:active {
    background-color: #FFF;
  }
}
.btn--black_border {
  color: #1d1d1d;
  border: 1px solid #1d1d1d;
  border-radius: 50px;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn--black_border svg {
  transition: 0.35s filter cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .btn--black_border:hover {
    background-color: #1d1d1d;
    color: #FFF;
  }
  .btn--black_border:hover svg {
    filter: brightness(0) invert(1);
  }
  .btn--black_border:active {
    background-color: #FFF;
    color: #1d1d1d;
  }
  .btn--black_border:active svg {
    filter: none;
  }
}
@media only screen and (max-width: 1023px) {
  .btn--back, .btn--next {
    border: none !important;
    padding: 0 !important;
  }
}
.btn--next {
  position: absolute;
  right: 15px;
  top: -15px;
}
.btn--like svg path {
  fill: transparent;
  transition: 0.3s stroke cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.3s fill cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn--like.active svg path, .btn--like:hover svg path {
  stroke: #FF300A;
  fill: #FF300A;
}
.btn--like.active img, .btn--like:hover img {
  /* to black */
  filter: invert(1);
  /* or to blue */
  filter: invert(0.5) sepia(1) saturate(5) hue-rotate(175deg);
}
.btn--like svg.active path {
  stroke: #FF300A;
  fill: #FF300A;
}
.btn.btn--small, .btn.btn--sm {
  padding: 6px 30px;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.btn.disabled,
.btn [disabled] {
  pointer-events: none;
  background-color: #CACACA;
  color: #828282;
  transition: none;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.h-200 {
  height: 200px;
}

.h-30 {
  height: 30px;
}

.h-40 {
  height: 40px;
}

.h-60 {
  height: 60px;
}

.mh-100 {
  min-height: 100%;
}

.mw-150 {
  max-width: 150px;
}

.height-15 {
  position: relative;
}
.height-15:before {
  content: "";
  display: block;
  padding-top: 15%;
}

.height-16 {
  position: relative;
}
.height-16:before {
  content: "";
  display: block;
  padding-top: 16%;
}

.height-23 {
  position: relative;
}
.height-23:before {
  content: "";
  display: block;
  padding-top: 23%;
}

.height-45 {
  position: relative;
}
.height-45:before {
  content: "";
  display: block;
  padding-top: 45%;
}

.height-50 {
  position: relative;
}
.height-50:before {
  content: "";
  display: block;
  padding-top: 50%;
}

.height-55 {
  position: relative;
}
.height-55:before {
  content: "";
  display: block;
  padding-top: 55%;
}

.height-100 {
  position: relative;
}
.height-100:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.height-60 {
  position: relative;
}
.height-60:before {
  content: "";
  display: block;
  padding-top: 60%;
}

.height-65 {
  position: relative;
}
.height-65:before {
  content: "";
  display: block;
  padding-top: 65%;
}

.height-75 {
  position: relative;
}
.height-75:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.height-80 {
  position: relative;
}
.height-80:before {
  content: "";
  display: block;
  padding-top: 80%;
}

.height-115 {
  position: relative;
}
.height-115:before {
  content: "";
  display: block;
  padding-top: 115%;
}

.height-125 {
  position: relative;
}
.height-125:before {
  content: "";
  display: block;
  padding-top: 125%;
}

.height-130 {
  position: relative;
}
.height-130:before {
  content: "";
  display: block;
  padding-top: 130%;
}

.height-160 {
  position: relative;
}
.height-160:before {
  content: "";
  display: block;
  padding-top: 160%;
}

@media screen and (min-width: 0) {
  .height-xs-15 {
    position: relative;
  }
  .height-xs-15:before {
    content: "";
    display: block;
    padding-top: 15%;
  }
  .height-xs-16 {
    position: relative;
  }
  .height-xs-16:before {
    content: "";
    display: block;
    padding-top: 16%;
  }
  .height-xs-23 {
    position: relative;
  }
  .height-xs-23:before {
    content: "";
    display: block;
    padding-top: 23%;
  }
  .height-xs-45 {
    position: relative;
  }
  .height-xs-45:before {
    content: "";
    display: block;
    padding-top: 45%;
  }
  .height-xs-50 {
    position: relative;
  }
  .height-xs-50:before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .height-xs-55 {
    position: relative;
  }
  .height-xs-55:before {
    content: "";
    display: block;
    padding-top: 55%;
  }
  .height-xs-100 {
    position: relative;
  }
  .height-xs-100:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .height-xs-60 {
    position: relative;
  }
  .height-xs-60:before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .height-xs-65 {
    position: relative;
  }
  .height-xs-65:before {
    content: "";
    display: block;
    padding-top: 65%;
  }
  .height-xs-75 {
    position: relative;
  }
  .height-xs-75:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .height-xs-80 {
    position: relative;
  }
  .height-xs-80:before {
    content: "";
    display: block;
    padding-top: 80%;
  }
  .height-xs-115 {
    position: relative;
  }
  .height-xs-115:before {
    content: "";
    display: block;
    padding-top: 115%;
  }
  .height-xs-125 {
    position: relative;
  }
  .height-xs-125:before {
    content: "";
    display: block;
    padding-top: 125%;
  }
  .height-xs-130 {
    position: relative;
  }
  .height-xs-130:before {
    content: "";
    display: block;
    padding-top: 130%;
  }
  .height-xs-160 {
    position: relative;
  }
  .height-xs-160:before {
    content: "";
    display: block;
    padding-top: 160%;
  }
}
@media screen and (min-width: 576px) {
  .height-sm-15 {
    position: relative;
  }
  .height-sm-15:before {
    content: "";
    display: block;
    padding-top: 15%;
  }
  .height-sm-16 {
    position: relative;
  }
  .height-sm-16:before {
    content: "";
    display: block;
    padding-top: 16%;
  }
  .height-sm-23 {
    position: relative;
  }
  .height-sm-23:before {
    content: "";
    display: block;
    padding-top: 23%;
  }
  .height-sm-45 {
    position: relative;
  }
  .height-sm-45:before {
    content: "";
    display: block;
    padding-top: 45%;
  }
  .height-sm-50 {
    position: relative;
  }
  .height-sm-50:before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .height-sm-55 {
    position: relative;
  }
  .height-sm-55:before {
    content: "";
    display: block;
    padding-top: 55%;
  }
  .height-sm-100 {
    position: relative;
  }
  .height-sm-100:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .height-sm-60 {
    position: relative;
  }
  .height-sm-60:before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .height-sm-65 {
    position: relative;
  }
  .height-sm-65:before {
    content: "";
    display: block;
    padding-top: 65%;
  }
  .height-sm-75 {
    position: relative;
  }
  .height-sm-75:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .height-sm-80 {
    position: relative;
  }
  .height-sm-80:before {
    content: "";
    display: block;
    padding-top: 80%;
  }
  .height-sm-115 {
    position: relative;
  }
  .height-sm-115:before {
    content: "";
    display: block;
    padding-top: 115%;
  }
  .height-sm-125 {
    position: relative;
  }
  .height-sm-125:before {
    content: "";
    display: block;
    padding-top: 125%;
  }
  .height-sm-130 {
    position: relative;
  }
  .height-sm-130:before {
    content: "";
    display: block;
    padding-top: 130%;
  }
  .height-sm-160 {
    position: relative;
  }
  .height-sm-160:before {
    content: "";
    display: block;
    padding-top: 160%;
  }
}
@media screen and (min-width: 767px) {
  .height-md-15 {
    position: relative;
  }
  .height-md-15:before {
    content: "";
    display: block;
    padding-top: 15%;
  }
  .height-md-16 {
    position: relative;
  }
  .height-md-16:before {
    content: "";
    display: block;
    padding-top: 16%;
  }
  .height-md-23 {
    position: relative;
  }
  .height-md-23:before {
    content: "";
    display: block;
    padding-top: 23%;
  }
  .height-md-45 {
    position: relative;
  }
  .height-md-45:before {
    content: "";
    display: block;
    padding-top: 45%;
  }
  .height-md-50 {
    position: relative;
  }
  .height-md-50:before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .height-md-55 {
    position: relative;
  }
  .height-md-55:before {
    content: "";
    display: block;
    padding-top: 55%;
  }
  .height-md-100 {
    position: relative;
  }
  .height-md-100:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .height-md-60 {
    position: relative;
  }
  .height-md-60:before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .height-md-65 {
    position: relative;
  }
  .height-md-65:before {
    content: "";
    display: block;
    padding-top: 65%;
  }
  .height-md-75 {
    position: relative;
  }
  .height-md-75:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .height-md-80 {
    position: relative;
  }
  .height-md-80:before {
    content: "";
    display: block;
    padding-top: 80%;
  }
  .height-md-115 {
    position: relative;
  }
  .height-md-115:before {
    content: "";
    display: block;
    padding-top: 115%;
  }
  .height-md-125 {
    position: relative;
  }
  .height-md-125:before {
    content: "";
    display: block;
    padding-top: 125%;
  }
  .height-md-130 {
    position: relative;
  }
  .height-md-130:before {
    content: "";
    display: block;
    padding-top: 130%;
  }
  .height-md-160 {
    position: relative;
  }
  .height-md-160:before {
    content: "";
    display: block;
    padding-top: 160%;
  }
}
@media screen and (min-width: 1023px) {
  .height-lg-15 {
    position: relative;
  }
  .height-lg-15:before {
    content: "";
    display: block;
    padding-top: 15%;
  }
  .height-lg-16 {
    position: relative;
  }
  .height-lg-16:before {
    content: "";
    display: block;
    padding-top: 16%;
  }
  .height-lg-23 {
    position: relative;
  }
  .height-lg-23:before {
    content: "";
    display: block;
    padding-top: 23%;
  }
  .height-lg-45 {
    position: relative;
  }
  .height-lg-45:before {
    content: "";
    display: block;
    padding-top: 45%;
  }
  .height-lg-50 {
    position: relative;
  }
  .height-lg-50:before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .height-lg-55 {
    position: relative;
  }
  .height-lg-55:before {
    content: "";
    display: block;
    padding-top: 55%;
  }
  .height-lg-100 {
    position: relative;
  }
  .height-lg-100:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .height-lg-60 {
    position: relative;
  }
  .height-lg-60:before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .height-lg-65 {
    position: relative;
  }
  .height-lg-65:before {
    content: "";
    display: block;
    padding-top: 65%;
  }
  .height-lg-75 {
    position: relative;
  }
  .height-lg-75:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .height-lg-80 {
    position: relative;
  }
  .height-lg-80:before {
    content: "";
    display: block;
    padding-top: 80%;
  }
  .height-lg-115 {
    position: relative;
  }
  .height-lg-115:before {
    content: "";
    display: block;
    padding-top: 115%;
  }
  .height-lg-125 {
    position: relative;
  }
  .height-lg-125:before {
    content: "";
    display: block;
    padding-top: 125%;
  }
  .height-lg-130 {
    position: relative;
  }
  .height-lg-130:before {
    content: "";
    display: block;
    padding-top: 130%;
  }
  .height-lg-160 {
    position: relative;
  }
  .height-lg-160:before {
    content: "";
    display: block;
    padding-top: 160%;
  }
}
@media screen and (min-width: 1300px) {
  .height-xl-15 {
    position: relative;
  }
  .height-xl-15:before {
    content: "";
    display: block;
    padding-top: 15%;
  }
  .height-xl-16 {
    position: relative;
  }
  .height-xl-16:before {
    content: "";
    display: block;
    padding-top: 16%;
  }
  .height-xl-23 {
    position: relative;
  }
  .height-xl-23:before {
    content: "";
    display: block;
    padding-top: 23%;
  }
  .height-xl-45 {
    position: relative;
  }
  .height-xl-45:before {
    content: "";
    display: block;
    padding-top: 45%;
  }
  .height-xl-50 {
    position: relative;
  }
  .height-xl-50:before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .height-xl-55 {
    position: relative;
  }
  .height-xl-55:before {
    content: "";
    display: block;
    padding-top: 55%;
  }
  .height-xl-100 {
    position: relative;
  }
  .height-xl-100:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .height-xl-60 {
    position: relative;
  }
  .height-xl-60:before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .height-xl-65 {
    position: relative;
  }
  .height-xl-65:before {
    content: "";
    display: block;
    padding-top: 65%;
  }
  .height-xl-75 {
    position: relative;
  }
  .height-xl-75:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .height-xl-80 {
    position: relative;
  }
  .height-xl-80:before {
    content: "";
    display: block;
    padding-top: 80%;
  }
  .height-xl-115 {
    position: relative;
  }
  .height-xl-115:before {
    content: "";
    display: block;
    padding-top: 115%;
  }
  .height-xl-125 {
    position: relative;
  }
  .height-xl-125:before {
    content: "";
    display: block;
    padding-top: 125%;
  }
  .height-xl-130 {
    position: relative;
  }
  .height-xl-130:before {
    content: "";
    display: block;
    padding-top: 130%;
  }
  .height-xl-160 {
    position: relative;
  }
  .height-xl-160:before {
    content: "";
    display: block;
    padding-top: 160%;
  }
}
@media screen and (min-width: 1500px) {
  .height-xxl-15 {
    position: relative;
  }
  .height-xxl-15:before {
    content: "";
    display: block;
    padding-top: 15%;
  }
  .height-xxl-16 {
    position: relative;
  }
  .height-xxl-16:before {
    content: "";
    display: block;
    padding-top: 16%;
  }
  .height-xxl-23 {
    position: relative;
  }
  .height-xxl-23:before {
    content: "";
    display: block;
    padding-top: 23%;
  }
  .height-xxl-45 {
    position: relative;
  }
  .height-xxl-45:before {
    content: "";
    display: block;
    padding-top: 45%;
  }
  .height-xxl-50 {
    position: relative;
  }
  .height-xxl-50:before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .height-xxl-55 {
    position: relative;
  }
  .height-xxl-55:before {
    content: "";
    display: block;
    padding-top: 55%;
  }
  .height-xxl-100 {
    position: relative;
  }
  .height-xxl-100:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .height-xxl-60 {
    position: relative;
  }
  .height-xxl-60:before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .height-xxl-65 {
    position: relative;
  }
  .height-xxl-65:before {
    content: "";
    display: block;
    padding-top: 65%;
  }
  .height-xxl-75 {
    position: relative;
  }
  .height-xxl-75:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .height-xxl-80 {
    position: relative;
  }
  .height-xxl-80:before {
    content: "";
    display: block;
    padding-top: 80%;
  }
  .height-xxl-115 {
    position: relative;
  }
  .height-xxl-115:before {
    content: "";
    display: block;
    padding-top: 115%;
  }
  .height-xxl-125 {
    position: relative;
  }
  .height-xxl-125:before {
    content: "";
    display: block;
    padding-top: 125%;
  }
  .height-xxl-130 {
    position: relative;
  }
  .height-xxl-130:before {
    content: "";
    display: block;
    padding-top: 130%;
  }
  .height-xxl-160 {
    position: relative;
  }
  .height-xxl-160:before {
    content: "";
    display: block;
    padding-top: 160%;
  }
}
.opacity-15 {
  position: relative;
}
.opacity-15:after {
  content: "";
  display: block;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.15;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover .opacity-15:after {
  opacity: 0;
}

a:active .opacity-15:after {
  opacity: 0.15;
}

.opacity-25 {
  position: relative;
}
.opacity-25:after {
  content: "";
  display: block;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.25;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover .opacity-25:after {
  opacity: 0;
}

a:active .opacity-25:after {
  opacity: 0.25;
}

.opacity-30 {
  position: relative;
}
.opacity-30:after {
  content: "";
  display: block;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.3;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover .opacity-30:after {
  opacity: 0;
}

a:active .opacity-30:after {
  opacity: 0.3;
}

.opacity-35 {
  position: relative;
}
.opacity-35:after {
  content: "";
  display: block;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.35;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover .opacity-35:after {
  opacity: 0;
}

a:active .opacity-35:after {
  opacity: 0.35;
}

.opacity-45 {
  position: relative;
}
.opacity-45:after {
  content: "";
  display: block;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.45;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover .opacity-45:after {
  opacity: 0;
}

a:active .opacity-45:after {
  opacity: 0.45;
}

.opacity-50 {
  position: relative;
}
.opacity-50:after {
  content: "";
  display: block;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.5;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover .opacity-50:after {
  opacity: 0;
}

a:active .opacity-50:after {
  opacity: 0.5;
}

.img-resize {
  display: block;
  width: 100%;
  height: auto;
}

.img-cover {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.img-contain {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.img-rounded {
  display: block;
  border-radius: 50%;
  max-width: 100%;
}

.sticky-lt {
  position: sticky;
  left: 0;
  top: 100px;
}

@media only screen and (max-width: 1023px) {
  .mobile-sticky-lt {
    top: 60px;
    background-color: #FFF;
  }
}

.video {
  position: relative;
  cursor: pointer;
}
.video .video-play {
  z-index: 50;
  width: 80px;
  height: 80px;
  opacity: 0.9;
  cursor: pointer;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NSIgaGVpZ2h0PSI0NSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0Y0RjRGNCIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMjIuNSA0NUMzNC45MjYgNDUgNDUgMzQuOTI2IDQ1IDIyLjVTMzQuOTI2IDAgMjIuNSAwIDAgMTAuMDc0IDAgMjIuNSAxMC4wNzQgNDUgMjIuNSA0NW0tNC40OTktMTcuMDE1YS41LjUgMCAwIDAgLjcyNi40NDdsMTAuOTgyLTUuNTQ4YS41LjUgMCAwIDAtLjAwNC0uODk0bC0xMC45ODItNS40MzVhLjUuNSAwIDAgMC0uNzIyLjQ0OHoiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==) center center no-repeat;
  background-size: 80px;
}
.video .video-play:hover {
  opacity: 1;
}
.video:hover .video-play {
  opacity: 1;
}
.video .video-caption {
  z-index: 40;
}
.video iframe {
  z-index: 30;
  object-fit: none;
}
.video.play .video-caption,
.video.play .video-play {
  display: none;
}

.video-link-editor {
  position: relative;
  display: block;
}
.video-link-editor iframe {
  z-index: 30;
  object-fit: none;
}
.video-link-editor:hover:before {
  opacity: 1;
}
.video-link-editor:before {
  content: "";
  z-index: 50;
  width: 80px;
  height: 80px;
  opacity: 0.9;
  cursor: pointer;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NSIgaGVpZ2h0PSI0NSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0Y0RjRGNCIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMjIuNSA0NUMzNC45MjYgNDUgNDUgMzQuOTI2IDQ1IDIyLjVTMzQuOTI2IDAgMjIuNSAwIDAgMTAuMDc0IDAgMjIuNSAxMC4wNzQgNDUgMjIuNSA0NW0tNC40OTktMTcuMDE1YS41LjUgMCAwIDAgLjcyNi40NDdsMTAuOTgyLTUuNTQ4YS41LjUgMCAwIDAtLjAwNC0uODk0bC0xMC45ODItNS40MzVhLjUuNSAwIDAgMC0uNzIyLjQ0OHoiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==) center center no-repeat;
  background-size: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
}
.video-link-editor img {
  width: 100%;
}

.loader {
  text-align: center;
}

.partner-item {
  cursor: pointer;
  overflow: hidden;
  background-color: #F8F8F8;
}
.partner-item .partner-item-logo {
  width: 60%;
}
.partner-item .partner-item-logo,
.partner-item .partner-item-content {
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.partner-item .partner-item-content {
  opacity: 0;
  transform: translate(-50%, -75%);
}
.partner-item:hover .partner-item-logo {
  opacity: 0;
  transform: translate(-50%, -25%);
}
.partner-item:hover .partner-item-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.full-scroll.vertical {
  overflow: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch !important;
  overflow-x: hidden;
}

.full-scroll.vertical a {
  display: block;
  width: 100%;
  line-height: 18px;
}

.full-scroll.horizontal {
  overflow-x: auto;
  padding-bottom: 10px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border: 1px solid #d5d5d5;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  background: #eeeeee;
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #b0b0b0;
}

.ymaps-2-1-79-map canvas {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

.page-footer {
  position: relative;
}
.page-footer a:not([class]) {
  transition: 0.35s color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-footer a:not([class]):hover {
  color: #1d1d1d;
}
.page-footer a:not([class]):active {
  color: inherit;
}
.page-footer .footer-row {
  border-top: 1px solid #E1E1E1;
}
.page-footer .footer-top {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 50;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E1E1E1;
  border-radius: 50%;
  background-color: #FFF;
  cursor: pointer;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s border-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-footer .footer-top .icon {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 1023px) {
  .page-footer .footer-top .icon {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (max-width: 1023px) {
  .page-footer .footer-top {
    width: 30px;
    height: 30px;
  }
}
.page-footer .footer-top:hover {
  background-color: #1d1d1d;
  border-color: #1d1d1d;
}

@media only screen and (min-width: 1023px) {
  .footer-logo img {
    width: 245px;
  }
}
@media only screen and (max-width: 1023px) {
  .footer-logo img {
    max-width: 150px;
  }
}

.footer-menu li {
  margin-bottom: 10px;
}
.footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-socials a svg {
  display: block;
}
.footer-socials a svg path {
  fill: #A4A1A1;
}
.footer-socials a svg rect {
  stroke: #A4A1A1;
}
.footer-socials a svg path,
.footer-socials a svg rect {
  transition: 0.35s fill cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s stroke cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 1023px) {
  .footer-socials a {
    width: 30px;
    height: 30px;
  }
  .footer-socials a svg {
    max-width: 100%;
    height: auto;
  }
}
@media (hover: hover) {
  .footer-socials a:hover svg path {
    fill: #1d1d1d;
  }
  .footer-socials a:hover svg rect {
    stroke: #1d1d1d;
  }
}

@media only screen and (max-width: 1023px) {
  .footer-copyrights {
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    text-transform: none;
  }
}

.links_upper a {
  text-transform: uppercase;
}

.swiper-button-next--rounded, .swiper-button-prev--rounded {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  background-color: #f8f8f8;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-nav {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 999;
  display: none;
  padding-top: 20px;
  background-color: #FFF;
}
@media only screen and (max-width: 1023px) {
  .page-nav {
    height: calc(100vh - 65px);
  }
}
.page-nav .page-nav-content {
  opacity: 0;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 1023px) {
  .page-nav .page-nav-content {
    padding-bottom: 30px;
    height: 100%;
    overflow: auto;
  }
}
.page-nav .page-nav-footer {
  border-top: 1px solid #E1E1E1;
}
.page-nav.show .page-nav-content {
  opacity: 1;
}

.page-nav-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  background-color: #1d1d1d;
  opacity: 0.4;
}

.mobile-menu .expand-item {
  border: none;
}
.mobile-menu .expand-item .expand-item-heading:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNiIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMUQxRDFEIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGQ9Im0xOCAxMS41LTQuNSA1LTQuNS01Ii8+PC9zdmc+);
  background-size: auto;
  transition: 0.35s transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
  top: 1px;
  transform: none;
}
.mobile-menu .expand-item .expand-item-heading:after {
  display: none;
}
.mobile-menu .expand-item.open .expand-item-heading:before {
  opacity: 1;
  transform: rotate(-180deg);
}

a.swiper-slide {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (max-width: 1023px) {
  .quiz-block-holder {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .quiz-block-holder {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

.quiz-block {
  position: relative;
  display: block;
  cursor: pointer;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s outline cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.quiz-block .quiz-block-check {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 40px;
  height: 40px;
  z-index: 100;
  opacity: 0;
  transform: 0;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.quiz-block .quiz-block-title {
  position: absolute;
  z-index: 100;
}
.quiz-block .quiz-radio {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  opacity: 0;
  cursor: pointer;
}
.quiz-block.active .quiz-block-check {
  opacity: 1;
  transform: translate(30%, -30%);
}
.quiz-block--inline img {
  max-width: 60%;
  max-height: 60%;
}

.page-block img {
  max-width: 100%;
}

.center-text {
  text-align: center;
}

.opacity-45::after {
  z-index: 99;
}

.intro-video-custom {
  position: relative;
  height: 95vh;
}
.intro-video-custom video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.footer-socials img {
  width: 100%;
}

[v-cloak] {
  display: none;
}

@media (max-width: 765px) {
  .btn--next.btn--black_border {
    position: absolute !important;
    right: 15px;
    top: -15px;
  }
  .d-flex {
    display: flex;
  }
  .carousel {
    --swiper-pagination-bullet-horizontal-gap:4px;
  }
  .page-popup-gallery-close {
    background: #b5b2b2;
    padding: 5px;
    border-radius: 30px;
  }
}
@media (min-width: 965px) {
  .realize-pr {
    height: 623px;
  }
  .main-block {
    height: 100vh;
  }
}
#shops_vue, #shops_vue_news, #shops_vue_specials, #facades_vue, .vue-component {
  min-height: 70vh;
}

.btn--black_border {
  display: inline-flex;
  align-items: center;
}

.btn--black_border img {
  transition: 0.35s filter cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn--black_border:hover img {
  filter: brightness(0) invert(1);
}

.btn > span + img, .btn > img + span {
  margin-left: 5px;
}

.btn--next.btn--black_border {
  float: right;
  position: static;
}

.intro img, .intro video {
  filter: brightness(50%);
}
body {
  cursor: default;
  font-family: "SFProDisplay";
  color: #1d1d1d;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
}
@media only screen and (max-width: 1023px) {
body {
    font-size: 14px;
    line-height: 20px;
}
}
:root {
  --swiper-pagination-bullet-horizontal-gap: 8px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: #FFF;
  --swiper-pagination-color: #FF300A;
  --swiper-navigation-size: 50px;
}
@media only screen and (max-width: 1023px) {
:root {
    --swiper-pagination-bullet-inactive-color: #E1E1E1;
}
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
}
.swiper-button-next--rounded,
.swiper-button-prev--rounded {
  width: 50px;
  border-radius: 50%;
  background-color: #F8F8F8;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.swiper-button-next--rounded:hover,
.swiper-button-prev--rounded:hover {
  background-color: #E1E1E1;
}
.swiper-button-next--rounded.icon svg,
.swiper-button-prev--rounded.icon svg {
  width: 10px;
}
.swiper-button-next--simple,
.swiper-button-prev--simple {
  margin-top: -12px;
  width: 25px;
  height: 25px;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.swiper-button-next--simple:hover,
.swiper-button-prev--simple:hover {
  opacity: 0.6 !important;
}
.swiper-button-next--simple:active,
.swiper-button-prev--simple:active {
  opacity: 1 !important;
}
.swiper-button-prev--rounded {
  left: 15px;
}
.swiper-button-prev--simple {
  left: 10px;
}
.swiper-button-next--rounded {
  right: 15px;
}
.swiper-button-next--simple {
  right: 10px;
}
.swiper-pagination {
  font-size: 0;
  line-height: 0;
}
.swiper-pagination.swiper-pagination-horizontal {
  bottom: 20px;
}
@media only screen and (max-width: 1023px) {
.swiper-pagination {
    position: static;
    padding: 10px 0;
}
}
.chips .chips-item {
  margin: 0 15px 15px 0;
  display: inline-block;
  border-radius: 50px;
  background-color: #F8F8F8;
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
  text-transform: uppercase;
  color: #1d1d1d;
  text-decoration: none;
  padding: 6px 20px;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 1023px) {
.chips .chips-item {
    margin: 0 10px 10px 0;
}
}
.chips .chips-item:hover {
  background-color: #E1E1E1;
}
.chips .chips-item:active {
  background-color: #F8F8F8;
}
.search-form .search-form-field {
  display: block;
  width: 100%;
  font-family: "SFProDisplay";
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
  text-transform: uppercase;
  color: #1d1d1d;
  padding: 4px 0 18px 35px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzFEMUQxRCIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTkgMTEuNWE3LjUgNy41IDAgMSAxLTE1IDAgNy41IDcuNSAwIDAgMSAxNSAwbS0xLjc3MyA2LjI4YTguNSA4LjUgMCAxIDEgLjY5OC0uNzE2bDQuNTM0IDQuNjUyYy4xOTIuMTk4LjE5NS41Mi4wMDUuNzIxcy0uNS4yMDMtLjY5My4wMDV6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=) no-repeat left 0;
  background-size: 25px 25px;
  border-bottom: 1px solid #A4A1A1;
}
.search-form .search-form-field::-webkit-search-cancel-button {
  -webkit-appearance: none;
  cursor: pointer;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #E1E1E1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMUQxRDFEIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJtNS4yMSA1LjIxIDE0LjU4NCAxNC41ODRtLTE0LjU4MyAwTDE5Ljc5NCA1LjIxMSIvPjwvc3ZnPg==);
  background-size: 15px 15px;
  background-position: center center;
  background-repeat: no-repeat;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.search-form .search-form-field::-webkit-search-cancel-button:hover {
  background-color: #F8F8F8;
}
.search-items .search-item img {
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.search-items .search-item .search-item-title {
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
  text-transform: uppercase;
}
.search-items .search-item:hover img {
  opacity: 0.7;
}
.share-items .share-item {
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.share-items .share-item:hover {
  opacity: 0.6;
}
.share-items .share-item:active {
  opacity: 1;
}
.is-popup {
  position: absolute;
  z-index: 5000;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.is-popup.show {
  transform: translateY(0);
  opacity: 1;
}
.one-filter .bordered-selector {
  width: 385px;
  max-width: 385px;
  padding: 3px 16px;
  border: 1px solid #E1E1E1;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
.one-filter .bordered-selector {
    max-width: 100%;
    width: 100%;
}
}
.page-popup-gallery .fancybox-bg {
  background: #FFF;
}
.page-popup-gallery .fancybox-toolbar {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex;
  padding: 25px;
}
.page-popup-gallery .fancybox-toolbar button {
  cursor: pointer;
  margin-left: 20px;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-popup-gallery .fancybox-toolbar button svg {
  display: block;
}
.page-popup-gallery .fancybox-toolbar button:hover {
  opacity: 0.6;
}
.page-popup-gallery .page-popup-gallery-nav {
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 99999;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
  background-color: #F8F8F8;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-popup-gallery .page-popup-gallery-nav:hover {
  background-color: #E1E1E1;
}
.page-popup-gallery .page-popup-gallery-nav--left {
  left: 20px;
}
.page-popup-gallery .page-popup-gallery-nav--right {
  right: 20px;
}
.page-popup-gallery.fancybox-is-open .fancybox-bg {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
.fancybox-slide--video {
    padding: 20px;
}
.fancybox-slide--video .fancybox-content {
    position: relative;
    height: 100% !important;
    width: 100% !important;
}
}
.orders, .filter-control {
  display: none;
}
.cities-popup {
  margin-left: 0;
  margin-top: 15px;
  background-color: #FFF;
  width: 385px;
  border: 1px solid #E1E1E1;
}
.one-filter {
  position: relative;
  height: 46px;
}
.one-filter label {
  display: flex !important;
  align-items: center;
  height: 100%;
}
.one-filter:hover .filter-popup {
  display: block;
}
.filter-popup {
  margin-left: 0;
  margin-top: 0px;
  background-color: #FFF;
  width: 300px;
  border: 1px solid #E1E1E1;
  z-index: 101;
  position: absolute;
  display: none;
}
.sorter-popup {
  margin-left: 0;
  margin-top: 15px;
  background-color: #FFF;
  width: 250px;
  border: 1px solid #E1E1E1;
}
.form-label {
  cursor: pointer;
}
.form-checkbox {
  cursor: pointer;
  position: relative;
}
.form-checkbox:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  display: block;
  opacity: 0;
  width: 13px;
  height: 9px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxMSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGQ9Im0uOTY5IDQuMzc2IDUuMjM3IDYuMTExIDcuODI0LTkuMDk2Ii8+PC9zdmc+) no-repeat center center;
  background-size: contain;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.form-checkbox:before {
  content: "";
  display: block;
  border: 1px solid #D6D6D6;
  width: 19px;
  height: 19px;
  border-radius: 2px;
  transition: 0.35s border-color cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.form-checkbox:hover:before {
  border-color: #2B2B2B;
}
.form-checkbox:checked:before {
  border-color: #1d1d1d;
  background-color: #1d1d1d;
}
.form-checkbox:checked:after {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.form-text,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-family: "SFProDisplay";
  font-size: 14px;
  line-height: 20px;
  color: #1d1d1d;
  background-color: #FFF;
  border-radius: 10px;
  border: 1px solid #D6D6D6;
  transition: 0.35s border-color cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.form-text::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  color: #666;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.form-text:focus::placeholder,
.form-textarea:focus::placeholder,
.form-select:focus::placeholder {
  opacity: 0;
}
.form-text:hover, .form-text:focus,
.form-textarea:hover,
.form-textarea:focus,
.form-select:hover,
.form-select:focus {
  border-color: #2B2B2B;
}
.form-text {
  padding: 6px 16px;
}
.form-textarea {
  padding: 12px 20px;
  min-height: 80px;
}
.form-select {
  padding: 6px 16px;
  appearance: none;
  cursor: pointer;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMUQxRDFEIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGQ9Im0xOCAxMS00LjUgNUw5IDExIi8+PC9zdmc+) no-repeat calc(100% - 10px) center;
}
.form-file {
  position: relative;
  cursor: pointer;
}
.form-file input[type=file] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}
.form-file:hover .btn--black_border {
  background-color: #E1E1E1;
}
.form-result {
  padding: 10px 55px;
  background-color: #F8F8F8;
}
.project-item {
  position: relative;
  display: block;
}
.project-item .project-item-badge {
  position: absolute;
  top: 20px;
  background-color: #F8F8F8;
  border-radius: 10px;
  min-width: 43px;
  text-align: center;
  z-index: 100;
  padding: 2px 10px;
}
@media only screen and (max-width: 1023px) {
.project-item .project-item-badge {
    top: 15px;
}
}
.project-item .project-item-badge--right {
  right: 20px;
}
@media only screen and (max-width: 1023px) {
.project-item .project-item-badge--right {
    right: 15px;
}
}
.project-item .project-item-badge--left {
  left: 20px;
}
@media only screen and (max-width: 1023px) {
.project-item .project-item-badge--left {
    left: 15px;
}
}
.project-item .project-item-video {
  position: absolute;
  z-index: 20;
  left: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 1023px) {
.project-item .project-item-video {
    left: 15px;
    bottom: 42px;
}
}
.project-item .swiper-button-prev,
.project-item .swiper-button-next {
  opacity: 0;
  pointer-events: none;
  transition: 0.35s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
.project-item:hover .swiper-button-prev,
  .project-item:hover .swiper-button-next {
    opacity: 1;
    pointer-events: all;
}
}
.expand-item:not(.mb-10) {
  margin-bottom: -1px;
}
.expand-item {
  border-top: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
}
.expand-item .expand-item-heading {
  position: relative;
  padding-right: 50px;
  cursor: pointer;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 1023px) {
.expand-item .expand-item-heading {
    padding-right: 35px;
}
}
.expand-item .expand-item-heading:after, .expand-item .expand-item-heading:before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.expand-item .expand-item-heading:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMUQxRDFEIiBzdHJva2UtbGluZWNhcD0icm91bmQiIGQ9Ik0xMi41IDUuNXYxNE0xOS41IDEyLjVoLTE0Ii8+PC9zdmc+);
}
.expand-item .expand-item-heading:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMUQxRDFEIiBzdHJva2UtbGluZWNhcD0icm91bmQiIGQ9Ik0xOS41IDEyLjVoLTE0Ii8+PC9zdmc+);
  opacity: 0;
}
@media (hover: hover) {
.expand-item .expand-item-heading:hover {
    opacity: 0.6;
}
}
.expand-item .expand-item-content {
  display: none;
}
.expand-item.open .expand-item-heading::before {
  opacity: 0;
}
.expand-item.open .expand-item-heading::after {
  opacity: 1;
}
.expand-item.open .expand-item-content {
  display: block;
}
.mobile-filter .expand-item {
  border-top-color: #1d1d1d;
  border-bottom-color: #1d1d1d;
}
.salon-map ymaps[class*=ground-pane] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.mobile-scroll {
  width: 100%;
  white-space: nowrap;
  overflow: auto;
  padding-bottom: 10px;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  margin: 0 !important;
}
.mobile-scroll .mobile-scroll-item {
  padding: 0 !important;
  margin: 0 10px 0 0 !important;
  width: 230px;
  display: inline-block !important;
  white-space: normal;
  vertical-align: top;
}
.mobile-scroll .mobile-scroll-item:last-child {
  margin-right: 0 !important;
}
.mobile-scroll .mobile-scroll-item .project-item-video {
  bottom: 15px;
}
.page-top {
  position: fixed;
  right: 40px;
  bottom: 200px;
  z-index: 500;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #999999;
  border-radius: 50%;
  background-color: #FFF;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s background-color cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s border-color cubic-bezier(0.25, 0.46, 0.45, 0.94), 0.35s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-top.show {
  pointer-events: all;
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
.page-top {
    bottom: 100px;
}
}
.page-top .icon {
  width: 24px;
  height: 24px;
}
.page-top:hover {
  background-color: #1d1d1d;
  border-color: #1d1d1d;
}
.page-aside {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 45%;
  max-width: 870px;
  overflow: auto;
  overflow-x: hidden;
  background-color: #FFF;
  z-index: 1050;
  transform: translateX(101%);
  opacity: 0;
  transition: 0.35s transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 1023px) {
.page-aside {
    width: 100%;
}
}
.page-aside .page-aside-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: 0.3s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 1023px) {
.page-aside .page-aside-close {
    right: 15px;
}
}
@media (hover: hover) {
.page-aside .page-aside-close:hover {
    opacity: 0.6;
}
.page-aside .page-aside-close:active {
    opacity: 1;
}
}
.page-aside .page-aside-floating {
  position: sticky;
  left: 0;
  bottom: 0;
}
.page-aside.show {
  transform: translateX(0);
  opacity: 1;
}
.page-aside-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1030;
  width: 100%;
  height: 100%;
  background-color: #1d1d1d;
  opacity: 0.4;
}

.carousel
{
    position:relative;
}
.nav-swiper
{
    position: absolute;
    top: -28px;
    right: 0px;
}
.nav-swiper>div {
    --swiper-navigation-color: orange;
}
.nav-swiper .left-arrow
{
    right: 45px;
    left:auto;
}
.nav-swiper .right-arrow
{
    right:0;
    left:auto;
}


a.article-item {
  display: block;
  text-decoration: none;
}
a.article-item .article-item-image {
  transition: 0.3s opacity cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 1023px) {
a.article-item:hover .article-item-image {
    opacity: 0.7;
}
a.article-item:active .article-item-image {
    opacity: 1;
}
}
.article-item-play {
  z-index: 20;
  width: 80px;
  height: 80px;
}

.bx-pagination {
	margin: 10px 0;
}
.bx-pagination .bx-pagination-container {
	text-align: center;
	position: relative;
}
.bx-pagination .bx-pagination-container ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
}
.bx-pagination .bx-pagination-container ul li {
	display: inline-block;
	margin: 0 5px 15px 5px;
}
.bx-pagination .bx-pagination-container ul li span{
    -webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
       -moz-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	-ms-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	 -o-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    		transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	background: #eff0f1;
	padding: 0 8px;
	display: block;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	font-size: 14px;
	border-radius: 16px;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-pagination .bx-pagination-container ul li a {
	text-decoration: none;
	display: block;
	border-radius: 16px;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	vertical-align: middle;
}
.bx-pagination .bx-pagination-container ul li a:hover span{
	background: #DADADA;
}
.bx-pagination .bx-pagination-container ul li.bx-active span{
	background: #d1442a;
	color: #fff;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a span {
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
	color: #444;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span{
	color: #aab1b4;
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span {
	background: #fff;
	border-color: #DADADA;
	color: #000;
}

/*color schemes*/
.bx-pagination.bx-green  .bx-pagination-container ul li.bx-active span{
	background: #3bc915;
	color: #fff;
}
.bx-pagination.bx-yellow  .bx-pagination-container ul li.bx-active span{
	background: #F9A91D;
	color: #fff;
}
.bx-pagination.bx-red  .bx-pagination-container ul li.bx-active span{
	background: #E22B2B;
	color: #fff;
}
.bx-pagination.bx-blue .bx-pagination-container ul li.bx-active span{
	background: #d1442a;
	color: #fff;
}


