/*---------------------------------------------------------------------------
  Variables
---------------------------------------------------------------------------*/

:root {
  --admin-height: 32px;
  --header-height: 90px;
  --notice-height: 38px;

  --navy: #011e42;
  --navy-rgb: 1, 30, 66;

  --aqua: #00e5d4;
  --aqua-rgb: 0, 229, 212;

  --green: #00d8a4;
  --green-rgb: 0, 216, 164;

  --blue: #15bbfc;
  --blue-rgb: 21, 187, 252;

  --purple: #8286fd;
  --purple-rgb: 130, 134, 253;

  --pink: #ff0080;
  --pink-rgb: 255, 0, 128;

  --red: #fc1441;
  --red-rgb: 252, 20, 65;

  --orange: #ff8c00;
  --orange-rgb: 255, 140, 0;

  --yellow: #fcc82d;
  --yellow-rgb: 252, 200, 45;

  --white: #ffffff;
  --white-rgb: 255, 255, 255;

  --light-grey: #f7f7f7;
  --light-grey-rgb: 247, 247, 247;

  --outline-grey: #d9d9d9;
  --outline-grey-rgb: 217, 217, 217;

  --text-grey: #333333;
  --text-grey-rgb: 51, 51, 51;

  --black: #000000;
  --black-rgb: 0, 0, 0;

  --transition: 0.25s ease all;

  --border-radius-xs: 5px;
  --border-radius-sm: 10px;
  --border-radius-md: 20px;
  --border-radius-xl: 45px;
}

@media screen and (max-width: 782px) {
  :root {
    --admin-height: 46px !important;
  }
}

@media screen and (max-width: 550px) {
  :root {
    --header-height: 70px !important;
  }
}

/*---------------------------------------------------------------------------
  Base
---------------------------------------------------------------------------*/

* {
  scroll-margin-top: calc(var(--header-height) + var(--notice-height));
}

/* .admin-bar * {
	scroll-margin-top: calc(var(--header-height) + var(--notice-height) + var(--admin-height));
} */

*,
*:after,
*:before {
  box-sizing: border-box;
  transition: none;
}

html,
body {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--text-grey);
}

/* Admin Bar */

#wpadminbar {
  position: fixed;
  z-index: 2000000000000000 !important;
}

#adminbarsearch {
  display: none !important;
}

/* Body Margins */

body:not(.embedded) body.admin-bar:not(.embedded) {
  margin-top: var(--header-height);
}

body.is_notice:not(.embedded) {
  margin-top: calc(var(--header-height) + var(--notice-height));
}

/*---------------------------------------------------------------------------
  Widgets
---------------------------------------------------------------------------*/

.logged-in #LoAvailableBtn {
  display: block !important;
}

#LoAvailableBtn,
.logged-in.is_patient #LoAvailableBtn {
  display: none !important;
}

#user_switching_switch_on {
  z-index: 200000 !important;
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  padding: 15px !important;
  background: var(--white) !important;
  border-radius: var(--border-radius-xs) !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1) !important;
}

#user_switching_switch_on a {
  color: var(--text-grey);
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s ease all;
}

#user_switching_switch_on:hover a {
  color: var(--green) !important;
}

/*---------------------------------------------------------------------------
  Animations
---------------------------------------------------------------------------*/

.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

/*---------------------------------------------------------------------------
  Global Layouts
---------------------------------------------------------------------------*/

section,
[class*='section'] {
  position: relative;
  z-index: 99;
}

.clear {
  clear: both;
}

/* Positions */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

/* Visibility */

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* Layout Flex */

.flex,
.flex-layout {
  display: flex;
  flex-wrap: wrap;
}

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

.flex-align-start {
  align-items: flex-start;
  align-self: flex-start;
}

.flex-align-center {
  align-items: center;
  align-self: center;
}

.flex-align-end {
  align-items: flex-end;
  align-self: flex-end;
}

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

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

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

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

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-gap {
  gap: 30px;
}

/* Containers */

.container-large,
.container-medium,
.container-small {
  margin: auto;
  width: calc(100% - 40px);
  position: relative;
  z-index: 99;
}

.container-large {
  max-width: 1400px;
}

.container-medium {
  max-width: 1200px;
}

.container-small {
  max-width: 860px;
}

/* Padding */

