/* ------------------ */
/* Google font import */
/* ------------------ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
/* --------- GENERAL CSS ELEMENTS AND CLASSES -----------------------*/
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */

/* ------------------ */
/* General elements */
/* ------------------ */

html {
  font-size: 75%;
  /* at font-size 75%, 1rem generally equals 12px */
  /* changing the base font-size recalculates every element that uses the rem unit */
}

body {
  margin: auto;
  background-color: #101010;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

h1 {
  font-size: 3.5rem;
  line-height: 3.75rem;
  font-weight: 800;
}

@media only screen and (min-width: 48rem) {
  h1 {
    font-size: 4.85rem;
    line-height: 5.125rem;
  }
}

.section-title {
  border-bottom: .6rem solid #6C99C6;
  width: fit-content;
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 3rem;
}

section {
  z-index: 1;
  position: relative;
  padding: 4rem 0;
}

@media only screen and (min-width: 48rem) {
  section {
    padding: 6rem 0;
  }
}

nav li {
  list-style-type: none;
}

nav a {
  text-decoration: none;
  font-size: 1.5rem;
  color: white;
}

@media only screen and (min-width: 48rem) {
  nav a {
    font-size: 1.25rem;
  }
}

/* ------------------ */
/* General classes */
/* ------------------ */

.page-width {
  margin: 0 auto;
  padding: 0 1.25rem;
  max-width: 100rem;
}

@media only screen and (min-width: 48rem) {
  .page-width {
    padding: 0 3rem;
  }
}

@media only screen and (min-width: 64rem) {
  .page-width {
    padding: 0 6rem;
  }
}

.button {
  display: inline-block;
  border: .125rem solid #6C99C6;
  padding: 1.25rem 2.5rem;
  background: #6C99C6;
  text-decoration: none;
  font-weight: 700;
  color: white;
}

.icon-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0;
  background: #6C99C6;
  height: 3.5rem;
  width: 3.5rem;
}

.icon-button svg {
  height: 2rem;
  width: 2rem;
}

.back-button {
  display: block;
  margin-bottom: 2.5rem;
  width: fit-content;
  color: #6C99C6;
}

.section-blue {
  background-color: white;
  color: black;
}

.section-white {
  background-color: white;
  color: black;
}

.section-black {
  background-color: black;
  color: white;
}

.section-darkgrey {
  background-color: #1b1b1b;
  color: white;
}

.section-darkergrey {
  background-color: #161616;
  color: white;
}

.section-grey {
  background-color: #F3F3F3;
  color: #101010;
}

.section-grey p,
.text-grey {
  color: #747474;
}

.text-white {
  color: white;
}

.text-black {
  color: black;
}

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

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

.section-title {
  margin-bottom: .75rem;
}

.section-subtitle {
  margin: 0;
  word-spacing: .1rem;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  color: #6C99C6 !important;
}

.smaller {
  font-size: .8em;
}

/* ------------------ */
/* Flex classes */
/* ------------------ */

.flex {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.flex--center {
  justify-content: center;
}

.flex--space-between {
  justify-content: space-between;
}

.flex--wrap {
  flex-wrap: wrap;
}

.flex--gap {
  gap: 2.5rem;
}

/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
/* ----------------- GOBLISS SITE SECTIONS --------------------------*/
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */

/* ------------------ */
/* GOBLISS HEADER */
/* ------------------ */

#gobliss_header {
  padding: 20px 0 10px 0; /* pixels are used for header */
  background-color: black;
  color: white;
}

#gobliss_header.smaller-nav {
  padding: 10px 0; /* pixels are used for header */
}

#gobliss_header.sticky {
  z-index: 10;
  position: fixed;
  top: 0;
  padding: 10px 0; /* pixels are used for header */
  width: 100%;
  transform-origin: top center;
}

#gobliss_header.sticky + main #gobliss_hero {
  padding-top: calc(85px + 1.25rem); /* pixels are used for header */
  margin-top: -85px; /* pixels are used for header */
}

body #gobliss_header.sticky + main {
  padding-top: 85px; /* pixels are used for header */
}

