/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

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

1em = 16px
*/
@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 moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}

@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  background-color: black;
  box-sizing: border-box;
  padding: 3rem;
}

@media only screen and (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

::selection {
  background-color: #350c0d;
  color: #fff;
}

body {
  background-color: black;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777;
}

.heading-cdr {
  color: #383232;
  display: block;
  font-size: 10rem;
  font-family: "Buffalo";
  letter-spacing: 0.3rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@media only screen and (max-width: 37.5em) {
  .heading-cdr {
    letter-spacing: 1rem;
    font-family: 5rem;
  }
  .heading-secondary-bp {
    padding: 1em;
  }
}

.image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 45%;
}

.venueTitle h1 {
  font-size: 4rem;
  font-weight: 900;
}
.nextGig a {
  color: #ffa000;
  text-decoration: none;
}
.nextGig a:hover {
  background-image: linear-gradient(to right, #ffa000, #bb0000, #ffa000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.2s;
  text-align: center;
}
.venmoQR img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.social-media-text {
  text-align: center;
  margin-top: 1rem;
}

.bandImg {
  height: 30%;
  width: 30%;
  padding-top: 1.8rem;
}

.bandImgPage {
  width: 80%;
  clip-path: polygon(0 0%, 100% 10%, 100% 90%, 0 100%);
  border: #260101 7px solid;
}

.members-heading h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #ffffff, #e40e15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
  margin: 8.5rem 2rem;
  animation: moveInRight 3s ease-out;
}

.members-heading p {
  font-size: 24px;
  margin: -10rem 2rem;
  color: #fdcd4e;
  animation: moveInRight 4s ease-out;
}

@media screen and (max-width: 56.25em) {
  .members-heading h2 {
    margin: 0;
  }
}

.songs-heading h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #ffa000, #bb0000, #ffa000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2;
  animation: moveInRight 1s ease-out;
}

.songs-heading p {
  font-size: 24px;
  margin-left: 9.2rem;
  color: #fdcd4e;
}

@media screen and (max-width: 56.25em) {
  .songs-heading h2 {
    margin: 1rem 0;
  }
}

@media screen and (max-width: 56.25em) {
  .members-heading p {
    margin: 0;
  }
}

.heading-primary {
  color: #ffa000;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem;
}

.heading-primary--img {
  width: 100%;
}

@media only screen and (max-width: 37.5em) {
  .heading-primary--img {
    width: 300px;
  }
}

.heading-primary--main {
  display: block;
  font-size: 8rem;
  font-weight: 400;
  letter-spacing: 1.5rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*
        animation-delay: 3s;
        animation-iteration-count: 3;
        */
}

@media only screen and (max-width: 37.5em) {
  .heading-primary--main {
    letter-spacing: 1rem;
    font-size: 0.5rem;
  }
}

.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.75rem;
  animation: moveInRight 1s ease-out;
}

@media only screen and (max-width: 37.5em) {
  .heading-primary--sub {
    letter-spacing: 0.5rem;
    font-size: 1.5rem;
  }
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #ffa000, #bb0000, #ffa000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
  animation: moveInRight 2s ease-out;
}