.section-padding,
.section-padding-both {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-padding-top {
  padding-top: 120px;
}

.section-padding-bottom {
  padding-bottom: 120px;
}

.container-padding,
.container-padding-both {
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-padding-top {
  padding-top: 60px;
}

.container-padding-bottom {
  padding-bottom: 60px;
}

/* .spacing,
.spacing-both {
  padding-top: 30px;
  padding-bottom: 30px;
}

.spacing-top {
  padding-top: 30px;
}

.spacing-bottom {
  padding-bottom: 30px;
} */

/* Layout Grid */

.layout-columns-1,
.layout-columns-2,
.layout-columns-3,
.layout-columns-4,
.layout-columns-5,
.layout-columns-6 {
  display: grid;
}

.layout-columns-1 {
  gap: 120px;
}

.layout-columns-2,
.layout-columns-3 {
  gap: 60px;
}

.layout-columns-4,
.layout-columns-5,
.layout-columns-6 {
  gap: 20px;
}

.layout-columns-1 {
  grid-template-columns: repeat(1, 1fr);
}

.layout-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.layout-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.layout-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.layout-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.layout-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Rows */

.row-selected {
  margin-top: 20px;
}

.row:not(.row-selected) {
  display: none;
}

.row .row-load-more {
  grid-column: 1 / -1;
}

/* Misc */

.loading {
  opacity: 25%;
  transition: var(--transition);
}

hr {
  width: 100%;
  height: 1px;
  border: 0 !important;
  outline: 0 !important;
  background: var(--outline-grey);
}

.section-divider {
  width: 100%;
  height: 5px;
  display: block;
}

/* Responsive */

@media screen and (max-width: 900px) {
  .section-padding,
  .section-padding-both {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-padding-top {
    padding-top: 60px;
  }

  .section-padding-bottom {
    padding-bottom: 60px;
  }

  .layout-columns-1 {
    gap: 60px;
  }

  .layout-columns-3,
  .layout-columns-4,
  .layout-columns-5,
  .layout-columns-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .layout-columns-5,
  .layout-columns-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 750px) {
  .container-padding,
  .container-padding-both {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .container-padding-top {
    padding-top: 30px;
  }

  .container-padding-bottom {
    padding-bottom: 30px;
  }

  .layout-columns-2,
  .layout-columns-3 {
    gap: 30px;
  }

  .layout-columns-2,
  .layout-columns-3,
  .layout-columns-4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .layout-columns-5,
  .layout-columns-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }
}

/*---------------------------------------------------------------------------
  Global Media
---------------------------------------------------------------------------*/

img:not([class*='wp-image-']) {
  width: 100%;
  height: auto;
}

img[class*='wp-image-'] {
  max-width: 100%;
  height: auto;
}

img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

img.alignleft {
  margin-left: 0;
  margin-right: auto;
}

img.alignright {
  margin-left: auto;
  margin-right: 0;
}

/* Image Aspects */

.image-square,
.image-portrait,
.image-landscape {
  display: block;
  position: relative;
  /* border-radius: var(--border-radius-xs);
  overflow: hidden; */
}

.image-square {
  aspect-ratio: 1 / 1;
}

.image-portrait {
  aspect-ratio: 8 / 12;
}

.image-landscape {
  aspect-ratio: 12 / 8;
}

/* Embeds */

/* iframe {
  max-width: 50rem;
  height: 25rem;
} */

.embed-container,
.video-embed-container {
  position: relative;
  display: block;
  overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container video,
.video-embed-container iframe,
.video-embed-container video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  max-width: 100%;
}

.video-embed-container::before {
  display: block;
  content: '';
  padding-top: 56.25%;
}

.pdf-embed-container {
  background: white;
  height: 100%;
}

.embed-container {
  max-width: 80rem;
  width: 90%;
  max-height: 90vh;
}

/* Background Images */

.background-img {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive */

@media screen and (max-width: 1000px) {
  iframe {
    width: 100%;
    height: 50vw;
  }
}

/*---------------------------------------------------------------------------
  Swiper
---------------------------------------------------------------------------*/

.is-swiper {
  overflow: hidden;
}

.swiper-slide {
  width: auto;
  display: block;
}

/* Pagination */

.swiper-pagination-bullets {
  text-align: center;
  width: 100%;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1 !important;
  width: 6px !important;
  height: 6px !important;
  background: var(--outline-grey) !important;
  margin: 15px 5px 0 !important;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--text-grey) !important;
}

/* Naviagtion */

.gallery-button-next,
.gallery-button-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  z-index: 999;
  cursor: pointer;
}

.gallery-button-next {
  right: 10px;
}

.gallery-button-prev {
  left: 10px;
}

.gallery-button-next svg .icon,
.gallery-button-prev svg .icon {
  fill: var(--navy);
}

/*---------------------------------------------------------------------------
  Logo Slider
---------------------------------------------------------------------------*/

.section-logo-slider {
  border-top: 5px solid var(--orange);
}

.logo-slider {
  margin-top: 30px;
}

.logo-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.logo-slider .swiper-slide,
.logo-slider .swiper-slide img {
  width: auto;
  max-width: 180px;
  max-height: 95px;
}

.logo-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: relative;
  text-align: center;
}

.logo-slider .swiper-slide {
  width: fit-content;
}

@media screen and (max-width: 750px) {
  .logo-slider .swiper-slide,
  .logo-slider .swiper-slide img {
    width: auto;
    max-width: 120px;
    max-height: 60px;
  }
}

/*---------------------------------------------------------------------------
  Typography
---------------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
a,
blockquote {
  margin: 0;
  padding: 0;
  color: var(--text-grey);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: var(--navy);
}

h1,
.h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

h4,
.h4 {
  font-size: 18px;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 16px;
  font-weight: 400;
}

h6,
.h6 {
  font-size: 10px;
  line-height: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

strong {
  font-weight: 600;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--text-grey);
  text-decoration: none;
}

.taright {
  text-align: right;
}

.taleft {
  text-align: left;
}

.tacenter {
  text-align: center;
}

.text-small {
  font-size: 12px;
}

.text-muted {
  opacity: 60%;
}

/* Responsive */

@media screen and (max-width: 900px) {
  h1,
  .h1 {
    font-size: 32px;
  }

  h2,
  .h2 {
    font-size: 26px;
  }

  h3,
  .h3 {
    font-size: 24px;
  }
}

/*---------------------------------------------------------------------------
  General Content
---------------------------------------------------------------------------*/

.general-content > *:not(:last-child) {
  margin: 0 0 20px 0 !important;
}

/* List Styles */

.general-content *:not(.table-style) li {
  margin: 5px 0;
  position: relative;
}

.general-content ul:not(.table-style) li {
  padding-left: 25px !important;
}

.general-content ul:not(.table-style) li:before {
  content: '';
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(../img/icon-list-marker.svg) 50% no-repeat !important;
  background-size: contain !important;
  left: 0;
  top: 3px;
}

.general-content ul.list-style-navy:not(.table-style) li:before {
  background: url(../img/icon-list-marker-navy.svg) 50% no-repeat !important;
  background-size: contain !important;
}

.general-content ul.list-style-green:not(.table-style) li:before {
  background: url(../img/icon-list-marker-green.svg) 50% no-repeat !important;
  background-size: contain !important;
}

.general-content ul.list-style-blue:not(.table-style) li:before {
  background: url(../img/icon-list-marker-blue.svg) 50% no-repeat !important;
  background-size: contain !important;
}

.general-content ul.list-style-purple:not(.table-style) li:before {
  background: url(../img/icon-list-marker-purple.svg) 50% no-repeat !important;
  background-size: contain !important;
}

.general-content ul.list-style-pink:not(.table-style) li:before {
  background: url(../img/icon-list-marker-pink.svg) 50% no-repeat !important;
  background-size: contain !important;
}

.general-content ul.list-style-red:not(.table-style) li:before {
  background: url(../img/icon-list-marker-red.svg) 50% no-repeat !important;
  background-size: contain !important;
}

.general-content ul.list-style-orange:not(.table-style) li:before {
  background: url(../img/icon-list-marker-orange.svg) 50% no-repeat !important;
  background-size: contain !important;
}

.general-content ul.list-style-yellow:not(.table-style) li:before {
  background: url(../img/icon-list-marker-yellow.svg) 50% no-repeat !important;
  background-size: contain !important;
}

.general-content ul.list-style-grey:not(.table-style) li:before {
  background: url(../img/icon-list-marker-grey.svg) 50% no-repeat !important;
  background-size: contain !important;
}

.general-content ol li {
  margin-left: 20px !important;
  list-style-position: outside;
  list-style: decimal;
}

/* Blockquote */

.general-content blockquote {
  padding: 15px 15px 15px 60px;
  border-left: 1px solid var(--orange);
  text-align: left;
}

.general-content a:not(button, .button, .text-link) {
  transition: var(--transition);
  text-decoration: underline;
}

.general-content a:hover:not(button, .button, .text-link) {
  color: var(--navy);
}

/* Read More */

.read-more .content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}