body #gobliss_header.smaller-nav.sticky + main {
  padding-top: 75px; /* pixels are used for header */
}

@media only screen and (min-width: 48rem) {
  #gobliss_header {
    padding: 35px 0 10px 0; /* pixels are used for header */
  }

  #gobliss_header.smaller-nav {
    padding: 10px 0; /* pixels are used for header */
  }

  #gobliss_header.sticky {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
  }

  #gobliss_header.sticky + main #gobliss_hero {
    padding-top: calc(100px + 1.25rem); /* pixels are used for header */
    margin-top: -100px; /* pixels are used for header */
  }

  body #gobliss_header.sticky + main {
    padding-top: 100px; /* pixels are used for header */
  }

  body #gobliss_header.smaller-nav.sticky + main {
    padding-top: 75px; /* pixels are used for header */
  }
}

#gobliss_header .container {
  z-index: 10;
  position: relative;
}

#gobliss_header .logo img {
  display: block;
  /* images are inline by default, which adds unaccounted extra space.
   Usually this is fine, but for things like headers where we might want to know exact height,
   make the image a block. */
  margin-left: -5px;
}

#gobliss_header nav a:hover,
#gobliss_header nav a.active {
  border-bottom: .3rem solid #6C99C6;
}


/* ------------------ */
/* GOBLISS MOBILE NAV */
/* ------------------ */

@media only screen and (max-width: 47.999rem) {
  #gobliss_menu {
    z-index: 11;
    position: relative;
    top: 0;
    right: 1.25rem;
    display: block;
    -webkit-user-select: none;
    user-select: none;
  }

  #gobliss_menu a {
    color: white;
  }

  #gobliss_menu input {
    z-index: 12;
    position: absolute;
    top: -6px;
    left: -4px;
    opacity: 0;
    display: block;
    height: 30px;
    width: 30px;
    cursor: pointer;
    -webkit-touch-callout: none;
    margin: 0;
  }

  #gobliss_menu span {
    z-index: 11;
    position: relative;
    display: block;
    margin-bottom: 5px;
    background: white;
    height: 2px;
    width: 24px;
    transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.35s ease;
    transform-origin: 3px 0px;
  }

  #gobliss_menu span:first-child {
    transform-origin: 0% 0%;
  }

  #gobliss_menu span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  #gobliss_menu input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-1px, -1px);
    background: white;
  }

  #gobliss_menu input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #gobliss_menu input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(1px, -1px);
  }

  #menu {
    position: absolute;
    top: -100px;
    right: -2.5rem;
    transform: translate(100%, 0);
    display: none;
    padding: 50px;
    padding-top: 125px;
    background: #1b1b1b;
    height: calc(100vh + 100px);
    width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
  }

  #menu li {
    padding: 1rem 0;
  }

  #gobliss_menu input:checked ~ #menu {
    transform: none;
    display: block;
  }
}

@media only screen and (min-width: 48rem) {
  #menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
  }

  #gobliss_menu input,
  #gobliss_menu span {
    display: none;
  }
}

/* ------------------ */
/* GOBLISS HERO */
/* ------------------ */

#gobliss_hero {
  position: static;
  padding: 1.25rem 0 0 0;
}

#gobliss_hero .container {
  z-index: 2;
  position: relative;
}

#gobliss_hero_video {
  z-index: 0;
  position: fixed;
  top: -85px; /* pixels are used for header */
  left: 50%;
  transform: translateX(-50%);
  opacity: .3;
  min-height: calc(100% + 85px); /* pixels are used for header */
  min-width: 100%;
}

@media only screen and (min-width: 48rem) {
  #gobliss_hero_video {
    top: -100px; /* pixels are used for header */
    min-height: calc(100% + 100px); /* pixels are used for header */
  }
}


#gobliss_hero .title {
  margin-top: 2.5rem;
}

#gobliss_hero .welcome {
  margin-top: 1.75rem;
}

#gobliss_hero .title,
#gobliss_hero .welcome {
  margin-bottom: 0;
}

