/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 * OFF require_tree .


 */
@charset "UTF-8";
/*
   Long comment
  */
/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 1, app/assets/stylesheets/abstracts/_variables.scss */
:root {
  --font-family-sans: 'Roboto Condensed', sans-serif;
  --line-height-headers: 1.1;
  --line-height-body: 1.7;
  --font-size-xs: 0.75rem;
  --font-size-s: 0.875rem;
  --font-size-m: 1rem;
  --font-size-l: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  --font-size-xxxl: 2rem;
  --font-size-xxxxl: 2.5rem;
  --default-font-size: 1.6rem;
  --color-text-header: #333;
  --color-text-body: #555;
  --color-text-muted: #777;
  --space-xxxs: 0.25rem;
  --space-xxs: 0.375rem;
  --space-xs: 0.5rem;
  --space-s: 0.75rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 2.5rem;
  --space-xxxl: 3rem;
  --space-xxxxl: 4rem;
  --color-primary: #ff5a00;
  --color-primary-dark: rgb(225, 80, 0);
  --color-primary-darker: #c44200;
  --color-primary-light: #ff7a33;
  --color-primary-rgba: 255, 90, 0;
  --color-primary-dark-rgba: 225, 80, 0;
  --color-primary-light-rgba: 255, 122, 51;
  --color-secondary-light-shad: #ffdc80;
  --color-secondary-light: #ffb900;
  --color-secondary-dark: #ff7730;
  --color-tertiary-light: #2998ff;
  --color-tertiary-dark: #5643fa;
  --color-primary-tint: #ffe0cc;
  --color-primary-tint-90: #ffe0cc;
  --color-grey-light-1: #f7f7f7;
  --color-grey-light-2: #eee;
  --color-grey-dark: #777;
  --color-grey-dark-2: #999;
  --color-grey-dark-3: #333;
  --color-white: #fff;
  --color-black-shadow: 0, 0, 0;
  --color-black: #000;
  --grid-width: 114rem;
  --gutter-vertical: 8rem;
  --gutter-vertical-small: 6rem;
  --gutter-horizontal: 6rem;
  --border-radius-sm: 0.6rem;
  --border-radius-md: 0.8rem;
  --border-radius-xxxl: 10rem;
  --border: solid 2px var(--color-light);
  --shadow-large: 2px 4px 10px hsl(0 0% 0% / 0.1);
  --shadow-small: 1px 3px 6px hsl(0 0% 0% / 0.1);
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
@layer base {
  /* line 4, app/assets/stylesheets/base/_base.scss */
  *,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    text-decoration: none;
    list-style-type: none;
    outline: none;
  }
}

/* line 16, app/assets/stylesheets/base/_base.scss */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 75em) {
  /* line 16, app/assets/stylesheets/base/_base.scss */
  html {
    font-size: 56.25%;
  }
}

@media only screen and (max-width: 59em) {
  /* line 16, app/assets/stylesheets/base/_base.scss */
  html {
    font-size: 50%;
  }
}

/* line 38, app/assets/stylesheets/base/_base.scss */
body {
  box-sizing: border-box;
  padding: 3rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 38, app/assets/stylesheets/base/_base.scss */
  body {
    padding: 0;
  }
}

/* line 48, app/assets/stylesheets/base/_base.scss */
::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

h1 = 3.6rem
h2 = 3rem
h3 = 2.4rem
h4 = 1.8rem
h5 = 1.5rem



- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights spacing between lines
Default: 1
Small: 1.05
Medium: 1.2

Paragraph default: 1.6
Large: 1.8

- Letter spacing space between letters
-0.5px
0.75px

--- 02 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 03 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 04 WHITESPACE margin and padding between elements

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
/* line 50, app/assets/stylesheets/base/_typography.scss */
body {
  font-family: var(--font-family-sans);
  font-weight: 400;
  line-height: var(--line-height-body);
  color: var(--color-text-body);
  overflow-x: hidden;
}

/* line 60, app/assets/stylesheets/base/_typography.scss */
.heading-primary-slider {
  color: var(--color-white);
  backface-visibility: hidden;
  margin-bottom: 4rem;
}

/* line 65, app/assets/stylesheets/base/_typography.scss */
.heading-primary-slider--main {
  display: block;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 44em) {
  /* line 65, app/assets/stylesheets/base/_typography.scss */
  .heading-primary-slider--main {
    font-size: 4.4rem;
  }
}

@media only screen and (max-width: 34em) {
  /* line 65, app/assets/stylesheets/base/_typography.scss */
  .heading-primary-slider--main {
    font-size: 3.6rem;
  }
}

/* line 82, app/assets/stylesheets/base/_typography.scss */
.heading-primary-slider--sub {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  opacity: 0.88;
  margin-bottom: 0;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 82, app/assets/stylesheets/base/_typography.scss */
  .heading-primary-slider--sub {
    font-size: 1.6rem;
  }
}

/* line 97, app/assets/stylesheets/base/_typography.scss */
.heading-primary,
.heading-secondary,
.heading-secondary--white,
.heading-tertiary,
.heading-tertiary-white {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-text-header);
}

/* line 105, app/assets/stylesheets/base/_typography.scss */
.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 84em) {
  /* line 105, app/assets/stylesheets/base/_typography.scss */
  .heading-primary {
    font-size: 4.4rem;
  }
}

/* line 120, app/assets/stylesheets/base/_typography.scss */
.heading-secondary, .heading-secondary--white {
  display: inline-block;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 9.6rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 127, app/assets/stylesheets/base/_typography.scss */
.heading-secondary--white {
  color: var(--color-white);
}

@media only screen and (max-width: 75em) {
  /* line 120, app/assets/stylesheets/base/_typography.scss */
  .heading-secondary, .heading-secondary--white {
    font-size: 3.6rem;
    margin-bottom: 8rem;
  }
}

@media only screen and (max-width: 59em) {
  /* line 120, app/assets/stylesheets/base/_typography.scss */
  .heading-secondary, .heading-secondary--white {
    margin-bottom: 6.4rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 120, app/assets/stylesheets/base/_typography.scss */
  .heading-secondary, .heading-secondary--white {
    margin-bottom: 4.8rem;
  }
}

/* line 153, app/assets/stylesheets/base/_typography.scss */
.heading-tertiary, .heading-tertiary-white {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 159, app/assets/stylesheets/base/_typography.scss */
.heading-tertiary-white {
  color: white;
}

@media only screen and (max-width: 75em) {
  /* line 153, app/assets/stylesheets/base/_typography.scss */
  .heading-tertiary, .heading-tertiary-white {
    font-size: 2.4rem;
  }
}

/* line 170, app/assets/stylesheets/base/_typography.scss */
.about_paragraph {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* line 174, app/assets/stylesheets/base/_typography.scss */
.about_paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

/* line 179, app/assets/stylesheets/base/_typography.scss */
.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.6rem;
  letter-spacing: 0.5px;
}

/* line 188, app/assets/stylesheets/base/_typography.scss */
strong {
  font-weight: 600;
}

/**************************/
/* BELOW 944px (Phones) (max-width: 34em) */
/**************************/
@media only screen and (max-width: 34em) {
  font-size: 2.5rem;
}

/**************************/
/* BELOW 704px (Small Tablets) (max-width: 44em) */
/**************************/
/**************************/
/* BELOW 944px (Portrait Tablets) (max-width: 59em) */
/**************************/
/**************************/
/* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
/**************************/
/**************************/
/* BELOW 1344px (Smaller desktops) (max-width: 84em) */
/**************************/
/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 8, app/assets/stylesheets/base/_utilities.scss */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 14, app/assets/stylesheets/base/_utilities.scss */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 20, app/assets/stylesheets/base/_utilities.scss */
.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* line 27, app/assets/stylesheets/base/_utilities.scss */
.flex-align-center {
  display: flex;
  align-items: center;
}

/* line 37, app/assets/stylesheets/base/_utilities.scss */
.text-primary {
  color: var(--color-primary);
}

/* line 38, app/assets/stylesheets/base/_utilities.scss */
.bg-primary-color {
  background-color: var(--color-primary);
}

/* line 39, app/assets/stylesheets/base/_utilities.scss */
.border-primary {
  border-color: var(--color-primary);
}

/* line 40, app/assets/stylesheets/base/_utilities.scss */
.fill-primary {
  fill: var(--color-primary);
}

/* line 41, app/assets/stylesheets/base/_utilities.scss */
.stroke-primary {
  stroke: var(--color-primary);
}

/* line 44, app/assets/stylesheets/base/_utilities.scss */
.bg-primary-tint {
  background-color: var(--color-primary-tint);
}

/* line 45, app/assets/stylesheets/base/_utilities.scss */
.text-primary-dark {
  color: var(--color-primary-dark);
}

/* line 49, app/assets/stylesheets/base/_utilities.scss */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* line 52, app/assets/stylesheets/base/_utilities.scss */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* line 58, app/assets/stylesheets/base/_utilities.scss */
.u-center-text {
  text-align: center;
}

/**************************/
/* BELOW 944px (Phones) (max-width: 34em) */
/**************************/
@media only screen and (max-width: 34em) {
  /* line 64, app/assets/stylesheets/base/_utilities.scss */
  .heading-secondary--white.u-margin-bottom {
    margin-bottom: 7.5rem;
  }
  /* line 67, app/assets/stylesheets/base/_utilities.scss */
  .heading-tertiary-white.u-margin-top {
    margin-top: 10rem;
  }
}

/**************************/
/* BELOW 704px (Small Tablets) (max-width: 44em) */
/**************************/
/**************************/
/* BELOW 944px (Portrait Tablets) (max-width: 59em) */
/**************************/
/**************************/
/* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
/**************************/
/**************************/
/* BELOW 1344px (Smaller desktops) (max-width: 84em) */
/**************************/
/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInButton {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/components/_bg-video.scss */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
  overflow: hidden;
}

/* line 14, app/assets/stylesheets/components/_bg-video.scss */
.bg-video__content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 5, app/assets/stylesheets/components/_button.scss */
.btn, .btn:link, .btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 5, app/assets/stylesheets/components/_button.scss */
  .btn, .btn:link, .btn:visited {
    padding: 1rem 2rem;
  }
}

/* line 28, app/assets/stylesheets/components/_button.scss */
.btn:active, .btn:focus {
  outline: none;
}

/* line 37, app/assets/stylesheets/components/_button.scss */
.btn--white, .btn--white:link, .btn--white:visited {
  border-color: var(--color-white);
  background: transparent;
  color: var(--color-white);
}

/* line 43, app/assets/stylesheets/components/_button.scss */
.btn--white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* line 51, app/assets/stylesheets/components/_button.scss */
.btn--outlined, .btn--outlined:link, .btn--outlined:visited {
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

/* line 59, app/assets/stylesheets/components/_button.scss */
.btn--outlined:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* line 66, app/assets/stylesheets/components/_button.scss */
.btn--grey {
  border-color: var(--color-grey-light-2);
  background: var(--color-grey-light-1);
  color: var(--color-grey-dark-3);
}

/* line 71, app/assets/stylesheets/components/_button.scss */
.btn--grey:hover {
  background: var(--color-grey-dark-3);
  border-color: var(--color-grey-dark-3);
  color: var(--color-white);
}

/* line 80, app/assets/stylesheets/components/_button.scss */
.btn--orange, .btn--orange:link, .btn--orange:visited {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* line 88, app/assets/stylesheets/components/_button.scss */
.btn--orange:hover {
  background: #d64c00;
  border-color: #d64c00;
  color: var(--color-white);
  opacity: 1;
}

/* line 97, app/assets/stylesheets/components/_button.scss */
.btn-animated {
  animation: moveInButton 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

/* line 105, app/assets/stylesheets/components/_button.scss */
.btn-text:link, .btn-text:visited {
  display: inline-block;
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

/* line 117, app/assets/stylesheets/components/_button.scss */
.btn-text:hover {
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-primary-dark);
}

/* line 122, app/assets/stylesheets/components/_button.scss */
.btn-text:active {
  color: var(--color-primary);
}

/* line 129, app/assets/stylesheets/components/_button.scss */
.link__text:link, .link__text:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--color-text-body);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  line-height: 1;
  transition: border-color 0.2s ease;
}

/* line 140, app/assets/stylesheets/components/_button.scss */
.link__text:hover, .link__text:active {
  border-bottom-color: transparent;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 6, app/assets/stylesheets/components/_card.scss */
.card {
  perspective: 150rem;
  position: relative;
  height: 52rem;
  cursor: pointer;
  outline: none;
}

/* line 14, app/assets/stylesheets/components/_card.scss */
.card:focus {
  box-shadow: 0 0 0 2px var(--color-primary-light);
}

/* line 18, app/assets/stylesheets/components/_card.scss */
.card.is-flipped .card__side--front {
  transform: rotateY(-180deg);
}

/* line 22, app/assets/stylesheets/components/_card.scss */
.card.is-flipped .card__side--back {
  transform: rotateY(0);
}

/* line 26, app/assets/stylesheets/components/_card.scss */
.card__side {
  height: 52rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  transition: transform 0.8s ease;
  border-radius: 1rem;
  box-shadow: 0 5rem 10rem rgba(var(--color-black-shadow), 0.15);
}

@supports (-webkit-backface-visibility: hidden) or (backface-visibility: hidden) {
  /* line 26, app/assets/stylesheets/components/_card.scss */
  .card__side {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* line 43, app/assets/stylesheets/components/_card.scss */
.card__side--front {
  background-color: var(--color-secondary-light);
}

/* line 47, app/assets/stylesheets/components/_card.scss */
.card__side--back {
  background-color: var(--color-secondary-light);
  transform: rotateY(180deg);
}

/* line 53, app/assets/stylesheets/components/_card.scss */
.card__picture {
  padding: 2.5rem 0 0 0;
  background-color: white;
  height: 40rem;
}

/* line 59, app/assets/stylesheets/components/_card.scss */
.card__img {
  width: 100%;
}

/* line 64, app/assets/stylesheets/components/_card.scss */
.card__details {
  padding: 5rem;
}

/* line 66, app/assets/stylesheets/components/_card.scss */
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}

/* line 74, app/assets/stylesheets/components/_card.scss */
.card__details ul li {
  text-align: center;
  font-size: var(--default-font-size);
  padding: 1rem;
  text-transform: uppercase;
}

/* line 89, app/assets/stylesheets/components/_card.scss */
.card__cta {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/components/_composition.scss */
.composition {
  position: relative;
}

/* line 6, app/assets/stylesheets/components/_composition.scss */
.composition__photo {
  width: 55%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 10;
  outline-offset: 2rem;
  transition: all 0.2s;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 6, app/assets/stylesheets/components/_composition.scss */
  .composition__photo {
    float: left;
    position: relative;
    width: 33.3333333333%;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  }
}

/* line 24, app/assets/stylesheets/components/_composition.scss */
.composition__photo--p1 {
  left: 0;
  top: -2rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 24, app/assets/stylesheets/components/_composition.scss */
  .composition__photo--p1 {
    top: 0;
    transform: scale(1.2);
  }
}

/* line 36, app/assets/stylesheets/components/_composition.scss */
.composition__photo--p2 {
  right: 0;
  top: 2rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 36, app/assets/stylesheets/components/_composition.scss */
  .composition__photo--p2 {
    top: -1rem;
    transform: scale(1.3);
    z-index: 100;
  }
}

/* line 49, app/assets/stylesheets/components/_composition.scss */
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 49, app/assets/stylesheets/components/_composition.scss */
  .composition__photo--p3 {
    top: 1rem;
    left: 0;
    transform: scale(1.1);
  }
}

/* line 62, app/assets/stylesheets/components/_composition.scss */
.composition__photo:hover {
  outline: 1.5rem solid var(--color-primary);
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
}

/* line 71, app/assets/stylesheets/components/_composition.scss */
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/components/_feature-box.scss */
.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/components/_feature-box.scss */
  .feature-box {
    padding: 2rem;
  }
}

/* line 17, app/assets/stylesheets/components/_feature-box.scss */
.feature-box__icon {
  display: inline-block;
  font-size: 6rem;
  margin-bottom: 0.5rem;
  background-image: linear-gradient(to right bottom, rgba(var(--color-primary-light-rgba), 0.8), rgba(var(--color-primary-dark-rgba), 0.8));
  -webkit-background-clip: text;
  color: transparent;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 17, app/assets/stylesheets/components/_feature-box.scss */
  .feature-box__icon {
    margin-bottom: 0;
  }
}

/* line 36, app/assets/stylesheets/components/_feature-box.scss */
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/components/_form.scss */
.form__group:not(:last-child) {
  margin-bottom: 2rem;
}

/* line 8, app/assets/stylesheets/components/_form.scss */
.form__select {
  border: none;
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border-bottom: 3px solid transparent;
  width: 95%;
  display: block;
  transition: all 0.3s;
  appearance: none;
  /* Removes default browser styling */
  /* 900px */
}

/* line 24, app/assets/stylesheets/components/_form.scss */
.form__select:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 0.3rem solid var(--color-primary);
}

/* line 30, app/assets/stylesheets/components/_form.scss */
.form__select:focus:invalid {
  border-bottom: 0.3rem solid var(--color-secondary-dark);
}

/* line 34, app/assets/stylesheets/components/_form.scss */
.form__select::-webkit-input-placeholder {
  color: var(--color-grey-dark-2);
}

/* line 39, app/assets/stylesheets/components/_form.scss */
.form .form__label--select {
  appearance: none;
  font-size: 1.7rem;
  padding: 1rem 0;
}

/* line 45, app/assets/stylesheets/components/_form.scss */
.form__message {
  height: 16rem;
}

/* line 49, app/assets/stylesheets/components/_form.scss */
.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  display: block;
  padding: 1.5rem 2rem;
  border-radius: 0.2rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 0.3rem solid transparent;
  width: 95%;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 49, app/assets/stylesheets/components/_form.scss */
  .form__input {
    width: 100%;
  }
}

/* line 70, app/assets/stylesheets/components/_form.scss */
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 0.3rem solid var(--color-primary);
}

/* line 76, app/assets/stylesheets/components/_form.scss */
.form__input:focus:invalid {
  border-bottom: 0.3rem solid var(--color-secondary-dark);
}

/* line 80, app/assets/stylesheets/components/_form.scss */
.form__input::-webkit-input-placeholder {
  color: var(--color-grey-dark-2);
}

/* line 85, app/assets/stylesheets/components/_form.scss */
.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  margin-left: 2rem;
  transition: all 0.3s;
}