.read-more .read-toggle {
  margin-top: 20px;
  cursor: pointer;
}

.read-more .read-toggle:after {
  content: 'Read More';
  display: block;
  text-decoration: underline;
}

.read-more.expanded .content {
  display: block;
}

.read-more.expanded .read-toggle:after {
  content: 'Read Less';
}

/* Content Columns */

@media screen and (min-width: 750px) {
  .content-column.column-even img {
    order: 1;
  }

  .content-column.column-odd .general-content {
    order: 9;
  }
}

@media screen and (max-width: 750px) {
  .section-content-columns .layout-columns-2.reversed .general-content:first-child {
    order: 9;
  }

  .section-content-columns .layout-columns-2.reversed .general-content:last-child {
    order: 1;
  }
}

/*---------------------------------------------------------------------------
  Global Colour Styles
---------------------------------------------------------------------------*/

.background-aqua {
  background: var(--aqua);
}

.background-navy {
  background: var(--navy);
}

.background-green {
  background: var(--green);
}

.background-blue {
  background: var(--blue);
}

.background-purple {
  background: var(--purple);
}

.background-pink {
  background: var(--pink);
}

.background-red {
  background: var(--red);
}

.background-orange {
  background: var(--orange);
}

.background-yellow {
  background: var(--yellow);
}

.background-grey {
  background: var(--light-grey);
}

.text-white,
.text-white * {
  color: var(--white);
}

.text-aqua,
.text-aqua * {
  color: var(--aqua);
}

.text-navy,
.text-navy * {
  color: var(--navy);
}

.text-blue,
.text-blue * {
  color: var(--blue);
}

.text-green,
.text-green * {
  color: var(--green);
}

.text-purple,
.text-purple * {
  color: var(--purple);
}

.text-pink,
.text-pink * {
  color: var(--pink);
}

.text-red,
.text-red * {
  color: var(--red);
}

.text-orange,
.text-orange * {
  color: var(--orange);
}

.text-yellow,
.text-yellow * {
  color: var(--yellow);
}

/*---------------------------------------------------------------------------
  Global Buttons
---------------------------------------------------------------------------*/

.button,
.button-group {
  display: flex !important;
  gap: 10px;
}

/* Button Styles */

button,
.button {
  margin: 0 !important;
  outline: 0 !important;
  border: 0 !important;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-xs) !important;
  background: linear-gradient(120deg, var(--aqua), var(--aqua), #6dfdf3, var(--aqua), var(--aqua));
  background-size: 400% 100%;
  background-position: 100% 0;
  padding: 15px 25px !important;
  font-size: 14px !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  text-decoration: none !important;
  position: relative !important;
  transition: 0.5s ease all;
}