@media only screen and (max-width: 56.25em) {
  .heading-secondary {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .heading-secondary {
    font-size: 2.5rem;
  }
}

.heading-secondary:hover {
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.heading-secondary-bp {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #ffa000, #bb0000, #ffa000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
  text-align: center;
  animation: moveInRight 1s ease-out;
}

.heading-secondary-show {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #ffa000, #bb0000, #ffa000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
  text-align: center;
}

.heading-secondary-book {
  font-size: 2.75rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #581315, #8d1e22);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}

.heading-tertiary {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffa000;
}
.underline {
  display: inline-block;
  position: relative;
  padding-bottom: 0.25rem;
  margin: 0;
}
.underline::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#242121),
    color-stop(#d1a0a0),
    to(#242121)
  );
  background: linear-gradient(to right, #cecaca, #ffb900, #cecaca);
  -webkit-clip-path: polygon(
    0 0,
    calc(50% - 0.75rem) 0,
    50% calc(100% - 3px),
    calc(50% + 0.75rem) 0,
    100% 0,
    100% 2px,
    calc(50% + 0.75rem + 1px) 2px,
    50% 100%,
    calc(50% - 0.75rem - 1px) 2px,
    0 2px
  );
  clip-path: polygon(
    0 0,
    calc(50% - 0.75rem) 0,
    50% calc(100% - 3px),
    calc(50% + 0.75rem) 0,
    100% 0,
    100% 3px,
    calc(50% + 0.75rem + 1px) 3px,
    50% 100%,
    calc(50% - 0.75rem - 1px) 3px,
    0 3px
  );
}
.paragraph {
  font-size: 1.6rem;
}

.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.book-h3 {
  color: #180e0e;
}

@media only screen and (max-width: 56.25em) {
  .venmoQR img {
    width: 50%;
  }
  .image img {
    width: 75%;
  }
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.bg-video {
  position: absolute;
  top: 2rem;
  left: 0;
  height: 89.1%;
  width: 100%;
  z-index: -1;
  opacity: 1;
  overflow: hidden;
  clip-path: polygon(0 13.4%, 100% 0, 100% 100%, 0 84.6%);
}

.bg-video__content {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

@media screen and (max-width: 56.25em) {
  .bg-video {
    visibility: hidden;
  }
}

.bg-video-1 {
  position: absolute;
  top: 2rem;
  left: 0;
  height: 89.3%;
  width: 100%;
  z-index: -1;
  opacity: 1;
  overflow: hidden;
  clip-path: polygon(0 13.3%, 100% 0, 100% 100%, 0 85%);
}

.bg-video-1__content {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

@media screen and (max-width: 56.25em) {
  .bg-video-1 {
    visibility: hidden;
  }
}

.bg-video-2 {
  position: absolute;
  top: 2rem;
  left: 0;
  height: 89.1%;
  width: 100%;
  z-index: -1;
  opacity: 1;
  overflow: hidden;
  clip-path: polygon(0 13.1%, 100% 0, 100% 100%, 0 84.5%);
}

.bg-video-2__content {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

@media screen and (max-width: 56.25em) {
  .bg-video-2 {
    visibility: hidden;
  }
}

.bg-video-3 {
  position: absolute;
  top: 2rem;
  left: 0;
  height: 89.3%;
  width: 100%;
  z-index: -1;
  opacity: 1;
  overflow: hidden;
  clip-path: polygon(0 13.43%, 100% 0, 100% 100%, 0 84.7%);
}

.bg-video-3__content {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

@media screen and (max-width: 56.25em) {
  .bg-video-3 {
    visibility: hidden;
  }
}

.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn:active,
.btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn--white {
  background-color: #fff;
  color: #777;
}

.btn--white::after {
  background-color: #fff;
}

.btn--green {
  background-color: #350c0d;
  color: #fff;
}

.btn--green::after {
  background-color: #350c0d;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.btn-text:link,
.btn-text:visited {
  font-size: 1.6rem;
  color: #350c0d;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #350c0d;
  padding: 3px;
  transition: all 0.2s;
}

.btn-text:hover {
  background-color: #350c0d;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.btn--book {
  margin-top: 1rem;
}

.triocard__details .card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 52rem;
  opacity: 0.7;
}

.card__side {
  height: 45rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}

.card__side--front {
  background-color: #fff;
}

.card__side--back {
  transform: rotateY(180deg);
}

.card__side--back-1 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}

.card__side--back-2 {
  background-image: linear-gradient(to right bottom, #033c03, #43a536);
}

.card__side--back-3 {
  background-image: linear-gradient(to right bottom, #2e363d, #767779);
}

.card__side--back-4 {
  background-image: linear-gradient(to right bottom, #992669, #f54cd9);
}

.card__side--back-5 {
  background-image: linear-gradient(to right bottom, #c79f33d9, #a55428d9);
}

.card__side--back-6 {
  background-image: linear-gradient(to right bottom, #a37130, #a0a555);
}

.card__side--back-7 {
  background-image: linear-gradient(to right bottom, #4b2704, #e7f157);
}

.card__side--back-8 {
  background-image: linear-gradient(to right bottom, #4617f0, #2bceda);
}

.card__side--back-9 {
  background-image: linear-gradient(to right bottom, #581315, #8d1e22);
}

.card__side--back-10 {
  background-image: linear-gradient(to right bottom, #88ca5e, #504948);
}

.card__side--back-11 {
  background-image: linear-gradient(to right bottom, #bcedf9, #758d87);
}

.card__side--back-12 {
  background-image: linear-gradient(to right bottom, #4e0505, #e9262f);
}

.card__side--back-14 {
  background-image: linear-gradient(to right bottom, #000, #ffd700);
}
.card__side--back-15 {
  background-image: linear-gradient(to right bottom, #002a54, #4fb0f0);
}
.card__side--back-16 {
  background-image: linear-gradient(to right bottom, #ea9d57, #000);
}
.card__side--back-17 {
  background-image: linear-gradient(to right bottom, #b8b6b6, #000);
}
.card__side--back-19 {
  background-image: linear-gradient(to right bottom, #870ada, #8e66af);
}

.card:hover .card__side--front {
  transform: rotateY(-180deg);
}

.card:hover .card__side--back {
  transform: rotateY(0);
}

.card__picture {
  background-size: cover;
  height: 18rem;
  background-blend-mode: overlay;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* The Caddie Shack */
.card__picture--1 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa),
    url(/img/card_pictures/P23905836000x400.JPG);
}

/* Whiskey Room */
.card__picture--2 {
  background-image: linear-gradient(to right bottom, #fff, #43a536),
    url(/img/card_pictures/32flipImage.jpg);
}

/* Rockhouse */
.card__picture--3 {
  background-image: linear-gradient(to right bottom, #2e363d, #767779),
    url(/img/RockHouse2022/P2400081tn.JPG);
}

/* Hardtails */
.card__picture--4 {
  background-image: linear-gradient(to right bottom, #ede6ea, #f54cd9),
    url(/img/hardtails/hardtails2.jpg);
}

/* Trio */
.card__picture--5 {
  background-image: linear-gradient(to right bottom, #c79f33d9, #a55428d9),
    url(/img/card_pictures/cdr-trio.jpg);
}

/* Baby A's */
.card__picture--6 {
  background-image: linear-gradient(to right bottom, #a37130, #a0a555),
    url(/img/BabyAs/IMG_0554sm.JPEG);
}

/* Cork & Barrel */
.card__picture--7 {
  background-image: linear-gradient(to right bottom, #4b2704, #e7f157),
    url(/img/card_pictures/7.jpg);
}

/* HomeTown Watering Hole */
.card__picture--8 {
  background-image: linear-gradient(to right bottom, #4617f0, #2bceda),
    url(/img/LooseScrew/LooseScrewFest1.jpg);
}

/* Balcones Country Club */
.card__picture--9 {
  background-image: linear-gradient(to right bottom, #581315, #8d1e22),
    url(/img/card_pictures/cdr-1.jpg);
}

/* Water Tank */
.card__picture--10 {
  background-image: linear-gradient(to right bottom, #88ca5e, #504948),
    url(/img/card_pictures/20241026_201224.1.jpg);
}

/* Parmer Lane Tavern */
.card__picture--11 {
  background-image: linear-gradient(to right bottom, #376d7a, #758d87),
    url(/img/card_pictures/14.jpg);
}

/* Spare Birdie */
.card__picture--12 {
  background-image: linear-gradient(to right bottom, #e3bebe, #e9262f),
    url(/img/card_pictures/P2400081.jpg);
}

/* Lucky Rabbit */
.card__picture--14 {
  background-image: linear-gradient(to right bottom, #000, #ffd700),
    url(/img/card_pictures/LuckyRabbit1.JPG);
}

/* Kalahari */
.card__picture--15 {
  background-image: linear-gradient(to right bottom, #002a54, #4fb0f0),
    url(/img/card_pictures/28.jpg);
}
/* The Fieldhouse */
.card__picture--16 {
  background-image: linear-gradient(to right bottom, #ea9d57, #000),
    url(/img/card_pictures/fieldhouse.jpg);
}
/* Copper Shot */
.card__picture--17 {
  background-image: linear-gradient(to right bottom, #b8b6b6, #000),
    url(/img/card_pictures/CopperShotStill.jpg);
}
/* Alcove */
.card__picture--19 {
  background-image: linear-gradient(to right bottom, #870ada, #8e66af),
    url(/img/card_pictures/Alcove.jpg);
}

.card__heading {
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 15.4rem;
  right: 0;
  width: 100%;
  -webkit-clip-path: polygon(0 54%, 100% -3%, 100% 100%, 0 100%);
  clip-path: polygon(0 54%, 100% -3%, 100% 100%, 0 100%);
}

.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.card__heading-span--1 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(41, 152, 255, 0.85)),
    to(rgba(86, 67, 250, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(41, 152, 255, 0.85),
    rgba(86, 67, 250, 0.85)
  );
}

.card__heading-span--2 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(3, 60, 3, 0.85)),
    to(rgba(67, 165, 54, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(3, 60, 3, 0.85),
    rgba(67, 165, 54, 0.85)
  );
}

.card__heading-span--3 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(46, 54, 61, 0.85)),
    to(rgba(118, 119, 121, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(46, 54, 61, 0.85),
    rgba(118, 119, 121, 0.85)
  );
}

.card__heading-span--4 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(153, 38, 105, 0.85)),
    to(rgba(245, 76, 217, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(153, 38, 105, 0.85),
    rgba(245, 76, 217, 0.85)
  );
}

.card__heading-span--5 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(199, 159, 51, 0.85)),
    to(rgba(165, 84, 40, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(199, 159, 51, 0.85),
    rgba(165, 84, 40, 0.85)
  );
}

.card__heading-span--6 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(192, 113, 9, 0.85)),
    to(rgba(194, 204, 58, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(192, 113, 9, 0.85),
    rgba(194, 204, 58, 0.85)
  );
}

.card__heading-span--7 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(75, 39, 4, 0.85)),
    to(rgba(231, 241, 87, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(75, 39, 4, 0.85),
    rgba(231, 241, 87, 0.85)
  );
}

.card__heading-span--8 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(70, 23, 240, 0.85)),
    to(rgba(86, 67, 250, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(70, 23, 240, 0.85),
    rgba(86, 67, 250, 0.85)
  );
}

.card__heading-span--9 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(88, 19, 21, 0.85)),
    to(rgba(141, 30, 34, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(88, 19, 21, 0.85),
    rgba(141, 30, 34, 0.85)
  );
}

.card__heading-span--10 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(136, 202, 94, 0.85)),
    to(rgba(80, 73, 72, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(136, 202, 94, 0.85),
    rgba(80, 73, 72, 0.85)
  );
}

.card__heading-span--11 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(55, 109, 122, 0.85)),
    to(rgba(117, 141, 135, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    (rgba(55, 109, 122, 0.85)),
    rgba(117, 141, 135, 0.85)
  );
}

.card__heading-span--12 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(78, 5, 5, 0.85)),
    to(rgba(233, 38, 47, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    (rgba(78, 5, 5, 0.85)),
    rgba(233, 38, 47, 0.85)
  );
}

.card__heading-span--14 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(0, 0, 0, 0.85)),
    to(rgba(255, 215, 0, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    (rgba(0, 0, 0, 0.85)),
    rgba(255, 215, 0, 0.85)
  );
}

.card__heading-span--14 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(0, 0, 0, 0.85)),
    to(rgba(255, 215, 0, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    (rgba(0, 0, 0, 0.85)),
    rgba(255, 215, 0, 0.85)
  );
}

.card__heading-span--15 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(0, 42, 84, 0.85)),
    to(rgba(79, 176, 240, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    (rgba(0, 42, 84, 0.85)),
    rgba(79, 176, 240, 0.85)
  );
}
.card__heading-span--16 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(234, 157, 87, 0.85)),
    to(rgba(0, 0, 0, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    (rgba(234, 157, 87, 0.85)),
    rgba(0, 0, 0, 0.85)
  );
}
.card__heading-span--17 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(184, 182, 182, 0.85)),
    to(rgba(0, 0, 0, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    (rgba(184, 182, 182, 0.85)),
    rgba(0, 0, 0, 0.85)
  );
}
.card__heading-span--19 {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(135, 10, 218, 0.85)),
    to(rgba(0, 0, 0, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    (rgba(142, 102, 175, 0.85)),
    rgba(0, 0, 0, 0.85)
  );
}

.card__details {
  padding: 3rem;
  margin-top: 2rem;
}

.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}

.card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}

.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}

.card__price-box {
  text-align: center;
  color: #fff;
  margin-bottom: 8rem;
}

.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.card__price-value {
  font-size: 6rem;
  font-weight: 100;
}

@media only screen and (max-width: 56.25em), only screen and (hover: none) {
  .card {
    height: auto;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }

  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
  }

  .card:hover .card__side--front {
    transform: rotateY(0);
  }

  .card__details {
    padding: 1rem 3rem;
  }

  .card__cta {
    /* position: relative; */
    top: 0%;
    left: 0;
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
  }

  .card__price-box {
    margin-bottom: 3rem;
  }

  .card__price-value {
    font-size: 4rem;
  }
}
.section-about__nextShow {
  padding-bottom: 3rem;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.section-about__videos {
  padding-top: 0;
  padding-bottom: 5rem;
  background-image: linear-gradient(
      to right bottom,
      rgba(153, 135, 135, 0.8),
      rgba(78, 76, 70, 0.7)
    ),
    url(../img/RockHouse2022/P2390755med.JPG);
  background-size: cover;
  text-align: center;
}

.heading-secondary {
  margin-top: 5rem;
}

@media screen and (max-width: 400px) {
  header div {
    margin: 0;
  }

  header {
    padding: 0;
  }
}
.wrapper {
  margin: 0 auto;
  width: 50%;
}
.videowrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0px;
}
.videowrapper iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  width: 100%;
}
.video__spacer {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.composition {
  position: relative;
}

@media only screen and (max-width: 56.25em) {
  .composition {
    height: 77rem;
  }
}

.composition__photo {
  width: 40%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 1rem;
}

@media only screen and (max-width: 56.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.33333333%;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  }
}

.composition__photo--p1 {
  left: 0rem;
  top: 0rem;
}

@media only screen and (max-width: 56.25em) {
  .composition__photo--p1 {
    top: 4rem;
    left: 2.8rem;
    transform: scale(1.4);
  }
}

.composition__photo--p2 {
  left: 21.6rem;
  top: 12rem;
}

@media only screen and (max-width: 56.25em) {
  .composition__photo--p2 {
    top: 4rem;
    left: 10.6rem;
    transform: scale(1.4);
  }
}

.composition__photo--p3 {
  left: 43.2rem;
  top: 24rem;
}

@media only screen and (max-width: 56.25em) {
  .composition__photo--p3 {
    top: 31rem;
    left: -24.5rem;
    transform: scale(1.4);
  }
}

.composition__photo--p4 {
  left: 21.6rem;
  top: 36rem;
}

@media only screen and (max-width: 56.25em) {
  .composition__photo--p4 {
    top: 12.4rem;
    left: 24.4rem;
    transform: scale(1.44);
  }
}

.composition__photo--p5 {
  left: 0;
  top: 48rem;
}

@media only screen and (max-width: 56.25em) {
  .composition__photo--p5 {
    top: 40rem;
    left: 0;
    transform: scale(1.4);
  }
}

.composition__photo:hover {
  outline: 0.75rem solid #800407;
  transform: scale(1) translateY(1.2rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

@media only screen and (max-width: 56.25em) {
  .feature-box {
    padding: 2rem;
  }
}

.feature-box__text {
  color: #ffa000;
}

.feature-box__icon {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  background-image: linear-gradient(to right, #581315, #8d1e22);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media only screen and (max-width: 56.25em) {
  .feature-box__icon {
    margin-bottom: 0;
  }
}

.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

.form__group:not(:last-child) {
  margin-bottom: 2rem;
}

.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(#fff, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all 0.3s;
}

@media only screen and (max-width: 56.25em) {
  .form__input {
    width: 100%;
  }
}

.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #350c0d;
}

.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}

.form__input::-webkit-input-placeholder {
  color: #999;
}

.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

.form__radio-group {
  width: 49%;
  display: inline-block;
}

@media only screen and (max-width: 56.25em) {
  .form__radio-group {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.form__radio-input {
  display: none;
}

.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 4.5rem;
}

.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid #350c0d;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.4rem;
}

.form__radio-button::after {
  content: "";
  display: block;
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #350c0d;
  opacity: 0;
  transition: opacity 0.2s;
}

.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  .popup {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
  }
}

.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  transition: all 0.5s 0.2s;
}

.popup__left {
  width: 33.333333%;
  display: table-cell;
}

.popup__right {
  width: 66.6666667%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}

.popup__img {
  display: block;
  width: 100%;
}

.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
  -moz-column-gap: 4rem;
  -moz-column-rule: 1px solid #eee;
  column-count: 2;
  column-gap: 4rem;
  column-rule: 1px solid #eee;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.popup:target {
  opacity: 1;
  visibility: visible;
}

.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup__close:link,
.popup__close:visited {
  color: #777;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
}

.popup__close:hover {
  color: #350c0d;
}

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg);
}

@media only screen and (max-width: 56.25em) {
  .story {
    width: 100%;
    padding: 4rem;
    padding-left: 7rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .story {
    transform: skewX(0);
  }
}

.story__shape {
  width: 15rem;
  height: 15rem;
  float: left;
  transform: translateX(-3rem) skewX(12deg);
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

@supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
  .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: 37.5em) {
  .story__shape {
    transform: translateX(-3rem) skewX(0);
  }
}

.story__img {
  height: 100%;
  transform: translateX(-4rem) scale(1.4);
  backface-visibility: hidden;
  transition: all 0.5s;
}

.story__text {
  transform: skewX(12deg);
}

@media only screen and (max-width: 37.5em) {
  .story__text {
    transform: skewX(0);
  }
}

.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}

.story:hover .story__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.story:hover .story__img {
  transform: translateX(-4rem) scale(1);
  filter: blur(3px) brightness(80%);
}

.footer {
  background-color: #ffa000;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #5a4545;
  height: 9rem;
}

@media only screen and (max-width: 56.25em) {
  .footer {
    padding: 8rem 0;
  }
}

.footer__logo-box {
  text-align: center;
  margin-bottom: 8rem;
}

@media only screen and (max-width: 56.25em) {
  .footer__logo-box {
    margin-bottom: 6rem;
  }
}

.footer__logo {
  width: 11.5rem;
  height: auto;
}

.footer__navigation {
  border-top: 1px solid #777;
  padding-top: 2rem;
  display: inline-block;
}

@media only screen and (max-width: 56.25em) {
  .footer__navigation {
    width: 100%;
    text-align: center;
  }
}

.footer__list {
  list-style: none;
}

.footer__item {
  display: inline-block;
}

.footer__item:not(:last-child) {
  margin-right: 1.5rem;
}

.footer__link:link,
.footer__link:visited {
  color: #f7f7f7;
  background-color: #333;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}

.footer__link:hover,
.footer__link:active {
  color: #350c0d;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transform: rotate(5deg) scale(1.3);
}

.footer__copyright {
  border-top: 1px solid #777;
  padding-top: 2rem;
  width: 80%;
  float: right;
}

@media only screen and (max-width: 56.25em) {
  .footer__copyright {
    width: 100%;
    float: none;
  }
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}

.row bp {
  margin: 0 auto;
}

.row:not(:last-child) {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.row [class^="col-"] {
  float: left;
}

.row [class^="col-"]:not(:last-child) {
  margin-right: 4.5rem;
}

@media only screen and (max-width: 56.25em) {
  .row [class^="col-"]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .row [class^="col-"] {
    width: 100% !important;
  }
}

.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}

.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}

.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}

.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}

.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}

.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}

.row-bp {
  margin: 0 auto;
}

.row-bp:last-child {
  margin-bottom: 3rem;
}

.row-bp:not(:last-child) {
  margin-bottom: 1rem;
}

@media only screen and (max-width: 56.25em) {
  .row-bp:not(:last-child) {
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .row-bp {
    max-width: 50rem;
    padding: 0 3rem;
  }
}

.row-bp::after {
  content: "";
  display: table;
  clear: both;
}

.row-bp [class^="col-"] {
  float: left;
}

.row-bp [class^="col-"]:not(:last-child) {
  margin-right: 1rem;
}

@media only screen and (max-width: 56.25em) {
  .row-bp [class^="col-"]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .row-bp [class^="col-"] {
    width: 100% !important;
  }
}

.row-bp .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}

.row-bp .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}

.row-bp .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}

.row-bp .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}

.row-bp .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}

.row-bp .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
  margin-top: 6rem;
}

.header {
  height: 50vh;
  background-image: linear-gradient(
      to right bottom,
      rgba(156, 83, 83, 0.9),
      rgba(78, 76, 70, 0.2)
    ),
    url(../img/polygon-background.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
}

@supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
  @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) {
    .header {
      background: linear-gradient(
          to right bottom,
          rgba(156, 83, 83, 0.9),
          rgba(78, 76, 70, 0.2)
        ),
        url(../img/polygon-background.jpg);
    }
  }
}

@media only screen and (max-width: 37.5em) {
  .header {
    height: 26vh;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 33vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 33vh, 0 100%);
  }
}

.header__logo-box {
  position: absolute;
  top: 4rem;
  left: 111rem;
}

.header__logo {
  height: 12.5rem;
}

.header__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.social-media-icon-fb {
  width: 5rem;
  padding-top: 3rem;
  margin-top: 7rem;
}

.social-media-icon-yt {
  width: 5rem;
  padding-top: 0.5rem;
}

.navigation__checkbox {
  display: none;
}

.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}

@media only screen and (max-width: 56.25em) {
  .navigation__button {
    top: 4rem;
    right: 4rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .navigation__button {
    top: 16rem;
    right: 2.5rem;
  }
}

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#581315, #8d1e22);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0.9;
}

@media only screen and (max-width: 56.25em) {
  .navigation__background {
    top: 4.5rem;
    right: 4.5rem;
  }
  .heading-primary--sub {
    letter-spacing: 0.5rem;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .navigation__background {
    top: 16rem;
    right: 3.3rem;
  }
}

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navigation__list {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}

.navigation__item {
  margin: 0.1rem;
}

.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  font-size: 32px;
  font-weight: 300;
  padding: 0.3rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    #fff 50%
  );
  background-size: 234%;
  transition: all 0.4s;
}