#gobliss_hero .subtitle {
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 200;
}

#gobliss_hero .flex-container {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}

@media only screen and (min-width: 48rem) {
  #gobliss_hero .flex-container {
    display: flex;
    flex-direction: row;
    /* align-items: flex-end; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5rem;
    gap: 2.5rem;
  }
}


#gobliss_hero .intro,
#gobliss_hero .box-wrapper {
  width: 100%;
}

#gobliss_hero .box h3 {
  font-size: 1.6rem;
}

#gobliss_hero .box p {
  font-size: 1.2rem;
  line-height: 2rem;
}

/* https://codepen.io/sosuke/pen/Pjoqqp */
#gobliss_hero .box img {
  height: 5rem;
  width: 5rem;
  filter: invert(100%) sepia(96%) saturate(14%) hue-rotate(236deg) brightness(103%) contrast(103%);
}

#gobliss_hero .box {
  padding: 2.5rem;
  color: white;
}


#gobliss_hero .box,
#gobliss_hero .box-wrapper:hover ~ .active .box {
  background-color: #1B1B1B;
}

#gobliss_hero .box:hover,
#gobliss_hero .active .box {
  background-color: #6C99C6;
}

#gobliss_hero .active .box {
  margin-bottom: -2.5rem;
  padding-bottom: 5rem;
}

/* Flex order of the hero boxes */
#gobliss_hero .box-wrapper:nth-child(2) {
  order: 1;
}

#gobliss_hero .box-wrapper:nth-child(3) {
  order: 2;
}

#gobliss_hero .box-wrapper:nth-child(4) {
  order: 3;
}

#gobliss_hero .box-wrapper:nth-child(5) {
  order: 4;
}

@media only screen and (min-width: 48rem) {

  #gobliss_hero .box-wrapper {
    min-width: 23rem;
    width: calc(50% - 1.25rem);
  }

  #gobliss_hero .box {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 23rem;
    transition: background-color .2s ease-in-out;
  }

  /* Flex order of the hero boxes */
  #gobliss_hero .box-wrapper:nth-child(2) {
    order: 1;
  }

  #gobliss_hero .box-wrapper:nth-child(3) {
    order: 2;
  }

  #gobliss_hero .box-wrapper:nth-child(4) {
    order: 4;
  }

  #gobliss_hero .box-wrapper:nth-child(5) {
    order: 3;
  }
}

@media only screen and (min-width: 68rem) {
  #gobliss_hero .intro {
    width: calc(66% - 3.33rem);
  }

  #gobliss_hero .box-wrapper {
    width: calc(33% - 1.66rem);
  }

  /* Flex order of the hero boxes */
  #gobliss_hero .box-wrapper:nth-child(2) {
    order: 1;
  }

  #gobliss_hero .box-wrapper:nth-child(3) {
    order: 3;
  }

  #gobliss_hero .box-wrapper:nth-child(4) {
    order: 4;
  }

  #gobliss_hero .box-wrapper:nth-child(5) {
    order: 2;
  }

  /* the box next to the title on desktop can be allowed a smaller min-height than the others */
  /* #gobliss_hero .lonely-box {
    min-height: 15rem;
  } */
}


/* ------------------ */
/* GOBLISS SERVICES */
/* ------------------ */


#gobliss_services .container {
  padding-bottom: 50px;
}

#gobliss_services .grid-container {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  gap: 1.25rem;
}

@media only screen and (min-width: 35rem) {
  #gobliss_services .grid-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 48rem) {
  #gobliss_services .grid-container {
    margin-top: 5rem;
    gap: 2.5rem;
  }
}

@media only screen and (min-width: 68rem) {
  #gobliss_services .grid-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

#gobliss_services .box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 2rem;
  background-color: #f3f3f3;
  /*  height: fit-content; */
  gap: 1.5rem;
}

#gobliss_services .box p {
  margin: 0;
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.8rem;
}

#gobliss_services .box h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 2rem;
  margin-top: -0.15rem;
}


#gobliss_services .box img {
  height: 4rem;
  width: 4rem;
}