.button-navy {
  background: linear-gradient(120deg, var(--navy), var(--navy), #0b3365, var(--navy), var(--navy));
  background-size: 400% 100%;
  background-position: 100% 0;
  color: var(--white) !important;
}

.button-green {
  background: linear-gradient(120deg, var(--green), var(--green), #55fbd3, var(--green), var(--green));
  background-size: 400% 100%;
  background-position: 100% 0;
}

.button-blue {
  background: linear-gradient(120deg, var(--blue), var(--blue), #6ad3fc, var(--blue), var(--blue));
  background-size: 400% 100%;
  background-position: 100% 0;
}

.button-purple {
  background: linear-gradient(120deg, var(--purple), var(--purple), #bcbeff, var(--purple), var(--purple));
  background-size: 400% 100%;
  background-position: 100% 0;
}

.button-pink {
  background: linear-gradient(120deg, var(--pink), var(--pink), #fa68b1, var(--pink), var(--pink));
  background-size: 400% 100%;
  background-position: 100% 0;
}

.button-orange {
  background: linear-gradient(120deg, var(--orange), var(--orange), #fdb55e, var(--orange), var(--orange));
  background-size: 400% 100%;
  background-position: 100% 0;
}

.button-yellow {
  background: linear-gradient(120deg, var(--yellow), var(--yellow), #fedf81, var(--yellow), var(--yellow));
  background-size: 400% 100%;
  background-position: 100% 0;
}

/* Button Icons */

.button svg .icon {
  fill: var(--navy);
}

.button-navy svg .icon {
  fill: var(--aqua);
}

/* Button States */

button:hover,
button:focus,
button:active,
.button:hover,
.button:focus,
.button:active {
  background-position: 0 0;
}

/* Text Button */

.text-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.text-link,
.text-link svg .icon {
  transition: var(--transition);
}

.text-link svg {
  width: 14px;
  height: 14px;
}

.text-link svg .icon {
  fill: var(--navy);
}

.text-link:hover,
.text-link:focus,
.text-link:active {
  color: var(--aqua);
}

.text-link:hover svg .icon,
.text-link:focus svg .icon,
.text-link:active svg .icon {
  fill: var(--aqua);
}

/* Icon Buttons */

.button-icon,
.button-icon svg,
.button-icon img {
  transition: var(--transition);
  z-index: 999;
}

.button-icon {
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--navy);
  position: relative;
}

.button-icon svg,
.button-icon img {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.button-icon svg .icon {
  fill: var(--white);
}

.button-icon-lg {
  min-width: 60px;
  min-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
}

.button-icon-lg svg {
  width: 20px;
  height: 20px;
}

/* .button-icon,
.button-icon svg {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 99;
	transition: var(--transition);
}

.button-icon {
	width: 60px;
	height: 60px;
	background: var(--navy);
	border-radius: 60px;
}

.button-icon svg {
	width: 20px;
	height: 20px;
}

.button-icon svg .icon {
	fill: var(--white);
} */

/*---------------------------------------------------------------------------
  Tables
---------------------------------------------------------------------------*/

table {
  display: table !important;
  border-collapse: collapse;
  border-spacing: 0;
  /* border: 1px solid var(--outline-grey); */
  padding: 15px;
}

table,
table tbody,
table thead,
table tfoot,
table strong {
  width: 100%;
}

table tfoot {
  background: var(--light-grey);
}

table thead {
  border-top: 1px solid var(--outline-grey) !important;
}

table tbody {
  border-top: 1px solid var(--outline-grey) !important;
  border-bottom: 1px solid var(--outline-grey) !important;
}

table tr {
  border-bottom: 1px solid var(--outline-grey);
}

table tr:last-child {
  border-bottom: 0;
}

table th,
table td {
  text-align: left;
  /* border-right: 1px solid var(--outline-grey); */
  padding: 10px !important;
}

table th:last-child,
table td:last-child {
  border-right: 0;
}

table th,
table strong {
  font-weight: 600 !important;
}

table th {
  color: var(--navy) !important;
}

/* Styled Table */

.table-style li {
  display: flex;
  padding: 10px !important;
  border-bottom: 1px solid var(--outline-grey);
}

.table-style strong {
  color: var(--navy);
}

.table-style li:first-child {
  border-top: 1px solid var(--outline-grey);
}

.table-style .hidden {
  display: none;
}

/*---------------------------------------------------------------------------
  Global Header
---------------------------------------------------------------------------*/

header {
  top: 0;
  width: 100%;
  position: fixed;
  background: var(--white);
  box-shadow: 0 0 5px rgba(var(--black-rgb), 5%);
  z-index: 200000;
}

body.admin-bar header {
  top: var(--admin-height);
}

header > .container {
  height: var(--header-height);
  padding-left: 20px;
}

/* Logo */

header .logo svg,
header .logo img {
  display: block;
  height: 40px;
  max-width: 170px;
}

/* Button */

header .main-menu .button {
  border-radius: 0 !important;
  font-size: 16px !important;
  padding: 12px 30px !important;
  margin-left: 20px !important;
}

/* Main Menu */

header .main-menu > ul,
header .main-menu > ul > li {
  display: flex;
  align-items: center;
  position: relative;
  height: var(--header-height);
}

header .main-menu > ul > li:after {
  content: '';
  display: block;
  position: absolute;
  height: 5px;
  width: 0;
  left: 0;
  bottom: 0;
  background: var(--aqua);
  transition: var(--transition);
}

header .main-menu > ul > li:hover:after,
header .main-menu > ul > li.current-menu-item:after,
header .main-menu > ul > li.current-menu-parent:after,
header .main-menu > ul > li.current-submenu-parent:after {
  width: 100%;
}

header .main-menu ul li a {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  padding: 0 15px;
  line-height: var(--header-height);
  transition: var(--transition);
}

header.shop-header ul li a {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

header.shop-header ul li svg .icon {
  fill: var(--aqua);
}

/* Sub Menu */

ul li.menu-item-has-children {
  position: relative;
  cursor: pointer;
}

ul li.menu-item-has-children > a {
  pointer-events: none;
}

ul li.menu-item-has-children > a {
  padding-right: 40px !important;
}

ul li.menu-item-has-children > a:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/icon-chevron-down.svg) 50% no-repeat !important;
  background-size: contain !important;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

header.public-header ul li ul.sub-menu {
  display: none;
  width: 280px;
  position: absolute;
  top: var(--header-height);
  left: 50%;
  right: 50%;
  transform: translate(calc(-50% - 15px));
  background: var(--white);
  border: 1px solid var(--outline-grey);
  border-top: 0;
}

header.public-header ul.sub-menu li {
  height: auto;
}

header.public-header ul.sub-menu li:not(:last-child) {
  border-bottom: 1px solid var(--outline-grey);
}

header.public-header ul.sub-menu li a {
  font-size: 14px;
  line-height: inherit;
  padding: 15px 20px;
  text-align: center;
}

header.public-header ul.sub-menu li a:hover,
header.public-header ul.sub-menu li.current-menu-item > a {
  background: var(--light-grey);
}

/* Responsive Menu */

.responsive-menu {
  display: none;
  position: fixed;
  top: calc(var(--header-height) + var(--notice-height));
  width: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 20000;
  border-bottom: 1px solid var(--outline-grey);
}

@media screen and (min-width: 1280px) {
  .responsive-menu {
    display: none !important;
  }
}

body.admin-bar:not(.embedded) .responsive-menu {
  top: calc(var(--header-height) + var(--admin-height) + var(--notice-height));
}

.responsive-menu ul li,
.responsive-menu ul li a {
  display: block;
}

.responsive-menu ul li {
  border-bottom: 1px solid var(--outline-grey);
}

.responsive-menu ul li a {
  font-weight: 500;
  color: var(--navy);
  padding: 20px !important;
  transition: var(--transition);
}

.responsive-menu ul li a:hover,
.responsive-menu ul li.current-menu-item > a {
  background: var(--light-grey);
}

.responsive-menu ul li ul.sub-menu {
  display: none;
}

.responsive-menu ul li ul.sub-menu li a {
  font-size: 13px;
  color: var(--text-grey);
  padding: 15px 20px !important;
}

.responsive-menu ul li.menu-item-has-children > a:after {
  top: 22px;
  bottom: auto;
  width: 16px;
  height: 16px;
}

.responsive-menu ul li ul.sub-menu li:first-child {
  border-top: 1px solid var(--outline-grey) !important;
}

.responsive-menu ul li ul.sub-menu li:last-child {
  border: 0 !important;
}

.responsive-menu ul li ul.sub-menu li a:hover,
.responsive-menu ul li ul.sub-menu li.current-menu-item > a {
  background: rgba(var(--light-grey-rgb), 50%);
}

.responsive-menu .button-group {
  padding: 30px 20px;
}

/* Hamburger */

header .hamburger {
  display: none;
  position: relative;
  cursor: pointer;
}

header .hamburger svg .icon {
  fill: var(--navy);
  transition: var(--transition);
}

header.menu-active .hamburger svg .bar-1 {
  transform: rotate(45deg) translate(2.5px, -2.5px);
}

header.menu-active .hamburger svg .bar-2 {
  opacity: 0;
}

header.menu-active .hamburger svg .bar-3 {
  transform: rotate(-45deg) translate(2px, 1px);
}

/* Notice Banner */

.notice-banner {
  display: block;
  padding: 10px;
}

.notice-banner p {
  font-weight: 500;
  margin: auto !important;
  line-height: 18px;
}

/* Responsive */

@media screen and (max-width: 1280px) {
  header.public-header > .container {
    padding: 0 20px;
  }

  header.public-header .main-menu {
    display: none;
  }

  header .hamburger {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  header.header-shop .button {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  header .logo svg,
  header .logo img {
    height: 30px;
    max-width: 130px;
  }
}

@media screen and (max-width: 500px) {
  header.shop-header .main-menu .button {
    display: none !important;
  }
}

/*---------------------------------------------------------------------------
  Global Footer
---------------------------------------------------------------------------*/

footer {
  z-index: 999;
  position: relative;
  background: var(--white) !important;
  border-top: 5px solid var(--aqua);
}

footer > *[class*='container-'] {
  width: 100%;
}

footer .layout-columns-2 {
  grid-template-columns: 1fr 2fr;
}

footer a {
  color: var(--navy) !important;
  text-decoration: none !important;
  transition: var(--transition);
  font-weight: 500;
}

footer a:hover {
  color: var(--text-grey) !important;
}

footer .footer-left,
footer .footer-right .footer-menu,
footer .footer-right .general-content {
  padding: 40px;
}

footer .footer-left svg {
  width: 60px;
  height: auto;
}

footer .footer-right {
  border-left: 1px solid var(--outline-grey);
}

footer .footer-menu {
  border-bottom: 1px solid var(--outline-grey);
}

footer .footer-menu ul li,
footer .copyright a {
  display: inline-block;
  margin-right: 25px;
}

footer .footer-menu ul li a {
  font-weight: 500;
}

footer .footer-menu .sub-menu {
  display: none;
}

/* Back To Top */

.back-to-top {
  opacity: 0;
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(120deg, var(--navy), var(--navy), #0b3365, var(--navy), var(--navy));
  background-size: 400% 100%;
  background-position: 100% 0;
  border-radius: var(--border-radius-xs);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  z-index: 200000;
}

.back-to-top:hover {
  background-position: 0 0;
}

.back-to-top svg {
  width: 16px;
  height: 50px;
  margin: auto;
}

.back-to-top svg .icon {
  fill: var(--white);
}

/* Responsive */

@media screen and (max-width: 750px) {
  footer {
    text-align: center;
  }

  footer .layout-columns-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer .social-media {
    justify-content: center;
  }

  footer .footer-right {
    border-left: 0;
  }

  footer .footer-menu {
    border-top: 1px solid var(--outline-grey);
  }

  footer .footer-menu ul li,
  footer .copyright a {
    margin: 5px 10px;
  }
}

/*---------------------------------------------------------------------------
  Global Popups
---------------------------------------------------------------------------*/

.popup-trigger,
.popup-wrap .popup-close {
  cursor: pointer;
}

.popup-container {
  display: none;
}

.popup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20000000;
  background: rgba(0, 10, 21, 95%);
}

.popup-wrap *[class*='container-'] {
  background: var(--white);
  border-radius: var(--border-radius-xs);
  padding: 40px;
}

.popup-wrap .popup-close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20000;
}

.popup-wrap .popup-close svg .icon {
  fill: var(--aqua);
  transition: var(--transition);
}

.popup-wrap .popup-close:hover svg .icon {
  fill: var(--navy);
}

.popup-video .popup-wrap .popup-close {
  top: 40px;
  right: 40px;
}

.popup-video .popup-wrap .popup-close:hover svg .icon {
  fill: var(--white);
}

/* Legal Popup */

#legal-popup *[class*='container-'] {
  padding: 60px !important;
}

#legal-popup *[class*='container-'] > svg {
  width: 80px;
  height: auto;
}

#legal-popup .button-group {
  margin: 30px auto !important;
}

/*-----------------------------------------------------
  Global Tabs
-----------------------------------------------------*/

.tab-content {
  display: none;
}

.tab-content.tab-active {
  display: block;
}

.tab-titles-wrap {
  border-bottom: 1px solid rgba(var(--text-grey-rgb), 0.2);
}

.tab-title,
.tab-title > *,
.tab-title:after {
  transition: var(--transition);
}

.tab-title {
  padding: 30px 0;
  text-align: center;
  position: relative;
  cursor: pointer;
  flex: 1;
}

.tab-title:after {
  content: '';
  width: 0;
  height: 5px;
  background: var(--aqua);
  bottom: -1px;
  left: 0;
  right: 0;
  display: block;
  position: absolute;
}

.tab-title:not(.tab-active, :hover) h5 {
  opacity: 50%;
}

.tab-title.tab-active:after,
.tab-title:hover:after {
  width: 100%;
}

.tabs-grey .tab-title:after {
  background: var(--grey);
}

.tabs-navy .tab-title:after {
  background: var(--navy);
}

.tabs-green .tab-title:after {
  background: var(--green);
}

.tabs-blue .tab-title:after {
  background: var(--blue);
}

.tabs-purple .tab-title:after {
  background: var(--purple);
}

.tabs-pink .tab-title:after {
  background: var(--pink);
}

.tabs-red .tab-title:after {
  background: var(--red);
}

.tabs-orange .tab-title:after {
  background: var(--orange);
}

.tabs-yellow .tab-title:after {
  background: var(--yellow);
}

/*---------------------------------------------------------------------------
  Opener Banner
---------------------------------------------------------------------------*/

.section-opener-banner.background-navy {
  background: linear-gradient(45deg, var(--navy), #0b3365);
}

.section-opener-banner .layout-columns-2 {
  grid-template-columns: 500px 1fr;
}

/* Shapes */

.section-opener-banner h1 {
  position: relative;
  padding: 15px 15px 0 0;
}

.section-opener-banner h1:after {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 0;
  background: url(../img/text-shape.svg) 50% no-repeat;
  background-size: contain;
}

.section-opener-banner svg.banner-shape {
  height: 100%;
  width: auto;
  position: absolute;
  right: 0;
  top: 5%;
}

/* Features */

.section-opener-banner .banner-features {
  position: relative;
}

.section-opener-banner .banner-features:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--white);
  opacity: 25%;
  mix-blend-mode: soft-light;
  z-index: 0;
}

/* Responsive */

@media screen and (max-width: 1100px) {
  .section-opener-banner h1 {
    font-size: 40px;
  }

  .section-opener-banner .layout-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 750px) {
  .section-opener-banner .layout-columns-2 {
    grid-template-columns: 1fr;
  }

  .section-opener-banner .layout-columns-2 .general-content {
    text-align: center;
  }

  .section-opener-banner .button-group {
    justify-content: center;
  }

  .section-opener-banner svg.banner-shape {
    height: 50%;
    top: calc(50% + 30px);
  }
}

@media screen and (max-width: 900px) {
  .section-opener-banner h1 {
    padding: 10px 10px 0 0;
  }

  .section-opener-banner h1:after {
    width: 20px;
    height: 20px;
  }
}

/*---------------------------------------------------------------------------
  Page Banner
---------------------------------------------------------------------------*/

.section-page-banner {
  z-index: 999;
}

.section-page-banner .background-img {
  opacity: 10%;
}

.section-page-banner svg.banner-shape {
  height: 120%;
  width: auto;
  position: absolute;
  right: 0;
  top: 20%;
}

.section-page-banner.accent-aqua svg.banner-shape .shape {
  fill: var(--aqua);
}

.section-page-banner.accent-green svg.banner-shape .shape {
  fill: var(--green);
}

.section-page-banner.accent-blue svg.banner-shape .shape {
  fill: var(--blue);
}

.section-page-banner.accent-purple svg.banner-shape .shape {
  fill: var(--purple);
}

.section-page-banner.accent-pink svg.banner-shape .shape {
  fill: var(--pink);
}

.section-page-banner.accent-red svg.banner-shape .shape {
  fill: var(--red);
}

.section-page-banner.accent-orange svg.banner-shape .shape {
  fill: var(--orange);
}

.section-page-banner.accent-yellow svg.banner-shape .shape {
  fill: var(--yellow);
}

/*---------------------------------------------------------------------------
  CTA Banner
---------------------------------------------------------------------------*/

.section-cta-banner .button-group {
  justify-content: center;
}

.section-cta-banner .background-img {
  opacity: 5%;
}

/* Mini CTA */

.section-mini-cta > .background-navy {
  border-radius: var(--border-radius-xs);
  overflow: hidden;
}

.section-mini-cta .general-content {
  padding: 60px;
  position: relative;
  z-index: 1;
}

/* Responsive */

@media screen and (max-width: 720px) {
  .section-mini-cta .general-content {
    padding: 30px;
  }
}

/*---------------------------------------------------------------------------
  Social Media
---------------------------------------------------------------------------*/

.social-media {
  gap: 10px;
}

.social-media a,
.social-media svg {
  margin: 0;
  display: block;
}

.social-media svg {
  width: 30px !important;
  height: auto;
}

.social-media svg .icon,
.social-media svg .circle {
  transition: var(--transition);
}

.social-media a:hover svg .circle {
  fill: rgba(var(--outline-grey-rgb), 0.5);
}

/*---------------------------------------------------------------------------
  Portal Listing
---------------------------------------------------------------------------*/

.item-portal {
  padding: 30px;
  border: 1px solid var(--aqua);
  background: rgba(var(--aqua-rgb), 0.1);
  border-radius: var(--border-radius-xs);
}

.item-portal.portal-navy {
  border-color: rgba(var(--navy-rgb), 0.5);
  background: rgba(var(--navy-rgb), 0.05);
}

.item-portal.portal-green {
  border-color: var(--green);
  background: rgba(var(--green-rgb), 0.1);
}

.item-portal.portal-blue {
  border-color: var(--blue);
  background: rgba(var(--blue-rgb), 0.1);
}

.item-portal.portal-purple {
  border-color: var(--purple);
  background: rgba(var(--purple-rgb), 0.1);
}

.item-portal.portal-pink {
  border-color: var(--pink);
  background: rgba(var(--pink-rgb), 0.1);
}

.item-portal.portal-orange {
  border-color: var(--orange);
  background: rgba(var(--orange-rgb), 0.1);
}

.item-portal.portal-yellow {
  border-color: var(--yellow);
  background: rgba(var(--yellow-rgb), 0.1);
}

/* Complex Portals */

.section-conditional-portals *[id*='portal-group-'] {
  display: none;
}

.section-conditional-portals .item-portal.loading:hover {
  opacity: 1;
}

.listing-portals.flex-layout .item-portal {
  min-width: 30%;
}

/*---------------------------------------------------------------------------
  Icons Listing
---------------------------------------------------------------------------*/

.listing-icons.layout-columns-2,
.listing-icons > .layout-columns-2,
.listing-icons.layout-columns-3,
.listing-icons > .layout-columns-3 {
  gap: 20px;
}

.item-icon {
  height: 100%;
}

.item-icon,
.item-icon .flex-layout {
  gap: 15px;
}

.item-icon:not(.product-icon) {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--outline-grey);
  border-radius: var(--border-radius-xs);
}

.item-icon img {
  width: 50px;
  height: 50px;
}

/* Features */

.item-feature img {
  width: 20px;
  height: 20px;
}

.item-feature .general-content > *:not(:last-child) {
  margin: 0 0 10px !important;
}

/*---------------------------------------------------------------------------
  Partners Listing
---------------------------------------------------------------------------*/

.listing-partners.layout-columns-1,
.listing-partners > .layout-columns-1 {
  gap: 30px;
}

.listing-partners .row-selected {
  margin-top: 30px;
}

.listing-partners .row-selected:first-child {
  margin-top: 0;
}

.item-partner {
  padding: 30px;
  background: var(--white);
  border-radius: var(--border-radius-xs);
}

.item-partner img.image-square {
  max-width: 200px;
  object-fit: contain;
}

.item-partner .partner-location {
  gap: 10px;
}

.item-partner .partner-location svg .icon {
  fill: var(--navy);
}

/* Responsive */

@media screen and (max-width: 750px) {
  .item-partner {
    flex-wrap: wrap;
    text-align: center;
  }

  .item-partner img.image-square {
    margin: auto;
  }

  .item-partner .partner-location {
    justify-content: center;
  }
}

/*---------------------------------------------------------------------------
  Persons Listing
---------------------------------------------------------------------------*/

.listing-persons.layout-columns-3,
.listing-persons > .layout-columns-3 {
  gap: 20px;
}

.item-person {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--outline-grey);
  border-radius: var(--border-radius-xs);
}

.item-person img {
  max-height: 120px;
  max-width: 120px;
  margin: 20px auto !important;
}

.item-person .general-content > *:not(:last-child) {
  margin: 0 0 10px !important;
}

/*---------------------------------------------------------------------------
  Videos Listing
---------------------------------------------------------------------------*/

.listing-video-embeds.layout-columns-2,
.listing-video-embeds > .layout-columns-2,
.listing-videos.layout-columns-3,
.listing-videos > .layout-columns-3 {
  gap: 20px;
}

.item-video {
  background: var(--white);
  border: 1px solid var(--outline-grey);
  border-radius: var(--border-radius-xs);
  overflow: hidden;
}

.item-video .thumbnail,
.item-video .thumbnail img {
  display: block;
  transition: var(--transition);
}

.item-video .thumbnail {
  position: relative;
  background: var(--navy);
}

.item-video .thumbnail.popup-trigger:hover img {
  opacity: 50%;
}

.item-video .thumbnail .button-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--white);
}

