.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 300ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 300ms ease-in-out forwards;
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
  background-image: url("./../../../images/kraked/abstract-painting-edinburgh-grey-blue-sky_4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  overflow-y: auto;
}
@media (max-width: 48em) {
  body {
    background-color: hsl(209, 38%, 84%);
    background-image: none;
  }
}

@media (max-width: 48em) {
  .home {
    background-image: url("./../../../images/kraked/abstract-painting-edinburgh-grey-blue-sky_4-small.jpeg");
  }
}

.container {
  margin: 0 auto;
}
.container--pall {
  padding: 1.5rem;
}
.container--py {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container--pt {
  padding-top: 1.5rem;
}
.container--pb {
  padding-bottom: 1.5rem;
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pl {
  padding-left: 1.5rem;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.divider {
  height: 0;
  border-bottom: 2px solid white;
}
.divider__top {
  margin-bottom: 3rem;
}
@media (max-width: 48em) {
  .divider__top {
    margin-bottom: 1.5rem;
  }
}
.divider__bottom {
  margin-top: 3rem;
}
@media (max-width: 48em) {
  .divider__bottom {
    margin-top: 1.5rem;
  }
}
@media (max-width: 48em) {
  .divider {
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
  }
}

.blurb {
  margin-top: 0;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  flex-direction: column;
  line-height: 1.5;
  height: -moz-fit-content;
  height: fit-content;
  color: rgb(100, 100, 100);
  align-items: center;
}
.blurb > p {
  text-align: center;
  margin-bottom: 0;
  width: 100%;
  /*
          @include u.breakpoint-down(x-small) {
              padding-left: 0;
              padding-right: 0;
          }
          */
}
@media (max-width: 48em) {
  .blurb > p {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 48em) {
  .blurb {
    margin-left: 0;
    margin-right: 0;
  }
}

.spacer {
  text-align: center;
  height: 18vh;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}
@media (max-width: 48em) {
  .spacer {
    margin-bottom: 1.5rem;
  }
}
.spacer img {
  height: 100%;
}
@media (max-width: 48em) {
  .spacer img {
    max-width: 16.5rem;
    height: auto;
  }
}

.desktop-link {
  cursor: pointer;
}

.hide {
  visibility: hidden;
}

@media (max-width: 64em) {
  .hide-for-mobile-and-tablet {
    display: none;
  }
}

@media (max-width: 48em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 48.00125em) {
  .hide-for-desktop {
    display: none;
  }
}

button, .button {
  border: none;
  display: inline-block;
  background-color: white;
  min-width: 7.545rem;
  text-align: center;
  vertical-align: middle;
  padding: 0.65rem 0.8rem;
  margin-left: 0.125rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #A71D31;
  transition: color 300ms ease-in-out, 300ms ease-in-out;
}
button:hover, .button:hover {
  box-shadow: 0 0 0 2px rgb(246, 56, 68);
  color: rgb(246, 56, 68);
  opacity: 0.8;
}

.content {
  justify-content: center;
  min-height: 32vh;
  width: 100vw;
}
@media (max-width: 48em) {
  .content {
    padding-left: 0;
    padding-right: 0;
  }
}
.content .outer-wrapper {
  width: 100%;
  justify-content: center;
  align-items: center;
  max-width: 78rem;
  margin: 0 6rem 1.5rem 6rem;
  background-color: hsl(209, 38%, 84%);
  z-index: 18;
}
@media (max-width: 64em) {
  .content .outer-wrapper {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
@media (max-width: 48em) {
  .content .outer-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    background-color: transparent;
  }
}
@media (max-width: 20em) {
  .content .outer-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.content .inner-wrapper {
  width: 100%;
  justify-content: center;
  flex-direction: column;
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: 10vw;
  margin-right: 10vw;
}
@media (max-width: 64em) {
  .content .inner-wrapper {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}
@media (max-width: 48em) {
  .content .inner-wrapper {
    margin-left: 3vw;
    margin-right: 3vw;
  }
}
@media (max-width: 33.75em) {
  .content .inner-wrapper {
    margin-left: 0;
    margin-right: 0;
    margin-top: 1.5rem;
  }
}

h1, h2, h3, h4 {
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 0;
}

@media (max-width: 48em) {
  h3, h4 {
    font-weight: 400;
  }
}

h1 {
  font-size: clamp(1.75rem, 1rem + 2vw, 2.5rem);
}

h2 {
  font-size: clamp(1.375rem, 0.875rem + 1.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 0.3269rem + 1.4423vw, 1.625rem);
}

h4 {
  font-size: clamp(1.125rem, 0.8173rem + 0.48vw, 1.25rem);
}

p {
  margin-top: 0;
  font-size: 1rem;
  color: rgb(100, 100, 100);
}
@media (max-width: 48em) {
  p > a {
    font-weight: 400;
  }
}
@media (max-width: 20em) {
  p {
    font-size: 0.875rem;
  }
}

a,
a:visited,
a:active {
  text-decoration: none;
}

a {
  color: white;
  transition: color 300ms ease-in-out;
}
a:hover {
  color: rgb(246, 56, 68);
}

:root {
  --background-color: hsl(0, 0%, 11%);
  --text-color: hsl(0, 0%, 100%);
  --hover-color: lightcoral;
}

.magenta {
  background-color: hsl(300, 100%, 31%);
}

.green {
  background-color: hsl(120, 100%, 25%);
}

.hero {
  padding: 0;
}
.hero__logo {
  position: absolute;
  height: calc(100% - 3rem);
  width: calc(100% - 3rem);
  top: 0;
  margin: 1.5rem;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__logo--home {
  background-image: url("./../../../images/kraked/gscb_banner_no_bkgd_border_lightred.gif");
  background-size: clamp(39.375rem, 75%, 59rem);
}
@media (max-width: 48em) {
  .hero__logo--home {
    background-size: 40vh;
    background-image: url("./../../../images/kraked/gscb_logo_tidied.gif");
    background-position: top 21% center;
  }
}
.hero__logo--other {
  background-position: top 3rem center;
  background-size: 40%;
}
.hero__contact {
  border: solid 0.15rem rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  margin-left: 4.5rem;
  width: clamp(23.5rem, 35%, 30rem);
  height: clamp(15.1rem, 32vh, 17.375rem);
  bottom: 18%;
  z-index: 13;
  align-items: center;
}
.hero__contact h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: 0.2rem;
  font-weight: 300;
}
.hero__contact .button {
  margin-top: 0.5rem;
}
.hero .other-content-mobile {
  width: 100vw;
  height: 30vh;
  margin-top: 50vh;
  margin-bottom: 0;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.hero .quote-wrapper {
  padding-left: 0.45em;
}
.hero .quote-wrapper blockquote {
  font-style: italic;
  margin: 0;
  text-indent: -0.45em;
}
.hero .quote-wrapper blockquote::before {
  content: open-quote;
}
.hero .quote-wrapper blockquote::after {
  content: close-quote;
}
@supports (hanging-punctuation: first) {
  .hero .quote-wrapper blockquote {
    text-indent: 0;
    hanging-punctuation: first;
  }
}
.hero .quote-wrapper figcaption {
  padding-top: 1em;
}
.hero .button-mobile-wrapper {
  margin-top: 5vh;
}
.hero .button-mobile {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid white;
  background: transparent;
  color: white;
  font-weight: 400;
  max-width: clamp(30vh, 13rem, 45vh);
  max-height: 4rem;
  font-size: 2.5vh;
}

.header.open .header__toggle > span:first-child {
  transform: rotate(45deg) translate(0.3661rem, -0.3661rem);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg) translate(0.3661rem, 0.3661rem);
}
.header__toggle {
  position: relative;
}
.header__toggle > span {
  display: block;
  width: 2.5rem;
  height: 0.165rem;
  background-color: white;
  transition: all 300ms ease-in-out;
  transform-origin: left center;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 0.7375rem;
}
.header__menu {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  background: hsl(209, 38%, 84%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 19;
}
.header__menu.otherpage {
  transform: none;
  top: 0;
}
.header__menu a {
  display: block;
  padding: 1rem;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5vh;
}
.header__menu a.active {
  color: rgb(246, 56, 68);
}
.header nav {
  margin: 0 auto;
  width: 100vw;
  height: 20vh;
  overflow: hidden;
  z-index: 5;
}
.header nav .header__toggle {
  z-index: 20;
}
.header nav.homepage {
  bottom: 0;
  position: absolute;
}
.header nav.homepage__hard-edge {
  background: linear-gradient(to top, rgb(164, 198, 207) 50%, rgba(164, 198, 207, 0) 50%);
}
.header nav.homepage__faded-edge {
  background: linear-gradient(to top, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0.05) 90%, rgba(0, 0, 0, 0));
}
@media (max-width: 48em) {
  .header nav.homepage {
    bottom: unset;
    position: unset;
    background: none;
    justify-content: center;
    height: auto;
  }
}
.header nav.otherpage {
  justify-content: center;
  height: auto;
}
@media (max-width: 48em) {
  .header nav {
    justify-content: center;
    align-items: end;
  }
}
.header__links {
  z-index: 11;
}
.header__links .desktop-link {
  z-index: 12;
  position: relative;
  font-size: clamp(0.875rem, 0.4583rem + 0.74vw, 1.125rem);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: white;
  transition: color 300ms ease-in-out, box-shadow 300ms ease-in-out;
}
.header__links .desktop-link:not(:last-child) {
  margin-right: 3.5rem;
}
.header__links .desktop-link:hover {
  color: rgb(246, 56, 68);
}
@media (min-width: 90.00125em) {
  .header__links .desktop-link {
    font-size: 1.125rem;
  }
}
.header__links .desktop-link__home {
  top: 83%;
  padding-bottom: 3.5%;
  left: calc(4% - 0.75rem);
}
.header__links .desktop-link__home:hover {
  box-shadow: 0 1vh rgb(246, 56, 68);
}
.header__links .desktop-link__page {
  justify-content: center;
}
.header .banner {
  justify-content: center;
  align-items: center;
  line-height: 28vh;
  min-height: 30vh;
  height: auto;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 85vw;
}
.header .banner__image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 48em) {
  .header .banner {
    margin-top: 3rem;
  }
}
@media (max-width: 33.75em) {
  .header .banner {
    min-height: 85vw;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 33.75em) {
  .header #media-banner {
    min-height: 55vw;
  }
}

/*
.cart {
    //border: 1px solid magenta;
    height: 20vh;
    width: 50vw;
    margin: 0 auto;
    position: fixed;
    overflow: hidden;
    bottom: 0;
    right: 0;   // when inspect set to responsive ipad size display, weird padding overflows with cart.
                // Maybe fix with media query.
                // right: u.$padding-standard; fixes it in responsive design but doubles the padding in full screen.
    z-index: 10;

    img {
        position: absolute;
        bottom: 0;
        right: 0;
        padding-bottom: 1rem;
        padding-right: 1.5rem;
        max-height: 10rem;    
    }

}
*/
.cart {
  position: absolute;
  height: 100vh;
  width: 100vw;
  bottom: 0;
  right: 0;
}
.cart .container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 22vw;
  z-index: 10;
}
.cart .container::before {
  content: "";
  display: block;
  padding-bottom: 52%;
  bottom: 0;
  right: 0;
}
.cart .container img {
  position: absolute;
  bottom: 0;
  right: 1.2rem;
  width: calc(100% + 1.7rem);
  height: calc(100% + 1.7rem);
  -o-object-fit: cover;
     object-fit: cover;
  padding-bottom: 0.8rem;
}

h2 {
  text-align: center;
  margin-top: 1.5rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 48em) {
  h2 {
    font-size: 2.25rem;
  }
}

.grid {
  margin-top: 3rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
@media (max-width: 48em) {
  .grid {
    margin-top: 1rem;
  }
}
.grid__two-column {
  grid-template-columns: repeat(3, minmax(8rem, 1fr));
  grid-template-rows: repeat(4, minmax(18rem, auto));
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
}
@media (min-width: 90.00125em) {
  .grid__two-column {
    grid-template-columns: repeat(3, 16.6rem);
    grid-template-rows: repeat(4, 18rem);
    grid-column-gap: 3.6rem;
    grid-row-gap: 3.6rem;
  }
}
.grid__two-column .bio {
  grid-column: span 2;
}
.grid__two-column .bio > p {
  margin-top: 2vw;
  margin-bottom: 0;
}
@media (min-width: 90.00125em) {
  .grid__two-column .bio > p {
    margin-top: 1.8rem;
  }
}
@media (max-width: 48em) {
  .grid__two-column {
    grid-template-columns: repeat(1, minmax(12rem, 1fr));
    grid-template-rows: repeat(8, auto);
    grid-column-gap: 0;
    grid-row-gap: 0.5rem;
  }
  .grid__two-column .photo {
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
  }
  .grid__two-column .bio {
    border-bottom: 2px solid white;
    grid-column: span 1;
  }
  .grid__two-column .box4 {
    grid-row: 4;
  }
  .grid__two-column .box5 {
    grid-row: 3;
  }
  .grid__two-column .box8 {
    grid-row: 8;
    border-bottom: 0;
  }
  .grid__two-column .box9 {
    grid-row: 7;
  }
}
.grid .square-container {
  position: relative;
  overflow: hidden;
  line-height: 1.5;
}
.grid .square-container__right {
  text-align: left;
}
.grid .square-container__left {
  text-align: right;
}
.grid .square-container > h3 {
  margin-bottom: 1.2vw;
}
@media (min-width: 90.00125em) {
  .grid .square-container > h3 {
    margin-bottom: 1.08rem;
  }
}
.grid .square-container > h4 {
  text-transform: capitalize;
  color: rgb(100, 100, 100);
  margin-bottom: 1.2vw;
}
@media (min-width: 90.00125em) {
  .grid .square-container > h4 {
    margin-bottom: 1.08rem;
  }
}
.grid .square-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 48em) {
  .grid .square-container img {
    aspect-ratio: 1/1;
    overflow-y: auto;
  }
}
@media (max-width: 48em) {
  .grid .square-container.photo {
    aspect-ratio: 1/1;
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .grid .square-container.bio {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .grid .square-container > h3 {
    font-size: 1.75rem;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .grid .square-container > h4 {
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
  }
  .grid .square-container > p {
    padding-top: 0;
    padding-bottom: 3rem;
    font-size: 1rem;
  }
}
@media (max-width: 33.75em) {
  .grid .square-container.photo {
    margin-left: 0;
    margin-right: 0;
  }
  .grid .square-container.bio {
    margin-left: 0;
    margin-right: 0;
  }
  .grid .square-container > h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
  }
  .grid .square-container > h4 {
    font-size: 1.125rem;
    margin-bottom: 1.2rem;
  }
  .grid .square-container > p {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
}

.footer {
  position: relative;
  height: 30vh;
  width: 100%;
  background: linear-gradient(to top, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0.05) 93.3%, rgba(0, 0, 0, 0));
  z-index: 9;
}
@media (max-width: 48em) {
  .footer {
    background: linear-gradient(to top, rgb(0, 0, 0) 60%, hsl(209, 38%, 84%));
  }
}
.footer .text-wrapper {
  position: absolute;
  height: 20vh;
  width: 100%;
  margin-bottom: 0;
  bottom: 2vh;
  justify-content: space-between;
}
@media (max-width: 48em) {
  .footer .text-wrapper {
    bottom: 4rem;
  }
}
.footer .text-wrapper .centre-wrapper {
  flex: 1 1 auto;
  text-align: center;
  height: 100%;
}
.footer .text-wrapper .centre-wrapper .copyright-wrapper {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 10vh);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer .text-wrapper .centre-wrapper .copyright-wrapper .copyright {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  color: white;
}
.footer .text-wrapper .centre-wrapper .copyright-wrapper .copyright:last-of-type {
  margin-bottom: 0;
}
.footer .text-wrapper .centre-wrapper .copyright-wrapper .copyright span {
  margin-bottom: 0;
}
.footer .text-wrapper .centre-wrapper .copyright-wrapper .logo {
  height: 8vh;
  margin-bottom: 1rem;
}
.footer .text-wrapper .email-contact {
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 1.5rem;
  font-size: 0.875rem;
}
.footer .text-wrapper .email-contact h4 {
  margin-bottom: 1rem;
}
.footer .text-wrapper .email-contact .email {
  letter-spacing: 0.1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
}
.footer .text-wrapper .email-contact .email a {
  color: white;
}
.footer .text-wrapper .email-contact .email a:hover {
  color: rgb(246, 56, 68);
}
.footer .filler {
  position: absolute;
  width: 100%;
  height: 4rem;
  bottom: 0;
  background-color: transparent;
  z-index: 8;
}

.form-wrapper {
  margin: 0 auto;
  margin-bottom: 1.5rem;
  justify-content: center;
  align-items: center;
  width: 50%;
}
@media (max-width: 48em) {
  .form-wrapper {
    width: 75%;
  }
}
@media (max-width: 33.75em) {
  .form-wrapper {
    width: 100%;
  }
}
.form-wrapper .form {
  width: 100%;
  min-width: 28rem;
  max-width: 32rem;
}
@media (max-width: 48em) {
  .form-wrapper .form {
    min-width: unset;
    max-width: unset;
  }
}
.form-wrapper .form .label, .form-wrapper .form .input {
  display: block;
}
.form-wrapper .form .label {
  margin-bottom: 0.15rem;
  font-weight: 300;
}
@media (max-width: 48em) {
  .form-wrapper .form .label {
    font-weight: 400;
    font-size: calc(1.125rem + 0.125rem);
  }
}
.form-wrapper .form .input {
  width: 100%;
  border: none;
  border: 2px solid rgb(166, 191, 213);
  transition: border 300ms ease-in-out;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgb(100, 100, 100);
}
@media (max-width: 48em) {
  .form-wrapper .form .input {
    font-size: 1.125rem;
  }
}
.form-wrapper .form .input:focus {
  outline: none;
  border: 2px solid white;
}
.form-wrapper .form .input:hover {
  border: 2px solid white;
}
.form-wrapper .form .field {
  height: 1.8rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 48em) {
  .form-wrapper .form .field {
    height: 2rem;
  }
}
.form-wrapper .form .submit-wrapper {
  text-align: right;
}
@media (max-width: 48em) {
  .form-wrapper .form .submit-wrapper {
    text-align: center;
  }
}
.form-wrapper .form .button {
  margin-top: 4.5rem;
  margin-right: 0.375rem;
}
@media (max-width: 48em) {
  .form-wrapper .form .button {
    margin-right: 0;
    margin-left: 0;
  }
}
.form-wrapper .form #message {
  height: 7.5rem;
  resize: none;
}
.form-wrapper .form #required-message {
  color: white;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-left: 0.125rem;
}
.form-wrapper .form #newsletter, .form-wrapper .form #newsletter-label, .form-wrapper .form #tandcs, .form-wrapper .form #tandcs-label {
  display: none;
}
.form-wrapper .form .error-container {
  padding-top: 1rem;
  height: 2rem;
  color: rgb(246, 56, 68);
  text-align: end;
  font-size: 1rem;
}
@media (max-width: 48em) {
  .form-wrapper .form .error-container {
    text-align: center;
  }
}

.qa-wrapper {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
@media (max-width: 48em) {
  .qa-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

.qa-box {
  margin-bottom: 3rem;
}
@media (max-width: 48em) {
  .qa-box {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.qa-box:nth-of-type(9) {
  margin-bottom: 0;
}
.qa-box h3 {
  border-bottom: 2px solid white;
  padding-bottom: 0.3rem;
}
.qa-box p {
  line-height: 1.5;
}

.collapsible {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  background-color: rgb(160, 184, 208);
}
.collapsible:hover {
  cursor: pointer;
}
.collapsible .chevron {
  margin-right: 0.4rem;
}
.collapsible .chevron::after {
  content: "\f078";
  font-size: 0.875rem;
}
.collapsible.hidden .chevron::after {
  content: "\f054";
}

.panel {
  max-height: -moz-fit-content;
  max-height: fit-content;
  background-color: rgba(160, 184, 208, 0.4);
}
.panel.hidden {
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
}
.panel ul {
  padding-top: 0.75rem;
  padding-bottom: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  color: rgb(100, 100, 100);
}
@media (max-width: 48em) {
  .panel ul {
    font-size: 0.875rem;
  }
}
.panel ul li {
  margin-top: 0.25rem;
  vertical-align: bottom;
}

.soc-med-wrapper a:hover {
  color: white;
}
.soc-med-wrapper .social-icon-a .facebook::after {
  display: block;
  content: "\f082";
}
.soc-med-wrapper .social-icon-a .instagram::after {
  content: "\f16d";
  color: white;
}
.soc-med-wrapper--br, .soc-med-wrapper--tr {
  width: 2rem;
  z-index: 18;
  font-size: 2rem;
}
.soc-med-wrapper--br .social-icon-a, .soc-med-wrapper--tr .social-icon-a {
  display: inline-block;
  position: relative;
}
.soc-med-wrapper--br {
  flex-direction: column-reverse;
  margin-right: 1.5rem;
  margin-bottom: -0.2rem;
}
.soc-med-wrapper--br .social-icon-a:not(:last-child) {
  margin-top: 0.7rem;
}
.soc-med-wrapper--tr {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.soc-med-wrapper--tr .social-icon-a:not(:last-child) {
  margin-bottom: 0.7rem;
}
.soc-med-wrapper--mob {
  margin: auto;
  flex-direction: row;
  width: 5rem;
  justify-content: space-around;
  font-size: 1.5rem;
  align-items: center;
}/*# sourceMappingURL=style.css.map */