@media only screen and (max-width: 56.25em) {
  .navigation__link:link,
  .navigation__link:visited {
    font-size: 2.3rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .navigation__link:link,
  .navigation__link:visited {
    font-size: 2.3rem;
  }
}

.navigation__link:link span,
.navigation__link:visited span {
  margin-right: 0.3rem;
  display: inline-block;
}

.navigation__link:hover,
.navigation__link:active {
  background-position: 100%;
  color: #350c0d;
  transform: translateX(1rem);
}

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
}

.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}

.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}

.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}

.navigation__icon::before {
  top: -0.8rem;
}

.navigation__icon::after {
  top: 0.8rem;
}

.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}

.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.section-divide {
  background-color: #000000;
  padding: 1rem 0;
}

.section-about {
  background-color: #151111;
  /* padding: 10rem 0;
    margin-top: -24vh; */
  padding: 4rem;
  margin-top: 0;
}

@media only screen and (max-width: 56.25em) {
  .section-about {
    padding: 4rem 0;
  }
}

.section-features {
  padding: 3rem 0 10rem;
  background-image: linear-gradient(
      to right bottom,
      rgba(156, 83, 83, 0.8),
      rgba(78, 76, 70, 0.7)
    ),
    url(../img/cdr-3a.jpg);
  background-size: cover;
}