.item-video .thumbnail .button-icon svg .icon {
  fill: var(--navy);
}

.item-video .general-content {
  padding: 20px;
}

.item-video .general-content > *:not(:last-child) {
  margin: 0 0 10px !important;
}

.item-video p.text-small a {
  color: var(--aqua);
  text-decoration: none;
}

.item-video p.text-small a:hover {
  color: var(--text-grey);
}

/*---------------------------------------------------------------------------
  Resources Listing
---------------------------------------------------------------------------*/

.listing-resources.layout-columns-2,
.listing-resources > .layout-columns-2 {
  gap: 20px;
}

.item-resource {
  background: var(--white);
  border: 1px solid var(--outline-grey);
  /* border-radius: var(--border-radius-xs); */
}

.item-resource .thumbnail,
.item-resource .thumbnail img {
  display: block;
  height: 100%;
  transition: var(--transition);
}

.item-resource .thumbnail {
  position: relative;
  background: var(--navy);
}

.item-resource .thumbnail:hover img {
  opacity: 70%;
}

.item-resource .thumbnail .button-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--white);
}

.item-resource .thumbnail .button-icon svg .icon {
  fill: var(--navy);
}

.item-resource .thumbnail:not(:hover) .button-icon {
  opacity: 0;
}

/*---------------------------------------------------------------------------
  Downloads Listing
---------------------------------------------------------------------------*/