/* line 97, app/assets/stylesheets/components/_form.scss */
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

/* line 103, app/assets/stylesheets/components/_form.scss */
.form__radio-group {
  width: 49%;
  display: inline-block;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 103, app/assets/stylesheets/components/_form.scss */
  .form__radio-group {
    width: 100%;
    margin-bottom: 2rem;
  }
}

/* line 115, app/assets/stylesheets/components/_form.scss */
.form__radio-input {
  display: none;
}

/* line 119, app/assets/stylesheets/components/_form.scss */
.form__radio-label {
  position: relative;
  font-size: var(--default-font-size);
  cursor: pointer;
  padding-left: 4.5rem;
}

/* line 126, app/assets/stylesheets/components/_form.scss */
.form__radio-button {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border: 0.5rem solid var(--color-primary);
  border-radius: 50%;
  top: -04;
  left: 0;
  display: inline-block;
}

/* line 143, app/assets/stylesheets/components/_form.scss */
.form__radio-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-primary);
  content: '';
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}

/* line 162, app/assets/stylesheets/components/_form.scss */
.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/components/_popup.scss */
.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(var(--color-black-shadow), 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  /* line 3, app/assets/stylesheets/components/_popup.scss */
  .popup {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(var(--color-black-shadow), 0.3);
  }
}

/* line 22, app/assets/stylesheets/components/_popup.scss */
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  background-color: var(--color-white);
  box-shadow: 0 2rem 4rem rgba(var(--color-black-shadow), 0.2);
  border-radius: 3px;
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  transition: all 0.5s 0.2s;
}

/* line 50, app/assets/stylesheets/components/_popup.scss */
.popup__left {
  width: 33.333333%;
  display: table-cell;
}

/* line 55, app/assets/stylesheets/components/_popup.scss */
.popup__right {
  width: 66.6666667%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}

/* line 64, app/assets/stylesheets/components/_popup.scss */
.popup__img {
  display: block;
  width: 100%;
}

/* line 69, app/assets/stylesheets/components/_popup.scss */
.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
  -moz-column-gap: 4rem;
  -moz-column-rule: 1px solid var(--color-grey-light-2);
  column-count: 2;
  column-gap: 4rem;
  column-rule: 1px solid var(--color-grey-light-2);
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* line 94, app/assets/stylesheets/components/_popup.scss */
.popup:target {
  opacity: 1;
  visibility: visible;
}

/* line 99, app/assets/stylesheets/components/_popup.scss */
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

/* line 105, app/assets/stylesheets/components/_popup.scss */
.popup__close:link, .popup__close:visited {
  display: inline-block;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  color: var(--color-grey-dark);
  transition: all 0.2s;
  line-height: 1;
}

/* line 120, app/assets/stylesheets/components/_popup.scss */
.popup__close:hover {
  color: var(--color-primary);
}

/* line 126, app/assets/stylesheets/components/_popup.scss */
.popup__close--outer {
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/components/_story.scss */
.story {
  display: flex;
  flex-direction: column;
  width: 75%;
  position: relative;
  margin: 16rem auto 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0.3rem;
  padding: 6rem;
  padding-top: 9rem;
  font-size: var(--default-font-size);
  transform: skewX(-12deg);
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/components/_story.scss */
  .story {
    width: 100%;
    padding: 4rem;
    padding-left: 7rem;
  }
}

@media only screen and (max-width: 34em) {
  /* line 3, app/assets/stylesheets/components/_story.scss */
  .story {
    transform: skewX(0);
  }
}

/* line 30, app/assets/stylesheets/components/_story.scss */
.story > * {
  transform: skewX(12deg);
}

/* line 34, app/assets/stylesheets/components/_story.scss */
.story__shape {
  position: absolute;
  top: -25%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 14rem;
  height: 14rem;
  overflow: hidden;
  border: solid 1rem rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  object-fit: cover;
  transform: translateX(-3rem) skew(12deg);
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
  /* line 34, app/assets/stylesheets/components/_story.scss */
  .story__shape {
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    border-radius: none;
  }
}

@media only screen and (max-width: 34em) {
  /* line 34, app/assets/stylesheets/components/_story.scss */
  .story__shape {
    transform: translateX(-3rem) skewX(0);
  }
}

/* line 65, app/assets/stylesheets/components/_story.scss */
.story__img {
  height: 100%;
  transform: translateX(-5.3rem) scale(1.4);
  backface-visibility: hidden;
  transition: all 0.5s;
}

/* line 75, app/assets/stylesheets/components/_story.scss */
.story__paragraph {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* line 80, app/assets/stylesheets/components/_story.scss */
.story__text {
  order: 2;
  transform: skew(12deg);
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 80, app/assets/stylesheets/components/_story.scss */
  .story__text {
    transform: skewX(0);
  }
}

/* line 90, app/assets/stylesheets/components/_story.scss */
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  text-align: center;
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}

/* line 104, app/assets/stylesheets/components/_story.scss */
.story:hover .story__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* line 109, app/assets/stylesheets/components/_story.scss */
.story:hover .story__img {
  transform: translateX(-5.3rem) scale(1);
  filter: blur(0.3rem) brightness(80%);
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/components/_sub-header.scss */
.sub-header {
  position: relative;
  height: 40vh;
  background-image: linear-gradient(to right bottom, rgba(var(--color-primary-light-rgba), 0.8), rgba(var(--color-primary-dark-rgba), 0.8)), url(/assets/sub-header@2x-80-a35af74813144a3fca048b105e713451ce5c133cdf396ef96a697a8c07e4cc36.jpg);
  background-size: cover;
  background-position: center;
}

@media only screen and (min-resolution: 192dpi) and (min-width: 37.5em), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em), only screen and (min-width: 125em) {
  /* line 3, app/assets/stylesheets/components/_sub-header.scss */
  .sub-header {
    background-image: linear-gradient(to right bottom, rgba(var(--color-primary-light-rgba), 0.8), rgba(var(--color-primary-dark-rgba), 0.8)), url(/assets/sub-header@2x-80-a35af74813144a3fca048b105e713451ce5c133cdf396ef96a697a8c07e4cc36.jpg);
    background-size: cover;
    background-position: center;
  }
}

/* line 32, app/assets/stylesheets/components/_sub-header.scss */
.sub-header__text-box {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 85, app/assets/stylesheets/components/_number-input.scss */
.number-input {
  width: 200px;
  height: 70px;
  background: var(--color-primary);
  border-radius: var(--border-radius-sm);
  padding: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-family-sans);
  text-decoration: none;
  transform-style: preserve-3d;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  transition: 0.25s;
}

/* line 105, app/assets/stylesheets/components/_number-input.scss */
.btn-number {
  width: 30px;
  /* Adjusted width */
  height: 30px;
  /* Adjusted height */
  border-radius: 50%;
  background: var(--color-primary-light);
  color: #fff;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

/* line 120, app/assets/stylesheets/components/_number-input.scss */
.btn-number span {
  font-size: 20px;
  /* Adjusted font size */
}

/* line 124, app/assets/stylesheets/components/_number-input.scss */
.value {
  /*    flex-grow: 1;*/
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  /*    flex-direction: column;*/
}

/* line 134, app/assets/stylesheets/components/_number-input.scss */
.number {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: var(--default-font-size);
  color: white;
}

/* line 144, app/assets/stylesheets/components/_number-input.scss */
.text {
  font-size: var(--default-font-size);
  padding: 1rem 1rem 1rem 0;
  color: white;
  font-family: var(--font-family-sans);
}

@keyframes ripple {
  0% {
    width: 80px;
    height: 80px;
    opacity: 0.8;
  }
  100% {
    width: 230px;
    height: 230px;
    opacity: 0.3;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 2, app/assets/stylesheets/components/_social-media-icons.scss */
.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-items: center;
  justify-content: center;
}

/* line 10, app/assets/stylesheets/components/_social-media-icons.scss */
.social-links-text {
  font-size: 1.6rem;
  font-weight: 700;
}

/* line 15, app/assets/stylesheets/components/_social-media-icons.scss */
.social-links__icon {
  fill: var(--color-primary);
  height: 3.6rem;
  /* Set the initial height */
  width: 3.6rem;
  /* Set the initial width */
  transition: transform 0.2s, box-shadow 0.2s;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 15, app/assets/stylesheets/components/_social-media-icons.scss */
  .social-links__icon {
    height: 3rem;
    /* Set the initial height */
    width: 3rem;
    /* Set the initial width */
  }
}

@media only screen and (max-width: 34em) {
  /* line 15, app/assets/stylesheets/components/_social-media-icons.scss */
  .social-links__icon {
    height: 2.4rem;
    /* Set the initial height */
    width: 2.4rem;
    /* Set the initial width */
  }
}

/* line 34, app/assets/stylesheets/components/_social-media-icons.scss */
.social-links__icon, .social-links a:link, .social-links a:visited {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  border: none;
  cursor: pointer;
}

/* line 45, app/assets/stylesheets/components/_social-media-icons.scss */
.social-links a:hover .social-links__icon {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

/* line 49, app/assets/stylesheets/components/_social-media-icons.scss */
.social-links a:active .social-links__icon, .social-links a:focus .social-links__icon {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-center {
  display: flex;
  /* This makes the .center element a flex container */
  flex-direction: column;
  /* This stacks the .collapsible elements vertically */
}

/* line 9, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible {
  width: 100%;
  /* This makes each .collapsible take up the full width of the .center container */
  box-sizing: border-box;
  /* Ensures padding and borders are included in the total width */
  background: white;
  padding: 2rem;
  box-sizing: border-box;
  font-family: var(--font-family-sans);
  box-shadow: 0 5rem 10rem rgba(var(--color-black-shadow), 0.15);
  /* Hide the checkboxes */
  /* Toggle behavior for each collapsible */
}

/* line 21, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible:last-child {
  margin-bottom: 0;
  /* Removes the bottom margin from the last .collapsible to avoid extra spacing */
}

/* line 25, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-head {
  display: block;
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  padding: 1rem;
  border: 0.4mm solid black;
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.35s ease-out;
}

/* line 40, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-head::before {
  position: absolute;
  content: '+';
  font-family: var(--font-family-sans);
  font-weight: 700;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
  font-size: 3rem;
  transition: transform 0.35s ease-out;
}

/* line 51, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-content {
  width: 90%;
  background-color: var(--color-grey-light-3);
  margin: auto;
  border: 0.4mm solid black;
  border-top: none;
  max-height: 0;
  /* Initially set to 0 */
  visibility: hidden;
  /* Initially hidden */
  transition: max-height 0.35s ease-out, visibility 0.35s ease-out;
}

/* line 63, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-content span {
  display: block;
  padding: 15px;
  text-align: justify;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  font-size: var(--default-font-size);
}

/* line 73, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-inner-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 1.8rem;
}

/* line 80, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-header {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 600;
}

/* line 86, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-text {
  font-size: 1.8rem;
  line-height: 2rem;
}

/* line 91, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-overview__list, .collapsible-specification_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* line 99, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-overviw__item, .collapsible-specification_list {
  font-size: 1.8rem;
  line-height: 2rem;
}

/* line 105, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-specification_list li:first-child {
  font-weight: 600;
}

/* line 109, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-review-box {
  margin-bottom: 1.6rem;
}

/* line 113, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-review-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

/* line 119, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible-review-name {
  font-size: 1.6rem;
  color: var(--color-grey-dark-2);
}

/* line 125, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible input[type='checkbox'] {
  display: none;
}

/* line 130, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible #collapsible-toggle:checked ~ .collapsible-head::before,
.collapsible #collapsible-toggle2:checked ~ .collapsible-head::before,
.collapsible #collapsible-toggle3:checked ~ .collapsible-head::before,
.collapsible #collapsible-toggle4:checked ~ .collapsible-head::before,
.collapsible #collapsible-toggle5:checked ~ .collapsible-head::before {
  content: '-';
  transform: rotate(180deg);
  /* Optional: Rotate the icon */
}

/* line 139, app/assets/stylesheets/components/_collapsible-div.scss */
.collapsible #collapsible-toggle:checked ~ .collapsible-content,
.collapsible #collapsible-toggle2:checked ~ .collapsible-content,
.collapsible #collapsible-toggle3:checked ~ .collapsible-content,
.collapsible #collapsible-toggle4:checked ~ .collapsible-content,
.collapsible #collapsible-toggle5:checked ~ .collapsible-content {
  max-height: 150rem;
  /* Adjust this value based on your content size */
  visibility: visible;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/components/_our-community.scss */
.community-header {
  margin-bottom: 3.2rem;
}

/* line 7, app/assets/stylesheets/components/_our-community.scss */
.community-header .heading-secondary, .community-header .heading-secondary--white {
  margin-bottom: 1.6rem;
}

/* line 12, app/assets/stylesheets/components/_our-community.scss */
.community-header__text {
  margin: 0 auto 1.6rem;
  font-size: 1.9rem;
  line-height: 1.9;
  color: #444;
  text-align: center;
}

/* line 19, app/assets/stylesheets/components/_our-community.scss */
.community-header__text:last-child {
  margin-bottom: 0;
}

/* line 23, app/assets/stylesheets/components/_our-community.scss */
.cs-wrap {
  overflow: hidden;
  width: 100%;
  align-self: stretch;
  padding: 1.2rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* line 36, app/assets/stylesheets/components/_our-community.scss */
.cs-wrap:hover .cs-track {
  animation-play-state: paused;
}

/* line 42, app/assets/stylesheets/components/_our-community.scss */
.cs-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: cs-scroll 34s linear infinite;
}

/* line 49, app/assets/stylesheets/components/_our-community.scss */
.cs-track--reverse {
  animation: cs-scroll-reverse 34s linear infinite;
}

@keyframes cs-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes cs-scroll-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* line 65, app/assets/stylesheets/components/_our-community.scss */
.cs-card {
  position: relative;
  width: 30rem;
  height: 22rem;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* line 76, app/assets/stylesheets/components/_our-community.scss */
.cs-card__front {
  position: absolute;
  inset: 0;
  padding: 2.8rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* line 87, app/assets/stylesheets/components/_our-community.scss */
.cs-card__stars {
  font-size: 1.5rem;
  color: var(--color-primary);
  letter-spacing: 0.08em;
}

/* line 93, app/assets/stylesheets/components/_our-community.scss */
.cs-card__quote {
  font-size: 1.4rem;
  line-height: 1.65;
  color: #555;
  font-style: italic;
  flex: 1;
}

/* line 101, app/assets/stylesheets/components/_our-community.scss */
.cs-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-header);
}

/* line 107, app/assets/stylesheets/components/_our-community.scss */
.cs-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--color-grey-light-1);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* line 120, app/assets/stylesheets/components/_our-community.scss */
.cs-card__img {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* line 129, app/assets/stylesheets/components/_our-community.scss */
.cs-card__name--over {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-header);
}