/* Change icon color with css filter */
/* https://codepen.io/sosuke/pen/Pjoqqp */
#gobliss_services .box img {
  filter: brightness(0) saturate(100%) invert(53%) sepia(90%) saturate(204%) hue-rotate(168deg) brightness(93%) contrast(88%);
}

/* ------------------ */
/* GOBLISS WORK */
/* ------------------ */

#gobliss_work .swiper-container {
  position: relative;
  margin-top: 2.5rem;
  padding: 2rem 0;
}

@media only screen and (min-width: 48rem) {
  #gobliss_work .swiper-container {
    margin-top: 5rem;
  }
}

#gobliss_work .box {
  position: relative;
  background-color: #1B1B1B;
  overflow: hidden;
  color: white;
  display: block;
}

/* Padding top of this element controls the width/height ratio for this box. 
 Vertical padding percentage is based on the width of the element, which is why it is used
 to keep the ratio consistent. */
#gobliss_work .box::before {
  content: "";
  display: block;
  padding-top: 100%; /* vertical spacing based on the width of the element, 100% is square.*/
  width: 100%;
}

/* this element is absolutely positioned inside and fills up 
the available space provided above */
#gobliss_work .box img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* this element is absolutely positioned inside and fills up 
the available space provided above and is layered on top of the image (by z-index)*/
#gobliss_work .box div {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 6rem 2rem 2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, .5) 25%, rgba(0, 0, 0, .1) 100%);
  height: 100%;
  width: 100%;
  box-sizing: border-box; /* this makes the padding work on the same element as the width */
  transition: all .200s ease-in;
}

#gobliss_work .box:hover div {
  opacity: .5;
}

#gobliss_work .box .box-icon {
  font-weight: 900;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

#gobliss_work .box h3 {
  margin: 0;
  font-size: 2rem;
}

#gobliss_work .box p {
  margin-bottom: 0;
  font-size: 1.2rem !important;
  line-height: 1.75rem !important;
}

#gobliss_work .swiper {
  padding-bottom: 5rem;
  width: 100%;
}

.swiper .swiper-pagination-bullet {
  opacity: 1;
  background: transparent;
  height: 1rem;
  width: 1rem;
}

.section-white .swiper .swiper-pagination-bullet,
.section-grey .swiper .swiper-pagination-bullet {
  border: 1px solid black;
}

.section-black .swiper .swiper-pagination-bullet,
.section-darkgrey .swiper .swiper-pagination-bullet,
.section-darkergrey .swiper .swiper-pagination-bullet {
  border: 1px solid white;
}

.section-white .swiper .swiper-pagination-bullet-active,
.section-grey .swiper .swiper-pagination-bullet-active {
  background: black;
}

.section-black .swiper .swiper-pagination-bullet-active,
.section-darkgrey .swiper .swiper-pagination-bullet-active,
.section-darkergrey .swiper .swiper-pagination-bullet-active {
  background: white;
}


#gobliss_work .swiper-button-next {
  right: -4rem;
}

#gobliss_work .swiper-button-prev {
  left: -4rem;
}

#gobliss_work .swiper-button-next, #gobliss_work .swiper-button-prev {
  height: 2rem;
  width: 1.5rem;
}

#gobliss_work .swiper-button-next:after, #gobliss_work .swiper-button-prev:after {
  font-size: 2.5rem;
}

.section-white .swiper-button-next, .section-white .swiper-button-prev,
.section-grey .swiper-button-next, .section-grey .swiper-button-prev {
  color: black;
}

.section-black .swiper-button-next, .section-black .swiper-button-prev,
.section-darkgrey .swiper-button-next, .section-darkgrey .swiper-button-prev,
.section-darkergrey .swiper-button-next, .section-darkergrey .swiper-button-prev {
  color: white;
}

#gobliss_work .swiper-pagination-bullets {
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}