.listing-downloads.layout-columns-2,
.listing-downloads > .layout-columns-2 {
  gap: 20px;
}

.item-download {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--outline-grey);
  border-radius: var(--border-radius-xs);
}

/*---------------------------------------------------------------------------
  Outcomes Listing
---------------------------------------------------------------------------*/

.listing-outcomes.layout-columns-2,
.listing-outcomes > .layout-columns-2 {
  gap: 30px;
}

.item-outcome {
  background: var(--white);
  border: 1px solid var(--navy);
  border-radius: var(--border-radius-xs);
}

.item-outcome .item-header,
.item-outcome .general-content {
  padding: 30px;
}

.item-outcome .item-header {
  background: var(--navy);
}

.item-outcome .button-icon {
  background: var(--aqua);
}

.item-outcome .button-icon svg .icon {
  fill: var(--navy);
}

/*---------------------------------------------------------------------------
  Accordions Listing
---------------------------------------------------------------------------*/

.listing-accordions.layout-columns-1,
.listing-accordions > .layout-columns-1 {
  gap: 60px;
}

.item-accordion {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--outline-grey);
  border-radius: var(--border-radius-xs);
}

.item-accordion:not(:first-of-type) {
  margin-top: 20px;
}

.item-accordion,
.item-accordion .trigger-accordion svg {
  transition: var(--transition);
}