/* line 135, app/assets/stylesheets/components/_our-community.scss */
.cs-card:hover .cs-card__front {
  opacity: 0;
}

/* line 136, app/assets/stylesheets/components/_our-community.scss */
.cs-card:hover .cs-card__back {
  opacity: 1;
}

/* line 140, app/assets/stylesheets/components/_our-community.scss */
.cs-img-card {
  width: 30rem;
  height: 22rem;
  flex-shrink: 0;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* line 148, app/assets/stylesheets/components/_our-community.scss */
.cs-img-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* line 156, app/assets/stylesheets/components/_our-community.scss */
.cs-img-card:hover .cs-img-card__img {
  transform: scale(1.06);
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/components/_product-card.scss */
.product-card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

/* line 12, app/assets/stylesheets/components/_product-card.scss */
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* line 18, app/assets/stylesheets/components/_product-card.scss */
.product-card__image-box {
  position: relative;
  background: #f5f5f7;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

/* line 25, app/assets/stylesheets/components/_product-card.scss */
.product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  transition: transform 0.35s ease;
}

/* line 34, app/assets/stylesheets/components/_product-card.scss */
.product-card:hover .product-card__img {
  transform: scale(1.05);
}

/* line 39, app/assets/stylesheets/components/_product-card.scss */
.product-card__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 56, app/assets/stylesheets/components/_product-card.scss */
.product-card__content {
  padding: 1.6rem;
}

/* line 60, app/assets/stylesheets/components/_product-card.scss */
.product-card__tags {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

/* line 66, app/assets/stylesheets/components/_product-card.scss */
.product-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

/* line 74, app/assets/stylesheets/components/_product-card.scss */
.product-card__name {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-header);
  line-height: 1.3;
  margin: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* line 84, app/assets/stylesheets/components/_product-card.scss */
.product-card__name:hover {
  color: var(--color-primary);
}

/* line 87, app/assets/stylesheets/components/_product-card.scss */
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

/* line 94, app/assets/stylesheets/components/_product-card.scss */
.product-card__star {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--color-primary);
}

/* line 100, app/assets/stylesheets/components/_product-card.scss */
.product-card__rating-count {
  font-size: 1.1rem;
  color: #999;
  margin-left: 0.4rem;
  white-space: nowrap;
}

/* line 107, app/assets/stylesheets/components/_product-card.scss */
.product-card__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

/* line 114, app/assets/stylesheets/components/_product-card.scss */
.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

/* line 120, app/assets/stylesheets/components/_product-card.scss */
.product-card__quick-view {
  gap: 0.6rem;
}

/* line 123, app/assets/stylesheets/components/_product-card.scss */
.product-card__quick-view svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

/* line 131, app/assets/stylesheets/components/_product-card.scss */
.product-card__images {
  position: relative;
  width: 100%;
  height: 100%;
}

/* line 137, app/assets/stylesheets/components/_product-card.scss */
.product-card__img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 146, app/assets/stylesheets/components/_product-card.scss */
.product-card__img-wrapper.active {
  opacity: 1;
  position: relative;
}

/* line 153, app/assets/stylesheets/components/_product-card.scss */
.product-card__colors {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

/* line 163, app/assets/stylesheets/components/_product-card.scss */
.product-card__color {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background-color: var(--ball-color, #ccc);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* line 173, app/assets/stylesheets/components/_product-card.scss */
.product-card--cover .product-card__image-box {
  aspect-ratio: 1 / 1;
}

/* line 177, app/assets/stylesheets/components/_product-card.scss */
.product-card__slide-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(255, 90, 0, 0.92);
  color: #fff;
  text-align: center;
  padding: 1.1rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

/* line 192, app/assets/stylesheets/components/_product-card.scss */
.product-card--cover:hover .product-card__slide-overlay {
  transform: translateY(0);
}

/* line 196, app/assets/stylesheets/components/_product-card.scss */
.product-card--cover .product-card__content {
  padding: 1.4rem 1.8rem 2rem;
}

/* line 200, app/assets/stylesheets/components/_product-card.scss */
.product-card--cover .product-card__name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* line 206, app/assets/stylesheets/components/_product-card.scss */
.product-card--cover .product-card__rating {
  gap: 0.2rem;
  flex-shrink: unset;
}

/* line 212, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach {
  border-radius: 2.4rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border-color: rgba(0, 0, 0, 0.05);
}

/* line 220, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* line 224, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach:hover .product-card__img {
  transform: scale(1.08);
}

/* line 230, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__image-box {
  height: 32rem;
  aspect-ratio: unset;
}

/* line 235, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__img {
  object-fit: cover;
  object-position: center center;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #f3f4f6;
  transition: transform 0.5s ease;
}

/* line 246, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 3rem;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* line 259, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__badge svg {
  width: 1.4rem;
  height: 1.4rem;
}

/* line 265, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__content {
  padding: 2.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* line 272, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__name {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

/* line 279, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__rating {
  gap: 0.8rem;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 1.6rem;
  flex-shrink: unset;
}

/* line 286, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__rating .stars {
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

/* line 291, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__rating span {
  color: #888;
  font-weight: 500;
}

/* line 297, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__actions {
  gap: 1.2rem;
  margin-top: auto;
}

/* line 302, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__quick-view {
  gap: 0.6rem;
}

/* line 305, app/assets/stylesheets/components/_product-card.scss */
.product-card--coach .product-card__quick-view svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

/* line 313, app/assets/stylesheets/components/_product-card.scss */
.product-card__excerpt {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
  flex: 1;
}

/* line 321, app/assets/stylesheets/components/_product-card.scss */
.product-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.6rem;
  background: #f8f9fa;
  border-radius: 1.2rem;
}

/* line 331, app/assets/stylesheets/components/_product-card.scss */
.product-card__stat {
  text-align: center;
}

/* line 334, app/assets/stylesheets/components/_product-card.scss */
.product-card__stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-header);
}

/* line 341, app/assets/stylesheets/components/_product-card.scss */
.product-card__stat-label {
  font-size: 1.1rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 6, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* line 17, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal.active {
  opacity: 1;
  visibility: visible;
}

/* line 21, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal.active .paddle-modal__content {
  transform: scale(1);
}

/* line 26, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

/* line 33, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__content {
  position: relative;
  width: 90%;
  max-width: 90rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* line 46, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4rem;
  height: 4rem;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  font-size: 2.4rem;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* line 64, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__close:hover {
  background: #e0e0e0;
  color: #333;
}

/* line 70, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  padding: 2.4rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 70, app/assets/stylesheets/components/_paddle-card.scss */
  .paddle-modal__body {
    grid-template-columns: 1fr;
  }
}

/* line 81, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__image {
  background: #f8f9fa;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* line 89, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__image img {
  max-width: 100%;
  max-height: 30rem;
  object-fit: contain;
}

/* line 96, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__info {
  display: flex;
  flex-direction: column;
}

/* line 101, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__header {
  margin-bottom: 1.2rem;
  padding-right: 4rem;
}

/* line 106, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* line 118, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__name {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text-header);
  line-height: 1.2;
}

/* line 125, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  margin-top: 0.6rem;
}

/* line 133, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1.6rem;
}

/* line 139, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__rating .paddle-modal__star {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--color-primary);
}

/* line 145, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__rating span {
  font-size: 1.3rem;
  color: #666;
  margin-left: 0.6rem;
}

/* line 152, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__section {
  margin-bottom: 1.6rem;
}

/* line 155, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__section:last-of-type {
  margin-bottom: 0;
}

/* line 159, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-header);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 168, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__section p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
}

/* line 175, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 175, app/assets/stylesheets/components/_paddle-card.scss */
  .paddle-modal__specs-list {
    grid-template-columns: 1fr;
  }
}

/* line 187, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__specs-list li {
  font-size: 1.3rem;
  color: #555;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

/* line 193, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__specs-list li strong {
  color: var(--color-text-header);
}

/* line 199, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__footer {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.6rem;
  border-top: 1px solid #eee;
}

/* line 206, app/assets/stylesheets/components/_paddle-card.scss */
.paddle-modal__footer .btn {
  flex: 1;
  text-align: center;
  padding: 1rem 1.6rem;
}

/* line 215, app/assets/stylesheets/components/_paddle-card.scss */
body.paddle-modal-open {
  overflow: hidden;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 6, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* line 17, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal.active {
  opacity: 1;
  visibility: visible;
}

/* line 21, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal.active .ball-modal__content {
  transform: scale(1);
}

/* line 26, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

/* line 33, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__content {
  position: relative;
  width: 90%;
  max-width: 85rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* line 46, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4rem;
  height: 4rem;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  font-size: 2.4rem;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* line 64, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__close:hover {
  background: #e0e0e0;
  color: #333;
}

/* line 70, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  padding: 2.4rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 70, app/assets/stylesheets/components/_ball-card.scss */
  .ball-modal__body {
    grid-template-columns: 1fr;
  }
}

/* line 81, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__image {
  background: #f8f9fa;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* line 90, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__img-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 98, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__img {
  max-width: 100%;
  max-height: 28rem;
  object-fit: contain;
}

/* line 104, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__info {
  display: flex;
  flex-direction: column;
}

/* line 109, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__header {
  margin-bottom: 1.2rem;
  padding-right: 4rem;
}

/* line 114, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* line 126, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-header);
  line-height: 1.2;
}

/* line 133, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  margin-top: 0.6rem;
}

/* line 141, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1.4rem;
}

/* line 147, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__rating .ball-modal__star {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--color-primary);
}

/* line 153, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__rating span {
  font-size: 1.3rem;
  color: #666;
  margin-left: 0.6rem;
}

/* line 160, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__colors {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.8rem;
}

/* line 170, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__colors-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-header);
  white-space: nowrap;
}

/* line 177, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__color-options {
  display: flex;
  gap: 0.6rem;
}

/* line 182, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__color {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 2px solid transparent;
  background-color: var(--ball-color, #ccc);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* line 193, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__color:hover {
  transform: scale(1.15);
}

/* line 197, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__color.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
}

/* line 203, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__section {
  margin-bottom: 1.4rem;
}

/* line 206, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__section:last-of-type {
  margin-bottom: 0;
}

/* line 210, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-header);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 219, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__section p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
}

/* line 226, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 226, app/assets/stylesheets/components/_ball-card.scss */
  .ball-modal__features-list {
    grid-template-columns: 1fr;
  }
}

/* line 238, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__features-list li {
  font-size: 1.3rem;
  color: #555;
  padding: 0.4rem 0;
  padding-left: 1.8rem;
  position: relative;
}

/* line 245, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* line 255, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__footer {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.6rem;
  border-top: 1px solid #eee;
}

/* line 262, app/assets/stylesheets/components/_ball-card.scss */
.ball-modal__footer .btn {
  flex: 1;
  text-align: center;
  padding: 1rem 1.6rem;
}

/* line 271, app/assets/stylesheets/components/_ball-card.scss */
body.ball-modal-open {
  overflow: hidden;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 2, app/assets/stylesheets/components/_tag.scss */
.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  border-radius: 100rem;
  font-weight: 600;
  align-self: flex-start;
  /* This will override the container's align-items for this specific item */
}

/* line 11, app/assets/stylesheets/components/_tag.scss */
.tag--indoor {
  background-color: var(--color-tertiary-light);
}

/* line 15, app/assets/stylesheets/components/_tag.scss */
.tag--outdoor {
  background-color: var(--color-secondary-light);
}

/* line 1, app/assets/stylesheets/components/general/_flash.scss */
.flash {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.5rem;
  text-align: center;
}

/* line 8, app/assets/stylesheets/components/general/_flash.scss */
.flash.alert {
  background: #fdd200;
}

/* line 12, app/assets/stylesheets/components/general/_flash.scss */
.flash.error, .flash.registration_error {
  background: #e4361b;
}

/* line 17, app/assets/stylesheets/components/general/_flash.scss */
.flash.notice, .flash.success {
  background: #1bc16d;
}

/* line 22, app/assets/stylesheets/components/general/_flash.scss */
.flash.form-error {
  margin-bottom: 2.5rem;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/layout/_footer.scss */
.footer {
  background-color: #fafafa;
  color: var(--color-text-body);
  border-top: 1px solid #e8e8e8;
  padding: 8rem 6.4rem 4rem;
  font-family: var(--font-family-sans);
  font-size: 1.5rem;
}

/* line 14, app/assets/stylesheets/layout/_footer.scss */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6.4rem;
  margin-bottom: 6.4rem;
}

/* line 22, app/assets/stylesheets/layout/_footer.scss */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* line 28, app/assets/stylesheets/layout/_footer.scss */
.footer__logo-link {
  display: inline-block;
}