.section-features a {
  color: #800407;
}

.section-features a:hover {
  color: #000;
}

.section-features > * {
  transform: skewY(0deg);
}

@media only screen and (max-width: 56.25em) {
  .section-features {
    padding: 4rem 0;
  }
}

.section-tours {
  /* background-color: #261e1e;
    padding: 3rem 0 10rem 0; */
  padding: 3rem 0 10rem;
  background-image: linear-gradient(
      to right bottom,
      #261e1e,
      rgba(78, 76, 70, 0.7)
    ),
    url(../img/RockHouse2022/P2400131a.JPG);
  background-size: cover;
}

@media only screen and (max-width: 56.25em) {
  .section-tours {
    padding: 2rem 0 10rem 0;
  }
}

.section-stories {
  position: relative;
  padding: 2rem 0;
}

.section-book {
  padding: 7rem 0;
  background-image: linear-gradient(
      to right bottom,
      rgba(156, 83, 83, 0.8),
      rgba(78, 76, 70, 0.7)
    ),
    url(../img/polygon-background.jpg);
  background-size: cover;
  background-position: top;
}

@media only screen and (max-width: 56.25em) {
  .section-book {
    padding: 10rem 0;
  }
}

.book {
  background-image: linear-gradient(
      105deg,
      rgba(225, 225, 225, 0.6) 0%,
      rgba(78, 76, 70, 0.8) 42%,
      transparent 45%
    ),
    url(../img/marshals-5.24.19/31.jpg);
  background-size: 100%;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 75em) {
  .book {
    background-image: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      transparent 50%
    );
    background-size: cover;
  }
}