.item-accordion.accordion-open {
  border-color: var(--navy);
}

.item-accordion .trigger-accordion {
  cursor: pointer;
}

.item-accordion .trigger-accordion h4 {
  flex: 1;
}

.item-accordion .trigger-accordion svg {
  margin: 3px 0 0;
}

.item-accordion .trigger-accordion svg .icon {
  fill: var(--navy);
}

.item-accordion .general-content {
  display: none;
}

/*---------------------------------------------------------------------------
  Testimonials Listing
---------------------------------------------------------------------------*/

.testimonials-slider {
  position: relative;
}

.testimonials-slider .gallery-button-prev {
  left: 0;
}

.testimonials-slider .gallery-button-next {
  right: 0;
}

.item-testimonial {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--outline-grey);
  border-radius: var(--border-radius-xs);
}

.item-testimonial .general-content > h5 {
  margin: 0 0 5px !important;
}

.item-testimonial svg {
  width: 25px;
  height: 25px;
}

.item-testimonial.colour-navy svg .icon {
  fill: var(--navy);
}

.item-testimonial.colour-aqua svg .icon {
  fill: var(--aqua);
}

.item-testimonial.colour-green svg .icon {
  fill: var(--green);
}

.item-testimonial.colour-blue svg .icon {
  fill: var(--blue);
}