/* line 32, app/assets/stylesheets/layout/_footer.scss */
.footer__logo {
  width: 12rem;
  height: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

/* line 39, app/assets/stylesheets/layout/_footer.scss */
.footer__logo:hover {
  opacity: 1;
}

/* line 44, app/assets/stylesheets/layout/_footer.scss */
.footer__tagline {
  color: var(--color-text-muted);
  font-size: 1.4rem;
  line-height: 1.7;
  max-width: 22rem;
}

/* line 52, app/assets/stylesheets/layout/_footer.scss */
.footer__newsletter {
  width: 48rem;
  max-width: 52rem;
  flex-shrink: 0;
}

/* line 58, app/assets/stylesheets/layout/_footer.scss */
.footer__newsletter-title {
  color: var(--color-text-header);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* line 65, app/assets/stylesheets/layout/_footer.scss */
.footer__newsletter-subtitle {
  color: var(--color-text-muted);
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

/* line 72, app/assets/stylesheets/layout/_footer.scss */
.footer__newsletter-form {
  display: flex;
}

/* line 76, app/assets/stylesheets/layout/_footer.scss */
.footer__newsletter-input {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-right: none;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  color: var(--color-text-header);
  font-size: 1.4rem;
  font-family: var(--font-family-sans);
  padding: 1.1rem 1.4rem;
  outline: none;
  transition: border-color 0.2s ease;
}

/* line 90, app/assets/stylesheets/layout/_footer.scss */
.footer__newsletter-input::placeholder {
  color: #bbb;
}

/* line 94, app/assets/stylesheets/layout/_footer.scss */
.footer__newsletter-input:focus {
  border-color: var(--color-primary);
}

/* line 99, app/assets/stylesheets/layout/_footer.scss */
.footer__newsletter-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: 1.1rem 2.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--font-family-sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}

/* line 112, app/assets/stylesheets/layout/_footer.scss */
.footer__newsletter-btn:hover {
  background-color: var(--color-primary-dark);
}

/* line 118, app/assets/stylesheets/layout/_footer.scss */
.footer__hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin-bottom: 5.6rem;
}

/* line 125, app/assets/stylesheets/layout/_footer.scss */
.footer__links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.2rem;
  margin-bottom: 5.6rem;
}

/* line 132, app/assets/stylesheets/layout/_footer.scss */
.footer__col-heading {
  color: var(--color-text-header);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}

/* line 141, app/assets/stylesheets/layout/_footer.scss */
.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* line 148, app/assets/stylesheets/layout/_footer.scss */
.footer__address {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  font-style: normal;
}

/* line 155, app/assets/stylesheets/layout/_footer.scss */
.footer__link:link,
.footer__link:visited {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

/* line 163, app/assets/stylesheets/layout/_footer.scss */
.footer__link:hover,
.footer__link:active {
  color: var(--color-primary);
}

/* line 168, app/assets/stylesheets/layout/_footer.scss */
.footer__link--email:link,
.footer__link--email:visited {
  word-break: break-all;
}

/* line 174, app/assets/stylesheets/layout/_footer.scss */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
}

/* line 181, app/assets/stylesheets/layout/_footer.scss */
.footer__copyright {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* line 187, app/assets/stylesheets/layout/_footer.scss */
.footer__social {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* line 193, app/assets/stylesheets/layout/_footer.scss */
.footer__social-link {
  color: #bbb;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

/* line 199, app/assets/stylesheets/layout/_footer.scss */
.footer__social-link ion-icon {
  width: 2.2rem;
  height: 2.2rem;
}

/* line 204, app/assets/stylesheets/layout/_footer.scss */
.footer__social-link:hover {
  color: var(--color-primary);
}

@media screen and (max-width: 75em) {
  /* line 211, app/assets/stylesheets/layout/_footer.scss */
  .footer {
    padding: 6.4rem 4.8rem 3.2rem;
  }
  /* line 215, app/assets/stylesheets/layout/_footer.scss */
  .footer__links {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 4.8rem;
  }
}

@media screen and (max-width: 59em) {
  /* line 222, app/assets/stylesheets/layout/_footer.scss */
  .footer__top {
    flex-direction: column;
    gap: 4rem;
  }
  /* line 227, app/assets/stylesheets/layout/_footer.scss */
  .footer__newsletter {
    max-width: 100%;
  }
  /* line 231, app/assets/stylesheets/layout/_footer.scss */
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 44em) {
  /* line 237, app/assets/stylesheets/layout/_footer.scss */
  .footer {
    padding: 4.8rem 2.4rem 2.4rem;
  }
  /* line 241, app/assets/stylesheets/layout/_footer.scss */
  .footer__brand {
    display: none;
  }
  /* line 245, app/assets/stylesheets/layout/_footer.scss */
  .footer__newsletter {
    width: 100%;
  }
  /* line 249, app/assets/stylesheets/layout/_footer.scss */
  .footer__top {
    margin-bottom: 4rem;
  }
  /* line 253, app/assets/stylesheets/layout/_footer.scss */
  .footer__newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 258, app/assets/stylesheets/layout/_footer.scss */
  .footer__newsletter-input {
    border-right: 1px solid #d8d8d8;
    border-radius: var(--border-radius-sm);
    width: 100%;
  }
  /* line 264, app/assets/stylesheets/layout/_footer.scss */
  .footer__newsletter-btn {
    border-radius: var(--border-radius-sm);
    width: 100%;
    padding: 1.3rem 2.2rem;
  }
  /* line 270, app/assets/stylesheets/layout/_footer.scss */
  .footer-support-strip {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    padding: 24px 20px !important;
  }
  /* line 277, app/assets/stylesheets/layout/_footer.scss */
  .footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
  }
  /* line 282, app/assets/stylesheets/layout/_footer.scss */
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/**************************/
/* GENRAL GRID NEW COMPONENTS */
/**************************/
/* line 7, app/assets/stylesheets/layout/_grid.scss */
.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

/* line 14, app/assets/stylesheets/layout/_grid.scss */
.conrainer .container-query {
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 14, app/assets/stylesheets/layout/_grid.scss */
  .conrainer .container-query {
    padding: 0;
  }
}

/* line 25, app/assets/stylesheets/layout/_grid.scss */
.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 75em) {
  /* line 25, app/assets/stylesheets/layout/_grid.scss */
  .grid {
    column-gap: 4.8rem;
    row-gap: 6.4rem;
  }
}

@media only screen and (max-width: 59em) {
  /* line 25, app/assets/stylesheets/layout/_grid.scss */
  .grid {
    column-gap: 3.6rem;
    row-gap: 4.8rem;
  }
}

@media only screen and (max-width: 34em) {
  /* line 25, app/assets/stylesheets/layout/_grid.scss */
  .grid {
    row-gap: 4.8rem;
  }
}

/* line 60, app/assets/stylesheets/layout/_grid.scss */
.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

/* line 64, app/assets/stylesheets/layout/_grid.scss */
.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 64, app/assets/stylesheets/layout/_grid.scss */
  .grid--2-cols {
    grid-template-columns: 1fr;
  }
}

/* line 77, app/assets/stylesheets/layout/_grid.scss */
.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

/* line 81, app/assets/stylesheets/layout/_grid.scss */
.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

/* .grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
} */
/* line 89, app/assets/stylesheets/layout/_grid.scss */
.grid--center-v {
  align-items: center;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/layout/_header.scss */
.header {
  background-color: var(--color-white);
  height: 7rem;
  padding: 0 4.8rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 13, app/assets/stylesheets/layout/_header.scss */
.header__logo {
  height: 4.8rem;
}

/* line 18, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container {
  color: var(--color-text-header);
  font-weight: 500;
  font-size: 1.5rem;
}

/* line 24, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container,
.mega-menu-container * {
  box-sizing: border-box;
}

/* line 29, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container a {
  text-decoration: none;
  color: var(--color-text-header);
  display: inline-block;
}

/* line 35, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* line 41, app/assets/stylesheets/layout/_header.scss */
.mega-menu {
  width: 100%;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: end;
}

/* line 49, app/assets/stylesheets/layout/_header.scss */
.mega-menu > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 56, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container .menu-title:link,
.mega-menu-container .menu-title:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--color-text-header);
  font-weight: 500;
  font-size: 1.5rem;
  padding: 0.8rem 1.4rem;
  transition: color 0.2s ease;
}

/* line 67, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container .menu-title:hover,
.mega-menu-container .menu-title:active {
  color: var(--color-primary);
}

/* line 72, app/assets/stylesheets/layout/_header.scss */
.mega-menu .menu-title {
  position: relative;
}

/* line 76, app/assets/stylesheets/layout/_header.scss */
.mega-menu .menu-title::after {
  content: '';
  height: 0;
  width: 0;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: width 200ms ease, height 200ms ease;
}

/* line 87, app/assets/stylesheets/layout/_header.scss */
.mega-menu ul li:hover > .menu-title::after {
  height: 2px;
  width: 100%;
}

/* line 92, app/assets/stylesheets/layout/_header.scss */
.has-submenu::after {
  content: '+';
  margin-left: -8px;
}

/* line 97, app/assets/stylesheets/layout/_header.scss */
.mega-menu .submenu-container {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 7rem;
  width: 100%;
  transform: translateY(20px);
  transition: all 200ms ease;
}

/* line 116, app/assets/stylesheets/layout/_header.scss */
.mega-menu .has-submenu:hover .submenu-container {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* line 122, app/assets/stylesheets/layout/_header.scss */
.submenu-colem__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* line 127, app/assets/stylesheets/layout/_header.scss */
.submenu-colem__grid-text {
  position: absolute;
  bottom: 0;
  /* Align the text at the bottom of the image */
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  /* Ensures the text is visible on any image */
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  padding: 1.2rem;
  /* Space around the text for better readability */
  box-sizing: border-box;
  /* Ensures padding is included in the width */
  max-width: 100%;
  /* Ensures the text doesn't overflow the image container */
}

/* line 144, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
  grid-template-columns: repeat(3, 1fr);
}

/* line 151, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__image-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 50%;
  /* Adjust this as necessary */
  padding: 0;
}

/* line 160, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__img {
  max-width: 100%;
  /* Ensures the image doesn't exceed the container's width */
  max-height: 100%;
  /* Restricts the image to the container's height */
  width: auto;
  /* Allows for natural width scaling */
  height: auto;
  /* Allows for natural height scaling */
  object-fit: contain;
  /* Ensures the whole image is visible within the box */
  transition: all 0.2s;
}

/* line 168, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__img, .submenu-paddle__img:link, .submenu-paddle__img:visited {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* line 178, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__img:hover {
  cursor: pointer;
}

/* line 182, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__img:active, .submenu-paddle__img:focus {
  outline: none;
}

/* line 189, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__title, .submenu-paddle__title:link, .submenu-paddle__title:visited {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.75px;
  color: var(--color-grey-dark);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 1rem;
}

/* line 204, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__title:hover {
  color: var(--color-primary-dark);
}

/* line 208, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__title:active, .submenu-paddle__title:focus {
  outline: none;
}

/* line 215, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__series, .submenu-paddle__series:link, .submenu-paddle__series:visited {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: var(--color-grey-dark);
  text-decoration: none;
  cursor: pointer;
}

/* line 229, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__series:hover {
  color: var(--color-primary-dark);
}

/* line 233, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__series:active, .submenu-paddle__series:focus {
  outline: none;
}

/* line 246, app/assets/stylesheets/layout/_header.scss */
.submenu {
  background-color: var(--color-white);
  padding: 6.4rem 0;
  width: 100%;
  box-shadow: 0 4px 50px -7px rgba(0, 0, 0, 0.2);
}

/* line 255, app/assets/stylesheets/layout/_header.scss */
.submenu .col-3 ul li {
  padding: 0;
  padding-left: 12px;
  margin: 12px 0;
  position: relative;
}

/* line 262, app/assets/stylesheets/layout/_header.scss */
.submenu .col-3 ul li::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  left: 0;
  background: var(--color-primary);
  transition: all 400ms ease;
}

/* line 272, app/assets/stylesheets/layout/_header.scss */
.submenu .col-3 ul li:hover::before {
  width: 4px;
  background: var(--color-primary-dark);
}

/* line 278, app/assets/stylesheets/layout/_header.scss */
.submenu-service__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.75px;
  margin: 1rem 0;
}

/* line 286, app/assets/stylesheets/layout/_header.scss */
.submenu-service__paragraph {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* line 293, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament {
  display: grid;
  column-gap: 0;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 9.6rem;
}

/* line 300, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__image-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}

/* line 307, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__img {
  max-width: 100%;
  /* Ensures the image doesn't exceed the container's width */
  max-height: 100%;
  /* Restricts the image to the container's height */
  width: auto;
  /* Allows for natural width scaling */
  height: auto;
  /* Allows for natural height scaling */
  object-fit: contain;
  /* Ensures the whole image is visible within the box */
  transition: all 0.2s;
}

/* line 315, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__img, .submenu-tournament__img:link, .submenu-tournament__img:visited {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* line 325, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__img:hover {
  cursor: pointer;
}

/* line 329, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__img:active, .submenu-tournament__img:focus {
  outline: none;
}

/* line 336, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__title, .submenu-tournament__title:link, .submenu-tournament__title:visited {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.75px;
  color: var(--color-grey-dark);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 1rem;
}

/* line 351, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__title:hover {
  color: var(--color-primary-dark);
}

/* line 355, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__title:active, .submenu-tournament__title:focus {
  outline: none;
}

/* line 362, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__series, .submenu-tournament__series:link, .submenu-tournament__series:visited {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: var(--color-grey-dark);
  text-decoration: none;
  cursor: pointer;
}

/* line 376, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__series:hover {
  color: var(--color-primary-dark);
}

/* line 380, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__series:active, .submenu-tournament__series:focus {
  outline: none;
}

/* line 393, app/assets/stylesheets/layout/_header.scss */
.submenu.old-grid {
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

/* line 398, app/assets/stylesheets/layout/_header.scss */
.submenu.old-grid svg {
  height: 42px;
}

/* line 402, app/assets/stylesheets/layout/_header.scss */
.submenu.old-grid .submenu-column {
  padding: 16px;
}

/* line 406, app/assets/stylesheets/layout/_header.scss */
.submenu.old-grid .submenu-column:hover {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}

/* line 410, app/assets/stylesheets/layout/_header.scss */
.submenu.old-grid .submenu-column:hover svg {
  color: var(--color-primary);
}

/* line 414, app/assets/stylesheets/layout/_header.scss */
.submenu .col-2 {
  display: flex;
}

/* line 418, app/assets/stylesheets/layout/_header.scss */
.submenu .col-2 .left {
  flex: 1;
}

/* line 422, app/assets/stylesheets/layout/_header.scss */
.submenu .col-2 .right {
  flex: 2;
  text-align: right;
}

/* line 427, app/assets/stylesheets/layout/_header.scss */
.submenu .col-2 .right img,
.submenu .col-2 .left img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

/* line 434, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container a.btn {
  background: var(--color-primary);
  border: none;
  color: var(--color-white);
  padding: 8px 32px;
  margin: 8px 0;
  cursor: pointer;
  font-weight: 500;
}

/* line 447, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container .menu-title--cta:link,
.mega-menu-container .menu-title--cta:visited {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--border-radius-sm);
  padding: 0.8rem 1.6rem;
  margin-left: 0.8rem;
  transition: background-color 0.25s ease;
}

/* line 457, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container .menu-title--cta:hover,
.mega-menu-container .menu-title--cta:active {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

/* line 463, app/assets/stylesheets/layout/_header.scss */
.mega-menu .menu-title--cta::after {
  display: none;
}

/* line 468, app/assets/stylesheets/layout/_header.scss */
.mega-menu__item--search {
  display: flex;
  align-items: center;
}

/* line 473, app/assets/stylesheets/layout/_header.scss */
.nav-search {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius-sm);
  padding: 0.65rem 1.2rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 483, app/assets/stylesheets/layout/_header.scss */
.nav-search:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgba), 0.1);
}

/* line 489, app/assets/stylesheets/layout/_header.scss */
.nav-search__icon {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  pointer-events: none;
}

/* line 497, app/assets/stylesheets/layout/_header.scss */
.nav-search__input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.4rem;
  font-family: var(--font-family-sans);
  color: var(--color-text-header);
  width: 15rem;
}

/* line 506, app/assets/stylesheets/layout/_header.scss */
.nav-search__input::placeholder {
  color: #bbb;
}

/* line 510, app/assets/stylesheets/layout/_header.scss */
.nav-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* line 517, app/assets/stylesheets/layout/_header.scss */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  height: 7rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--color-white);
  z-index: 99999;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