@media only screen and (max-width: 56.25em) {
  .book {
    background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
  }
}

.book__form {
  width: 50%;
  padding: 6rem;
}

@media only screen and (max-width: 75em) {
  .book__form {
    width: 65%;
  }

  .book-h3 {
    color: #180e0e;
    font-size: 20px;
  }
}

@media only screen and (max-width: 56.25em) {
  .book__form {
    width: 100%;
  }

  .book-h3 {
    color: #180e0e;
    font-size: 12px !important;
  }
}

/* ----------- iPad 1, 2, Mini and Air ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .section-about .row {
    max-width: 70rem;
  }

  .navigation__button {
    right: 10rem;
  }

  .navigation__background {
    right: 11rem;
  }

  .composition {
    height: 131rem;
  }

  .composition__photo--p1 {
    top: 7rem;
    left: 4rem;
  }

  .composition__photo--p2 {
    top: 6.9rem;
    left: 17.6rem;
  }

  .composition__photo--p3 {
    top: 51rem;
    left: -38.5rem;
  }

  .composition__photo--p4 {
    top: 22rem;
    left: 39rem;
    transform: scale(1.4);
  }

  .composition__photo--p5 {
    top: 66rem;
  }
}

/* Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .section-about {
    height: 220vh;
  }

  .section-about .row {
    max-width: 85rem;
  }

  .composition {
    height: 131rem;
  }

  .composition__photo--p1 {
    top: 1rem;
    left: 4rem;
  }

  .composition__photo--p2 {
    top: 1rem;
    left: 22.6rem;
  }

  .composition__photo--p3 {
    top: 24rem;
    left: 4rem;
  }

  .composition__photo--p4 {
    top: 24rem;
    left: 23rem;
  }

  .composition__photo--p5 {
    top: 48rem;
    left: 13rem;
  }

  .members-heading h2 {
    margin: 8.5rem 2rem;
  }

  .members-heading p {
    margin: -10rem 2rem;
  }
}

/* ----------- iPhone 6+, 7+ and 8+ ----------- */
/* Portrait */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
  .section-about {
    height: 239vh;
  }

  .composition__photo--p3 {
    top: 33rem;
    left: -26.5rem;
  }

  .composition__photo--p4 {
    top: 13rem;
    left: 25.4rem;
    transform: scale(1.44);
  }

  .composition__photo--p5 {
    top: 43rem;
  }
}

/* ----------- iPad Pro 12.9" ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .composition__photo--p1 {
    top: 1rem;
    transform: scale(0.9);
  }

  .members-heading h2 {
    margin: 8.5rem 2rem;
  }

  .members-heading p {
    margin: -10rem 2rem;
  }
}

/* Landscape */
@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .paragraph {
    font-size: 1.8rem;
  }

  .composition__photo--p1 {
    transform: scale(0.9);
  }

  .composition__photo--p2 {
    left: 19.4rem;
    transform: scale(0.9);
  }

  .composition__photo--p3 {
    left: 38.8rem;
    transform: scale(0.9);
  }

  .composition__photo--p4 {
    left: 19.4rem;
    transform: scale(0.9);
  }

  .composition__photo--p5 {
    transform: scale(0.9);
  }

  .members-heading h2 {
    margin: 8.5rem 2rem;
  }

  .members-heading p {
    margin: -10rem 2rem;
  }
}
