/*
 * 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 .


 */
/*
   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: 'Rubik', 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: hsl(0, 1%, 16%);
  --color-text-body: #777;
  --color-text-muted: hsl(0, 1%, 44%);
  --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: #ff6600;
  --color-primary-dark: rgb(230, 92, 0);
  --color-primary-light: #ff8533;
  --color-primary-rgba: 255, 102, 0;
  --color-primary-dark-rgba: 230, 92, 0;
  --color-primary-light-rgba: 255, 133, 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-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)
*/
/* line 3, 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 14, 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 14, app/assets/stylesheets/base/_base.scss */
  html {
    font-size: 56.25%;
  }
}

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

/* line 36, 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 36, app/assets/stylesheets/base/_base.scss */
  body {
    padding: 0;
  }
}

/* line 46, 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);
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem;
}

/* line 67, app/assets/stylesheets/base/_typography.scss */
.heading-primary-slider--main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /**************************/
  /* 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 76, app/assets/stylesheets/base/_typography.scss */
.heading-primary-slider--main--sub-heading {
  letter-spacing: 1rem;
}

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

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

/* line 92, app/assets/stylesheets/base/_typography.scss */
.heading-primary-slider--sub {
  display: block;
  font-size: var(--default-font-size);
  font-weight: 400;
  letter-spacing: 1.74rem;
  animation: moveInRight 1s ease-out;
  /**************************/
  /* 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 92, app/assets/stylesheets/base/_typography.scss */
  .heading-primary-slider--sub {
    letter-spacing: 1.5rem;
  }
}

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

/* line 111, 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;
  font-weight: 700;
}

/* line 119, 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 119, app/assets/stylesheets/base/_typography.scss */
  .heading-primary {
    font-size: 4.4rem;
  }
}

/* line 134, app/assets/stylesheets/base/_typography.scss */
.heading-secondary, .heading-secondary--white {
  display: inline-block;
  font-size: 4.4rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
  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;
  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) */
  /**************************/
  /**************************/
  /* 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 151, app/assets/stylesheets/base/_typography.scss */
.heading-secondary--white {
  color: white;
}

@media only screen and (max-width: 75em) {
  /* line 134, 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 134, app/assets/stylesheets/base/_typography.scss */
  .heading-secondary, .heading-secondary--white {
    margin-bottom: 6.4rem;
  }
}

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

/* line 177, app/assets/stylesheets/base/_typography.scss */
.heading-tertiary, .heading-tertiary-white {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  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 184, app/assets/stylesheets/base/_typography.scss */
.heading-tertiary-white {
  color: white;
}

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

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

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

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

/* line 214, 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 6, 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 12, app/assets/stylesheets/base/_utilities.scss */
  .heading-secondary--white.u-margin-bottom {
    margin-bottom: 7.5rem;
  }
  /* line 15, 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-block;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.8rem 3.1rem;
  border-radius: var(--border-radius-xxxl);
  transition: all 0.2s;
  position: relative;
  font-size: var(--default-font-size);
  font-family: inherit;
  border: none;
  cursor: pointer;
  /**************************/
  /* 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 5, app/assets/stylesheets/components/_button.scss */
  .btn, .btn:link, .btn:visited {
    padding: 1.2rem 2.2rem;
  }
}

/* line 33, app/assets/stylesheets/components/_button.scss */
.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