/* line 529, app/assets/stylesheets/layout/_header.scss */
.mega-menu-mobile {
  display: none;
}

/* line 535, app/assets/stylesheets/layout/_header.scss */
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

/* line 542, app/assets/stylesheets/layout/_header.scss */
.main-nav-link:link, .main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--color-grey-dark);
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

/* line 553, app/assets/stylesheets/layout/_header.scss */
.main-nav-link:hover, .main-nav-link:active {
  color: var(--color-primary-dark);
}

/* line 558, app/assets/stylesheets/layout/_header.scss */
.main-nav-link.main-nav-cta:link, .main-nav-link.main-nav-cta:visited {
  padding: 1.2rem 1.4rem;
  border-radius: var(--border-radius-sm);
  color: var(--color-white);
  background-color: var(--color-primary);
}

/* line 566, app/assets/stylesheets/layout/_header.scss */
.main-nav-link.main-nav-cta:hover, .main-nav-link.main-nav-cta:active {
  background-color: var(--color-primary-dark);
}

@media screen and (max-width: 75em) {
  /* line 574, app/assets/stylesheets/layout/_header.scss */
  .header,
.mega-menu-container {
    padding: 0 3.2rem;
  }
  /* line 579, app/assets/stylesheets/layout/_header.scss */
  .submenu-paddle {
    display: grid;
    column-gap: 4.8rem;
    row-gap: 6.4rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 4.8rem;
  }
  /* line 587, app/assets/stylesheets/layout/_header.scss */
  .submenu {
    box-shadow: unset;
    padding-top: 6.4rem;
    margin-top: 0;
  }
}

@media screen and (max-width: 59em) {
  /* line 596, app/assets/stylesheets/layout/_header.scss */
  .mega-menu {
    display: none;
  }
  /* line 600, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile {
    padding: 0 3.2rem;
  }
  /* line 604, app/assets/stylesheets/layout/_header.scss */
  .header__logo {
    height: 3.5rem;
  }
  /* line 608, app/assets/stylesheets/layout/_header.scss */
  .menu-title {
    font-size: 3rem;
  }
  /* line 612, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile {
    display: block;
    display: flex;
  }
  /* line 618, app/assets/stylesheets/layout/_header.scss */
  .btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;
    display: none;
    z-index: 999;
  }
  /* line 627, app/assets/stylesheets/layout/_header.scss */
  .icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: var(--color-primary);
  }
  /* line 633, app/assets/stylesheets/layout/_header.scss */
  .menu-header .icons .menu-icon,
.menu-header .icons .close-icon {
    height: 4rem;
    width: 4rem;
    color: var(--color-primary);
    position: absolute;
    top: -2rem;
    right: 0;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    z-index: 999999;
    transition: all 200ms ease;
  }
  /* line 649, app/assets/stylesheets/layout/_header.scss */
  .menu-header .icons .menu-icon.active,
.menu-header .icons .close-icon.active {
    opacity: 1;
    pointer-events: auto;
  }
  /* line 655, app/assets/stylesheets/layout/_header.scss */
  .menu-header .icons {
    position: relative;
  }
  /* line 659, app/assets/stylesheets/layout/_header.scss */
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* This centers the children vertically */
    box-shadow: 0 4px 40px -7px rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    top: 0;
    padding: 0.8rem 1.6rem;
    height: 7rem;
  }
  /* line 675, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile .submenu-container {
    height: 0;
    overflow: hidden;
    transition: all 500ms ease;
  }
  /* line 681, app/assets/stylesheets/layout/_header.scss */
  .has-submenu {
    position: relative;
  }
  /* line 685, app/assets/stylesheets/layout/_header.scss */
  .has-submenu::after {
    content: '+';
    position: absolute;
    top: 1.2rem;
    right: 0.8rem;
    font-size: 3rem;
  }
  /* line 693, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile > ul > li {
    border-bottom: 1px solid #eee;
  }
  /* line 697, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile > ul {
    position: fixed;
    top: 7rem;
    left: 0;
    background-color: var(--color-white);
    transform: translateX(-130%);
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    width: 100%;
    transition: all 300ms ease;
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 4.8rem;
    padding: 4.8rem 3.2rem;
    z-index: 100000;
    pointer-events: auto;
  }
  /* line 718, app/assets/stylesheets/layout/_header.scss */
  .menu-title.mobile-link:link,
.menu-title.mobile-link:visited {
    font-size: 3rem;
  }
  /* line 723, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile > ul.active {
    transform: translateX(0);
  }
  /* line 727, app/assets/stylesheets/layout/_header.scss */
  .submenu {
    box-shadow: unset;
    padding-top: 4.8rem;
    margin-top: 0;
  }
  /* line 733, app/assets/stylesheets/layout/_header.scss */
  .submenu-paddle {
    display: grid;
    column-gap: 3.2rem;
    row-gap: 4.8rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 4.8rem;
  }
  /* line 741, app/assets/stylesheets/layout/_header.scss */
  .submenu .col-3 {
    flex-direction: column;
  }
  /* line 745, app/assets/stylesheets/layout/_header.scss */
  .submenu .col-3 img {
    height: 160px;
    object-fit: cover;
  }
  /* line 750, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile h4 {
    margin: 8px 24px;
    font-size: 14px;
  }
  /* line 755, app/assets/stylesheets/layout/_header.scss */
  .submenu h3 {
    font-size: 15px;
    font-weight: normal;
    margin: 0;
    margin-bottom: 1.6rem;
    padding: 0 1.6rem;
  }
  /* line 763, app/assets/stylesheets/layout/_header.scss */
  .submenu .col-2 {
    padding: 0 1.6rem;
  }
}

@media screen and (max-width: 44em) {
  /* line 770, app/assets/stylesheets/layout/_header.scss */
  .submenu {
    box-shadow: unset;
    padding-top: 4.8rem;
    margin-top: 0;
  }
  /* line 776, app/assets/stylesheets/layout/_header.scss */
  .submenu-paddle {
    display: grid;
    column-gap: 3.2rem;
    row-gap: 4.8rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4.8rem;
  }
}

@media screen and (max-width: 34em) {
  /* line 787, app/assets/stylesheets/layout/_header.scss */
  .submenu {
    box-shadow: unset;
    padding-top: 4.8rem;
    margin-top: 0;
  }
  /* line 793, app/assets/stylesheets/layout/_header.scss */
  .submenu-paddle {
    display: grid;
    column-gap: 3.2rem;
    row-gap: 4.8rem;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 4.8rem;
  }
  /* line 801, app/assets/stylesheets/layout/_header.scss */
  .submenu-paddle__image-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 34%;
    /* Adjust this as necessary */
    padding: 0;
  }
  /* line 810, app/assets/stylesheets/layout/_header.scss */
  .submenu-paddle__img {
    max-width: 100%;
    /* Ensures the image doesn't exceed the container's width */
    max-height: 100%;
    /* Restricts the image to the container's height */
    width: auto;
    /* Allows for natural width scaling */
    height: auto;
    /* Allows for natural height scaling */
    object-fit: contain;
    /* Ensures the whole image is visible within the box */
    transition: all 0.2s;
  }
}

/* line 822, app/assets/stylesheets/layout/_header.scss */
.slider {
  position: relative;
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 825, app/assets/stylesheets/layout/_header.scss */
.slider__logo-box {
  position: absolute;
  top: 3rem;
  left: 4rem;
  z-index: 9;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* line 834, app/assets/stylesheets/layout/_header.scss */
.slider__logo-box:hover {
  transform: translateY(-5px);
  /* Move up slightly on hover */
}

/* line 838, app/assets/stylesheets/layout/_header.scss */
.slider__logo {
  height: 8rem;
}

/* line 840, app/assets/stylesheets/layout/_header.scss */
.slider__logo-link:hover .slider__logo {
  transform: translateY(-5px);
  /* Move up slightly on hover */
}

/* line 845, app/assets/stylesheets/layout/_header.scss */
.slider__text-box {
  position: absolute;
  top: 39%;
  left: 17%;
  text-align: left;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 44em) {
  /* line 845, app/assets/stylesheets/layout/_header.scss */
  .slider__text-box {
    left: 12%;
  }
}

@media only screen and (max-width: 34em) {
  /* line 845, app/assets/stylesheets/layout/_header.scss */
  .slider__text-box {
    left: 16%;
  }
}

/* line 877, app/assets/stylesheets/layout/_header.scss */
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

/* line 884, app/assets/stylesheets/layout/_header.scss */
.main-nav-link:link, .main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--color-grey-dark);
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

/* line 895, app/assets/stylesheets/layout/_header.scss */
.main-nav-link:hover, .main-nav-link:active {
  color: var(--color-primary-dark);
}

/* line 900, app/assets/stylesheets/layout/_header.scss */
.main-nav-link.main-nav-cta:link, .main-nav-link.main-nav-cta:visited {
  padding: 1.2rem 1.4rem;
  border-radius: var(--border-radius-sm);
  color: var(--color-white);
  background-color: var(--color-primary);
}

/* line 908, app/assets/stylesheets/layout/_header.scss */
.main-nav-link.main-nav-cta:hover, .main-nav-link.main-nav-cta:active {
  background-color: var(--color-primary-dark);
}

/* line 917, app/assets/stylesheets/layout/_header.scss */
.user-dropdown {
  position: relative;
}

/* line 920, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ff5a00;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 934, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__trigger:hover {
  background: #e65100;
}

/* line 939, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* line 946, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__avatar svg {
  width: 18px;
  height: 18px;
}

/* line 952, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 959, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

/* line 965, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: max-content;
  min-width: 180px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  padding: 8px 0;
}

/* line 982, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__header {
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 4px;
}

/* line 988, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__email {
  font-size: 13px;
  color: #6b7280;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 996, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  width: 100%;
}

/* line 1008, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__item svg {
  width: 18px;
  height: 18px;
  color: #6b7280;
  flex-shrink: 0;
}

/* line 1015, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__item:hover {
  background: #fff5f0;
  color: #ff5a00;
}

/* line 1019, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__item:hover svg {
  color: #ff5a00;
}

/* line 1024, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__item--logout {
  color: #dc2626;
}

/* line 1027, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__item--logout svg {
  color: #dc2626;
}

/* line 1031, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__item--logout:hover {
  background: #fef2f2;
  color: #dc2626;
}

/* line 1035, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__item--logout:hover svg {
  color: #dc2626;
}

/* line 1042, app/assets/stylesheets/layout/_header.scss */
.user-dropdown__divider {
  height: 1px;
  background: #f3f4f6;
  margin: 4px 0;
}

/* line 1049, app/assets/stylesheets/layout/_header.scss */
.user-dropdown:hover .user-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* line 1055, app/assets/stylesheets/layout/_header.scss */
.user-dropdown:hover .user-dropdown__arrow {
  transform: rotate(180deg);
}

@media screen and (max-width: 59em) {
  /* line 1063, app/assets/stylesheets/layout/_header.scss */
  .user-dropdown__trigger {
    padding: 8px 12px;
  }
  /* line 1067, app/assets/stylesheets/layout/_header.scss */
  .user-dropdown__name {
    display: none;
  }
  /* line 1071, app/assets/stylesheets/layout/_header.scss */
  .user-dropdown__menu {
    right: -10px;
  }
}

/* line 1077, app/assets/stylesheets/layout/_header.scss */
.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
}

/* line 1086, app/assets/stylesheets/layout/_header.scss */
.mobile-user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ff5a00;
  border-radius: 50%;
}

/* line 1095, app/assets/stylesheets/layout/_header.scss */
.mobile-user-avatar svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* line 1102, app/assets/stylesheets/layout/_header.scss */
.mobile-user-email {
  font-size: 14px;
  color: #6b7280;
  word-break: break-all;
}

/* line 1108, app/assets/stylesheets/layout/_header.scss */
.mobile-user-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* line 1113, app/assets/stylesheets/layout/_header.scss */
.mobile-user-links a {
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
}

/* line 1120, app/assets/stylesheets/layout/_header.scss */
.mobile-user-links a:hover {
  color: #ff5a00;
}

/* line 1124, app/assets/stylesheets/layout/_header.scss */
.mobile-user-links a.menu-title--logout {
  color: #dc2626;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 6, app/assets/stylesheets/layout/_slider.scss */
.slider {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8rem), 0 100%);
}

/* line 11, app/assets/stylesheets/layout/_slider.scss */
.slideshow-wrapper {
  width: 100%;
  height: 88vh;
  position: relative;
  overflow: hidden;
}

/* line 18, app/assets/stylesheets/layout/_slider.scss */
.slideshow {
  width: 100%;
  height: 100%;
  position: relative;
}

/* line 25, app/assets/stylesheets/layout/_slider.scss */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

/* line 34, app/assets/stylesheets/layout/_slider.scss */
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* line 42, app/assets/stylesheets/layout/_slider.scss */
.slide:nth-child(1) {
  background: linear-gradient(to right, rgba(255, 90, 0, 0.9) 0%, rgba(255, 90, 0, 0.5) 45%, transparent 72%), url(/assets/slides/hero_4@2x-80-a74954e5b0e02567e253c02f4f549efbab57103e9275e8cd6f2f718b3e0d7b5b.jpg) center/cover no-repeat;
}

/* line 47, app/assets/stylesheets/layout/_slider.scss */
.slide:nth-child(2) {
  background: linear-gradient(to right, rgba(255, 90, 0, 0.9) 0%, rgba(255, 90, 0, 0.5) 45%, transparent 72%), url(/assets/slides/hero_3@2x-80-ba04c21bca2f6b2c15672947a314e40a2ad2fd1beca1f9f4b47dd505d1e7c96b.jpg) center/cover no-repeat;
}

/* line 52, app/assets/stylesheets/layout/_slider.scss */
.slide:nth-child(3) {
  background: linear-gradient(to right, rgba(255, 90, 0, 0.9) 0%, rgba(255, 90, 0, 0.5) 45%, transparent 72%), url(/assets/slides/hero_2@2x-80-9877008a6204944b0a3657b6b713eb7f50d1832078bdb96bb11fdbc753c09df9.jpg) center/cover no-repeat;
}

/* line 57, app/assets/stylesheets/layout/_slider.scss */
.slide:nth-child(4) {
  background: linear-gradient(to right, rgba(255, 90, 0, 0.9) 0%, rgba(255, 90, 0, 0.5) 45%, transparent 72%), url(/assets/slides/hero_1@2x-80-a740926aa8e32d47c17b87055998c0422dcbb6a1453e8e0e3382b529372c1cf2.jpg) center/cover no-repeat;
}

/* line 64, app/assets/stylesheets/layout/_slider.scss */
.slider__text-box {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 58rem;
  z-index: 2;
}

/* line 74, app/assets/stylesheets/layout/_slider.scss */
.control {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/* line 92, app/assets/stylesheets/layout/_slider.scss */
.control:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-50%) scale(1.08);
}

/* line 99, app/assets/stylesheets/layout/_slider.scss */
.slideshow-left-arrow {
  left: 3.2rem;
}

/* line 100, app/assets/stylesheets/layout/_slider.scss */
.slideshow-right-arrow {
  right: 3.2rem;
}

/* line 102, app/assets/stylesheets/layout/_slider.scss */
.slideshow__icon {
  width: 2.2rem;
  height: 2.2rem;
  color: #fff;
}

/* line 109, app/assets/stylesheets/layout/_slider.scss */
.slide-indicators {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 10;
}

/* line 120, app/assets/stylesheets/layout/_slider.scss */
.slide-indicator {
  display: block;
  width: 2.4rem;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease;
}

/* line 131, app/assets/stylesheets/layout/_slider.scss */
.slide-indicator.active {
  width: 4.8rem;
  background: #fff;
}