.item-testimonial.colour-purple svg .icon {
  fill: var(--purple);
}

.item-testimonial.colour-pink svg .icon {
  fill: var(--pink);
}

.item-testimonial.colour-red svg .icon {
  fill: var(--red);
}

.item-testimonial.colour-orange svg .icon {
  fill: var(--orange);
}

.item-testimonial.colour-yellow svg .icon {
  fill: var(--yellow);
}

/*---------------------------------------------------------------------------
  Post Listing
---------------------------------------------------------------------------*/

.listing-posts.layout-columns-3,
.listing-posts > .layout-columns-3 {
  gap: 20px;
}

.item-post .image-landscape {
  border-radius: 0;
}

.item-post .item-meta {
  padding: 30px;
}

.item-post .post-meta {
  justify-content: center;
}

/* Hover Style */

.item-hover {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--outline-grey);
  border-radius: var(--border-radius-xs);
  background: var(--white);
}

.item-hover .button-group {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.item-hover:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(var(--navy-rgb), 10%);
  z-index: 9;
}

.item-hover .button-group,
.item-hover:after {
  opacity: 0;
  transition: var(--transition);
}

.item-hover:hover .button-group,
.item-hover:hover:after {
  opacity: 1;
}

/*---------------------------------------------------------------------------
  Single Post
---------------------------------------------------------------------------*/

/* Meta */

.post-meta {
  align-items: center;
  gap: 10px;
}

.post-meta p {
  font-weight: 500;
}

.post-meta span {
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--outline-grey);
  display: block;
}

/* Sidebar */

@media screen and (min-width: 750px) {
  .section-post-wrap .post-wrap.layout-columns-2 {
    grid-template-columns: 350px 1fr;
  }
}

/*---------------------------------------------------------------------------
  About Page
---------------------------------------------------------------------------*/

.section-about-canview {
  position: relative;
}

@media screen and (min-width: 750px) {
  .section-about-canview:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: var(--white);
  }
}

/* Values */

.item-value {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--outline-grey);
  border-radius: var(--border-radius-xs);
}

/*---------------------------------------------------------------------------
  Floating Tab Menu
---------------------------------------------------------------------------*/

.section-floating-menu {
  position: sticky;
  width: 100%;
  left: 0;
  right: 0;
  top: calc(var(--header-height) + var(--notice-height));
  background: var(--white);
  z-index: 20000;
}

body.admin-bar .section-floating-menu {
  top: calc(var(--header-height) + var(--notice-height) + var(--admin-height));
}

@media screen and (max-width: 750px) {
  .section-floating-menu .tab-titles-wrap > .flex-layout {
    width: 100%;
    flex-direction: column;
  }

  .section-floating-menu .tab-titles-wrap .tab-title {
    padding: 12px 20px !important;
  }

  .section-floating-menu .tab-titles-wrap .tab-title:not(:last-child) {
    border-bottom: 1px solid var(--outline-grey);
  }

  .section-floating-menu .tab-titles-wrap .tab-title h5 {
    font-size: 14px;
  }
}

/*---------------------------------------------------------------------------
  Register Page
---------------------------------------------------------------------------*/

@media screen and (min-width: 900px) {
  .page-id-1390 .section-user-portals .layout-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*---------------------------------------------------------------------------
  Feedback / Typeform Page
---------------------------------------------------------------------------*/

.page-feedback iframe {
  display: block;
  max-width: 100%;
  min-height: 600px;
  height: calc(100vh - var(--header-height) - 100px);
}