/* line 38, app/assets/stylesheets/components/_button.scss */
.btn:active, .btn:focus {
  outline: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* line 46, app/assets/stylesheets/components/_button.scss */
.btn--white {
  padding: 1.8rem 3.1rem;
  background-color: var(--color-white);
  color: var(--color-grey-dark);
  /**************************/
  /* 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 51, app/assets/stylesheets/components/_button.scss */
.btn--white::after {
  background-color: var(--color-white);
}

@media only screen and (max-width: 34em) {
  /* line 46, app/assets/stylesheets/components/_button.scss */
  .btn--white {
    padding: 1.2rem 2.2rem;
  }
}

/* line 65, app/assets/stylesheets/components/_button.scss */
.btn--grey {
  background-color: var(--color-grey-light-2);
  color: var(--color-grey-dark);
  /* Trick to add border inside */
  box-shadow: inset 0 0 0 1px #000;
}

/* line 72, app/assets/stylesheets/components/_button.scss */
.btn--grey::after {
  background-color: var(--color-white);
}

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

/* line 82, app/assets/stylesheets/components/_button.scss */
.btn--orange::after {
  background-color: var(--color-primary);
}

/* line 87, app/assets/stylesheets/components/_button.scss */
.btn::after {
  content: '';
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: var(--border-radius-xxxl);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

/* line 100, app/assets/stylesheets/components/_button.scss */
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

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

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

/* line 123, app/assets/stylesheets/components/_button.scss */
.btn-text:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* line 130, app/assets/stylesheets/components/_button.scss */
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

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

/* line 148, app/assets/stylesheets/components/_button.scss */
.link__text:hover, .link__text:active {
  border-bottom: 1px solid 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 3, app/assets/stylesheets/components/_card.scss */
.card {
  perspective: 150rem;
  position: relative;
  height: 52rem;
  cursor: pointer;
  outline: none;
}

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

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

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

/* line 23, 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 23, app/assets/stylesheets/components/_card.scss */
  .card__side {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

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

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

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

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

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

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

/* line 71, 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 86, 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-xxxl);
  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);
  text-transform: uppercase;
  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 3, app/assets/stylesheets/components/_our-community.scss */
.our-communities-container {
  padding: 9.6rem 2rem 6.6rem 7.4rem;
  /**************************/
  /* 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) */
  /**************************/
}

@media only screen and (max-width: 75em) {
  /* line 3, app/assets/stylesheets/components/_our-community.scss */
  .our-communities-container {
    padding: 9.6rem 2rem 9.6rem 3.2rem;
  }
}

/* line 16, app/assets/stylesheets/components/_our-community.scss */
.our-community-text {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-bottom: 4.8rem;
}

/* line 22, app/assets/stylesheets/components/_our-community.scss */
.community-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 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: 44em) {
  /* line 22, app/assets/stylesheets/components/_our-community.scss */
  .community-testimonials {
    column-gap: 3.6rem;
  }
}

/* line 38, app/assets/stylesheets/components/_our-community.scss */
.community-testimonial__img {
  width: 6.4rem;
  border-radius: 50%;
  display: block;
  margin-bottom: 1.2rem;
}

/* line 45, app/assets/stylesheets/components/_our-community.scss */
.community-testimonial__text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

/* line 51, app/assets/stylesheets/components/_our-community.scss */
.community-testimonial__caption {
  font-size: 1.6rem;
  color: #777;
}

/* line 58, app/assets/stylesheets/components/_our-community.scss */
.community-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
  /**
   * Styles for the coach testimonial item.
   * This styles the container for each coach testimonial item, setting the 
   overflow to hidden.
   */
  /**************************/
  /* 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) */
  /**************************/
  /**************************/
  /* 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 71, app/assets/stylesheets/components/_our-community.scss */
.community-gallery__item {
  overflow: hidden;
}

/* line 75, app/assets/stylesheets/components/_our-community.scss */
.community-gallery__img {
  display: block;
  width: 100%;
  transition: all 0.2s;
}

/* line 80, app/assets/stylesheets/components/_our-community.scss */
.community-gallery__img:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 84em) {
  /* line 58, app/assets/stylesheets/components/_our-community.scss */
  .community-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 59em) {
  /* line 58, app/assets/stylesheets/components/_our-community.scss */
  .community-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media only screen and (max-width: 34em) {
  /* line 58, app/assets/stylesheets/components/_our-community.scss */
  .community-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
}

/*
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/_paddle-cover.scss */
.paddle-cover__image-wrapper {
  position: relative;
  overflow: hidden;
}

/* line 9, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover__image-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 3.6rem;
  border-radius: 10px;
}

/* line 17, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover__img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

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

/* line 34, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover-rating__count {
  font-size: 2rem;
  margin-left: 1rem;
}

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

/* line 46, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover__link {
  margin-bottom: 1.6rem;
}

/* line 49, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover__link:link, .paddle-cover__link:visited {
  color: inherit;
  display: inline-block;
  font-size: 2rem;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s;
}

/* line 60, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover__link:hover, .paddle-cover__link:active {
  color: var(--color-primary);
  transform: translateY(-0.5rem);
}

/* line 68, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover__price {
  font-size: 2rem;
  margin-bottom: 1.6rem;
  font-weight: 700;
}

/* line 74, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover__description {
  font-size: 2rem;
  padding-bottom: 3rem;
}

/* line 80, app/assets/stylesheets/components/_paddle-cover.scss */
.hover-text {
  position: absolute;
  bottom: -30px;
  /* Initially hide the text below the image */
  left: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  /* Semi-transparent black background */
  color: white;
  padding: 10px 0;
  transition: bottom 0.3s ease;
  text-decoration: none;
}

/* line 93, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover__image-wrapper:hover .paddle-cover__img {
  transform: scale(1.1);
  /* Optional: Slight zoom effect on hover */
}

/* line 97, app/assets/stylesheets/components/_paddle-cover.scss */
.paddle-cover__image-wrapper:hover .hover-text {
  bottom: 0;
  /* Move the text up to be visible on hover */
}

/*
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 3, app/assets/stylesheets/layout/_footer.scss */
.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

/* line 8, app/assets/stylesheets/layout/_footer.scss */
.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

/* line 12, app/assets/stylesheets/layout/_footer.scss */
.logo-col {
  display: flex;
  flex-direction: column;
}

/* line 17, app/assets/stylesheets/layout/_footer.scss */
.footer-logo {
  display: block;
  text-align: center;
  margin-bottom: 3.3rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* line 24, app/assets/stylesheets/layout/_footer.scss */
.footer-logo:hover {
  transform: translateY(-5px);
  /* Move up slightly on hover */
}

/* line 29, app/assets/stylesheets/layout/_footer.scss */
.logo {
  max-width: 15rem;
  width: 100%;
  height: auto;
  /**************************/
  /* 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) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 29, app/assets/stylesheets/layout/_footer.scss */
  .logo {
    max-width: 13.5rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 29, app/assets/stylesheets/layout/_footer.scss */
  .logo {
    max-width: 12rem;
  }
}

/* line 49, app/assets/stylesheets/layout/_footer.scss */
.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: 2.4rem;
}

/* line 56, app/assets/stylesheets/layout/_footer.scss */
.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

/* line 62, app/assets/stylesheets/layout/_footer.scss */
.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* line 68, app/assets/stylesheets/layout/_footer.scss */
.address {
  margin-bottom: 2.4rem;
}

/* line 72, app/assets/stylesheets/layout/_footer.scss */
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

/* line 79, app/assets/stylesheets/layout/_footer.scss */
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

/* line 87, app/assets/stylesheets/layout/_footer.scss */
.footer-link:hover,
.footer-link:active {
  color: #555;
}

/**************************/
/* BELOW 704px (Small Tablets) (max-width: 44em) */
/**************************/
@media screen and (max-width: 44em) {
  /* line 98, app/assets/stylesheets/layout/_footer.scss */
  .grid--footer {
    grid-template-columns: repeat(6, 1fr);
  }
  /* line 102, app/assets/stylesheets/layout/_footer.scss */
  .logo-col,
.address-col {
    grid-column: span 3;
  }
  /* line 107, app/assets/stylesheets/layout/_footer.scss */
  .nav-col {
    grid-row: 1;
    grid-column: span 2;
    margin-bottom: 3.2rem;
  }
}

/*
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: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

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

/* line 17, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container {
  color: var(--color-grey-dark);
  font-weight: 500;
  font-size: 1.8rem;
}

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

/* line 28, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container a {
  text-decoration: none;
  color: #023048;
  display: inline-block;
}

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

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

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

/* line 62, 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-grey-dark);
  font-weight: 500;
  font-size: 1.8rem;
  padding: 1rem 1.6rem;
}

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

/* line 77, app/assets/stylesheets/layout/_header.scss */
.mega-menu .menu-title::after {
  content: '';
  height: 0;
  width: 0;
  background: #90ee90;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 200ms ease;
}

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

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

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

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

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

/* line 128, 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 145, 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 152, 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 161, 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 169, 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 179, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__img:hover {
  cursor: pointer;
}

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

/* line 190, 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 205, app/assets/stylesheets/layout/_header.scss */
.submenu-paddle__title:hover {
  color: var(--color-primary-shade);
}

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

/* line 216, 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: 1px;
  text-transform: uppercase;
  color: var(--color-grey-dark);
  text-decoration: none;
  cursor: pointer;
}

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

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

/* line 248, 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 257, app/assets/stylesheets/layout/_header.scss */
.submenu .col-3 ul li {
  padding: 0;
  padding-left: 12px;
  margin: 12px 0;
  position: relative;
}

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

/* line 274, app/assets/stylesheets/layout/_header.scss */
.submenu .col-3 ul li:hover::before {
  width: 4px;
  background: #5ae15a;
}

/* line 280, 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 288, app/assets/stylesheets/layout/_header.scss */
.submenu-service__paragraph {
  font-size: 1.8rem;
  line-height: 1.8;
}

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

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

/* line 309, 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 317, 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 327, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__img:hover {
  cursor: pointer;
}

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

/* line 338, 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 353, app/assets/stylesheets/layout/_header.scss */
.submenu-tournament__title:hover {
  color: var(--color-primary-shade);
}

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

/* line 364, 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: 1px;
  text-transform: uppercase;
  color: var(--color-grey-dark);
  text-decoration: none;
  cursor: pointer;
}

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

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

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

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

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

/* line 409, 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 413, app/assets/stylesheets/layout/_header.scss */
.submenu.old-grid .submenu-column:hover svg {
  color: #e94343;
}

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

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

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

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

/* line 437, app/assets/stylesheets/layout/_header.scss */
.mega-menu-container a.btn {
  background: #023047;
  border: none;
  color: #fff;
  padding: 8px 32px;
  margin: 8px 0;
  cursor: pointer;
  font-weight: bold;
}

/* line 449, app/assets/stylesheets/layout/_header.scss */
.sticky {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--color-white);
  z-index: 99999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

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

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

/* line 475, 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 486, app/assets/stylesheets/layout/_header.scss */
.main-nav-link:hover, .main-nav-link:active {
  color: var(--color-primary-shade);
}

/* line 491, 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: 9px;
  color: #fff;
  background-color: var(--color-primary);
}

/* line 499, 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-shade);
}

@media screen and (max-width: 75em) {
  /* line 507, app/assets/stylesheets/layout/_header.scss */
  .header,
.mega-menu-container {
    padding: 0 3.2rem;
  }
  /* line 512, 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 520, app/assets/stylesheets/layout/_header.scss */
  .submenu {
    box-shadow: unset;
    padding-top: 6.4rem;
    margin-top: 0;
  }
}

@media screen and (max-width: 59em) {
  /* line 529, app/assets/stylesheets/layout/_header.scss */
  .mega-menu {
    display: none;
  }
  /* line 533, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile {
    padding: 0 3.2rem;
  }
  /* line 537, app/assets/stylesheets/layout/_header.scss */
  .header__logo {
    height: 3.5rem;
  }
  /* line 541, app/assets/stylesheets/layout/_header.scss */
  .menu-title {
    font-size: 3rem;
  }
  /* line 545, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile {
    display: block;
    display: flex;
  }
  /* line 551, app/assets/stylesheets/layout/_header.scss */
  .btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;
    display: none;
    z-index: 999;
  }
  /* line 560, app/assets/stylesheets/layout/_header.scss */
  .icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: var(--color-primary);
  }
  /* line 566, 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 582, app/assets/stylesheets/layout/_header.scss */
  .menu-header .icons .menu-icon.active,
.menu-header .icons .close-icon.active {
    opacity: 1;
    pointer-events: auto;
  }
  /* line 588, app/assets/stylesheets/layout/_header.scss */
  .menu-header .icons {
    position: relative;
  }
  /* line 592, 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: 9.8rem;
  }
  /* line 608, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile .submenu-container {
    height: 0;
    overflow: hidden;
    transition: all 500ms ease;
  }
  /* line 614, app/assets/stylesheets/layout/_header.scss */
  .has-submenu {
    position: relative;
  }
  /* line 618, app/assets/stylesheets/layout/_header.scss */
  .has-submenu::after {
    content: '+';
    position: absolute;
    top: 1.2rem;
    right: 0.8rem;
    font-size: 3rem;
  }
  /* line 626, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile > ul > li {
    border-bottom: 1px solid #eee;
  }
  /* line 630, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile > ul {
    position: fixed;
    top: 9.6rem;
    left: 0;
    background-color: var(--color-white);
    transform: translateX(-130%);
    max-height: calc(100vh - 9.6rem);
    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;
  }
  /* line 655, app/assets/stylesheets/layout/_header.scss */
  .menu-title.mobile-link:link,
.menu-title.mobile-link:visited {
    font-size: 3rem;
    pointer-events: none;
  }
  /* line 661, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile > ul.active {
    transform: translateX(0);
  }
  /* line 665, app/assets/stylesheets/layout/_header.scss */
  .submenu {
    box-shadow: unset;
    padding-top: 4.8rem;
    margin-top: 0;
  }
  /* line 671, 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 679, app/assets/stylesheets/layout/_header.scss */
  .submenu .col-3 {
    flex-direction: column;
  }
  /* line 683, app/assets/stylesheets/layout/_header.scss */
  .submenu .col-3 img {
    height: 160px;
    object-fit: cover;
  }
  /* line 688, app/assets/stylesheets/layout/_header.scss */
  .mega-menu-mobile h4 {
    margin: 8px 24px;
    font-size: 14px;
  }
  /* line 693, 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 701, app/assets/stylesheets/layout/_header.scss */
  .submenu .col-2 {
    padding: 0 1.6rem;
  }
}

@media screen and (max-width: 44em) {
  /* line 708, app/assets/stylesheets/layout/_header.scss */
  .submenu {
    box-shadow: unset;
    padding-top: 4.8rem;
    margin-top: 0;
  }
  /* line 714, 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 725, app/assets/stylesheets/layout/_header.scss */
  .submenu {
    box-shadow: unset;
    padding-top: 4.8rem;
    margin-top: 0;
  }
  /* line 731, 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 739, 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 748, 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 760, app/assets/stylesheets/layout/_header.scss */
.slider {
  position: relative;
  /**************************/
  /* BELOW 1344px (Smaller desktops) (max-width: 84em) */
  /**************************/
}

/* line 763, 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 772, app/assets/stylesheets/layout/_header.scss */
.slider__logo-box:hover {
  transform: translateY(-5px);
  /* Move up slightly on hover */
}

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

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

/* line 783, 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 783, app/assets/stylesheets/layout/_header.scss */
  .slider__text-box {
    left: 12%;
  }
}

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

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

/* line 822, 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 833, app/assets/stylesheets/layout/_header.scss */
.main-nav-link:hover, .main-nav-link:active {
  color: var(--color-primary-shade);
}

/* line 838, 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: 9px;
  color: #fff;
  background-color: var(--color-primary);
}

/* line 846, 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-shade);
}

/*
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 */
.section-mission {
  background-color: var(--color-grey-light-1);
  padding: 9.6rem 0;
}

/* line 10, app/assets/stylesheets/pages/_all-pages.scss */
.section-courts-and-clubs {
  padding: 14.6rem 0 12rem 0;
  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;
  transform: skewY(-7deg);
  margin-top: -20rem;
  /**************************/
  /* 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 23, app/assets/stylesheets/pages/_all-pages.scss */
.section-courts-and-clubs > * {
  transform: skewY(7deg);
}

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

/* line 34, app/assets/stylesheets/pages/_all-pages.scss */
.section-our-community {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  padding: 30rem 0 0 0;
  margin-top: -24.4rem;
  background-color: #fdf2e9;
  /**************************/
  /* 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 34, app/assets/stylesheets/pages/_all-pages.scss */
  .section-our-community {
    grid-template-columns: 1fr;
  }
}

/* line 49, app/assets/stylesheets/pages/_all-pages.scss */
.section-find-a-coach {
  padding: 9.6rem 0;
}

/* line 54, 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 54, app/assets/stylesheets/pages/_all-pages.scss */
  .section-sign-in--home {
    padding: 10rem 0;
  }
}

/* line 69, 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 69, 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;
}

/*
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 {
  background-color: var(--color-grey-light-1);
  padding: 30.2rem 0 9.6rem 0;
  margin-top: -20vh;
}

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

/* line 17, 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 28, 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 33, app/assets/stylesheets/pages/_paddle.scss */
.index-page .paddle-container {
  padding: 0 3.2rem;
}

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

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

@media only screen and (max-width: 34em) {
  /* line 28, 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 #d3d3d3;
  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;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* line 241, 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;
  text-transform: uppercase;
}

/* line 134, 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 144, app/assets/stylesheets/pages/_paddle-review.scss */
.number-input-wrapper {
  margin-bottom: 3rem;
}

/* line 148, 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 159, app/assets/stylesheets/pages/_paddle-review.scss */
.tab-radio {
  display: none;
}

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

/* Hide the content by default */
/* line 170, app/assets/stylesheets/pages/_paddle-review.scss */
.tab-content {
  display: none;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 10px;
}

/* Show the content when the corresponding radio button is checked */
/* line 178, 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;
  text-transform: uppercase;
}

/* line 134, 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 144, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.number-input-wrapper {
  margin-bottom: 3rem;
}

/* line 148, 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 159, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.tab-radio {
  display: none;
}

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

/* Hide the content by default */
/* line 170, app/assets/stylesheets/pages/_paddle-ball-review.scss */
.tab-content {
  display: none;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 10px;
}

/* Show the content when the corresponding radio button is checked */
/* line 178, 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 5, app/assets/stylesheets/pages/_paddle-cover.scss */
.section-paddle-cover-landing {
  background-color: var(--color-grey-light-1);
  padding: 9.6rem 0 30rem 0;
}

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

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

/* line 21, app/assets/stylesheets/pages/_paddle-cover.scss */
.paddle-cover-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/_paddle-cover.scss */
.landing-page .paddle-cover-container {
  padding-bottom: 9.6rem;
}

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

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

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

/* line 55, app/assets/stylesheets/pages/_paddle-cover.scss */
.paddle-cover__image-box {
  position: relative;
  padding: 2rem;
  border-radius: 11px;
  border: 1px solid #d3d3d3;
  margin-bottom: 2rem;
}

/* line 63, app/assets/stylesheets/pages/_paddle-cover.scss */
.paddle-cover__image-wrapper {
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

/* line 96, app/assets/stylesheets/pages/_paddle-cover.scss */
.paddle-cover__link:link, .paddle-cover__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/_paddle-cover.scss */
.paddle-cover__link:hover, .paddle-cover__link:active {
  color: var(--color-primary);
  transform: translateY(-0.5rem);
}

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

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

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

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

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

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

/* line 151, app/assets/stylesheets/pages/_paddle-cover.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/_paddle-cover.scss */
.color-display:hover {
  border: 0.32rem solid var(--color-primary);
}

/* line 172, app/assets/stylesheets/pages/_paddle-cover.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;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

/* line 190, app/assets/stylesheets/pages/_paddle-cover.scss */
.paddle-cover__image-wrapper:hover .hover-text {
  bottom: 0;
  /* Move the text up to be visible on hover */
}

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

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

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

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

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

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

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

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

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

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

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

/* line 241, app/assets/stylesheets/pages/_paddle-cover.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-cover-review.scss */
.cover {
  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-cover-review.scss */
.cover-single-image {
  border: 1px solid var(--color-grey-dark-3);
}

/* line 13, app/assets/stylesheets/pages/_paddle-cover-review.scss */
.cover-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-cover-review.scss */
.cover-group-image {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
}

/* line 44, app/assets/stylesheets/pages/_paddle-cover-review.scss */
.cover-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-cover-review.scss */
.cover-details__price .new-price {
  color: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* line 134, app/assets/stylesheets/pages/_paddle-cover-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 144, app/assets/stylesheets/pages/_paddle-cover-review.scss */
.number-input-wrapper {
  margin-bottom: 3rem;
}

/* line 148, app/assets/stylesheets/pages/_paddle-cover-review.scss */
.cover-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 159, app/assets/stylesheets/pages/_paddle-cover-review.scss */
.tab-radio {
  display: none;
}

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

/* Hide the content by default */
/* line 170, app/assets/stylesheets/pages/_paddle-cover-review.scss */
.tab-content {
  display: none;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 10px;
}

/* Show the content when the corresponding radio button is checked */
/* line 178, app/assets/stylesheets/pages/_paddle-cover-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 */
.coaches-container {
  display: grid;
  flex-direction: row;
  row-gap: 9.6rem;
}

/* line 8, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 6.4rem;
  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;
  /**************************/
  /* 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 17, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-intro__img-box {
  max-width: 100%;
  height: 97rem;
  /**************************/
  /* 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 17, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-intro__img-box {
    height: 100%;
  }
}

@media only screen and (max-width: 34em) {
  /* line 17, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-intro__img-box {
    height: 57rem;
  }
}

/* line 30, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-intro__img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center top;
  /**************************/
  /* 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 30, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-intro__img {
    border-radius: 0.3rem;
  }
}

@media only screen and (max-width: 59em) {
  /* line 8, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-intro {
    padding: 4.8rem;
    column-gap: 4.8rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 8, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-intro {
    padding: 3rem;
  }
}

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

/* line 56, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6.4rem;
  row-gap: 9.6rem;
  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;
  /**************************/
  /* 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) */
  /**************************/
}

@media only screen and (max-width: 59em) {
  /* line 56, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-container {
    padding: 4.8rem;
    column-gap: 4.8rem;
  }
}

@media only screen and (max-width: 44em) {
  /* line 56, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-container {
    padding: 3rem;
  }
}

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

/* line 83, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach__paragraph {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* line 87, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach__paragraph--ps {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-grey-dark);
  font-style: italic;
}

/* line 95, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: flex-start;
  gap: 2rem;
}

/* line 103, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* line 112, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach__item {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* line 117, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach__img-box {
  max-width: 100%;
  /* Ensure the image doesn't exceed its container's width */
}

/* line 121, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach__img {
  width: 100%;
  /* Ensure the image takes up the entire space of its container */
  height: auto;
  /* Maintain the image's aspect ratio */
  display: block;
}

/* line 128, app/assets/stylesheets/pages/_find-a-coach.scss */
.about-the-coach {
  display: grid;
  grid-template-columns: 1fr;
  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;
  /**************************/
  /* 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 128, app/assets/stylesheets/pages/_find-a-coach.scss */
  .about-the-coach {
    padding: 4.8rem;
    column-gap: 4.8rem;
  }
}

/* line 142, app/assets/stylesheets/pages/_find-a-coach.scss */
.about-the-coach__text {
  display: grid;
  gap: 2rem;
}

/* line 147, app/assets/stylesheets/pages/_find-a-coach.scss */
.about-the-coach__paragraph {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* line 153, app/assets/stylesheets/pages/_find-a-coach.scss */
.coach-testimonials-wrapper {
  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;
  /**************************/
  /* 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 153, app/assets/stylesheets/pages/_find-a-coach.scss */
  .coach-testimonials-wrapper {
    padding: 4.8rem;
    column-gap: 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/_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)
*/
/*
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 12, app/assets/stylesheets/pages/_sign-in.scss */
.sign-in {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(/assets/form-background_3-4ca2b2c4b8c9c24ebd3f7a00fe654372ce8e99c5e88d41d0e999f9f3688528fa.jpg);
  background-size: cover;
  background-size: 100;
  border-radius: 0.3rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  /**************************/
  /* 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 12, app/assets/stylesheets/pages/_sign-in.scss */
  .sign-in {
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 65%, transparent 65%), url(/assets/form-background_3-4ca2b2c4b8c9c24ebd3f7a00fe654372ce8e99c5e88d41d0e999f9f3688528fa.jpg);
    background-size: cover;
  }
}

@media only screen and (max-width: 59em) {
  /* line 12, app/assets/stylesheets/pages/_sign-in.scss */
  .sign-in {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%), url(/assets/form-background_3-4ca2b2c4b8c9c24ebd3f7a00fe654372ce8e99c5e88d41d0e999f9f3688528fa.jpg);
    background-size: cover;
  }
}

/* line 55, app/assets/stylesheets/pages/_sign-in.scss */
.sign-in__form {
  width: 50%;
  padding: 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) */
  /**************************/
}

@media only screen and (max-width: 75em) {
  /* line 55, app/assets/stylesheets/pages/_sign-in.scss */
  .sign-in__form {
    width: 65%;
  }
}

@media only screen and (max-width: 59em) {
  /* line 55, app/assets/stylesheets/pages/_sign-in.scss */
  .sign-in__form {
    width: 100%;
  }
}

/*
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)
*/
/*
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;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2rem;
}

/* line 60, app/assets/stylesheets/pages/_tournament.scss */
.tournament__title:hover {
  color: var(--color-primary-dark);
}

/* line 64, app/assets/stylesheets/pages/_tournament.scss */
.tournament__title:active, .tournament__title:focus {
  outline: none;
}

/* line 70, 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;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2rem;
}

/* line 79, app/assets/stylesheets/pages/_article.scss */
.article__title:hover {
  color: var(--color-primary-dark);
}

/* line 83, app/assets/stylesheets/pages/_article.scss */
.article__title:active, .article__title:focus {
  outline: none;
}

/* line 89, 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;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2rem;
}

/* line 60, app/assets/stylesheets/pages/_event.scss */
.event__title:hover {
  color: var(--color-primary-dark);
}

/* line 64, app/assets/stylesheets/pages/_event.scss */
.event__title:active, .event__title:focus {
  outline: none;
}

/* line 70, 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;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2rem;
}

/* line 79, app/assets/stylesheets/pages/_blog.scss */
.blog__title:hover {
  color: var(--color-primary-dark);
}

/* line 83, app/assets/stylesheets/pages/_blog.scss */
.blog__title:active, .blog__title:focus {
  outline: none;
}

/* line 89, app/assets/stylesheets/pages/_blog.scss */
.blog__text {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-bottom: 3rem;
}