/**************************/
/* BELOW 944px (Phones) (max-width: 34em) */
/**************************/
/**************************/
/* BELOW 704px (Small Tablets) (max-width: 44em) */
/**************************/
/**************************/
/* BELOW 944px (Portrait Tablets) (max-width: 59em) */
/**************************/
@media only screen and (max-width: 59em) {
  /* line 139, app/assets/stylesheets/layout/_slider.scss */
  .slideshow-wrapper {
    height: 75vh;
  }
  /* line 140, app/assets/stylesheets/layout/_slider.scss */
  .slider__text-box {
    left: 6%;
  }
  /* line 141, app/assets/stylesheets/layout/_slider.scss */
  .control {
    width: 4.2rem;
    height: 4.2rem;
  }
  /* line 142, app/assets/stylesheets/layout/_slider.scss */
  .slideshow-left-arrow {
    left: 2rem;
  }
  /* line 143, app/assets/stylesheets/layout/_slider.scss */
  .slideshow-right-arrow {
    right: 2rem;
  }
}

/**************************/
/* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
/**************************/
/**************************/
/* BELOW 1344px (Smaller desktops) (max-width: 84em) */
/**************************/
/**************************/
/* BELOW 944px (Phones) (max-width: 34em) */
/**************************/
/**************************/
/* BELOW 704px (Small Tablets) (max-width: 44em) */
/**************************/
@media only screen and (max-width: 44em) {
  /* line 147, app/assets/stylesheets/layout/_slider.scss */
  .slideshow-wrapper {
    height: 65vh;
  }
}

/**************************/
/* BELOW 944px (Portrait Tablets) (max-width: 59em) */
/**************************/
/**************************/
/* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
/**************************/
/**************************/
/* BELOW 1344px (Smaller desktops) (max-width: 84em) */
/**************************/
/**************************/
/* BELOW 944px (Phones) (max-width: 34em) */
/**************************/
@media only screen and (max-width: 34em) {
  /* line 151, app/assets/stylesheets/layout/_slider.scss */
  .slideshow-wrapper {
    height: 55vh;
  }
  /* line 152, app/assets/stylesheets/layout/_slider.scss */
  .slider__text-box {
    left: 5%;
    max-width: 85%;
  }
  /* line 153, app/assets/stylesheets/layout/_slider.scss */
  .control {
    width: 3.6rem;
    height: 3.6rem;
  }
  /* line 154, app/assets/stylesheets/layout/_slider.scss */
  .slideshow-left-arrow {
    left: 1.2rem;
  }
  /* line 155, app/assets/stylesheets/layout/_slider.scss */
  .slideshow-right-arrow {
    right: 1.2rem;
  }
}

/**************************/
/* BELOW 704px (Small Tablets) (max-width: 44em) */
/**************************/
/**************************/
/* BELOW 944px (Portrait Tablets) (max-width: 59em) */
/**************************/
/**************************/
/* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
/**************************/
/**************************/
/* BELOW 1344px (Smaller desktops) (max-width: 84em) */
/**************************/
/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/layout/_navigation.scss */
.navigation__checkbox {
  display: none;
}

/* line 8, app/assets/stylesheets/layout/_navigation.scss */
.navigation__button {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  position: fixed;
  top: 6rem;
  right: 6rem;
  background-color: var(--color-white);
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(var(--color-black-shadow), 0.1);
  text-align: center;
  cursor: pointer;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 8, app/assets/stylesheets/layout/_navigation.scss */
  .navigation__button {
    top: 4rem;
    right: 4rem;
  }
}

@media only screen and (max-width: 34em) {
  /* line 8, app/assets/stylesheets/layout/_navigation.scss */
  .navigation__button {
    top: 3rem;
    right: 3rem;
  }
}

/* line 36, app/assets/stylesheets/layout/_navigation.scss */
.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: linear-gradient(var(--color-primary), var(--color-primary-dark));
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 36, app/assets/stylesheets/layout/_navigation.scss */
  .navigation__background {
    top: 4.5rem;
    right: 4.5rem;
  }
}

@media only screen and (max-width: 34em) {
  /* line 36, app/assets/stylesheets/layout/_navigation.scss */
  .navigation__background {
    top: 3.5rem;
    right: 3.5rem;
  }
}

/* line 67, app/assets/stylesheets/layout/_navigation.scss */
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: -25%;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 80, app/assets/stylesheets/layout/_navigation.scss */
.navigation__list {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}

/* line 93, app/assets/stylesheets/layout/_navigation.scss */
.navigation__item {
  margin: 1rem;
}

/* line 98, app/assets/stylesheets/layout/_navigation.scss */
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, var(--color-white) 50%);
  background-size: 250%;
  transition: all 0.4s;
}

/* line 120, app/assets/stylesheets/layout/_navigation.scss */
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: var(--color-primary);
  transform: translateX(1rem);
}

/* line 129, app/assets/stylesheets/layout/_navigation.scss */
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}

/* line 133, app/assets/stylesheets/layout/_navigation.scss */
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
}

/* line 139, app/assets/stylesheets/layout/_navigation.scss */
.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}

/* line 142, app/assets/stylesheets/layout/_navigation.scss */
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: var(--color-primary);
  display: inline-block;
}

/* line 154, app/assets/stylesheets/layout/_navigation.scss */
.navigation__icon::before, .navigation__icon::after {
  content: '';
  position: absolute;
  left: 0;
  transition: all 0.2s;
}

/* line 163, app/assets/stylesheets/layout/_navigation.scss */
.navigation__icon::before {
  top: -0.8rem;
}

/* line 167, app/assets/stylesheets/layout/_navigation.scss */
.navigation__icon::after {
  top: 0.8rem;
}

/* line 172, app/assets/stylesheets/layout/_navigation.scss */
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}

/* line 176, app/assets/stylesheets/layout/_navigation.scss */
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}

/* line 180, app/assets/stylesheets/layout/_navigation.scss */
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}

/* line 184, app/assets/stylesheets/layout/_navigation.scss */
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}

/* line 189, app/assets/stylesheets/layout/_navigation.scss */
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/pages/_all-pages.scss */
.hero-bg {
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.92) 0%, rgba(255, 90, 0, 0.7) 50%, rgba(255, 140, 0, 0.5) 100%), url(/assets/hero-background-1e51bfe35da52a81bceebfe974d24e45b4cb97c6231a5ce917c3d2b077b3e671.jpg) center/cover no-repeat;
}

/* line 11, app/assets/stylesheets/pages/_all-pages.scss */
.section-mission {
  background-color: var(--color-grey-light-1);
  padding: 9.6rem 0;
}

/* line 17, app/assets/stylesheets/pages/_all-pages.scss */
.section-courts-and-clubs {
  position: relative;
  padding: calc(9.6rem + 8rem) 0 calc(9.6rem + 8rem);
  margin-top: -8rem;
  clip-path: polygon(0 8rem, 100% 0, 100% calc(100% - 8rem), 0 100%);
  background-image: linear-gradient(to right bottom, rgba(var(--color-primary-light-rgba), 0.95), rgba(var(--color-primary-dark-rgba), 0.95)), url(/assets/nat-4-ff9e26283c93a3d8005bd8159183ac45295e5cf5dddc05f082525f721d8dac74.jpg);
  background-size: cover;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 17, app/assets/stylesheets/pages/_all-pages.scss */
  .section-courts-and-clubs {
    padding: calc(6.4rem + 8rem) 0 calc(6.4rem + 8rem);
  }
}

/* line 36, app/assets/stylesheets/pages/_all-pages.scss */
.section-our-community {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: calc(9.6rem + 8rem) 0 calc(9.6rem + 8rem);
  margin-top: -8rem;
  clip-path: polygon(0 8rem, 100% 0, 100% calc(100% - 8rem), 0 100%);
  background-color: var(--color-grey-light-1);
  width: 100%;
}

/* line 49, app/assets/stylesheets/pages/_all-pages.scss */
.section-sign-in--home {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, var(--color-primary-light), var(--color-primary-dark));
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 49, app/assets/stylesheets/pages/_all-pages.scss */
  .section-sign-in--home {
    padding: 10rem 0;
  }
}