@media only screen and (max-width: 67.999rem) {

  #gobliss_work .swiper-button-next,
  #gobliss_work .swiper-button-prev {
    z-index: 2;
    position: absolute;
    top: auto;
    bottom: 30px;
  }

  #gobliss_work .swiper-button-next:after, #gobliss_work .swiper-button-prev:after {
    font-size: 1.5rem;
  }

  #gobliss_work .swiper-button-next {
    right: 25%;
  }

  #gobliss_work .swiper-button-prev {
    left: 25%;
  }
}

#gobliss_work .box {
  outline: none;
  text-decoration: none;
}

/* ------------------ */
/* GOBLISS NETWORK */
/* ------------------ */


#gobliss_network .container {
  padding-bottom: 50px;
}

#gobliss_network .grid-container {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  gap: 1.25rem;
}

@media only screen and (min-width: 35rem) {
  #gobliss_network .grid-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 48rem) {
  #gobliss_network .grid-container {
    margin-top: 5rem;
    gap: 2.5rem;
  }
}

@media only screen and (min-width: 68rem) {
  #gobliss_network .grid-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

#gobliss_network .box {
  position: relative;
  background-color: #1B1B1B;
  overflow: hidden;
  color: white;
}

/* Padding top of this element controls the width/height ratio for this box. 
 Vertical padding percentage is based on the width of the element, which is why it is used
 to keep the ratio consistent. */
#gobliss_network .box::before {
  content: "";
  display: block;
  padding-top: 100%; /* vertical spacing based on the width of the element, 100% is square.*/
  width: 100%;
}

/* this element is absolutely positioned inside and fills up 
the available space provided above */
#gobliss_network .box img {
  z-index: 1;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* this element is absolutely positioned inside and fills up 
the available space provided above and is layered on top of the image (by z-index)*/
#gobliss_network .box div {
  z-index: 2;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 6rem 2rem 2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, .5) 25%, rgba(0, 0, 0, .1) 100%);
  height: 100%;
  width: 100%;
  box-sizing: border-box; /* this makes the padding work on the same element as the width */
  transition: all .200s ease-in;
}

#gobliss_network .box:hover div {
  opacity: .5;
}


#gobliss_network .box .box-icon {
  font-weight: 900;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

#gobliss_network .box h3 {
  margin: 0;
  font-size: 2rem;
}

#gobliss_network .box p {
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 2rem;
}

/* ------------------ */
/* GOBLISS ABOUT */
/* ------------------ */

#gobliss_about .flex-container {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  gap: 1.25rem;
}

@media only screen and (min-width: 48rem) {
  #gobliss_about .flex-container {
    flex-direction: row;
    align-items: flex-start;
    margin-top: 2.5rem;
    gap: 5rem;
  }
}

#gobliss_about .image-wrapper {
  max-width: 460px;
  flex: 0 1 45%;
}

#gobliss_about .content-wrapper {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #747474;
  flex: 1 1 55%;
}

#gobliss_about .content-wrapper p.author {
  margin-top: 3rem;
}

@media only screen and (min-width: 48rem) {
  #gobliss_about .content-wrapper p {
    margin-top: 0rem;
  }
}

@media only screen and (min-width: 68rem) {
  #gobliss_about .content-wrapper {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

#gobliss_about img {
  height: auto;
  width: 100%;
}

#gobliss_about .author {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  color: #101010;
}


/* ------------------ */
/* GOBLISS CONTACT */
/* ------------------ */

/* #gobliss_contact {
  padding: 5rem 15%;
}
 */
#gobliss_contact .title {
  border: none;
  margin: 0 0 20px 0;
  text-align: center;
}

#gobliss_contact .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

#gobliss_contact .contact-details {
  margin: 0 auto;
  margin-top: 5rem;
  font-size: 1.25rem;
  font-weight: 200;
}

#gobliss_contact .contact-details p {
  text-align: center;
}

@media only screen and (min-width: 35rem) {
  #gobliss_contact .container {
    width: fit-content;
  }

  #gobliss_contact .contact-details {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
  }

  #gobliss_contact .contact-details p {
    text-align: left;
  }

  #gobliss_contact .contact-details .text-right {
    text-align: right;
  }
}