/* line 64, app/assets/stylesheets/pages/_all-pages.scss */
.section-sign-in,
.section-ios-app,
.section-android-app,
.section-tournaments,
.section-sign-up,
.section-help,
.section-blogs,
.section-blog-content,
.section-articles,
.section-article-content,
.section-events,
.section-about,
.section-privacy-policy,
.section-tournament-details,
.section-event-details,
.section-business-partners,
.section-cover-review {
  padding: 15rem 0;
  background-color: var(--color-grey-light-1);
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 64, app/assets/stylesheets/pages/_all-pages.scss */
  .section-sign-in,
.section-ios-app,
.section-android-app,
.section-tournaments,
.section-sign-up,
.section-help,
.section-blogs,
.section-blog-content,
.section-articles,
.section-article-content,
.section-events,
.section-about,
.section-privacy-policy,
.section-tournament-details,
.section-event-details,
.section-business-partners,
.section-cover-review {
    padding: 10rem 0;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_home.scss */
.hide {
  display: none;
}

/* line 16, app/assets/stylesheets/pages/_home.scss */
.home-section {
  position: relative;
  background: #fff;
  padding: calc(9.6rem + 8rem) 0 calc(9.6rem + 8rem);
  margin-top: -8rem;
  clip-path: polygon(0 8rem, 100% 0, 100% calc(100% - 8rem), 0 100%);
}

/* line 23, app/assets/stylesheets/pages/_home.scss */
.home-section--alt {
  background-color: var(--color-grey-light-1);
}

/* line 28, app/assets/stylesheets/pages/_home.scss */
.home-section-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

/* line 34, app/assets/stylesheets/pages/_home.scss */
.home-section-subtitle {
  font-size: 1.6rem;
  color: #999;
  margin-top: 0.8rem;
}

/* line 41, app/assets/stylesheets/pages/_home.scss */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  padding-bottom: 4.8rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 44em) {
  /* line 41, app/assets/stylesheets/pages/_home.scss */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 34em) {
  /* line 41, app/assets/stylesheets/pages/_home.scss */
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/pages/_paddle.scss */
.section-paddle {
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 5, app/assets/stylesheets/pages/_paddle.scss */
.section-paddle-landing {
  padding: 9.6rem 0;
}

/* line 10, app/assets/stylesheets/pages/_paddle.scss */
.section-paddle-index {
  padding: 9.6rem 0;
}

/* line 15, app/assets/stylesheets/pages/_paddle.scss */
.section-paddle-review {
  padding: 9.6rem 0;
}

@media only screen and (max-width: 59em) {
  /* line 4, app/assets/stylesheets/pages/_paddle.scss */
  .section-paddle {
    padding: 38.6rem 0 9.6rem 0;
  }
}

/* line 26, app/assets/stylesheets/pages/_paddle.scss */
.paddle-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem;
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 31, app/assets/stylesheets/pages/_paddle.scss */
.index-page .paddle-container {
  padding: 0 3.2rem;
}

/* line 35, app/assets/stylesheets/pages/_paddle.scss */
.landing-page .paddle-container {
  padding-bottom: 9.6rem;
}

@media only screen and (max-width: 44em) {
  /* line 26, app/assets/stylesheets/pages/_paddle.scss */
  .paddle-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 34em) {
  /* line 26, app/assets/stylesheets/pages/_paddle.scss */
  .paddle-container {
    grid-template-columns: 1fr;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/pages/_ball.scss */
.section-ball {
  padding: 9.6rem 0;
}

/* line 10, app/assets/stylesheets/pages/_ball.scss */
.section-ball-index {
  padding: 9.6rem 0;
}

/* line 16, app/assets/stylesheets/pages/_ball.scss */
.section-ball-reviews {
  padding: 9.6rem 0;
}

/* line 20, app/assets/stylesheets/pages/_ball.scss */
.ball-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.6rem;
  row-gap: 7.4rem;
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 27, app/assets/stylesheets/pages/_ball.scss */
.index-page .ball-container {
  padding: 0;
}

/* line 31, app/assets/stylesheets/pages/_ball.scss */
.landing-page .ball-container {
  padding-bottom: 9.6rem;
}

@media only screen and (max-width: 44em) {
  /* line 20, app/assets/stylesheets/pages/_ball.scss */
  .ball-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 34em) {
  /* line 20, app/assets/stylesheets/pages/_ball.scss */
  .ball-container {
    grid-template-columns: 1fr;
  }
}

/* line 55, app/assets/stylesheets/pages/_ball.scss */
.ball__image-box {
  position: relative;
  padding: 2rem;
  border-radius: 11px;
  border: 1px solid var(--color-grey-light-2);
  margin-bottom: 2rem;
}

/* line 63, app/assets/stylesheets/pages/_ball.scss */
.ball__image-wrapper {
  position: relative;
  overflow: hidden;
}

/* line 68, app/assets/stylesheets/pages/_ball.scss */
.ball__img {
  display: block;
  width: 100%;
  transition: all 0.2s ease;
  /* Use 'ease' for a smooth transition effect */
}

/* line 72, app/assets/stylesheets/pages/_ball.scss */
.ball__img:hover {
  transform: translateY(-1rem);
  /* Adjust the value as needed */
}

/* line 78, app/assets/stylesheets/pages/_ball.scss */
.ball-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}

/* line 83, app/assets/stylesheets/pages/_ball.scss */
.ball-rating__count {
  font-size: 2rem;
  margin-left: 1rem;
}

/* line 87, app/assets/stylesheets/pages/_ball.scss */
.ball-rating__icon {
  height: 2rem;
  width: 2rem;
  fill: var(--color-primary);
}

/* line 96, app/assets/stylesheets/pages/_ball.scss */
.ball__link:link, .ball__link:visited {
  color: inherit;
  display: inline-block;
  font-size: 2rem;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.4s ease;
}

/* line 108, app/assets/stylesheets/pages/_ball.scss */
.ball__link:hover, .ball__link:active {
  color: var(--color-primary);
  transform: translateY(-0.5rem);
}

/* line 115, app/assets/stylesheets/pages/_ball.scss */
.ball .ball-tags {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

/* line 123, app/assets/stylesheets/pages/_ball.scss */
.ball__price {
  font-size: 2rem;
  margin-bottom: 1.6rem;
  font-weight: 700;
}

/* line 129, app/assets/stylesheets/pages/_ball.scss */
.ball__description {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-bottom: 2rem;
}

/* line 135, app/assets/stylesheets/pages/_ball.scss */
.ball-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

/* line 143, app/assets/stylesheets/pages/_ball.scss */
.ball-selector input {
  display: none;
}

/* line 147, app/assets/stylesheets/pages/_ball.scss */
.color-option {
  display: inline-block;
}

/* line 151, app/assets/stylesheets/pages/_ball.scss */
.color-display {
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  border: 0.32rem solid var(--color-grey-light-2);
  border-radius: 50%;
  margin-left: 5px;
  background-color: white;
  padding: 0.2rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 167, app/assets/stylesheets/pages/_ball.scss */
.color-display:hover {
  border: 0.32rem solid var(--color-primary);
}

/* line 172, app/assets/stylesheets/pages/_ball.scss */
.hover-text {
  position: absolute;
  bottom: -5rem;
  /* Initially hide the text below the image */
  left: 0;
  width: 100%;
  text-align: center;
  background-color: var(--color-primary);
  /* Semi-transparent black background */
  color: white;
  padding: 1rem 0;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.2s ease;
}

/* line 188, app/assets/stylesheets/pages/_ball.scss */
.ball__image-wrapper:hover .hover-text {
  bottom: 0;
  /* Move the text up to be visible on hover */
}

/* line 193, app/assets/stylesheets/pages/_ball.scss */
.color-inner {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
}

/* line 198, app/assets/stylesheets/pages/_ball.scss */
.color-inner--lemon {
  background-color: #fde910;
  /* Lemon */
}

/* line 202, app/assets/stylesheets/pages/_ball.scss */
.color-inner--blue-ribbon {
  background-color: #0066ff;
  /* Blue Ribbon */
}

/* line 206, app/assets/stylesheets/pages/_ball.scss */
.color-inner--brink-pink {
  background-color: #fb607f;
  /* Brink Pink */
}

/* line 210, app/assets/stylesheets/pages/_ball.scss */
.color-inner--caribbean-green {
  background-color: #00cc99;
  /* Caribbean Green */
}

/* line 214, app/assets/stylesheets/pages/_ball.scss */
.color-inner--dodger-blue {
  background-color: #1e90ff;
  /* Dodger Blue */
}

/* line 218, app/assets/stylesheets/pages/_ball.scss */
.color-inner--endeavour {
  background-color: #0057a6;
  /* Endeavour */
}

/* line 222, app/assets/stylesheets/pages/_ball.scss */
.color-inner--fern-green {
  background-color: #4f7942;
  /* Fern Green */
}

/* line 226, app/assets/stylesheets/pages/_ball.scss */
.color-inner--mango-tango {
  background-color: #ff8243;
  /* Mango Tango */
}

/* line 230, app/assets/stylesheets/pages/_ball.scss */
.color-inner--pink-sherbet {
  background-color: #f78fa7;
  /* Pink Sherbet */
}

/* line 234, app/assets/stylesheets/pages/_ball.scss */
.color-inner--studio {
  background-color: #724aa1;
  /* Studio */
}

/* line 239, app/assets/stylesheets/pages/_ball.scss */
.hidden {
  display: none;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle {
  display: grid;
  grid-template-columns: 60fr 40fr;
  grid-gap: 6.4rem;
  margin-bottom: 4rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 9, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-single-image {
  border: 1px solid var(--color-grey-dark-3);
}

/* line 13, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-group-image-box {
  display: flex;
  justify-content: space-between;
  column-gap: 1.6rem;
  border: 1px solid var(--color-grey-dark-3);
  margin-top: 4rem;
  padding: 2rem 0;
}

/* line 22, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-group-image {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
}

/* line 44, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-details__price {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 700;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-grey-dark-3);
}

/* line 54, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-details__price .new-price {
  color: var(--color-primary-dark);
}

/* line 58, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-details__price .old-price {
  text-decoration: line-through;
}

/* line 63, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-details__list {
  list-style: none;
  margin-bottom: 1.6rem;
}

/* line 70, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-details__list li {
  font-size: 2rem;
}

/* line 72, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-details__list li span {
  padding-left: 1rem;
}

/* line 88, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}

/* line 93, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-rating span {
  font-size: 2rem;
  margin-left: 1rem;
}

/* line 97, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-rating__icon {
  height: 2rem;
  width: 2rem;
  fill: var(--color-primary);
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/pages/_paddle-review.scss */
  .paddle {
    padding: 4.8rem;
    column-gap: 4.8rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 3, app/assets/stylesheets/pages/_paddle-review.scss */
  .paddle {
    padding: 3rem;
  }
}

@media only screen and (max-width: 34em) {
  /* line 3, app/assets/stylesheets/pages/_paddle-review.scss */
  .paddle {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
}

/* line 119, app/assets/stylesheets/pages/_paddle-review.scss */
.single-image,
.group-image {
  width: 100%;
  height: 100%;
  display: block;
}

/* line 128, app/assets/stylesheets/pages/_paddle-review.scss */
.heading-1 {
  font-size: 3rem;
  line-height: 1.2;
}

/* line 133, app/assets/stylesheets/pages/_paddle-review.scss */
.number-input-wrapper,
.size-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-grey-dark-3);
  margin-bottom: 1.6rem;
}

/* line 143, app/assets/stylesheets/pages/_paddle-review.scss */
.number-input-wrapper {
  margin-bottom: 3rem;
}

/* line 147, app/assets/stylesheets/pages/_paddle-review.scss */
.paddle-infomations {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 4rem;
}

/* Hide the radio buttons */
/* line 158, app/assets/stylesheets/pages/_paddle-review.scss */
.tab-radio {
  display: none;
}

/* Style for the buttons */
/* line 163, app/assets/stylesheets/pages/_paddle-review.scss */
.tab-label {
  padding: 10px 20px;
  display: inline-block;
}

/* Hide the content by default */
/* line 169, app/assets/stylesheets/pages/_paddle-review.scss */
.tab-content {
  display: none;
  border: 1px solid var(--color-grey-light-2);
  padding: 10px;
  margin-top: 10px;
}

/* Show the content when the corresponding radio button is checked */
/* line 177, app/assets/stylesheets/pages/_paddle-review.scss */
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4 {
  display: block;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review {
  display: grid;
  grid-template-columns: 60fr 40fr;
  grid-gap: 6.4rem;
  margin-bottom: 4rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 9, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-single-image {
  border: 1px solid var(--color-grey-dark-3);
}

/* line 13, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-group-image-box {
  display: flex;
  justify-content: space-between;
  column-gap: 1.6rem;
  border: 1px solid var(--color-grey-dark-3);
  margin-top: 4rem;
  padding: 2rem 0;
}

/* line 22, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-group-image {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
}

/* line 44, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-details__price {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 700;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-grey-dark-3);
}

/* line 54, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-details__price .new-price {
  color: var(--color-primary-dark);
}

/* line 58, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-details__price .old-price {
  text-decoration: line-through;
}

/* line 63, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-details__list {
  list-style: none;
  margin-bottom: 1.6rem;
}

/* line 70, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-details__list li {
  font-size: 2rem;
}

/* line 72, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-details__list li span {
  padding-left: 1rem;
}

/* line 88, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}

/* line 93, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-rating span {
  font-size: 2rem;
  margin-left: 1rem;
}

/* line 97, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-rating__icon {
  height: 2rem;
  width: 2rem;
  fill: var(--color-primary);
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/pages/_paddle-ball-review.scss */
  .ball-review {
    padding: 4.8rem;
    column-gap: 4.8rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 3, app/assets/stylesheets/pages/_paddle-ball-review.scss */
  .ball-review {
    padding: 3rem;
  }
}

@media only screen and (max-width: 34em) {
  /* line 3, app/assets/stylesheets/pages/_paddle-ball-review.scss */
  .ball-review {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
}

/* line 119, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.single-image,
.group-image {
  width: 100%;
  height: 100%;
  display: block;
}

/* line 128, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.heading-1 {
  font-size: 3rem;
  line-height: 1.2;
}

/* line 133, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.number-input-wrapper,
.size-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-grey-dark-3);
  margin-bottom: 1.6rem;
}

/* line 143, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.number-input-wrapper {
  margin-bottom: 3rem;
}

/* line 147, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.ball-review-infomations {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 4rem;
}

/* Hide the radio buttons */
/* line 158, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.tab-radio {
  display: none;
}

/* Style for the buttons */
/* line 163, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.tab-label {
  padding: 10px 20px;
  display: inline-block;
}

/* Hide the content by default */
/* line 169, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.tab-content {
  display: none;
  border: 1px solid var(--color-grey-light-2);
  padding: 10px;
  margin-top: 10px;
}

/* Show the content when the corresponding radio button is checked */
/* line 177, app/assets/stylesheets/pages/_paddle-ball-review.scss */
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4 {
  display: block;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_find-a-coach.scss */
.section-find-a-coach {
  position: relative;
  padding: calc(9.6rem + 8rem) 0 calc(9.6rem + 8rem);
  margin-top: -8rem;
  clip-path: polygon(0 8rem, 100% 0, 100% calc(100% - 8rem), 0 100%);
  background-color: #fff;
}

/* line 12, app/assets/stylesheets/pages/_find-a-coach.scss */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: stretch;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 12, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coaches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media only screen and (max-width: 34em) {
  /* line 12, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coaches-grid {
    grid-template-columns: 1fr;
  }
}

/* line 32, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* line 43, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal.active {
  opacity: 1;
  visibility: visible;
}

/* line 47, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal.active .coach-modal__content {
  transform: scale(1);
}

/* line 52, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

/* line 59, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__content {
  position: relative;
  width: 90%;
  max-width: 80rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* line 72, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 4rem;
  height: 4rem;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  font-size: 2.4rem;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* line 90, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__close:hover {
  background: #e0e0e0;
  color: #333;
}

/* line 96, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__header {
  display: flex;
  gap: 2.4rem;
  padding: 3.2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #d6460f 100%);
  border-radius: 2rem 2rem 0 0;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 96, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-modal__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* line 110, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* line 118, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 125, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 131, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__name {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

/* line 138, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__rating {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 1.2rem;
}

/* line 144, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__rating span {
  opacity: 0.8;
}

/* line 149, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 149, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-modal__badges {
    justify-content: center;
  }
}

/* line 159, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 2rem;
}

/* line 169, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__body {
  padding: 3.2rem;
}

/* line 173, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__section {
  margin-bottom: 2.4rem;
}

/* line 176, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__section:last-child {
  margin-bottom: 0;
}

/* line 180, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__section h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-header);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--color-grey-light-2);
}

/* line 189, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__section p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
}

/* line 196, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 196, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-modal__list {
    grid-template-columns: 1fr;
  }
}

/* line 208, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__list li {
  font-size: 1.4rem;
  color: #555;
  padding-left: 2rem;
  position: relative;
}

/* line 214, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* line 224, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__footer {
  display: flex;
  gap: 1.6rem;
  padding: 2.4rem 3.2rem;
  border-top: 1px solid var(--color-grey-light-2);
  background: var(--color-grey-light-1);
  border-radius: 0 0 2rem 2rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 224, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-modal__footer {
    flex-direction: column;
  }
}

/* line 236, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__footer .btn {
  flex: 1;
  text-align: center;
  padding: 1.2rem 2.4rem;
}

/* line 243, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__close-btn {
  background: transparent;
  border: 2px solid var(--color-text-header);
  color: var(--color-text-header);
}

/* line 248, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-modal__close-btn:hover {
  background: var(--color-text-header);
  color: #fff;
}

/* line 256, app/assets/stylesheets/pages/_find-a-coach.scss */
body.modal-open {
  overflow: hidden;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_about.scss */
.about {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.6rem;
  padding: 6rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 11, app/assets/stylesheets/pages/_about.scss */
.about-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/pages/_about.scss */
  .about {
    padding: 4.8rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 3, app/assets/stylesheets/pages/_about.scss */
  .about {
    padding: 3rem;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_career.scss */
.career {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 6rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 11, app/assets/stylesheets/pages/_career.scss */
.career-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/pages/_career.scss */
  .career {
    padding: 4.8rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 3, app/assets/stylesheets/pages/_career.scss */
  .career {
    padding: 3rem;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_privacy-policy.scss */
.privacy-policy {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 6rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
  font-size: 1.8rem;
  line-height: 1.8;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 13, app/assets/stylesheets/pages/_privacy-policy.scss */
.privacy-policy-title {
  font-weight: 600;
}

/* line 17, app/assets/stylesheets/pages/_privacy-policy.scss */
.privacy-policy-text span {
  font-weight: 600;
}

/* line 20, app/assets/stylesheets/pages/_privacy-policy.scss */
.privacy-policy-date {
  margin-bottom: 1.6rem;
}

/* line 24, app/assets/stylesheets/pages/_privacy-policy.scss */
.privacy-policy-text span {
  margin-right: 1.6rem;
}

/* line 28, app/assets/stylesheets/pages/_privacy-policy.scss */
.privacy-policy-list {
  display: flex;
  flex-direction: column;
  list-style-type: disc;
  padding: 0;
  /* Adjust to suit your alignment needs, increase if bullets are too far */
  margin-left: 1.7rem;
}

/* line 35, app/assets/stylesheets/pages/_privacy-policy.scss */
.privacy-policy-list-item {
  margin-left: 0;
  /* Reset default margin */
  padding-left: 1rem;
  /* Space between bullet and text */
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/pages/_privacy-policy.scss */
  .privacy-policy {
    padding: 4.8rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 3, app/assets/stylesheets/pages/_privacy-policy.scss */
  .privacy-policy {
    padding: 3rem;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_terms.scss */
.term {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.8;
  padding: 6rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
}

/* line 13, app/assets/stylesheets/pages/_terms.scss */
.term-title {
  font-weight: 600;
}

/* line 17, app/assets/stylesheets/pages/_terms.scss */
.term-text span {
  font-weight: 600;
}

/* line 20, app/assets/stylesheets/pages/_terms.scss */
.term-date {
  margin-bottom: 1.6rem;
}

/* line 24, app/assets/stylesheets/pages/_terms.scss */
.term-text span {
  margin-right: 1.6rem;
}

/* line 28, app/assets/stylesheets/pages/_terms.scss */
.term-list {
  display: flex;
  flex-direction: column;
  list-style-type: disc;
  padding: 0;
  /* Adjust to suit your alignment needs, increase if bullets are too far */
  margin-left: 1.7rem;
}

/* line 35, app/assets/stylesheets/pages/_terms.scss */
.term-list-item {
  margin-left: 0;
  /* Reset default margin */
  padding-left: 1rem;
  /* Space between bullet and text */
}

@media screen and (max-width: 59em) {
  /* line 44, app/assets/stylesheets/pages/_terms.scss */
  .term {
    padding: 3rem;
    line-height: 1.2;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_mission.scss */
.mission {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.6rem;
  padding: 6rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 11, app/assets/stylesheets/pages/_mission.scss */
.mission-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/pages/_mission.scss */
  .mission {
    padding: 4.8rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 3, app/assets/stylesheets/pages/_mission.scss */
  .mission {
    padding: 3rem;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page {
  display: flex;
  min-height: calc(100vh - 8rem);
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 4, app/assets/stylesheets/pages/_sign-in.scss */
  .signin-page {
    flex-direction: column;
  }
}

/* line 13, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__image-panel {
  position: relative;
  flex: 1;
  display: flex;
  background-image: url(/assets/form-background_3-4ca2b2c4b8c9c24ebd3f7a00fe654372ce8e99c5e88d41d0e999f9f3688528fa.jpg);
  background-size: cover;
  background-position: center;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 13, app/assets/stylesheets/pages/_sign-in.scss */
  .signin-page__image-panel {
    display: none;
  }
}

/* line 26, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.92) 0%, rgba(190, 55, 0, 0.82) 100%);
}

/* line 36, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__image-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem;
  width: 100%;
}

/* line 46, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__brand {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* line 53, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__pitch {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
}

/* line 61, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__pitch-heading {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.6rem;
}

/* line 69, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__pitch-sub {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

/* line 75, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__stats {
  display: flex;
  gap: 4rem;
}

/* line 80, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* line 86, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__stat-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* line 93, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* line 101, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__form-panel {
  width: 54rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 4rem;
  background: #fff;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 75em) {
  /* line 101, app/assets/stylesheets/pages/_sign-in.scss */
  .signin-page__form-panel {
    width: 48rem;
  }
}

@media only screen and (max-width: 59em) {
  /* line 101, app/assets/stylesheets/pages/_sign-in.scss */
  .signin-page__form-panel {
    width: 100%;
    padding: 4rem 2.4rem;
  }
}

/* line 120, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__form-box {
  width: 100%;
  max-width: 42rem;
}

/* line 126, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__mobile-brand {
  display: none;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 3.2rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 126, app/assets/stylesheets/pages/_sign-in.scss */
  .signin-page__mobile-brand {
    display: block;
  }
}

/* line 139, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__form-header {
  margin-bottom: 3.2rem;
}

/* line 143, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__form-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

/* line 151, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__form-subtitle {
  font-size: 1.5rem;
  color: #888;
}

/* line 156, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__form-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/* line 162, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__form-link:hover {
  opacity: 0.78;
}

/* line 166, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* line 172, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* line 178, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 184, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* line 192, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__forgot {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/* line 199, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__forgot:hover {
  opacity: 0.75;
}

/* line 203, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* line 209, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__input-icon {
  position: absolute;
  left: 1.4rem;
  width: 1.7rem;
  height: 1.7rem;
  color: #bbb;
  pointer-events: none;
  flex-shrink: 0;
}

/* line 219, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__input {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-size: 1.5rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #f9f9f9;
  border: 1.5px solid #e8e8e8;
  border-radius: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

/* line 231, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__input::placeholder {
  color: #bbb;
}

/* line 233, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__input:focus {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.1);
}

/* line 240, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__input--icon {
  padding-left: 4.4rem;
}

/* line 245, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__input--password {
  padding-right: 4.8rem;
}

/* line 251, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__eye-toggle {
  position: absolute;
  right: 1.2rem;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #aaa;
  transition: color 0.2s ease;
}

/* line 263, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__eye-toggle:hover {
  color: var(--color-primary);
}

/* line 266, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__eye-icon {
  width: 1.8rem;
  height: 1.8rem;
}

/* line 270, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__eye-icon--hide {
  display: none;
}

/* line 271, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__eye-icon--show {
  display: block;
}

/* line 275, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__remember {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* line 281, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__checkbox {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* line 289, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__remember-label {
  font-size: 1.4rem;
  color: #555;
  cursor: pointer;
}

/* line 296, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__submit {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--color-primary);
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

/* line 310, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* line 315, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__submit:active {
  transform: translateY(0);
}

/* line 319, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #ccc;
  font-size: 1.3rem;
}

/* line 326, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__divider::before, .signin-page__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
}

/* line 334, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__divider span {
  color: #bbb;
}

/* line 338, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__register {
  text-align: center;
  font-size: 1.4rem;
  color: #888;
}

/* line 343, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__register span {
  margin-right: 0.4rem;
}

/* line 347, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__trust {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 3.6rem;
  padding-top: 2.8rem;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

/* line 357, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  color: #aaa;
}

/* line 364, app/assets/stylesheets/pages/_sign-in.scss */
.signin-page__trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ccc;
  flex-shrink: 0;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 4, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page {
  display: flex;
  min-height: calc(100vh - 8rem);
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 4, app/assets/stylesheets/pages/_sign-up.scss */
  .signup-page {
    flex-direction: column;
  }
}

/* line 13, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__form-panel {
  width: 58rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 4rem;
  background: #fff;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 75em) {
  /* line 13, app/assets/stylesheets/pages/_sign-up.scss */
  .signup-page__form-panel {
    width: 50rem;
  }
}

@media only screen and (max-width: 59em) {
  /* line 13, app/assets/stylesheets/pages/_sign-up.scss */
  .signup-page__form-panel {
    width: 100%;
    padding: 4rem 2.4rem;
  }
}

/* line 32, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__form-box {
  width: 100%;
  max-width: 46rem;
}

/* line 37, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__mobile-brand {
  display: none;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 3.2rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 37, app/assets/stylesheets/pages/_sign-up.scss */
  .signup-page__mobile-brand {
    display: block;
  }
}

/* line 50, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__form-header {
  margin-bottom: 3rem;
}

/* line 54, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__form-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

/* line 62, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__form-subtitle {
  font-size: 1.5rem;
  color: #888;
}

/* line 67, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__form-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/* line 73, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__form-link:hover {
  opacity: 0.78;
}

/* line 77, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* line 83, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 34em) {
  /* line 83, app/assets/stylesheets/pages/_sign-up.scss */
  .signup-page__name-row {
    grid-template-columns: 1fr;
  }
}

/* line 93, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* line 99, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* line 108, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* line 114, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__input-icon {
  position: absolute;
  left: 1.4rem;
  width: 1.7rem;
  height: 1.7rem;
  color: #bbb;
  pointer-events: none;
  flex-shrink: 0;
}

/* line 124, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__input {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-size: 1.5rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #f9f9f9;
  border: 1.5px solid #e8e8e8;
  border-radius: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

/* line 136, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__input::placeholder {
  color: #bbb;
}

/* line 138, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__input:focus {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.1);
}

/* line 144, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__input--icon {
  padding-left: 4.4rem;
}

/* line 145, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__input--password {
  padding-right: 4.8rem;
}

/* line 149, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__eye-toggle {
  position: absolute;
  right: 1.2rem;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #aaa;
  transition: color 0.2s ease;
}

/* line 161, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__eye-toggle:hover {
  color: var(--color-primary);
}

/* line 164, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__eye-icon {
  width: 1.8rem;
  height: 1.8rem;
}

/* line 168, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__eye-icon--hide {
  display: none;
}

/* line 169, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__eye-icon--show {
  display: block;
}

/* line 173, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__terms {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* line 179, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__checkbox {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* line 188, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__terms-label {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
}

/* line 196, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__submit {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--color-primary);
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

/* line 210, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* line 215, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__submit:active {
  transform: translateY(0);
}

/* line 219, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* line 224, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__divider::before, .signup-page__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
}

/* line 232, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__divider span {
  font-size: 1.3rem;
  color: #bbb;
}

/* line 236, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__signin {
  text-align: center;
  font-size: 1.4rem;
  color: #888;
}

/* line 241, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__signin span {
  margin-right: 0.4rem;
}

/* line 245, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__trust {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

/* line 255, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  color: #aaa;
}

/* line 262, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ccc;
  flex-shrink: 0;
}

/* line 271, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__image-panel {
  position: relative;
  flex: 1;
  display: flex;
  background-image: url(/assets/form-background_3-4ca2b2c4b8c9c24ebd3f7a00fe654372ce8e99c5e88d41d0e999f9f3688528fa.jpg);
  background-size: cover;
  background-position: center;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 271, app/assets/stylesheets/pages/_sign-up.scss */
  .signup-page__image-panel {
    display: none;
  }
}

/* line 284, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190, 55, 0, 0.82) 0%, rgba(255, 90, 0, 0.92) 100%);
}

/* line 294, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__image-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem;
  width: 100%;
}

/* line 304, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__brand {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* line 311, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__pitch {
  margin-bottom: 3.6rem;
}

/* line 315, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__pitch-heading {
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

/* line 323, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__pitch-sub {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

/* line 330, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__perks {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

/* line 336, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__perk {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}

/* line 342, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__perk-icon {
  width: 4.4rem;
  height: 4.4rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 352, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__perk-icon svg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}

/* line 359, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__perk-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

/* line 366, app/assets/stylesheets/pages/_sign-up.scss */
.signup-page__perk-sub {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_tournament.scss */
.tournaments-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 9.6rem;
}

/* line 9, app/assets/stylesheets/pages/_tournament.scss */
.tournaments-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem;
}

/* line 16, app/assets/stylesheets/pages/_tournament.scss */
.tournament__image-box {
  overflow: hidden;
  padding-bottom: 3.6rem;
}

/* line 21, app/assets/stylesheets/pages/_tournament.scss */
.tournament__img {
  display: block;
  width: 100%;
  transition: all 0.2s;
}

/* line 26, app/assets/stylesheets/pages/_tournament.scss */
.tournament__img, .tournament__img:link, .tournament__img:visited {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* line 36, app/assets/stylesheets/pages/_tournament.scss */
.tournament__img:hover {
  cursor: pointer;
}

/* line 40, app/assets/stylesheets/pages/_tournament.scss */
.tournament__img:active, .tournament__img:focus {
  outline: none;
}

/* line 47, app/assets/stylesheets/pages/_tournament.scss */
.tournament__title, .tournament__title:link, .tournament__title:visited {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2rem;
}

/* line 59, app/assets/stylesheets/pages/_tournament.scss */
.tournament__title:hover {
  color: var(--color-primary-dark);
}

/* line 63, app/assets/stylesheets/pages/_tournament.scss */
.tournament__title:active, .tournament__title:focus {
  outline: none;
}

/* line 69, app/assets/stylesheets/pages/_tournament.scss */
.tournament__text {
  font-size: 1.8rem;
  padding-bottom: 3rem;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_tournament-detail.scss */
.tournament-detail {
  display: grid;
  row-gap: 9.6rem;
}

/* line 7, app/assets/stylesheets/pages/_tournament-detail.scss */
.tournament-detail__image-box--1 {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

/* line 13, app/assets/stylesheets/pages/_tournament-detail.scss */
.tournament-detail__image {
  display: block;
  width: 100%;
}

/* line 18, app/assets/stylesheets/pages/_tournament-detail.scss */
.tournament-detail__text-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
  padding: 6rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 18, app/assets/stylesheets/pages/_tournament-detail.scss */
  .tournament-detail__text-wrapper {
    padding: 4.8rem;
  }
}

/* line 32, app/assets/stylesheets/pages/_tournament-detail.scss */
.tournament-detail__text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_article.scss */
.articles-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 9.6rem;
}

/* line 9, app/assets/stylesheets/pages/_article.scss */
.articles-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.6rem;
  row-gap: 7.4rem;
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 44em) {
  /* line 9, app/assets/stylesheets/pages/_article.scss */
  .articles-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 34em) {
  /* line 9, app/assets/stylesheets/pages/_article.scss */
  .articles-content {
    grid-template-columns: 1fr;
  }
}

/* line 35, app/assets/stylesheets/pages/_article.scss */
.article__image-box {
  overflow: hidden;
  padding-bottom: 3.6rem;
}

/* line 40, app/assets/stylesheets/pages/_article.scss */
.article__img {
  display: block;
  width: 100%;
  transition: all 0.2s;
}

/* line 45, app/assets/stylesheets/pages/_article.scss */
.article__img, .article__img:link, .article__img:visited {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* line 55, app/assets/stylesheets/pages/_article.scss */
.article__img:hover {
  cursor: pointer;
}

/* line 59, app/assets/stylesheets/pages/_article.scss */
.article__img:active, .article__img:focus {
  outline: none;
}

/* line 66, app/assets/stylesheets/pages/_article.scss */
.article__title, .article__title:link, .article__title:visited {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2rem;
}

/* line 78, app/assets/stylesheets/pages/_article.scss */
.article__title:hover {
  color: var(--color-primary-dark);
}

/* line 82, app/assets/stylesheets/pages/_article.scss */
.article__title:active, .article__title:focus {
  outline: none;
}

/* line 88, app/assets/stylesheets/pages/_article.scss */
.article__text {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-bottom: 3rem;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_article-content.scss */
.article-content {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.6rem;
  padding: 6rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 11, app/assets/stylesheets/pages/_article-content.scss */
.article-content-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/pages/_article-content.scss */
  .article-content {
    padding: 4.8rem;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_event.scss */
.events-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 9.6rem;
}

/* line 9, app/assets/stylesheets/pages/_event.scss */
.events-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem;
}

/* line 16, app/assets/stylesheets/pages/_event.scss */
.event__image-box {
  overflow: hidden;
  padding-bottom: 3.6rem;
}

/* line 21, app/assets/stylesheets/pages/_event.scss */
.event__img {
  display: block;
  width: 100%;
  transition: all 0.2s;
}

/* line 26, app/assets/stylesheets/pages/_event.scss */
.event__img, .event__img:link, .event__img:visited {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* line 36, app/assets/stylesheets/pages/_event.scss */
.event__img:hover {
  cursor: pointer;
}

/* line 40, app/assets/stylesheets/pages/_event.scss */
.event__img:active, .event__img:focus {
  outline: none;
}

/* line 47, app/assets/stylesheets/pages/_event.scss */
.event__title, .event__title:link, .event__title:visited {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2rem;
}

/* line 59, app/assets/stylesheets/pages/_event.scss */
.event__title:hover {
  color: var(--color-primary-dark);
}

/* line 63, app/assets/stylesheets/pages/_event.scss */
.event__title:active, .event__title:focus {
  outline: none;
}

/* line 69, app/assets/stylesheets/pages/_event.scss */
.event__text {
  font-size: 1.8rem;
  padding-bottom: 3rem;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_event-detail.scss */
.event-detail {
  display: grid;
  row-gap: 9.6rem;
}

/* line 7, app/assets/stylesheets/pages/_event-detail.scss */
.event-detail__image-box--1 {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

/* line 13, app/assets/stylesheets/pages/_event-detail.scss */
.event-detail__image {
  display: block;
  width: 100%;
}

/* line 18, app/assets/stylesheets/pages/_event-detail.scss */
.event-detail__text-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
  padding: 6rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
}

/* line 27, app/assets/stylesheets/pages/_event-detail.scss */
.event-detail__text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_blog-content.scss */
.blog-content {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.6rem;
  padding: 6rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 11, app/assets/stylesheets/pages/_blog-content.scss */
.blog-content-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

@media only screen and (max-width: 59em) {
  /* line 3, app/assets/stylesheets/pages/_blog-content.scss */
  .blog-content {
    padding: 4.8rem;
  }
}

/*
0 - 600px:      Phone  (This applyed if the phone is < or = 600px)
600 - 900px:    Tablet portrait (This applyed if the Tablet portrait is < or = 900px)
900 - 1200px:   Tablet landscape (This applyed if the Tablet landscape is < or = 1200px)
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:

1 - small-desktop
2 - tablet-landscape
3 - tablet-portrait
4 - tablet-small
5 - phone

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px (we got all the em values below)
*/
/* line 3, app/assets/stylesheets/pages/_blog.scss */
.blogs-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 9.6rem;
}

/* line 9, app/assets/stylesheets/pages/_blog.scss */
.blogs-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.6rem;
  row-gap: 7.4rem;
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Phones) (max-width: 34em) */
  /**************************/
  /**************************/
  /* BELOW 704px (Small Tablets) (max-width: 44em) */
  /**************************/
  /**************************/
  /* BELOW 944px (Portrait Tablets) (max-width: 59em) */
  /**************************/
  /**************************/
  /* BELOW 1200px (Landscape Tablets) (max-width: 75em) */
  /**************************/
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

@media only screen and (max-width: 44em) {
  /* line 9, app/assets/stylesheets/pages/_blog.scss */
  .blogs-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 34em) {
  /* line 9, app/assets/stylesheets/pages/_blog.scss */
  .blogs-content {
    grid-template-columns: 1fr;
  }
}

/* line 35, app/assets/stylesheets/pages/_blog.scss */
.blog__image-box {
  overflow: hidden;
  padding-bottom: 3.6rem;
}

/* line 40, app/assets/stylesheets/pages/_blog.scss */
.blog__img {
  display: block;
  width: 100%;
  transition: all 0.2s;
}

/* line 45, app/assets/stylesheets/pages/_blog.scss */
.blog__img, .blog__img:link, .blog__img:visited {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* line 55, app/assets/stylesheets/pages/_blog.scss */
.blog__img:hover {
  cursor: pointer;
}

/* line 59, app/assets/stylesheets/pages/_blog.scss */
.blog__img:active, .blog__img:focus {
  outline: none;
}

/* line 66, app/assets/stylesheets/pages/_blog.scss */
.blog__title, .blog__title:link, .blog__title:visited {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2rem;
}

/* line 78, app/assets/stylesheets/pages/_blog.scss */
.blog__title:hover {
  color: var(--color-primary-dark);
}

/* line 82, app/assets/stylesheets/pages/_blog.scss */
.blog__title:active, .blog__title:focus {
  outline: none;
}

/* line 88, app/assets/stylesheets/pages/_blog.scss */
.blog__text {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-bottom: 3rem;
}