@media only screen and (min-width: 48rem) {
  #gobliss_contact {
    padding: 12.5rem 0 5rem 0;
  }

  #gobliss_contact .title {
    border: none;
    margin: 0 0 20px 0;
    width: 100%;
  }
}


/* ------------------ */
/* FOOTER */
/* ------------------ */

#gobliss_footer {
  padding: 1.25rem 0;
  font-size: 1.1rem;
  line-height: 1.25rem;
  font-weight: 200;
}

#gobliss_footer .container {
  text-align: center;
}

#gobliss_footer nav {
  white-space: nowrap;
}

#gobliss_footer ul {
  padding: 0;
}

#gobliss_footer nav a {
  font-size: 1rem;
}

@media only screen and (min-width: 48rem) {
  #gobliss_footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 2.5rem;
  }
}

/* ------------------ */
/* PAGE */
/* ------------------ */
#gobliss_page {
  min-height: 100vh;
}

#gobliss_page h1.section-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: normal;
  font-weight: 700;
}

#gobliss_page .section-subtitle {
  margin-bottom: 2.5rem;
}

@media only screen and (min-width: 48rem) {
  #gobliss_page .section-subtitle {
    margin-bottom: 5rem;
  }
}

#gobliss_page h2 {
  font-size: 1.75rem;
  line-height: 2rem;
}

#gobliss_page h3 {
  font-size: 1.75rem;
  line-height: 2rem;
}

#gobliss_page h4 {
  font-size: 1.5rem;
  line-height: 2rem;
}

#gobliss_page p:not(.section-subtitle),
#gobliss_page li {
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 300;
  color: #747474;
  flex: 1 1 55%;
}

@media only screen and (min-width: 68rem) {
  #gobliss_page p:not(.section-subtitle),
  #gobliss_page li {
    /*        font-size: 1.55rem;
            line-height: 2.25rem;*/
  }
}

#gobliss_page .flex-container {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  gap: 1.25rem;
}

#gobliss_page .sidebar {
  padding: 2.5rem;
}

#gobliss_page .sidebar {
  margin-bottom: 2.5rem;
  padding: 2.5rem;
}

#gobliss_page .sidebar h4:first-child,
#gobliss_page .sidebar h3:first-child {
  margin-top: 0;
}

@media only screen and (min-width: 48rem) {
  #gobliss_page .flex-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2.5rem;
    gap: 5rem;
  }

  #gobliss_page .flex-container .sidebar {
    order: 2;
    min-height: 20rem;
    width: 30%;
  }

  #gobliss_page .flex-container .content-wrapper {
    order: 1;
    width: 70%;
  }
}

/* ------------------ */
/* COOKIE BANNER */
/* ------------------ */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999999;
  box-sizing: border-box;
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  transition: transform .3s ease-in;
}

.cookie-consent-banner.hide {
  transform: translateY(100%);
}

@media only screen and (min-width: 48rem) {
  .cookie-consent-banner {
    top: auto;
    height: auto;
  }
}

.cookie-consent-banner__inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cookie-consent-banner__flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media only screen and (min-width: 48rem) {
  .cookie-consent-banner__flex {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.cookie-consent-banner__header {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 2rem;
  color: #6C99C6;
}

.cookie-consent-banner__description {
  font-weight: normal;
  color: #838F93;
  font-size: 1.25rem;
  line-height: 2rem;
}

.cookie-consent-banner__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.cookie-consent-banner__cta {
  box-sizing: border-box;
  display: inline-block;
  min-width: 12.5rem;
  padding: 1rem;

  background-color: #6C99C6;

  color: #FFF;
  text-decoration: none;
  text-align: center;
  font-weight: normal;
  font-size: 1.25rem;
}

.cookie-consent-banner__cta--secondary {
  padding: 1rem;

  border: .125rem solid #3A4649;

  background-color: transparent;

  color: #6C99C6;
}

.cookie-consent-banner__cta:hover {
  background-color: #6C99C6;
}

.cookie-consent-banner__cta--secondary:hover {
  border-color: #838F93;

  background-color: transparent;

  color: #6C99C6;
}